@sbc-connect/nuxt-pay 0.1.2 → 0.1.3
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 +11 -0
- package/app/components/HelloWorld/Pay.vue +2 -2
- package/package.json +5 -7
- package/eslint.config.ts +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @sbc-connect/nuxt-pay
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#9](https://github.com/bcgov/connect-nuxt/pull/9) [`e841fde`](https://github.com/bcgov/connect-nuxt/commit/e841fde27630d63efb2c152cd78d92b1193d1d5e) Thanks [@kialj876](https://github.com/kialj876)! - Add Nuxt back as a dev dependency
|
|
8
|
+
|
|
9
|
+
- [#8](https://github.com/bcgov/connect-nuxt/pull/8) [`c85ebfc`](https://github.com/bcgov/connect-nuxt/commit/c85ebfc879e19cce307b109c9d38044f71f482d2) Thanks [@kialj876](https://github.com/kialj876)! - Added in i18n, added base header components, added in styles for nuxt ui
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`e841fde`](https://github.com/bcgov/connect-nuxt/commit/e841fde27630d63efb2c152cd78d92b1193d1d5e), [`c85ebfc`](https://github.com/bcgov/connect-nuxt/commit/c85ebfc879e19cce307b109c9d38044f71f482d2)]:
|
|
12
|
+
- @sbc-connect/nuxt-auth@0.1.3
|
|
13
|
+
|
|
3
14
|
## 0.1.2
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
<div class="bg-midnightBlue-300 p-5 mt-5">
|
|
3
3
|
Pay - should have bg-midnightBlue-300
|
|
4
4
|
<HelloWorldAuth />
|
|
5
|
-
<p class="text-
|
|
6
|
-
Pay - Should be
|
|
5
|
+
<p class="text-connect-primary">
|
|
6
|
+
Pay - Should be connect-primary
|
|
7
7
|
</p>
|
|
8
8
|
</div>
|
|
9
9
|
</template>
|
package/package.json
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sbc-connect/nuxt-pay",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3",
|
|
5
5
|
"repository": "github:bcgov/connect-nuxt",
|
|
6
6
|
"main": "./nuxt.config.ts",
|
|
7
7
|
"devDependencies": {
|
|
8
8
|
"@axe-core/playwright": "^4.10.2",
|
|
9
|
-
"@nuxtjs/i18n": "^9.5.5",
|
|
10
9
|
"@vitest/coverage-v8": "^3.2.3",
|
|
11
10
|
"dotenv": "^17.2.0",
|
|
12
11
|
"nuxt": "4.0.0",
|
|
13
12
|
"typescript": "^5.8.3",
|
|
14
|
-
"vue": "latest",
|
|
15
13
|
"vue-tsc": "^3.0.2",
|
|
16
|
-
"@sbc-connect/
|
|
17
|
-
"@sbc-connect/
|
|
18
|
-
"@sbc-connect/
|
|
14
|
+
"@sbc-connect/playwright-config": "0.0.4",
|
|
15
|
+
"@sbc-connect/vitest-config": "0.0.4",
|
|
16
|
+
"@sbc-connect/eslint-config": "0.0.4"
|
|
19
17
|
},
|
|
20
18
|
"dependencies": {
|
|
21
|
-
"@sbc-connect/nuxt-auth": "0.1.
|
|
19
|
+
"@sbc-connect/nuxt-auth": "0.1.3"
|
|
22
20
|
},
|
|
23
21
|
"scripts": {
|
|
24
22
|
"preinstall": "npx only-allow pnpm",
|
package/eslint.config.ts
DELETED