@sbc-connect/nuxt-pay 0.1.32 → 0.1.34

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-pay
2
2
 
3
+ ## 0.1.34
4
+
5
+ ### Patch Changes
6
+
7
+ - [#109](https://github.com/bcgov/connect-nuxt/pull/109) [`841b9b8`](https://github.com/bcgov/connect-nuxt/commit/841b9b8636426167f7c3847656eabb52d427c626) Thanks [@kialj876](https://github.com/kialj876)! - Connect Pay Layer - useConnectFeeStore: useNuxtApp().$i18n instead of useI18n()
8
+
9
+ - Updated dependencies []:
10
+ - @sbc-connect/nuxt-auth@0.2.1
11
+
12
+ ## 0.1.33
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [[`5f1b383`](https://github.com/bcgov/connect-nuxt/commit/5f1b3839ed993654a7f20fe161047ba38ab86274), [`d714785`](https://github.com/bcgov/connect-nuxt/commit/d71478573f1fe11be34d5d588d68fb75eb5fd159)]:
17
+ - @sbc-connect/nuxt-auth@0.2.0
18
+
3
19
  ## 0.1.32
4
20
 
5
21
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  export const useConnectFeeStore = defineStore('connect-pay-fee-store', () => {
2
2
  const { $payApi } = useNuxtApp()
3
- const { t } = useI18n()
3
+ const { t } = useNuxtApp().$i18n
4
4
  const { baseModal } = useConnectModal()
5
5
 
6
6
  const getDefaultFeeOptions = () => ({
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.32",
4
+ "version": "0.1.34",
5
5
  "repository": "github:bcgov/connect-nuxt",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "./nuxt.config.ts",
@@ -17,7 +17,7 @@
17
17
  "@sbc-connect/vitest-config": "0.0.6"
18
18
  },
19
19
  "dependencies": {
20
- "@sbc-connect/nuxt-auth": "0.1.32"
20
+ "@sbc-connect/nuxt-auth": "0.2.1"
21
21
  },
22
22
  "scripts": {
23
23
  "preinstall": "npx only-allow pnpm",