Skip to content

Commit 74501d8

Browse files
committed
docs: rename
1 parent bf02841 commit 74501d8

File tree

4 files changed

+29
-29
lines changed

4 files changed

+29
-29
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 nuxtbase
3+
Copyright (c) 2024 supa-kit
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
[![Minzip Package][bundlePhobiaBadge]][bundlePhobiaUrl]
55
[![NPM Download][npmDtBadge]][npmDtUrl]
66

7-
[npmBadge]: https://img.shields.io/npm/v/@nuxtbase/auth-ui-vue.svg?maxAge=2592000
8-
[npmUrl]: https://www.npmjs.com/package/@nuxtbase/auth-ui-vue
9-
[npmDtBadge]: https://img.shields.io/npm/dt/@nuxtbase/auth-ui-vue.svg
10-
[npmDtUrl]: https://www.npmjs.com/package/@nuxtbase/auth-ui-vue
11-
[bundlePhobiaBadge]: https://img.shields.io/bundlephobia/minzip/@nuxtbase/auth-ui-vue
12-
[bundlePhobiaUrl]: https://bundlephobia.com/package/@nuxtbase/auth-ui-vue@latest
7+
[npmBadge]: https://img.shields.io/npm/v/@supa-kit/auth-ui-vue.svg?maxAge=2592000
8+
[npmUrl]: https://www.npmjs.com/package/@supa-kit/auth-ui-vue
9+
[npmDtBadge]: https://img.shields.io/npm/dt/@supa-kit/auth-ui-vue.svg
10+
[npmDtUrl]: https://www.npmjs.com/package/@supa-kit/auth-ui-vue
11+
[bundlePhobiaBadge]: https://img.shields.io/bundlephobia/minzip/@supa-kit/auth-ui-vue
12+
[bundlePhobiaUrl]: https://bundlephobia.com/package/@supa-kit/auth-ui-vue@latest
1313

1414
> Pre-built auth widgets to get started in minutes.
1515
@@ -58,9 +58,9 @@ Customizable authentication UI component with custom themes and extensible style
5858
To start using the library in Vue 3, install these in your project:
5959

6060
```bash
61-
pnpm install @supabase/supabase-js @supabase/auth-ui-shared @nuxtbase/auth-ui-vue -D
61+
pnpm install @supabase/supabase-js @supabase/auth-ui-shared @supa-kit/auth-ui-vue -D
6262
or
63-
yarn add @supabase/supabase-js @supabase/auth-ui-shared @nuxtbase/auth-ui-vue -D
63+
yarn add @supabase/supabase-js @supabase/auth-ui-shared @supa-kit/auth-ui-vue -D
6464
```
6565

6666
```html
@@ -81,7 +81,7 @@ yarn add @supabase/supabase-js @supabase/auth-ui-shared @nuxtbase/auth-ui-vue -D
8181
import { ThemeSupa } from '@supabase/auth-ui-shared'
8282
import { createClient } from '@supabase/supabase-js'
8383
84-
import { Auth } from '@nuxtbase/auth-ui-vue'
84+
import { Auth } from '@supa-kit/auth-ui-vue'
8585
8686
const supabaseClient = createClient(
8787
'<INSERT PROJECT URL>',
@@ -101,9 +101,9 @@ Here's a example work with `@nuxtjs/supabase`:
101101
First install these in your project:
102102

103103
```bash
104-
pnpm install @nuxtjs/supabase @supabase/auth-ui-shared @nuxtbase/auth-ui-vue -D
104+
pnpm install @nuxtjs/supabase @supabase/auth-ui-shared @supa-kit/auth-ui-vue -D
105105
or
106-
yarn add @nuxtjs/supabase @supabase/auth-ui-shared @nuxtbase/auth-ui-vue -D
106+
yarn add @nuxtjs/supabase @supabase/auth-ui-shared @supa-kit/auth-ui-vue -D
107107
```
108108

109109
Add `@nuxtjs/supabase` to the modules section of `nuxt.config.ts`:
@@ -140,7 +140,7 @@ Now, you can access the [supabase client](https://supabase.com/docs/reference/ja
140140
<script setup lang="ts">
141141
// Import predefined theme
142142
import { ThemeSupa } from '@supabase/auth-ui-shared'
143-
import { Auth } from '@nuxtbase/auth-ui-vue'
143+
import { Auth } from '@supa-kit/auth-ui-vue'
144144
145145
const supabaseClient = useSupabaseClient()
146146
</script>
@@ -171,7 +171,7 @@ The Auth component also supports login with [official social providers](https://
171171
import { ThemeSupa } from '@supabase/auth-ui-shared'
172172
import { createClient } from '@supabase/supabase-js'
173173
174-
import { Auth } from '@nuxtbase/auth-ui-vue'
174+
import { Auth } from '@supa-kit/auth-ui-vue'
175175
176176
const supabaseClient = createClient(
177177
'<INSERT PROJECT URL>',
@@ -282,7 +282,7 @@ Auth UI comes with several themes to customize the appearance. Each predefined t
282282
import { ThemeSupa } from '@supabase/auth-ui-shared'
283283
import { createClient } from '@supabase/supabase-js'
284284
285-
import { Auth } from '@nuxtbase/auth-ui-vue'
285+
import { Auth } from '@supa-kit/auth-ui-vue'
286286
287287
const supabaseClient = createClient(
288288
'<INSERT PROJECT URL>',
@@ -317,7 +317,7 @@ Auth UI comes with two theme variations: `default` and `dark`. You can switch be
317317
import { ThemeSupa } from '@supabase/auth-ui-shared'
318318
import { createClient } from '@supabase/supabase-js'
319319
320-
import { Auth } from '@nuxtbase/auth-ui-vue'
320+
import { Auth } from '@supa-kit/auth-ui-vue'
321321
322322
const supabaseClient = createClient(
323323
'<INSERT PROJECT URL>',
@@ -358,7 +358,7 @@ Auth UI themes can be overridden using variable tokens. See the [list of variabl
358358
import { ThemeSupa } from '@supabase/auth-ui-shared'
359359
import { createClient } from '@supabase/supabase-js'
360360
361-
import { Auth } from '@nuxtbase/auth-ui-vue'
361+
import { Auth } from '@supa-kit/auth-ui-vue'
362362
363363
const supabaseClient = createClient(
364364
'<INSERT PROJECT URL>',
@@ -390,7 +390,7 @@ See the list of [tokens within a theme](https://github.com/supabase/auth-ui/blob
390390

391391
<script setup lang="ts">
392392
import { createClient } from '@supabase/supabase-js'
393-
import { Auth } from '@nuxtbase/auth-ui-vue'
393+
import { Auth } from '@supa-kit/auth-ui-vue'
394394
395395
const customTheme = {
396396
default: {
@@ -455,7 +455,7 @@ You can use custom CSS classes for the following elements:
455455

456456
<script setup lang="ts">
457457
import { createClient } from '@supabase/supabase-js'
458-
import { Auth } from '@nuxtbase/auth-ui-vue'
458+
import { Auth } from '@supa-kit/auth-ui-vue'
459459
460460
const supabaseClient = createClient(
461461
'<INSERT PROJECT URL>',
@@ -488,7 +488,7 @@ You can use custom CSS inline styles for the following elements:
488488

489489
<script setup lang="ts">
490490
import { createClient } from '@supabase/supabase-js'
491-
import { Auth } from '@nuxtbase/auth-ui-vue'
491+
import { Auth } from '@supa-kit/auth-ui-vue'
492492
493493
const supabaseClient = createClient(
494494
'<INSERT PROJECT URL>',
@@ -521,7 +521,7 @@ You can use custom labels with localization.variables. See the [list of labels](
521521

522522
<script setup lang="ts">
523523
import { createClient } from '@supabase/supabase-js'
524-
import { Auth } from '@nuxtbase/auth-ui-vue'
524+
import { Auth } from '@supa-kit/auth-ui-vue'
525525
526526
const supabaseClient = createClient(
527527
'<INSERT PROJECT URL>',
@@ -548,7 +548,7 @@ This will be useful when the sub-components need to access the `user` data at an
548548

549549
<script setup lang="ts">
550550
import { createClient } from '@supabase/supabase-js'
551-
import { UserContextProvider } from '@nuxtbase/auth-ui-vue'
551+
import { UserContextProvider } from '@supa-kit/auth-ui-vue'
552552
553553
import Profile from '@/components/Profile.vue'
554554
@@ -571,7 +571,7 @@ This will be useful when the sub-components need to access the `user` data at an
571571
injectStrict,
572572
UserContextProviderInjection,
573573
UserContextProviderKey
574-
} from '@nuxtbase/auth-ui-vue'
574+
} from '@supa-kit/auth-ui-vue'
575575
576576
const { user } = injectStrict<UserContextProviderInjection>(
577577
UserContextProviderKey

src/components/Hero.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</div>
2121
<a
2222
class="cursor-pointer hover:bg-neutral-200 hover:dark:bg-neutral-700 p-2 rounded-md"
23-
href="https://github.com/nuxtbase/auth-ui-vue"
23+
href="https://github.com/supa-kit/auth-ui-vue"
2424
target="_blank"
2525
>
2626
<ri:github-fill class="w-5 h-5" />

volar.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import '@vue/runtime-core'
33

44
declare module '@vue/runtime-core' {
55
export interface GlobalComponents {
6-
Auth: typeof import('@nuxtbase/auth-ui-vue')['Auth']
7-
ForgottenPassword: typeof import('@nuxtbase/auth-ui-vue')['ForgottenPassword']
8-
UpdatePassword: typeof import('@nuxtbase/auth-ui-vue')['UpdatePassword']
9-
MagicLink: typeof import('@nuxtbase/auth-ui-vue')['MagicLink']
10-
UserContextProvider: typeof import('@nuxtbase/auth-ui-vue')['UserContextProvider']
6+
Auth: typeof import('@supa-kit/auth-ui-vue')['Auth']
7+
ForgottenPassword: typeof import('@supa-kit/auth-ui-vue')['ForgottenPassword']
8+
UpdatePassword: typeof import('@supa-kit/auth-ui-vue')['UpdatePassword']
9+
MagicLink: typeof import('@supa-kit/auth-ui-vue')['MagicLink']
10+
UserContextProvider: typeof import('@supa-kit/auth-ui-vue')['UserContextProvider']
1111
}
1212
}
1313

0 commit comments

Comments
 (0)