mirror of
https://github.com/vector-im/element-web.git
synced 2025-11-09 20:51:41 +01:00
Update vector-im (compound-web to 8.2.1, design tokens is already at 6.0.0 on develop) (#30373)
* Update vector-im * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Make BaseDialog's div keyboard focusable and fix test. * Update more e2e tests to use switch instead of checkbox * fix useParticipants incorrectly returning an array when a map is expected * Try again to fix calParticipants * try fix RoomHeader tests again by also mocking useParticipants * Revert "try fix RoomHeader tests again by also mocking useParticipants" This reverts commit f83093cc44586b881d0918e4e4dee60d3263d44b. * Try with no dependencies * try mocking useCall rather than just useParticipantCount * Mock the call store rather than the hook * Only mock the call object for tests that expect it. * Revert "Only mock the call object for tests that expect it." This reverts commit 043d812b1defe75eb7d9c56546317f176b4ba34e. * Revert "Mock the call store rather than the hook" This reverts commit 644be3155c434a309fcfd90a21370a732bb7bdd5. * Revert "try mocking useCall rather than just useParticipantCount" This reverts commit 92034aaff9b46fd135ee4dbcd93dd62ad5985e5e. * Revert "Try with no dependencies" This reverts commit fb502a68a08bd0227ace807fdaf394ed8719d92a. * Reapply "try fix RoomHeader tests again by also mocking useParticipants" This reverts commit e456782efd5ea860cb6679be3adf440788fe40a4. * Revert "try fix RoomHeader tests again by also mocking useParticipants" This reverts commit f83093cc44586b881d0918e4e4dee60d3263d44b. * Revert "Try again to fix calParticipants" This reverts commit c45ad3063f97cad6989ec3fe44dacf6f0904a4e1. * Revert "fix useParticipants incorrectly returning an array when a map is expected" This reverts commit e06d76e3f74d8f77e33247e9f4708bb39aebdce0. * bump compound-web * Update snapshots * Fix bad merge, we don't need the second call to escape. The comment a couple of lines up explains things. * Trigger build to fix licence/cla check --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: David Langley <davidl@element.io>
This commit is contained in:
parent
1a005ad5d2
commit
cf692e751b
@ -126,7 +126,7 @@ test.describe("'Turn on key storage' toast", () => {
|
|||||||
await toast.getByRole("button", { name: "Continue" }).click();
|
await toast.getByRole("button", { name: "Continue" }).click();
|
||||||
|
|
||||||
// Then we see the Encryption settings dialog with an option to turn on key storage
|
// Then we see the Encryption settings dialog with an option to turn on key storage
|
||||||
await expect(page.getByRole("checkbox", { name: "Allow key storage" })).toBeVisible();
|
await expect(page.getByRole("switch", { name: "Allow key storage" })).toBeVisible();
|
||||||
|
|
||||||
// And when we close that
|
// And when we close that
|
||||||
await page.getByRole("button", { name: "Close dialog" }).click();
|
await page.getByRole("button", { name: "Close dialog" }).click();
|
||||||
@ -153,7 +153,7 @@ test.describe("'Turn on key storage' toast", () => {
|
|||||||
await page.getByRole("button", { name: "Go to Settings" }).click();
|
await page.getByRole("button", { name: "Go to Settings" }).click();
|
||||||
|
|
||||||
// Then we see Encryption settings again
|
// Then we see Encryption settings again
|
||||||
await expect(page.getByRole("checkbox", { name: "Allow key storage" })).toBeVisible();
|
await expect(page.getByRole("switch", { name: "Allow key storage" })).toBeVisible();
|
||||||
|
|
||||||
// And when we close that, see the toast, click Dismiss, and Yes, Dismiss
|
// And when we close that, see the toast, click Dismiss, and Yes, Dismiss
|
||||||
await page.getByRole("button", { name: "Close dialog" }).click();
|
await page.getByRole("button", { name: "Close dialog" }).click();
|
||||||
|
|||||||
@ -300,9 +300,9 @@ export async function doTwoWaySasVerification(page: Page, verifier: JSHandle<Ver
|
|||||||
export async function enableKeyBackup(app: ElementAppPage): Promise<string> {
|
export async function enableKeyBackup(app: ElementAppPage): Promise<string> {
|
||||||
const encryptionTab = await app.settings.openUserSettings("Encryption");
|
const encryptionTab = await app.settings.openUserSettings("Encryption");
|
||||||
|
|
||||||
const keyStorageToggle = encryptionTab.getByRole("checkbox", { name: "Allow key storage" });
|
const keyStorageToggle = encryptionTab.getByRole("switch", { name: "Allow key storage" });
|
||||||
if (!(await keyStorageToggle.isChecked())) {
|
if (!(await keyStorageToggle.isChecked())) {
|
||||||
await encryptionTab.getByRole("checkbox", { name: "Allow key storage" }).click();
|
await encryptionTab.getByRole("switch", { name: "Allow key storage" }).click();
|
||||||
}
|
}
|
||||||
|
|
||||||
await encryptionTab.getByRole("button", { name: "Set up recovery" }).click();
|
await encryptionTab.getByRole("button", { name: "Set up recovery" }).click();
|
||||||
@ -323,11 +323,11 @@ export async function enableKeyBackup(app: ElementAppPage): Promise<string> {
|
|||||||
export async function disableKeyBackup(app: ElementAppPage): Promise<void> {
|
export async function disableKeyBackup(app: ElementAppPage): Promise<void> {
|
||||||
const encryptionTab = await app.settings.openUserSettings("Encryption");
|
const encryptionTab = await app.settings.openUserSettings("Encryption");
|
||||||
|
|
||||||
const keyStorageToggle = encryptionTab.getByRole("checkbox", { name: "Allow key storage" });
|
const keyStorageToggle = encryptionTab.getByRole("switch", { name: "Allow key storage" });
|
||||||
if (await keyStorageToggle.isChecked()) {
|
if (await keyStorageToggle.isChecked()) {
|
||||||
await encryptionTab.getByRole("checkbox", { name: "Allow key storage" }).click();
|
await encryptionTab.getByRole("switch", { name: "Allow key storage" }).click();
|
||||||
await encryptionTab.getByRole("button", { name: "Delete key storage" }).click();
|
await encryptionTab.getByRole("button", { name: "Delete key storage" }).click();
|
||||||
await encryptionTab.getByRole("checkbox", { name: "Allow key storage" }).isVisible();
|
await encryptionTab.getByRole("switch", { name: "Allow key storage" }).isVisible();
|
||||||
|
|
||||||
// Wait for the update to account data to stick
|
// Wait for the update to account data to stick
|
||||||
await new Promise((resolve) => setTimeout(resolve, 2000));
|
await new Promise((resolve) => setTimeout(resolve, 2000));
|
||||||
|
|||||||
@ -85,7 +85,7 @@ class Helpers {
|
|||||||
* Return the system theme toggle
|
* Return the system theme toggle
|
||||||
*/
|
*/
|
||||||
getMatchSystemThemeCheckbox() {
|
getMatchSystemThemeCheckbox() {
|
||||||
return this.getThemePanel().getByRole("checkbox", { name: "Match system theme" });
|
return this.getThemePanel().getByRole("switch", { name: "Match system theme" });
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -219,7 +219,7 @@ class Helpers {
|
|||||||
* Return the compact layout checkbox
|
* Return the compact layout checkbox
|
||||||
*/
|
*/
|
||||||
getCompactLayoutCheckbox() {
|
getCompactLayoutCheckbox() {
|
||||||
return this.getMessageLayoutPanel().getByRole("checkbox", { name: "Show compact text and messages" });
|
return this.getMessageLayoutPanel().getByRole("switch", { name: "Show compact text and messages" });
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -117,7 +117,7 @@ test.describe("Encryption tab", () => {
|
|||||||
await verifySession(app, recoveryKey.encodedPrivateKey);
|
await verifySession(app, recoveryKey.encodedPrivateKey);
|
||||||
await util.openEncryptionTab();
|
await util.openEncryptionTab();
|
||||||
|
|
||||||
await page.getByRole("checkbox", { name: "Allow key storage" }).click();
|
await page.getByRole("switch", { name: "Allow key storage" }).click();
|
||||||
|
|
||||||
await expect(
|
await expect(
|
||||||
page.getByRole("heading", { name: "Are you sure you want to turn off key storage and delete it?" }),
|
page.getByRole("heading", { name: "Are you sure you want to turn off key storage and delete it?" }),
|
||||||
@ -136,7 +136,7 @@ test.describe("Encryption tab", () => {
|
|||||||
|
|
||||||
await page.getByRole("button", { name: "Delete key storage" }).click();
|
await page.getByRole("button", { name: "Delete key storage" }).click();
|
||||||
|
|
||||||
await expect(page.getByRole("checkbox", { name: "Allow key storage" })).not.toBeChecked();
|
await expect(page.getByRole("switch", { name: "Allow key storage" })).not.toBeChecked();
|
||||||
|
|
||||||
for (const prom of deleteRequestPromises) {
|
for (const prom of deleteRequestPromises) {
|
||||||
const request = await prom;
|
const request = await prom;
|
||||||
|
|||||||
@ -34,6 +34,7 @@ exports[`DevtoolsDialog renders the devtools dialog 1`] = `
|
|||||||
>
|
>
|
||||||
Room ID: !id
|
Room ID: !id
|
||||||
<div
|
<div
|
||||||
|
aria-describedby="«r2»"
|
||||||
aria-label="Copy"
|
aria-label="Copy"
|
||||||
class="mx_AccessibleButton mx_CopyableText_copyButton"
|
class="mx_AccessibleButton mx_CopyableText_copyButton"
|
||||||
role="button"
|
role="button"
|
||||||
|
|||||||
@ -74,6 +74,7 @@ exports[`LogoutDialog Prompts user to go to settings if there is a backup on the
|
|||||||
</details>
|
</details>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
aria-describedby="«rq»"
|
||||||
aria-label="Close dialog"
|
aria-label="Close dialog"
|
||||||
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
||||||
role="button"
|
role="button"
|
||||||
@ -162,6 +163,7 @@ exports[`LogoutDialog Prompts user to go to settings if there is no backup on th
|
|||||||
</details>
|
</details>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
aria-describedby="«r10»"
|
||||||
aria-label="Close dialog"
|
aria-label="Close dialog"
|
||||||
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
||||||
role="button"
|
role="button"
|
||||||
|
|||||||
@ -103,6 +103,7 @@ exports[`<MessageEditHistory /> should match the snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
aria-describedby="«r2»"
|
||||||
aria-label="Close dialog"
|
aria-label="Close dialog"
|
||||||
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
||||||
role="button"
|
role="button"
|
||||||
@ -317,6 +318,7 @@ exports[`<MessageEditHistory /> should support events with 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
aria-describedby="«r8»"
|
||||||
aria-label="Close dialog"
|
aria-label="Close dialog"
|
||||||
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
||||||
role="button"
|
role="button"
|
||||||
|
|||||||
@ -286,6 +286,7 @@ exports[`<RestoreKeyBackupDialog /> should render 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
aria-describedby="«r2»"
|
||||||
aria-label="Close dialog"
|
aria-label="Close dialog"
|
||||||
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
||||||
role="button"
|
role="button"
|
||||||
@ -484,6 +485,7 @@ exports[`<RestoreKeyBackupDialog /> should restore key backup when the key is ca
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
aria-describedby="«rk»"
|
||||||
aria-label="Close dialog"
|
aria-label="Close dialog"
|
||||||
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
||||||
role="button"
|
role="button"
|
||||||
@ -550,6 +552,7 @@ exports[`<RestoreKeyBackupDialog /> should restore key backup when the key is in
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
aria-describedby="«rq»"
|
||||||
aria-label="Close dialog"
|
aria-label="Close dialog"
|
||||||
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
class="mx_AccessibleButton mx_Dialog_cancelButton"
|
||||||
role="button"
|
role="button"
|
||||||
|
|||||||
@ -340,8 +340,8 @@ exports[`AppTile for a pinned widget should render permission request 1`] = `
|
|||||||
<span>
|
<span>
|
||||||
Using this widget may share data
|
Using this widget may share data
|
||||||
<div
|
<div
|
||||||
aria-describedby="«r2j»"
|
aria-describedby="«r2n»"
|
||||||
aria-labelledby="«r2i»"
|
aria-labelledby="«r2m»"
|
||||||
class="mx_TextWithTooltip_target mx_TextWithTooltip_target--helpIcon"
|
class="mx_TextWithTooltip_target mx_TextWithTooltip_target--helpIcon"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
|
|||||||
@ -21,6 +21,7 @@ exports[`<ImageView /> renders correctly 1`] = `
|
|||||||
class="mx_ImageView_toolbar"
|
class="mx_ImageView_toolbar"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
|
aria-describedby="«r2»"
|
||||||
aria-label="Zoom out"
|
aria-label="Zoom out"
|
||||||
class="mx_AccessibleButton mx_ImageView_button mx_ImageView_button_zoomOut"
|
class="mx_AccessibleButton mx_ImageView_button mx_ImageView_button_zoomOut"
|
||||||
role="button"
|
role="button"
|
||||||
|
|||||||
@ -32,6 +32,7 @@ exports[`<LocationViewDialog /> renders map correctly 1`] = `
|
|||||||
class="mx_ZoomButtons"
|
class="mx_ZoomButtons"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
|
aria-describedby="«r6»"
|
||||||
aria-label="Zoom in"
|
aria-label="Zoom in"
|
||||||
class="mx_AccessibleButton mx_ZoomButtons_button"
|
class="mx_AccessibleButton mx_ZoomButtons_button"
|
||||||
data-testid="map-zoom-in-button"
|
data-testid="map-zoom-in-button"
|
||||||
|
|||||||
@ -215,6 +215,7 @@ exports[`<RoomSummaryCard /> has button to edit topic 1`] = `
|
|||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="_input_19o42_24"
|
class="_input_19o42_24"
|
||||||
id="«rv»"
|
id="«rv»"
|
||||||
|
role="switch"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
@ -939,6 +940,7 @@ exports[`<RoomSummaryCard /> renders the room summary 1`] = `
|
|||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="_input_19o42_24"
|
class="_input_19o42_24"
|
||||||
id="«r5»"
|
id="«r5»"
|
||||||
|
role="switch"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
@ -1701,6 +1703,7 @@ exports[`<RoomSummaryCard /> renders the room topic in the summary 1`] = `
|
|||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="_input_19o42_24"
|
class="_input_19o42_24"
|
||||||
id="«ri»"
|
id="«ri»"
|
||||||
|
role="switch"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
|
|||||||
@ -185,7 +185,7 @@ exports[`<PinnedEventTile /> should render the menu with all the options 1`] = `
|
|||||||
aria-label="Open menu"
|
aria-label="Open menu"
|
||||||
aria-labelledby="radix-«r10»"
|
aria-labelledby="radix-«r10»"
|
||||||
aria-orientation="vertical"
|
aria-orientation="vertical"
|
||||||
class="_menu_19sse_8"
|
class="_menu_1glhz_8"
|
||||||
data-align="start"
|
data-align="start"
|
||||||
data-orientation="vertical"
|
data-orientation="vertical"
|
||||||
data-radix-menu-content=""
|
data-radix-menu-content=""
|
||||||
@ -376,7 +376,7 @@ exports[`<PinnedEventTile /> should render the menu without unpin and delete 1`]
|
|||||||
aria-label="Open menu"
|
aria-label="Open menu"
|
||||||
aria-labelledby="radix-«rl»"
|
aria-labelledby="radix-«rl»"
|
||||||
aria-orientation="vertical"
|
aria-orientation="vertical"
|
||||||
class="_menu_19sse_8"
|
class="_menu_1glhz_8"
|
||||||
data-align="start"
|
data-align="start"
|
||||||
data-orientation="vertical"
|
data-orientation="vertical"
|
||||||
data-radix-menu-content=""
|
data-radix-menu-content=""
|
||||||
|
|||||||
@ -70,12 +70,12 @@ describe("<LayoutSwitcher />", () => {
|
|||||||
await SettingsStore.setValue("useCompactLayout", null, SettingLevel.DEVICE, true);
|
await SettingsStore.setValue("useCompactLayout", null, SettingLevel.DEVICE, true);
|
||||||
await renderLayoutSwitcher();
|
await renderLayoutSwitcher();
|
||||||
|
|
||||||
expect(screen.getByRole("checkbox", { name: "Show compact text and messages" })).toBeChecked();
|
expect(screen.getByRole("switch", { name: "Show compact text and messages" })).toBeChecked();
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should change the setting when toggled", async () => {
|
it("should change the setting when toggled", async () => {
|
||||||
await renderLayoutSwitcher();
|
await renderLayoutSwitcher();
|
||||||
act(() => screen.getByRole("checkbox", { name: "Show compact text and messages" }).click());
|
act(() => screen.getByRole("switch", { name: "Show compact text and messages" }).click());
|
||||||
|
|
||||||
await waitFor(() => expect(SettingsStore.getValue("useCompactLayout")).toBe(true));
|
await waitFor(() => expect(SettingsStore.getValue("useCompactLayout")).toBe(true));
|
||||||
});
|
});
|
||||||
@ -83,7 +83,7 @@ describe("<LayoutSwitcher />", () => {
|
|||||||
it("should be disabled when the modern layout is not enabled", async () => {
|
it("should be disabled when the modern layout is not enabled", async () => {
|
||||||
await SettingsStore.setValue("layout", null, SettingLevel.DEVICE, Layout.Bubble);
|
await SettingsStore.setValue("layout", null, SettingLevel.DEVICE, Layout.Bubble);
|
||||||
await renderLayoutSwitcher();
|
await renderLayoutSwitcher();
|
||||||
expect(screen.getByRole("checkbox", { name: "Show compact text and messages" })).toBeDisabled();
|
expect(screen.getByRole("switch", { name: "Show compact text and messages" })).toBeDisabled();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@ -56,24 +56,24 @@ describe("<ThemeChoicePanel />", () => {
|
|||||||
describe("system theme", () => {
|
describe("system theme", () => {
|
||||||
it("should disable Match system theme", async () => {
|
it("should disable Match system theme", async () => {
|
||||||
render(<ThemeChoicePanel />);
|
render(<ThemeChoicePanel />);
|
||||||
expect(screen.getByRole("checkbox", { name: "Match system theme" })).not.toBeChecked();
|
expect(screen.getByRole("switch", { name: "Match system theme" })).not.toBeChecked();
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should enable Match system theme", async () => {
|
it("should enable Match system theme", async () => {
|
||||||
await enableSystemTheme(true);
|
await enableSystemTheme(true);
|
||||||
|
|
||||||
render(<ThemeChoicePanel />);
|
render(<ThemeChoicePanel />);
|
||||||
expect(screen.getByRole("checkbox", { name: "Match system theme" })).toBeChecked();
|
expect(screen.getByRole("switch", { name: "Match system theme" })).toBeChecked();
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should change the system theme when clicked", async () => {
|
it("should change the system theme when clicked", async () => {
|
||||||
jest.spyOn(SettingsStore, "setValue");
|
jest.spyOn(SettingsStore, "setValue");
|
||||||
|
|
||||||
render(<ThemeChoicePanel />);
|
render(<ThemeChoicePanel />);
|
||||||
act(() => screen.getByRole("checkbox", { name: "Match system theme" }).click());
|
act(() => screen.getByRole("switch", { name: "Match system theme" }).click());
|
||||||
|
|
||||||
// The system theme should be enabled
|
// The system theme should be enabled
|
||||||
expect(screen.getByRole("checkbox", { name: "Match system theme" })).toBeChecked();
|
expect(screen.getByRole("switch", { name: "Match system theme" })).toBeChecked();
|
||||||
expect(SettingsStore.setValue).toHaveBeenCalledWith("use_system_theme", null, "device", true);
|
expect(SettingsStore.setValue).toHaveBeenCalledWith("use_system_theme", null, "device", true);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@ -418,6 +418,7 @@ exports[`<LayoutSwitcher /> should render 1`] = `
|
|||||||
class="_input_19o42_24"
|
class="_input_19o42_24"
|
||||||
id="radix-«rr»"
|
id="radix-«rr»"
|
||||||
name="compactLayout"
|
name="compactLayout"
|
||||||
|
role="switch"
|
||||||
title=""
|
title=""
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -34,6 +34,7 @@ exports[`<ThemeChoicePanel /> custom theme should display custom theme 1`] = `
|
|||||||
class="_input_19o42_24"
|
class="_input_19o42_24"
|
||||||
id="radix-«r28»"
|
id="radix-«r28»"
|
||||||
name="systemTheme"
|
name="systemTheme"
|
||||||
|
role="switch"
|
||||||
title=""
|
title=""
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
@ -312,6 +313,7 @@ exports[`<ThemeChoicePanel /> custom theme should render the custom theme sectio
|
|||||||
class="_input_19o42_24"
|
class="_input_19o42_24"
|
||||||
id="radix-«r10»"
|
id="radix-«r10»"
|
||||||
name="systemTheme"
|
name="systemTheme"
|
||||||
|
role="switch"
|
||||||
title=""
|
title=""
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
@ -590,6 +592,7 @@ exports[`<ThemeChoicePanel /> renders the theme choice UI 1`] = `
|
|||||||
class="_input_19o42_24"
|
class="_input_19o42_24"
|
||||||
id="radix-«r0»"
|
id="radix-«r0»"
|
||||||
name="systemTheme"
|
name="systemTheme"
|
||||||
|
role="switch"
|
||||||
title=""
|
title=""
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -74,7 +74,7 @@ describe("<AdvancedPanel />", () => {
|
|||||||
await renderAdvancedPanel();
|
await renderAdvancedPanel();
|
||||||
|
|
||||||
expect(screen.getByTestId("otherSettings")).toMatchSnapshot();
|
expect(screen.getByTestId("otherSettings")).toMatchSnapshot();
|
||||||
const checkbox = screen.getByRole("checkbox", {
|
const checkbox = screen.getByRole("switch", {
|
||||||
name: "In encrypted rooms, only send messages to verified users",
|
name: "In encrypted rooms, only send messages to verified users",
|
||||||
});
|
});
|
||||||
expect(checkbox).toBeChecked();
|
expect(checkbox).toBeChecked();
|
||||||
|
|||||||
@ -224,6 +224,7 @@ exports[`<AdvancedPanel /> <OtherSettings /> should display the blacklist of unv
|
|||||||
class="_input_19o42_24"
|
class="_input_19o42_24"
|
||||||
id="radix-«r6»"
|
id="radix-«r6»"
|
||||||
name="neverSendEncrypted"
|
name="neverSendEncrypted"
|
||||||
|
role="switch"
|
||||||
title=""
|
title=""
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -561,6 +561,7 @@ exports[`AppearanceUserSettingsTab should render 1`] = `
|
|||||||
class="_input_19o42_24"
|
class="_input_19o42_24"
|
||||||
id="radix-«ru»"
|
id="radix-«ru»"
|
||||||
name="compactLayout"
|
name="compactLayout"
|
||||||
|
role="switch"
|
||||||
title=""
|
title=""
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -4,7 +4,7 @@ exports[`ThreadsActivityCentre renders notifications matching the snapshot 1`] =
|
|||||||
<div
|
<div
|
||||||
aria-labelledby="radix-«r2f»"
|
aria-labelledby="radix-«r2f»"
|
||||||
aria-orientation="vertical"
|
aria-orientation="vertical"
|
||||||
class="_menu_19sse_8"
|
class="_menu_1glhz_8"
|
||||||
data-align="start"
|
data-align="start"
|
||||||
data-orientation="vertical"
|
data-orientation="vertical"
|
||||||
data-radix-menu-content=""
|
data-radix-menu-content=""
|
||||||
@ -17,7 +17,7 @@ exports[`ThreadsActivityCentre renders notifications matching the snapshot 1`] =
|
|||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
>
|
>
|
||||||
<h3
|
<h3
|
||||||
class="_typography_6v6n8_153 _font-body-sm-semibold_6v6n8_36 _menu-title_1sgvx_8 _title_19sse_74"
|
class="_typography_6v6n8_153 _font-body-sm-semibold_6v6n8_36 _menu-title_1sgvx_8 _title_1glhz_74"
|
||||||
id="«r2n»"
|
id="«r2n»"
|
||||||
>
|
>
|
||||||
Threads activity
|
Threads activity
|
||||||
@ -230,7 +230,7 @@ exports[`ThreadsActivityCentre should close the release announcement when the TA
|
|||||||
<div
|
<div
|
||||||
aria-labelledby="radix-«ro»"
|
aria-labelledby="radix-«ro»"
|
||||||
aria-orientation="vertical"
|
aria-orientation="vertical"
|
||||||
class="_menu_19sse_8"
|
class="_menu_1glhz_8"
|
||||||
data-align="start"
|
data-align="start"
|
||||||
data-orientation="vertical"
|
data-orientation="vertical"
|
||||||
data-radix-menu-content=""
|
data-radix-menu-content=""
|
||||||
@ -243,7 +243,7 @@ exports[`ThreadsActivityCentre should close the release announcement when the TA
|
|||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
>
|
>
|
||||||
<h3
|
<h3
|
||||||
class="_typography_6v6n8_153 _font-body-sm-semibold_6v6n8_36 _menu-title_1sgvx_8 _title_19sse_74"
|
class="_typography_6v6n8_153 _font-body-sm-semibold_6v6n8_36 _menu-title_1sgvx_8 _title_1glhz_74"
|
||||||
id="«r10»"
|
id="«r10»"
|
||||||
>
|
>
|
||||||
Threads activity
|
Threads activity
|
||||||
@ -273,7 +273,7 @@ exports[`ThreadsActivityCentre should match snapshot when empty 1`] = `
|
|||||||
<div
|
<div
|
||||||
aria-labelledby="radix-«r33»"
|
aria-labelledby="radix-«r33»"
|
||||||
aria-orientation="vertical"
|
aria-orientation="vertical"
|
||||||
class="_menu_19sse_8"
|
class="_menu_1glhz_8"
|
||||||
data-align="start"
|
data-align="start"
|
||||||
data-orientation="vertical"
|
data-orientation="vertical"
|
||||||
data-radix-menu-content=""
|
data-radix-menu-content=""
|
||||||
@ -286,7 +286,7 @@ exports[`ThreadsActivityCentre should match snapshot when empty 1`] = `
|
|||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
>
|
>
|
||||||
<h3
|
<h3
|
||||||
class="_typography_6v6n8_153 _font-body-sm-semibold_6v6n8_36 _menu-title_1sgvx_8 _title_19sse_74"
|
class="_typography_6v6n8_153 _font-body-sm-semibold_6v6n8_36 _menu-title_1sgvx_8 _title_1glhz_74"
|
||||||
id="«r3b»"
|
id="«r3b»"
|
||||||
>
|
>
|
||||||
Threads activity
|
Threads activity
|
||||||
@ -307,7 +307,7 @@ exports[`ThreadsActivityCentre should order the room with the same notification
|
|||||||
<div
|
<div
|
||||||
aria-labelledby="radix-«r3c»"
|
aria-labelledby="radix-«r3c»"
|
||||||
aria-orientation="vertical"
|
aria-orientation="vertical"
|
||||||
class="_menu_19sse_8"
|
class="_menu_1glhz_8"
|
||||||
data-align="start"
|
data-align="start"
|
||||||
data-orientation="vertical"
|
data-orientation="vertical"
|
||||||
data-radix-menu-content=""
|
data-radix-menu-content=""
|
||||||
@ -320,7 +320,7 @@ exports[`ThreadsActivityCentre should order the room with the same notification
|
|||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
>
|
>
|
||||||
<h3
|
<h3
|
||||||
class="_typography_6v6n8_153 _font-body-sm-semibold_6v6n8_36 _menu-title_1sgvx_8 _title_19sse_74"
|
class="_typography_6v6n8_153 _font-body-sm-semibold_6v6n8_36 _menu-title_1sgvx_8 _title_1glhz_74"
|
||||||
id="«r3k»"
|
id="«r3k»"
|
||||||
>
|
>
|
||||||
Threads activity
|
Threads activity
|
||||||
|
|||||||
570
yarn.lock
570
yarn.lock
@ -2088,41 +2088,41 @@
|
|||||||
"@figspec/components" "^1.0.1"
|
"@figspec/components" "^1.0.1"
|
||||||
"@lit-labs/react" "^1.0.2"
|
"@lit-labs/react" "^1.0.2"
|
||||||
|
|
||||||
"@floating-ui/core@^1.6.0":
|
"@floating-ui/core@^1.7.3":
|
||||||
version "1.6.8"
|
version "1.7.3"
|
||||||
resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.6.8.tgz#aa43561be075815879305965020f492cdb43da12"
|
resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.7.3.tgz#462d722f001e23e46d86fd2bd0d21b7693ccb8b7"
|
||||||
integrity sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==
|
integrity sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@floating-ui/utils" "^0.2.8"
|
"@floating-ui/utils" "^0.2.10"
|
||||||
|
|
||||||
"@floating-ui/dom@^1.0.0":
|
"@floating-ui/dom@^1.7.3":
|
||||||
version "1.6.11"
|
version "1.7.3"
|
||||||
resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.6.11.tgz#8631857838d34ee5712339eb7cbdfb8ad34da723"
|
resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.7.3.tgz#6174ac3409e6a064bbdf1f4bb07188ee9461f8cf"
|
||||||
integrity sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==
|
integrity sha512-uZA413QEpNuhtb3/iIKoYMSK07keHPYeXF02Zhd6e213j+d1NamLix/mCLxBUDW/Gx52sPH2m+chlUsyaBs/Ag==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@floating-ui/core" "^1.6.0"
|
"@floating-ui/core" "^1.7.3"
|
||||||
"@floating-ui/utils" "^0.2.8"
|
"@floating-ui/utils" "^0.2.10"
|
||||||
|
|
||||||
"@floating-ui/react-dom@^2.0.0", "@floating-ui/react-dom@^2.1.2":
|
"@floating-ui/react-dom@^2.0.0", "@floating-ui/react-dom@^2.1.5":
|
||||||
version "2.1.2"
|
version "2.1.5"
|
||||||
resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.1.2.tgz#a1349bbf6a0e5cb5ded55d023766f20a4d439a31"
|
resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.1.5.tgz#d11e3726d2eb385d8cf3216348742907c1d49fcf"
|
||||||
integrity sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==
|
integrity sha512-HDO/1/1oH9fjj4eLgegrlH3dklZpHtUYYFiVwMUwfGvk9jWDRWqkklA2/NFScknrcNSspbV868WjXORvreDX+Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@floating-ui/dom" "^1.0.0"
|
"@floating-ui/dom" "^1.7.3"
|
||||||
|
|
||||||
"@floating-ui/react@^0.27.0":
|
"@floating-ui/react@^0.27.0":
|
||||||
version "0.27.0"
|
version "0.27.15"
|
||||||
resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.27.0.tgz#e0931fd09374ab4b8ce1a1af5cb44d1ccd1bb95a"
|
resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.27.15.tgz#1005b01e8de79ff98de9a93717bdd1bd4fcd1949"
|
||||||
integrity sha512-WLEksq7fJapXSJbmfiyq9pAW0a7ZFMEJToFE4oTDESxGjoa+nZu3YMjmZE2KvoUtQhqOK2yMMfWQFZyeWD0wGQ==
|
integrity sha512-0LGxhBi3BB1DwuSNQAmuaSuertFzNAerlMdPbotjTVnvPtdOs7CkrHLaev5NIXemhzDXNC0tFzuseut7cWA5mw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@floating-ui/react-dom" "^2.1.2"
|
"@floating-ui/react-dom" "^2.1.5"
|
||||||
"@floating-ui/utils" "^0.2.8"
|
"@floating-ui/utils" "^0.2.10"
|
||||||
tabbable "^6.0.0"
|
tabbable "^6.0.0"
|
||||||
|
|
||||||
"@floating-ui/utils@^0.2.8":
|
"@floating-ui/utils@^0.2.10":
|
||||||
version "0.2.8"
|
version "0.2.10"
|
||||||
resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.8.tgz#21a907684723bbbaa5f0974cf7730bd797eb8e62"
|
resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.10.tgz#a2a1e3812d14525f725d011a73eceb41fef5bc1c"
|
||||||
integrity sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==
|
integrity sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==
|
||||||
|
|
||||||
"@fontsource/inconsolata@^5":
|
"@fontsource/inconsolata@^5":
|
||||||
version "5.2.6"
|
version "5.2.6"
|
||||||
@ -2912,286 +2912,289 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
|
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
|
||||||
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
|
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
|
||||||
|
|
||||||
"@radix-ui/primitive@1.1.0":
|
"@radix-ui/primitive@1.1.2":
|
||||||
version "1.1.0"
|
version "1.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.1.0.tgz#42ef83b3b56dccad5d703ae8c42919a68798bbe2"
|
resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.1.2.tgz#83f415c4425f21e3d27914c12b3272a32e3dae65"
|
||||||
integrity sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==
|
integrity sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==
|
||||||
|
|
||||||
"@radix-ui/react-arrow@1.1.0":
|
"@radix-ui/react-arrow@1.1.7":
|
||||||
version "1.1.0"
|
version "1.1.7"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-arrow/-/react-arrow-1.1.0.tgz#744f388182d360b86285217e43b6c63633f39e7a"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-arrow/-/react-arrow-1.1.7.tgz#e14a2657c81d961598c5e72b73dd6098acc04f09"
|
||||||
integrity sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==
|
integrity sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
|
|
||||||
"@radix-ui/react-collection@1.1.0":
|
"@radix-ui/react-collection@1.1.7":
|
||||||
version "1.1.0"
|
version "1.1.7"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-collection/-/react-collection-1.1.0.tgz#f18af78e46454a2360d103c2251773028b7724ed"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-collection/-/react-collection-1.1.7.tgz#d05c25ca9ac4695cc19ba91f42f686e3ea2d9aec"
|
||||||
integrity sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==
|
integrity sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
"@radix-ui/react-context" "1.1.0"
|
"@radix-ui/react-context" "1.1.2"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
"@radix-ui/react-slot" "1.1.0"
|
"@radix-ui/react-slot" "1.2.3"
|
||||||
|
|
||||||
"@radix-ui/react-compose-refs@1.1.0":
|
"@radix-ui/react-compose-refs@1.1.2":
|
||||||
version "1.1.0"
|
version "1.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz#656432461fc8283d7b591dcf0d79152fae9ecc74"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz#a2c4c47af6337048ee78ff6dc0d090b390d2bb30"
|
||||||
integrity sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==
|
integrity sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==
|
||||||
|
|
||||||
"@radix-ui/react-context-menu@^2.2.1":
|
"@radix-ui/react-context-menu@^2.2.1":
|
||||||
version "2.2.2"
|
version "2.2.15"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-context-menu/-/react-context-menu-2.2.2.tgz#efcddc559fc3011721b65148f062d04027f76c7a"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-context-menu/-/react-context-menu-2.2.15.tgz#d61a7c8badbcad72fadb9ed87efaa21df60b0a99"
|
||||||
integrity sha512-99EatSTpW+hRYHt7m8wdDlLtkmTovEe8Z/hnxUPV+SKuuNL5HWNhQI4QSdjZqNSgXHay2z4M3Dym73j9p2Gx5Q==
|
integrity sha512-UsQUMjcYTsBjTSXw0P3GO0werEQvUY2plgRQuKoCTtkNr45q1DiL51j4m7gxhABzZ0BadoXNsIbg7F3KwiUBbw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/primitive" "1.1.0"
|
"@radix-ui/primitive" "1.1.2"
|
||||||
"@radix-ui/react-context" "1.1.1"
|
"@radix-ui/react-context" "1.1.2"
|
||||||
"@radix-ui/react-menu" "2.1.2"
|
"@radix-ui/react-menu" "2.1.15"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
"@radix-ui/react-use-callback-ref" "1.1.0"
|
"@radix-ui/react-use-callback-ref" "1.1.1"
|
||||||
"@radix-ui/react-use-controllable-state" "1.1.0"
|
"@radix-ui/react-use-controllable-state" "1.2.2"
|
||||||
|
|
||||||
"@radix-ui/react-context@1.1.0":
|
"@radix-ui/react-context@1.1.2":
|
||||||
version "1.1.0"
|
version "1.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.1.0.tgz#6df8d983546cfd1999c8512f3a8ad85a6e7fcee8"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.1.2.tgz#61628ef269a433382c364f6f1e3788a6dc213a36"
|
||||||
integrity sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==
|
integrity sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==
|
||||||
|
|
||||||
"@radix-ui/react-context@1.1.1":
|
|
||||||
version "1.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.1.1.tgz#82074aa83a472353bb22e86f11bcbd1c61c4c71a"
|
|
||||||
integrity sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==
|
|
||||||
|
|
||||||
"@radix-ui/react-dialog@^1.1.1":
|
"@radix-ui/react-dialog@^1.1.1":
|
||||||
version "1.1.2"
|
version "1.1.14"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-dialog/-/react-dialog-1.1.2.tgz#d9345575211d6f2d13e209e84aec9a8584b54d6c"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-dialog/-/react-dialog-1.1.14.tgz#4c69c80c258bc6561398cfce055202ea11075107"
|
||||||
integrity sha512-Yj4dZtqa2o+kG61fzB0H2qUvmwBA2oyQroGLyNtBj1beo1khoQ3q1a2AO8rrQYjd8256CO9+N8L9tvsS+bnIyA==
|
integrity sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/primitive" "1.1.0"
|
"@radix-ui/primitive" "1.1.2"
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
"@radix-ui/react-context" "1.1.1"
|
"@radix-ui/react-context" "1.1.2"
|
||||||
"@radix-ui/react-dismissable-layer" "1.1.1"
|
"@radix-ui/react-dismissable-layer" "1.1.10"
|
||||||
"@radix-ui/react-focus-guards" "1.1.1"
|
"@radix-ui/react-focus-guards" "1.1.2"
|
||||||
"@radix-ui/react-focus-scope" "1.1.0"
|
"@radix-ui/react-focus-scope" "1.1.7"
|
||||||
"@radix-ui/react-id" "1.1.0"
|
"@radix-ui/react-id" "1.1.1"
|
||||||
"@radix-ui/react-portal" "1.1.2"
|
"@radix-ui/react-portal" "1.1.9"
|
||||||
"@radix-ui/react-presence" "1.1.1"
|
"@radix-ui/react-presence" "1.1.4"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
"@radix-ui/react-slot" "1.1.0"
|
"@radix-ui/react-slot" "1.2.3"
|
||||||
"@radix-ui/react-use-controllable-state" "1.1.0"
|
"@radix-ui/react-use-controllable-state" "1.2.2"
|
||||||
aria-hidden "^1.1.1"
|
aria-hidden "^1.2.4"
|
||||||
react-remove-scroll "2.6.0"
|
react-remove-scroll "^2.6.3"
|
||||||
|
|
||||||
"@radix-ui/react-direction@1.1.0":
|
"@radix-ui/react-direction@1.1.1":
|
||||||
version "1.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-direction/-/react-direction-1.1.0.tgz#a7d39855f4d077adc2a1922f9c353c5977a09cdc"
|
|
||||||
integrity sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==
|
|
||||||
|
|
||||||
"@radix-ui/react-dismissable-layer@1.1.1":
|
|
||||||
version "1.1.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.1.tgz#cbdcb739c5403382bdde5f9243042ba643883396"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-direction/-/react-direction-1.1.1.tgz#39e5a5769e676c753204b792fbe6cf508e550a14"
|
||||||
integrity sha512-QSxg29lfr/xcev6kSz7MAlmDnzbP1eI/Dwn3Tp1ip0KT5CUELsxkekFEMVBEoykI3oV39hKT4TKZzBNMbcTZYQ==
|
integrity sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==
|
||||||
|
|
||||||
|
"@radix-ui/react-dismissable-layer@1.1.10":
|
||||||
|
version "1.1.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.10.tgz#429b9bada3672c6895a5d6a642aca6ecaf4f18c3"
|
||||||
|
integrity sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/primitive" "1.1.0"
|
"@radix-ui/primitive" "1.1.2"
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
"@radix-ui/react-use-callback-ref" "1.1.0"
|
"@radix-ui/react-use-callback-ref" "1.1.1"
|
||||||
"@radix-ui/react-use-escape-keydown" "1.1.0"
|
"@radix-ui/react-use-escape-keydown" "1.1.1"
|
||||||
|
|
||||||
"@radix-ui/react-dropdown-menu@^2.1.1":
|
"@radix-ui/react-dropdown-menu@^2.1.1":
|
||||||
version "2.1.2"
|
version "2.1.15"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.1.2.tgz#acc49577130e3c875ef0133bd1e271ea3392d924"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.1.15.tgz#f507320de8e11bc1e671a6ec0c27a7a89e725131"
|
||||||
integrity sha512-GVZMR+eqK8/Kes0a36Qrv+i20bAPXSn8rCBTHx30w+3ECnR5o3xixAlqcVaYvLeyKUsm0aqyhWfmUcqufM8nYA==
|
integrity sha512-mIBnOjgwo9AH3FyKaSWoSu/dYj6VdhJ7frEPiGTeXCdUFHjl9h3mFh2wwhEtINOmYXWhdpf1rY2minFsmaNgVQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/primitive" "1.1.0"
|
"@radix-ui/primitive" "1.1.2"
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
"@radix-ui/react-context" "1.1.1"
|
"@radix-ui/react-context" "1.1.2"
|
||||||
"@radix-ui/react-id" "1.1.0"
|
"@radix-ui/react-id" "1.1.1"
|
||||||
"@radix-ui/react-menu" "2.1.2"
|
"@radix-ui/react-menu" "2.1.15"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
"@radix-ui/react-use-controllable-state" "1.1.0"
|
"@radix-ui/react-use-controllable-state" "1.2.2"
|
||||||
|
|
||||||
"@radix-ui/react-focus-guards@1.1.1":
|
"@radix-ui/react-focus-guards@1.1.2":
|
||||||
version "1.1.1"
|
version "1.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.1.tgz#8635edd346304f8b42cae86b05912b61aef27afe"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.2.tgz#4ec9a7e50925f7fb661394460045b46212a33bed"
|
||||||
integrity sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==
|
integrity sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA==
|
||||||
|
|
||||||
"@radix-ui/react-focus-scope@1.1.0":
|
"@radix-ui/react-focus-scope@1.1.7":
|
||||||
version "1.1.0"
|
version "1.1.7"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.0.tgz#ebe2891a298e0a33ad34daab2aad8dea31caf0b2"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.7.tgz#dfe76fc103537d80bf42723a183773fd07bfb58d"
|
||||||
integrity sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==
|
integrity sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
"@radix-ui/react-use-callback-ref" "1.1.0"
|
"@radix-ui/react-use-callback-ref" "1.1.1"
|
||||||
|
|
||||||
"@radix-ui/react-form@^0.1.0":
|
"@radix-ui/react-form@^0.1.0":
|
||||||
version "0.1.0"
|
version "0.1.7"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-form/-/react-form-0.1.0.tgz#7111a6aa54a2bde0d11fb72643f9ffc871ac58ad"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-form/-/react-form-0.1.7.tgz#acbf7ef57bbed1e76ea1f2d3b18eff465519435c"
|
||||||
integrity sha512-1/oVYPDjbFILOLIarcGcMKo+y6SbTVT/iUKVEw59CF4offwZgBgC3ZOeSBewjqU0vdA6FWTPWTN63obj55S/tQ==
|
integrity sha512-IXLKFnaYvFg/KkeV5QfOX7tRnwHXp127koOFUjLWMTrRv5Rny3DQcAtIFFeA/Cli4HHM8DuJCXAUsgnFVJndlw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/primitive" "1.1.0"
|
"@radix-ui/primitive" "1.1.2"
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
"@radix-ui/react-context" "1.1.0"
|
"@radix-ui/react-context" "1.1.2"
|
||||||
"@radix-ui/react-id" "1.1.0"
|
"@radix-ui/react-id" "1.1.1"
|
||||||
"@radix-ui/react-label" "2.1.0"
|
"@radix-ui/react-label" "2.1.7"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
|
|
||||||
"@radix-ui/react-id@1.1.0":
|
"@radix-ui/react-id@1.1.1":
|
||||||
version "1.1.0"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-id/-/react-id-1.1.0.tgz#de47339656594ad722eb87f94a6b25f9cffae0ed"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-id/-/react-id-1.1.1.tgz#1404002e79a03fe062b7e3864aa01e24bd1471f7"
|
||||||
integrity sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==
|
integrity sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-use-layout-effect" "1.1.0"
|
"@radix-ui/react-use-layout-effect" "1.1.1"
|
||||||
|
|
||||||
"@radix-ui/react-label@2.1.0":
|
"@radix-ui/react-label@2.1.7":
|
||||||
version "2.1.0"
|
version "2.1.7"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-label/-/react-label-2.1.0.tgz#3aa2418d70bb242be37c51ff5e51a2adcbc372e3"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-label/-/react-label-2.1.7.tgz#ad959ff9c6e4968d533329eb95696e1ba8ad72ab"
|
||||||
integrity sha512-peLblDlFw/ngk3UWq0VnYaOLy6agTZZ+MUO/WhVfm14vJGML+xH4FAl2XQGLqdefjNb7ApRg6Yn7U42ZhmYXdw==
|
integrity sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
|
|
||||||
"@radix-ui/react-menu@2.1.2":
|
"@radix-ui/react-menu@2.1.15":
|
||||||
version "2.1.2"
|
version "2.1.15"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-menu/-/react-menu-2.1.2.tgz#91f6815845a4298dde775563ed2d80b7ad667899"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-menu/-/react-menu-2.1.15.tgz#a1a8f06cab3c309f9998cdbd2b3ad279e42ed483"
|
||||||
integrity sha512-lZ0R4qR2Al6fZ4yCCZzu/ReTFrylHFxIqy7OezIpWF4bL0o9biKo0pFIvkaew3TyZ9Fy5gYVrR5zCGZBVbO1zg==
|
integrity sha512-tVlmA3Vb9n8SZSd+YSbuFR66l87Wiy4du+YE+0hzKQEANA+7cWKH1WgqcEX4pXqxUFQKrWQGHdvEfw00TjFiew==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/primitive" "1.1.0"
|
"@radix-ui/primitive" "1.1.2"
|
||||||
"@radix-ui/react-collection" "1.1.0"
|
"@radix-ui/react-collection" "1.1.7"
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
"@radix-ui/react-context" "1.1.1"
|
"@radix-ui/react-context" "1.1.2"
|
||||||
"@radix-ui/react-direction" "1.1.0"
|
"@radix-ui/react-direction" "1.1.1"
|
||||||
"@radix-ui/react-dismissable-layer" "1.1.1"
|
"@radix-ui/react-dismissable-layer" "1.1.10"
|
||||||
"@radix-ui/react-focus-guards" "1.1.1"
|
"@radix-ui/react-focus-guards" "1.1.2"
|
||||||
"@radix-ui/react-focus-scope" "1.1.0"
|
"@radix-ui/react-focus-scope" "1.1.7"
|
||||||
"@radix-ui/react-id" "1.1.0"
|
"@radix-ui/react-id" "1.1.1"
|
||||||
"@radix-ui/react-popper" "1.2.0"
|
"@radix-ui/react-popper" "1.2.7"
|
||||||
"@radix-ui/react-portal" "1.1.2"
|
"@radix-ui/react-portal" "1.1.9"
|
||||||
"@radix-ui/react-presence" "1.1.1"
|
"@radix-ui/react-presence" "1.1.4"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
"@radix-ui/react-roving-focus" "1.1.0"
|
"@radix-ui/react-roving-focus" "1.1.10"
|
||||||
"@radix-ui/react-slot" "1.1.0"
|
"@radix-ui/react-slot" "1.2.3"
|
||||||
"@radix-ui/react-use-callback-ref" "1.1.0"
|
"@radix-ui/react-use-callback-ref" "1.1.1"
|
||||||
aria-hidden "^1.1.1"
|
aria-hidden "^1.2.4"
|
||||||
react-remove-scroll "2.6.0"
|
react-remove-scroll "^2.6.3"
|
||||||
|
|
||||||
"@radix-ui/react-popper@1.2.0":
|
"@radix-ui/react-popper@1.2.7":
|
||||||
version "1.2.0"
|
version "1.2.7"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-popper/-/react-popper-1.2.0.tgz#a3e500193d144fe2d8f5d5e60e393d64111f2a7a"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-popper/-/react-popper-1.2.7.tgz#531cf2eebb3d3270d58f7d8136e4517646429978"
|
||||||
integrity sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg==
|
integrity sha512-IUFAccz1JyKcf/RjB552PlWwxjeCJB8/4KxT7EhBHOJM+mN7LdW+B3kacJXILm32xawcMMjb2i0cIZpo+f9kiQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@floating-ui/react-dom" "^2.0.0"
|
"@floating-ui/react-dom" "^2.0.0"
|
||||||
"@radix-ui/react-arrow" "1.1.0"
|
"@radix-ui/react-arrow" "1.1.7"
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
"@radix-ui/react-context" "1.1.0"
|
"@radix-ui/react-context" "1.1.2"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
"@radix-ui/react-use-callback-ref" "1.1.0"
|
"@radix-ui/react-use-callback-ref" "1.1.1"
|
||||||
"@radix-ui/react-use-layout-effect" "1.1.0"
|
"@radix-ui/react-use-layout-effect" "1.1.1"
|
||||||
"@radix-ui/react-use-rect" "1.1.0"
|
"@radix-ui/react-use-rect" "1.1.1"
|
||||||
"@radix-ui/react-use-size" "1.1.0"
|
"@radix-ui/react-use-size" "1.1.1"
|
||||||
"@radix-ui/rect" "1.1.0"
|
"@radix-ui/rect" "1.1.1"
|
||||||
|
|
||||||
"@radix-ui/react-portal@1.1.2":
|
"@radix-ui/react-portal@1.1.9":
|
||||||
version "1.1.2"
|
version "1.1.9"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-portal/-/react-portal-1.1.2.tgz#51eb46dae7505074b306ebcb985bf65cc547d74e"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-portal/-/react-portal-1.1.9.tgz#14c3649fe48ec474ac51ed9f2b9f5da4d91c4472"
|
||||||
integrity sha512-WeDYLGPxJb/5EGBoedyJbT0MpoULmwnIPMJMSldkuiMsBAv7N1cRdsTWZWht9vpPOiN3qyiGAtbK2is47/uMFg==
|
integrity sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
"@radix-ui/react-use-layout-effect" "1.1.0"
|
"@radix-ui/react-use-layout-effect" "1.1.1"
|
||||||
|
|
||||||
"@radix-ui/react-presence@1.1.1":
|
"@radix-ui/react-presence@1.1.4":
|
||||||
version "1.1.1"
|
version "1.1.4"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.1.1.tgz#98aba423dba5e0c687a782c0669dcd99de17f9b1"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.1.4.tgz#253ac0ad4946c5b4a9c66878335f5cf07c967ced"
|
||||||
integrity sha512-IeFXVi4YS1K0wVZzXNrbaaUvIJ3qdY+/Ih4eHFhWA9SwGR9UDX7Ck8abvL57C4cv3wwMvUE0OG69Qc3NCcTe/A==
|
integrity sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
"@radix-ui/react-use-layout-effect" "1.1.0"
|
"@radix-ui/react-use-layout-effect" "1.1.1"
|
||||||
|
|
||||||
"@radix-ui/react-primitive@2.0.0":
|
"@radix-ui/react-primitive@2.1.3":
|
||||||
version "2.0.0"
|
version "2.1.3"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-2.0.0.tgz#fe05715faa9203a223ccc0be15dc44b9f9822884"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz#db9b8bcff49e01be510ad79893fb0e4cda50f1bc"
|
||||||
integrity sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==
|
integrity sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-slot" "1.1.0"
|
"@radix-ui/react-slot" "1.2.3"
|
||||||
|
|
||||||
"@radix-ui/react-progress@^1.1.0":
|
"@radix-ui/react-progress@^1.1.0":
|
||||||
version "1.1.0"
|
version "1.1.7"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-progress/-/react-progress-1.1.0.tgz#28c267885ec154fc557ec7a66cb462787312f7e2"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-progress/-/react-progress-1.1.7.tgz#a2b76398b3f24b6bd5e37f112b1e30fbedd4f38e"
|
||||||
integrity sha512-aSzvnYpP725CROcxAOEBVZZSIQVQdHgBr2QQFKySsaD14u8dNT0batuXI+AAGDdAHfXH8rbnHmjYFqVJ21KkRg==
|
integrity sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-context" "1.1.0"
|
"@radix-ui/react-context" "1.1.2"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
|
|
||||||
"@radix-ui/react-roving-focus@1.1.0":
|
"@radix-ui/react-roving-focus@1.1.10":
|
||||||
version "1.1.0"
|
version "1.1.10"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.0.tgz#b30c59daf7e714c748805bfe11c76f96caaac35e"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.10.tgz#46030496d2a490c4979d29a7e1252465e51e4b0b"
|
||||||
integrity sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==
|
integrity sha512-dT9aOXUen9JSsxnMPv/0VqySQf5eDQ6LCk5Sw28kamz8wSOW2bJdlX2Bg5VUIIcV+6XlHpWTIuTPCf/UNIyq8Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/primitive" "1.1.0"
|
"@radix-ui/primitive" "1.1.2"
|
||||||
"@radix-ui/react-collection" "1.1.0"
|
"@radix-ui/react-collection" "1.1.7"
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
"@radix-ui/react-context" "1.1.0"
|
"@radix-ui/react-context" "1.1.2"
|
||||||
"@radix-ui/react-direction" "1.1.0"
|
"@radix-ui/react-direction" "1.1.1"
|
||||||
"@radix-ui/react-id" "1.1.0"
|
"@radix-ui/react-id" "1.1.1"
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
"@radix-ui/react-use-callback-ref" "1.1.0"
|
"@radix-ui/react-use-callback-ref" "1.1.1"
|
||||||
"@radix-ui/react-use-controllable-state" "1.1.0"
|
"@radix-ui/react-use-controllable-state" "1.2.2"
|
||||||
|
|
||||||
"@radix-ui/react-separator@^1.1.0":
|
"@radix-ui/react-separator@^1.1.0":
|
||||||
version "1.1.0"
|
version "1.1.7"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-separator/-/react-separator-1.1.0.tgz#ee0f4d86003b0e3ea7bc6ccab01ea0adee32663e"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-separator/-/react-separator-1.1.7.tgz#a18bd7fd07c10fda1bba14f2a3032e7b1a2b3470"
|
||||||
integrity sha512-3uBAs+egzvJBDZAzvb/n4NxxOYpnspmWxO2u5NbZ8Y6FM/NdrGSF9bop3Cf6F6C71z1rTSn8KV0Fo2ZVd79lGA==
|
integrity sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-primitive" "2.0.0"
|
"@radix-ui/react-primitive" "2.1.3"
|
||||||
|
|
||||||
"@radix-ui/react-slot@1.1.0", "@radix-ui/react-slot@^1.1.0":
|
"@radix-ui/react-slot@1.2.3", "@radix-ui/react-slot@^1.1.0":
|
||||||
version "1.1.0"
|
version "1.2.3"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.1.0.tgz#7c5e48c36ef5496d97b08f1357bb26ed7c714b84"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.2.3.tgz#502d6e354fc847d4169c3bc5f189de777f68cfe1"
|
||||||
integrity sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==
|
integrity sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-compose-refs" "1.1.0"
|
"@radix-ui/react-compose-refs" "1.1.2"
|
||||||
|
|
||||||
"@radix-ui/react-use-callback-ref@1.1.0":
|
"@radix-ui/react-use-callback-ref@1.1.1":
|
||||||
version "1.1.0"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.0.tgz#bce938ca413675bc937944b0d01ef6f4a6dc5bf1"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz#62a4dba8b3255fdc5cc7787faeac1c6e4cc58d40"
|
||||||
integrity sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==
|
integrity sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==
|
||||||
|
|
||||||
"@radix-ui/react-use-controllable-state@1.1.0":
|
"@radix-ui/react-use-controllable-state@1.2.2":
|
||||||
version "1.1.0"
|
version "1.2.2"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.1.0.tgz#1321446857bb786917df54c0d4d084877aab04b0"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.2.2.tgz#905793405de57d61a439f4afebbb17d0645f3190"
|
||||||
integrity sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==
|
integrity sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-use-callback-ref" "1.1.0"
|
"@radix-ui/react-use-effect-event" "0.0.2"
|
||||||
|
"@radix-ui/react-use-layout-effect" "1.1.1"
|
||||||
|
|
||||||
"@radix-ui/react-use-escape-keydown@1.1.0":
|
"@radix-ui/react-use-effect-event@0.0.2":
|
||||||
version "1.1.0"
|
version "0.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.0.tgz#31a5b87c3b726504b74e05dac1edce7437b98754"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-effect-event/-/react-use-effect-event-0.0.2.tgz#090cf30d00a4c7632a15548512e9152217593907"
|
||||||
integrity sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==
|
integrity sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-use-callback-ref" "1.1.0"
|
"@radix-ui/react-use-layout-effect" "1.1.1"
|
||||||
|
|
||||||
"@radix-ui/react-use-layout-effect@1.1.0":
|
"@radix-ui/react-use-escape-keydown@1.1.1":
|
||||||
version "1.1.0"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.0.tgz#3c2c8ce04827b26a39e442ff4888d9212268bd27"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz#b3fed9bbea366a118f40427ac40500aa1423cc29"
|
||||||
integrity sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==
|
integrity sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==
|
||||||
|
|
||||||
"@radix-ui/react-use-rect@1.1.0":
|
|
||||||
version "1.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-rect/-/react-use-rect-1.1.0.tgz#13b25b913bd3e3987cc9b073a1a164bb1cf47b88"
|
|
||||||
integrity sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==
|
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/rect" "1.1.0"
|
"@radix-ui/react-use-callback-ref" "1.1.1"
|
||||||
|
|
||||||
"@radix-ui/react-use-size@1.1.0":
|
"@radix-ui/react-use-layout-effect@1.1.1":
|
||||||
version "1.1.0"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-size/-/react-use-size-1.1.0.tgz#b4dba7fbd3882ee09e8d2a44a3eed3a7e555246b"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz#0c4230a9eed49d4589c967e2d9c0d9d60a23971e"
|
||||||
integrity sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==
|
integrity sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==
|
||||||
|
|
||||||
|
"@radix-ui/react-use-rect@1.1.1":
|
||||||
|
version "1.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-rect/-/react-use-rect-1.1.1.tgz#01443ca8ed071d33023c1113e5173b5ed8769152"
|
||||||
|
integrity sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-use-layout-effect" "1.1.0"
|
"@radix-ui/rect" "1.1.1"
|
||||||
|
|
||||||
"@radix-ui/rect@1.1.0":
|
"@radix-ui/react-use-size@1.1.1":
|
||||||
version "1.1.0"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/@radix-ui/rect/-/rect-1.1.0.tgz#f817d1d3265ac5415dadc67edab30ae196696438"
|
resolved "https://registry.yarnpkg.com/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz#6de276ffbc389a537ffe4316f5b0f24129405b37"
|
||||||
integrity sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==
|
integrity sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==
|
||||||
|
dependencies:
|
||||||
|
"@radix-ui/react-use-layout-effect" "1.1.1"
|
||||||
|
|
||||||
|
"@radix-ui/rect@1.1.1":
|
||||||
|
version "1.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@radix-ui/rect/-/rect-1.1.1.tgz#78244efe12930c56fd255d7923865857c41ac8cb"
|
||||||
|
integrity sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==
|
||||||
|
|
||||||
"@rollup/plugin-inject@^5.0.5":
|
"@rollup/plugin-inject@^5.0.5":
|
||||||
version "5.0.5"
|
version "5.0.5"
|
||||||
@ -4694,10 +4697,11 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@vector-im/compound-design-tokens/-/compound-design-tokens-6.0.0.tgz#a07975ee46307fc31c2ec64a216b6be2b3b27fb3"
|
resolved "https://registry.yarnpkg.com/@vector-im/compound-design-tokens/-/compound-design-tokens-6.0.0.tgz#a07975ee46307fc31c2ec64a216b6be2b3b27fb3"
|
||||||
integrity sha512-Jk0NsLPCvdcuZi6an1cfyf4MDcIuoPlvja5ZWgJcORyGQZV1eLMHPYKShq9gj+EYk/BXZoPvQ1d6/T+/LSCNPA==
|
integrity sha512-Jk0NsLPCvdcuZi6an1cfyf4MDcIuoPlvja5ZWgJcORyGQZV1eLMHPYKShq9gj+EYk/BXZoPvQ1d6/T+/LSCNPA==
|
||||||
|
|
||||||
|
|
||||||
"@vector-im/compound-web@^8.1.2":
|
"@vector-im/compound-web@^8.1.2":
|
||||||
version "8.1.2"
|
version "8.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/@vector-im/compound-web/-/compound-web-8.1.2.tgz#a8af8681b442e63e07b8f25204528b1b022c1db2"
|
resolved "https://registry.yarnpkg.com/@vector-im/compound-web/-/compound-web-8.2.1.tgz#e16ce566c836e6c0fa3318128e57fda0a4542514"
|
||||||
integrity sha512-F9UyQBwRThwju+STz84iJy6JGWQ7UIxaprstfsGpiyS/3ror4E6m/mfwbrNjT0l3fhrhk6sRiTAMlcBRzYgdMQ==
|
integrity sha512-mqIMbBtnY3RvpCOVBhE8YouSGwU/efllJR3q4Ds1/Z/rS0/dh3Mok2frG4zRg8wdDa91VI9XHBEjeugUrpRbzw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@floating-ui/react" "^0.27.0"
|
"@floating-ui/react" "^0.27.0"
|
||||||
"@radix-ui/react-context-menu" "^2.2.1"
|
"@radix-ui/react-context-menu" "^2.2.1"
|
||||||
@ -4711,7 +4715,6 @@
|
|||||||
|
|
||||||
"@vector-im/matrix-wysiwyg-wasm@link:../../Library/Caches/Yarn/v6/npm-@vector-im-matrix-wysiwyg-2.39.0-a6238e517f23a2f3025d9c65445914771c63b163-integrity/node_modules/bindings/wysiwyg-wasm":
|
"@vector-im/matrix-wysiwyg-wasm@link:../../Library/Caches/Yarn/v6/npm-@vector-im-matrix-wysiwyg-2.39.0-a6238e517f23a2f3025d9c65445914771c63b163-integrity/node_modules/bindings/wysiwyg-wasm":
|
||||||
version "0.0.0"
|
version "0.0.0"
|
||||||
uid ""
|
|
||||||
|
|
||||||
"@vector-im/matrix-wysiwyg@2.39.0":
|
"@vector-im/matrix-wysiwyg@2.39.0":
|
||||||
version "2.39.0"
|
version "2.39.0"
|
||||||
@ -5170,10 +5173,10 @@ argparse@^2.0.1:
|
|||||||
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
|
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
|
||||||
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
|
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
|
||||||
|
|
||||||
aria-hidden@^1.1.1:
|
aria-hidden@^1.2.4:
|
||||||
version "1.2.4"
|
version "1.2.6"
|
||||||
resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.4.tgz#b78e383fdbc04d05762c78b4a25a501e736c4522"
|
resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.6.tgz#73051c9b088114c795b1ea414e9c0fff874ffc1a"
|
||||||
integrity sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==
|
integrity sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==
|
||||||
dependencies:
|
dependencies:
|
||||||
tslib "^2.0.0"
|
tslib "^2.0.0"
|
||||||
|
|
||||||
@ -9346,13 +9349,6 @@ interpret@^3.1.1:
|
|||||||
resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4"
|
resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4"
|
||||||
integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==
|
integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==
|
||||||
|
|
||||||
invariant@^2.2.4:
|
|
||||||
version "2.2.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
|
|
||||||
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
|
|
||||||
dependencies:
|
|
||||||
loose-envify "^1.0.0"
|
|
||||||
|
|
||||||
ip-regex@^4.0.0:
|
ip-regex@^4.0.0:
|
||||||
version "4.3.0"
|
version "4.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5"
|
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5"
|
||||||
@ -10865,7 +10861,7 @@ long@^5.2.0:
|
|||||||
resolved "https://registry.yarnpkg.com/long/-/long-5.2.3.tgz#a3ba97f3877cf1d778eccbcb048525ebb77499e1"
|
resolved "https://registry.yarnpkg.com/long/-/long-5.2.3.tgz#a3ba97f3877cf1d778eccbcb048525ebb77499e1"
|
||||||
integrity sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==
|
integrity sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==
|
||||||
|
|
||||||
loose-envify@^1.0.0, loose-envify@^1.4.0:
|
loose-envify@^1.4.0:
|
||||||
version "1.4.0"
|
version "1.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
|
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
|
||||||
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
|
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
|
||||||
@ -13197,37 +13193,36 @@ react-redux@^7.2.0:
|
|||||||
prop-types "^15.7.2"
|
prop-types "^15.7.2"
|
||||||
react-is "^17.0.2"
|
react-is "^17.0.2"
|
||||||
|
|
||||||
react-remove-scroll-bar@^2.3.6:
|
react-remove-scroll-bar@^2.3.7:
|
||||||
version "2.3.6"
|
version "2.3.8"
|
||||||
resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz#3e585e9d163be84a010180b18721e851ac81a29c"
|
resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz#99c20f908ee467b385b68a3469b4a3e750012223"
|
||||||
integrity sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==
|
integrity sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
react-style-singleton "^2.2.1"
|
react-style-singleton "^2.2.2"
|
||||||
tslib "^2.0.0"
|
tslib "^2.0.0"
|
||||||
|
|
||||||
react-remove-scroll@2.6.0:
|
react-remove-scroll@^2.6.3:
|
||||||
version "2.6.0"
|
version "2.7.1"
|
||||||
resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.6.0.tgz#fb03a0845d7768a4f1519a99fdb84983b793dc07"
|
resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.7.1.tgz#d2101d414f6d81d7d3bf033f3c1cb4785789f753"
|
||||||
integrity sha512-I2U4JVEsQenxDAKaVa3VZ/JeJZe0/2DxPWL8Tj8yLKctQJQiZM52pn/GWFpSp8dftjM3pSAHVJZscAnC/y+ySQ==
|
integrity sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==
|
||||||
dependencies:
|
dependencies:
|
||||||
react-remove-scroll-bar "^2.3.6"
|
react-remove-scroll-bar "^2.3.7"
|
||||||
react-style-singleton "^2.2.1"
|
react-style-singleton "^2.2.3"
|
||||||
tslib "^2.1.0"
|
tslib "^2.1.0"
|
||||||
use-callback-ref "^1.3.0"
|
use-callback-ref "^1.3.3"
|
||||||
use-sidecar "^1.1.2"
|
use-sidecar "^1.1.3"
|
||||||
|
|
||||||
react-string-replace@^1.1.1:
|
react-string-replace@^1.1.1:
|
||||||
version "1.1.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/react-string-replace/-/react-string-replace-1.1.1.tgz#8413a598c60e397fe77df3464f2889f00ba25989"
|
resolved "https://registry.yarnpkg.com/react-string-replace/-/react-string-replace-1.1.1.tgz#8413a598c60e397fe77df3464f2889f00ba25989"
|
||||||
integrity sha512-26TUbLzLfHQ5jO5N7y3Mx88eeKo0Ml0UjCQuX4BMfOd/JX+enQqlKpL1CZnmjeBRvQE8TR+ds9j1rqx9CxhKHQ==
|
integrity sha512-26TUbLzLfHQ5jO5N7y3Mx88eeKo0Ml0UjCQuX4BMfOd/JX+enQqlKpL1CZnmjeBRvQE8TR+ds9j1rqx9CxhKHQ==
|
||||||
|
|
||||||
react-style-singleton@^2.2.1:
|
react-style-singleton@^2.2.2, react-style-singleton@^2.2.3:
|
||||||
version "2.2.1"
|
version "2.2.3"
|
||||||
resolved "https://registry.yarnpkg.com/react-style-singleton/-/react-style-singleton-2.2.1.tgz#f99e420492b2d8f34d38308ff660b60d0b1205b4"
|
resolved "https://registry.yarnpkg.com/react-style-singleton/-/react-style-singleton-2.2.3.tgz#4265608be69a4d70cfe3047f2c6c88b2c3ace388"
|
||||||
integrity sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==
|
integrity sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
get-nonce "^1.0.0"
|
get-nonce "^1.0.0"
|
||||||
invariant "^2.2.4"
|
|
||||||
tslib "^2.0.0"
|
tslib "^2.0.0"
|
||||||
|
|
||||||
react-transition-group@^4.4.1:
|
react-transition-group@^4.4.1:
|
||||||
@ -15280,13 +15275,6 @@ url@^0.11.4:
|
|||||||
punycode "^1.4.1"
|
punycode "^1.4.1"
|
||||||
qs "^6.12.3"
|
qs "^6.12.3"
|
||||||
|
|
||||||
use-callback-ref@^1.3.0:
|
|
||||||
version "1.3.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.2.tgz#6134c7f6ff76e2be0b56c809b17a650c942b1693"
|
|
||||||
integrity sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==
|
|
||||||
dependencies:
|
|
||||||
tslib "^2.0.0"
|
|
||||||
|
|
||||||
use-callback-ref@^1.3.3:
|
use-callback-ref@^1.3.3:
|
||||||
version "1.3.3"
|
version "1.3.3"
|
||||||
resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.3.tgz#98d9fab067075841c5b2c6852090d5d0feabe2bf"
|
resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.3.tgz#98d9fab067075841c5b2c6852090d5d0feabe2bf"
|
||||||
@ -15299,7 +15287,7 @@ use-memo-one@^1.1.1:
|
|||||||
resolved "https://registry.yarnpkg.com/use-memo-one/-/use-memo-one-1.1.3.tgz#2fd2e43a2169eabc7496960ace8c79efef975e99"
|
resolved "https://registry.yarnpkg.com/use-memo-one/-/use-memo-one-1.1.3.tgz#2fd2e43a2169eabc7496960ace8c79efef975e99"
|
||||||
integrity sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==
|
integrity sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==
|
||||||
|
|
||||||
use-sidecar@^1.1.2, use-sidecar@^1.1.3:
|
use-sidecar@^1.1.3:
|
||||||
version "1.1.3"
|
version "1.1.3"
|
||||||
resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.1.3.tgz#10e7fd897d130b896e2c546c63a5e8233d00efdb"
|
resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.1.3.tgz#10e7fd897d130b896e2c546c63a5e8233d00efdb"
|
||||||
integrity sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==
|
integrity sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==
|
||||||
@ -15386,9 +15374,9 @@ vary@^1.1.2, vary@~1.1.2:
|
|||||||
integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
|
integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
|
||||||
|
|
||||||
vaul@^1.0.0:
|
vaul@^1.0.0:
|
||||||
version "1.1.0"
|
version "1.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/vaul/-/vaul-1.1.0.tgz#7da4bc965e0b184ada632f1208096b0f5575d920"
|
resolved "https://registry.yarnpkg.com/vaul/-/vaul-1.1.2.tgz#c959f8b9dc2ed4f7d99366caee433fbef91f5ba9"
|
||||||
integrity sha512-YhO/bikcauk48hzhMhvIvT+U87cuCbNbKk9fF4Ou5UkI9t2KkBMernmdP37pCzF15hrv55fcny1YhexK8h6GVQ==
|
integrity sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@radix-ui/react-dialog" "^1.1.1"
|
"@radix-ui/react-dialog" "^1.1.1"
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user