@dxos/react-ui 0.1.31-next.ea8f0bc → 0.1.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/browser/index.mjs +28 -26
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/types/src/composites/Shell/Shell.stories.d.ts.map +1 -1
- package/dist/types/src/panels/DevicesPanel/DevicesPanel.d.ts.map +1 -1
- package/dist/types/src/panels/IdentityPanel/IdentityPanel.d.ts.map +1 -1
- package/package.json +19 -19
- package/src/components/InvitationList/InvitationListItem.tsx +1 -1
- package/src/composites/Shell/Shell.stories.tsx +34 -17
- package/src/panels/DevicesPanel/DevicesPanel.tsx +17 -5
- package/src/panels/IdentityPanel/IdentityPanel.tsx +15 -13
- package/src/panels/JoinPanel/JoinHeading.tsx +1 -1
- package/src/panels/JoinPanel/view-states/AdditionMethodSelector.tsx +1 -1
- package/src/panels/JoinPanel/view-states/IdentityAdded.tsx +1 -1
- package/src/panels/JoinPanel/view-states/IdentityInput.tsx +1 -1
- package/src/panels/JoinPanel/view-states/IdentitySelector.tsx +1 -1
- package/src/panels/JoinPanel/view-states/InvitationAccepted.tsx +1 -1
- package/src/panels/JoinPanel/view-states/InvitationAuthenticator.tsx +1 -1
- package/src/panels/JoinPanel/view-states/InvitationInput.tsx +1 -1
- package/src/panels/JoinPanel/view-states/InvitationRescuer.tsx +1 -1
- package/src/panels/JoinPanel/view-states/ViewState.tsx +1 -1
- package/src/panels/SpacePanel/SpacePanel.tsx +1 -1
- package/src/stories/Invitations.stories.tsx +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2023 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
import { CaretLeft, CaretRight, Check } from 'phosphor-react';
|
|
5
|
+
import { CaretLeft, CaretRight, Check } from '@phosphor-icons/react';
|
|
6
6
|
import React, { cloneElement } from 'react';
|
|
7
7
|
|
|
8
8
|
import type { Identity } from '@dxos/client';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2023 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
import { CaretLeft, CaretRight } from 'phosphor-react';
|
|
5
|
+
import { CaretLeft, CaretRight } from '@phosphor-icons/react';
|
|
6
6
|
import React, { ComponentPropsWithoutRef, useState } from 'react';
|
|
7
7
|
|
|
8
8
|
import { useClient } from '@dxos/react-client';
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
// Copyright 2023 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
+
import { CaretLeft, CaretRight, UserPlus } from '@phosphor-icons/react';
|
|
5
6
|
import * as RadioGroup from '@radix-ui/react-radio-group';
|
|
6
|
-
import { CaretLeft, CaretRight, UserPlus } from 'phosphor-react';
|
|
7
7
|
import React, { useCallback, useState } from 'react';
|
|
8
8
|
|
|
9
9
|
import type { Identity } from '@dxos/client';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2023 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
import { CaretLeft, CaretRight } from 'phosphor-react';
|
|
5
|
+
import { CaretLeft, CaretRight } from '@phosphor-icons/react';
|
|
6
6
|
import React, { ChangeEvent, ComponentProps, ComponentPropsWithoutRef, useCallback, useState } from 'react';
|
|
7
7
|
|
|
8
8
|
import { AuthenticatingInvitationObservable } from '@dxos/client';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2023 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
import { CaretLeft, CaretRight } from 'phosphor-react';
|
|
5
|
+
import { CaretLeft, CaretRight } from '@phosphor-icons/react';
|
|
6
6
|
import React, { ComponentPropsWithoutRef, useState } from 'react';
|
|
7
7
|
|
|
8
8
|
import { InvitationEncoder } from '@dxos/client';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2023 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
import { ArrowsClockwise, CaretLeft, CaretRight } from 'phosphor-react';
|
|
5
|
+
import { ArrowsClockwise, CaretLeft, CaretRight } from '@phosphor-icons/react';
|
|
6
6
|
import React from 'react';
|
|
7
7
|
|
|
8
8
|
import { AuthenticatingInvitationObservable, Invitation } from '@dxos/client';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright 2023 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
import { CheckCircle, HourglassSimple, X } from 'phosphor-react';
|
|
5
|
+
import { CheckCircle, HourglassSimple, X } from '@phosphor-icons/react';
|
|
6
6
|
import React, { ComponentProps, ComponentPropsWithoutRef, ReactNode, useMemo } from 'react';
|
|
7
7
|
|
|
8
8
|
import type { AuthenticatingInvitationObservable, Identity } from '@dxos/client';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import '@dxosTheme';
|
|
6
6
|
import { faker } from '@faker-js/faker';
|
|
7
|
-
import { Intersect, Laptop, Planet, Plus, PlusCircle, QrCode } from 'phosphor-react';
|
|
7
|
+
import { Intersect, Laptop, Planet, Plus, PlusCircle, QrCode } from '@phosphor-icons/react';
|
|
8
8
|
import React, { useMemo, useState } from 'react';
|
|
9
9
|
|
|
10
10
|
import { Space, SpaceProxy, useClient, useIdentity, useSpaces } from '@dxos/react-client';
|