@sbc-connect/nuxt-pay 0.1.8 → 0.1.9
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,12 @@
|
|
|
1
1
|
# @sbc-connect/nuxt-pay
|
|
2
2
|
|
|
3
|
+
## 0.1.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`f4b62e1`](https://github.com/bcgov/connect-nuxt/commit/f4b62e19570ed062399ce7d23ce07abcf682285f), [`8b8f067`](https://github.com/bcgov/connect-nuxt/commit/8b8f067aba4cda2cd2cd8de5c6f74ccc24eaf822)]:
|
|
8
|
+
- @sbc-connect/nuxt-auth@0.1.9
|
|
9
|
+
|
|
3
10
|
## 0.1.8
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex flex-col lg:flex-row lg:gap-6 grow">
|
|
3
|
+
<div class="grow max-w-full overflow-hidden">
|
|
4
|
+
<slot />
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<div class="shrink-0 lg:w-[300px] lg:static sticky lg:mt-10">
|
|
8
|
+
<ConnectFeeWidget class="sticky lg:top-10" />
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
</template>
|
|
@@ -5,15 +5,9 @@
|
|
|
5
5
|
</template>
|
|
6
6
|
|
|
7
7
|
<template #body>
|
|
8
|
-
<
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
</div>
|
|
12
|
-
|
|
13
|
-
<div class="shrink-0 lg:w-[300px] lg:static sticky lg:mt-10">
|
|
14
|
-
<ConnectFeeWidget class="sticky lg:top-10" />
|
|
15
|
-
</div>
|
|
16
|
-
</div>
|
|
8
|
+
<ConnectLayoutPayBody>
|
|
9
|
+
<slot />
|
|
10
|
+
</ConnectLayoutPayBody>
|
|
17
11
|
</template>
|
|
18
12
|
</ConnectLayout>
|
|
19
13
|
</template>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sbc-connect/nuxt-pay",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.9",
|
|
5
5
|
"repository": "github:bcgov/connect-nuxt",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
7
7
|
"main": "./nuxt.config.ts",
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"nuxt": "^4.0.2",
|
|
13
13
|
"typescript": "^5.8.3",
|
|
14
14
|
"vue-tsc": "^3.0.4",
|
|
15
|
-
"@sbc-connect/playwright-config": "0.0.6",
|
|
16
15
|
"@sbc-connect/eslint-config": "0.0.6",
|
|
16
|
+
"@sbc-connect/playwright-config": "0.0.6",
|
|
17
17
|
"@sbc-connect/vitest-config": "0.0.6"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@sbc-connect/nuxt-auth": "0.1.
|
|
20
|
+
"@sbc-connect/nuxt-auth": "0.1.9"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"preinstall": "npx only-allow pnpm",
|