@sbc-connect/nuxt-auth 0.1.30 → 0.1.32
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @sbc-connect/nuxt-auth
|
|
2
2
|
|
|
3
|
+
## 0.1.32
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#98](https://github.com/bcgov/connect-nuxt/pull/98) [`cb7ba1b`](https://github.com/bcgov/connect-nuxt/commit/cb7ba1b38a7e7dbeb296479ef0fcba13ddb1d20f) Thanks [@kialj876](https://github.com/kialj876)! - Auth Layer: Move auth layout to component, Pay Layer: Add in sidebar for examples and add layout tests
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`09323e1`](https://github.com/bcgov/connect-nuxt/commit/09323e1fcaff9a2738528c8161288c1d4bcd0677), [`033f6c6`](https://github.com/bcgov/connect-nuxt/commit/033f6c624fbf953f1d7cf491c876cc9b58619b22)]:
|
|
10
|
+
- @sbc-connect/nuxt-base@0.2.0
|
|
11
|
+
|
|
12
|
+
## 0.1.31
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`a0724ac`](https://github.com/bcgov/connect-nuxt/commit/a0724ac5fdf44296e822942b0eea6be3bb313fcb)]:
|
|
17
|
+
- @sbc-connect/nuxt-base@0.1.29
|
|
18
|
+
|
|
3
19
|
## 0.1.30
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
const accountStore = useConnectAccountStore()
|
|
3
|
+
</script>
|
|
4
|
+
|
|
5
|
+
<template>
|
|
6
|
+
<ConnectLayout>
|
|
7
|
+
<template #header>
|
|
8
|
+
<ConnectHeaderAuth />
|
|
9
|
+
</template>
|
|
10
|
+
<template #breadcrumb>
|
|
11
|
+
<ConnectBreadcrumb
|
|
12
|
+
:account-id="accountStore.currentAccount.id
|
|
13
|
+
? String(accountStore.currentAccount.id)
|
|
14
|
+
: undefined"
|
|
15
|
+
/>
|
|
16
|
+
</template>
|
|
17
|
+
<slot />
|
|
18
|
+
</ConnectLayout>
|
|
19
|
+
</template>
|
|
@@ -1,19 +1,5 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
const accountStore = useConnectAccountStore()
|
|
3
|
-
</script>
|
|
4
|
-
|
|
5
1
|
<template>
|
|
6
|
-
<
|
|
7
|
-
<template #header>
|
|
8
|
-
<ConnectHeaderAuth />
|
|
9
|
-
</template>
|
|
10
|
-
<template #breadcrumb>
|
|
11
|
-
<ConnectBreadcrumb
|
|
12
|
-
:account-id="accountStore.currentAccount.id
|
|
13
|
-
? String(accountStore.currentAccount.id)
|
|
14
|
-
: undefined"
|
|
15
|
-
/>
|
|
16
|
-
</template>
|
|
2
|
+
<ConnectLayoutAuth>
|
|
17
3
|
<slot />
|
|
18
|
-
</
|
|
4
|
+
</ConnectLayoutAuth>
|
|
19
5
|
</template>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sbc-connect/nuxt-auth",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.32",
|
|
5
5
|
"repository": "github:bcgov/connect-nuxt",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
7
7
|
"main": "./nuxt.config.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"keycloak-js": "^26.2.1",
|
|
22
22
|
"pinia": "^3.0.3",
|
|
23
23
|
"pinia-plugin-persistedstate": "^4.5.0",
|
|
24
|
-
"@sbc-connect/nuxt-base": "0.
|
|
24
|
+
"@sbc-connect/nuxt-base": "0.2.0"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"preinstall": "npx only-allow pnpm",
|