Skip to content

Commit

Permalink
fix: remove wallet modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Shaw committed Oct 17, 2022
1 parent d705187 commit 17ae732
Show file tree
Hide file tree
Showing 104 changed files with 125 additions and 23,848 deletions.
4 changes: 0 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
{
"packages/react-uploader": "2.1.0",
"packages/react-wallet": "1.0.2",
"packages/uploader-core": "2.0.0",
"packages/wallet-core": "1.2.2",
"packages/react-uploads-list": "1.1.0",
"packages/uploads-list-core": "1.0.2",
"packages/vue-uploader": "2.1.0",
"packages/vue-wallet": "1.0.1",
"packages/solid-uploader": "2.1.0",
"packages/solid-uploads-list": "1.2.0",
"packages/solid-wallet": "1.0.0",
"packages/vue-uploads-list": "1.1.0",
"packages/keyring-core": "1.0.1",
"packages/react-keyring": "1.0.0",
Expand Down
4 changes: 0 additions & 4 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,21 @@
* [`@w3ui/react-keyring`](./react-keyring.md)
* [`@w3ui/react-uploader`](./react-uploader.md)
* [`@w3ui/react-uploads-list`](./react-uploads-list.md)
* [`@w3ui/react-wallet`](./react-wallet.md)

## Solid

* [`@w3ui/solid-keyring`](./solid-keyring.md)
* [`@w3ui/solid-uploader`](./solid-uploader.md)
* [`@w3ui/solid-uploads-list`](./solid-uploads-list.md)
* [`@w3ui/solid-wallet`](./solid-wallet.md)

## Vue

* [`@w3ui/vue-keyring`](./vue-keyring.md)
* [`@w3ui/vue-uploader`](./vue-uploader.md)
* [`@w3ui/vue-uploads-list`](./vue-uploads-list.md)
* [`@w3ui/vue-wallet`](./vue-wallet.md)

## Core

* [`@w3ui/keyring-core`](./keyring-core.md)
* [`@w3ui/uploader-core`](./uploader-core.md)
* [`@w3ui/uploads-list-core`](./uploads-list-core.md)
* [`@w3ui/wallet-core`](./wallet-core.md)
2 changes: 1 addition & 1 deletion docs/react-uploader.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import * as ReactUploader from '@w3ui/react-uploader'

### `UploaderProvider`

Provider for an `Uploader` which allows uploads to the service. Note that this provider uses [`useAuth`](./react-wallet#useauth) and provides an `uploader` only when a current identity is loaded.
Provider for an `Uploader` which allows uploads to the service. Note that this provider uses [`useAuth`](./react-keyring#useauth) and provides an `uploader` only when a current identity is loaded.

Example:

Expand Down
2 changes: 1 addition & 1 deletion docs/react-uploads-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import * as ReactUploadsList from '@w3ui/react-uploads-list'

### `UploadsListProvider`

Provider for a list of items uploaded by the current identity. Note that this provider uses [`useAuth`](./react-wallet#useauth) to obtain the current identity.
Provider for a list of items uploaded by the current identity. Note that this provider uses [`useAuth`](./react-keyring#useauth) to obtain the current identity.

Example:

Expand Down
80 changes: 0 additions & 80 deletions docs/react-wallet.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/solid-uploader.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import * as SolidUploader from '@w3ui/solid-uploader'

### `UploaderProvider`

Provider for an `Uploader` which allows uploads to the service. Note that this provider uses [`useAuth`](./solid-wallet#useauth) and provides an `uploader` that allows uploads only when a current identity is loaded.
Provider for an `Uploader` which allows uploads to the service. Note that this provider uses [`useAuth`](./solid-keyring#useauth) and provides an `uploader` that allows uploads only when a current identity is loaded.

Example:

Expand Down
2 changes: 1 addition & 1 deletion docs/solid-uploads-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Create a solid resource configured to fetch data from the service. Please see th
Example:

```jsx
import { AuthProvider } from '@w3ui/solid-wallet'
import { AuthProvider } from '@w3ui/solid-keyring'
import { createUploadsListResource } from '@w3ui/solid-uploads-list'
function App () {
Expand Down
87 changes: 0 additions & 87 deletions docs/solid-wallet.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/uploader-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@ interface CarChunkMeta {
uploadCarBytes (principal: SigningPrincipal, bytes: Uint8Array): Promise<void>
```

Upload CAR bytes to the service. The principal can be obtained from [`createIdentity`](./wallet-core#createidentity).
Upload CAR bytes to the service. The principal can be obtained from [`createIdentity`](./keyring-core#createidentity).
2 changes: 1 addition & 1 deletion docs/vue-keyring.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ These keys may be used in child components e.g.

```vue
<script>
import { AuthProviderInjectionKey } from '@w3ui/vue-wallet'
import { AuthProviderInjectionKey } from '@w3ui/vue-keyring'
export default {
inject: {
Expand Down
4 changes: 2 additions & 2 deletions docs/vue-uploader.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ import * as VueUploader from '@w3ui/vue-uploader'

### `UploaderProvider`

[Provider](https://vuejs.org/guide/components/provide-inject.html) for an `Uploader` which allows uploads to the service. Note that _this_ provider injects values from [`AuthProvider`](./vue-wallet#authprovider).
[Provider](https://vuejs.org/guide/components/provide-inject.html) for an `Uploader` which allows uploads to the service. Note that _this_ provider injects values from [`AuthProvider`](./vue-keyring#authprovider).

Example:

```vue
<script>
import { AuthProvider } from '@w3ui/vue-wallet'
import { AuthProvider } from '@w3ui/vue-keyring'
import { UploaderProvider } from '@w3ui/vue-uploader'
export default {
Expand Down
4 changes: 2 additions & 2 deletions docs/vue-uploads-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ import * as VueUploadsList from '@w3ui/vue-uploads-list'

### `UploadsListProvider`

[Provider](https://vuejs.org/guide/components/provide-inject.html) for a list of items uploaded by the current identity. Note that _this_ provider injects values from [`AuthProvider`](./vue-wallet#authprovider).
[Provider](https://vuejs.org/guide/components/provide-inject.html) for a list of items uploaded by the current identity. Note that _this_ provider injects values from [`AuthProvider`](./vue-keyring#authprovider).

Example:

```vue
<script>
import { UploadsListProvider } from '@w3ui/vue-wallet'
import { UploadsListProvider } from '@w3ui/vue-keyring'
export default {
components: { UploadsListProvider }
Expand Down
Loading

0 comments on commit 17ae732

Please sign in to comment.