@sbc-connect/nuxt-pay 0.3.10 → 0.4.0
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,18 @@
|
|
|
1
1
|
# @sbc-connect/nuxt-pay
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#168](https://github.com/bcgov/connect-nuxt/pull/168) [`5ea3209`](https://github.com/bcgov/connect-nuxt/commit/5ea3209ef64a2bec0fe9d583cd63152e5d634865) Thanks [@vysakh-menon-aot](https://github.com/vysakh-menon-aot)! - Ensure the "No Fee" label stays on a single line by applying a no-wrap style
|
|
8
|
+
|
|
9
|
+
## 0.3.11
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies []:
|
|
14
|
+
- @sbc-connect/nuxt-auth@0.11.1
|
|
15
|
+
|
|
3
16
|
## 0.3.10
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -117,7 +117,7 @@ const getItemFee = (feeItem: ConnectFeeItem) => {
|
|
|
117
117
|
x {{ feeItem.quantity }} {{ feeItem.quantityDesc }}
|
|
118
118
|
</p>
|
|
119
119
|
</div>
|
|
120
|
-
<p class="text-highlighted">
|
|
120
|
+
<p class="text-highlighted whitespace-nowrap">
|
|
121
121
|
{{ getItemFee(feeItem) }}
|
|
122
122
|
</p>
|
|
123
123
|
</div>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sbc-connect/nuxt-pay",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.4.0",
|
|
5
5
|
"repository": "github:bcgov/connect-nuxt",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
7
7
|
"main": "./nuxt.config.ts",
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
"@axe-core/playwright": "4.11.3",
|
|
10
10
|
"dotenv": "17.4.2",
|
|
11
11
|
"nuxt": "4.4.6",
|
|
12
|
-
"typescript": "
|
|
13
|
-
"vue-tsc": "3.
|
|
12
|
+
"typescript": "6.0.3",
|
|
13
|
+
"vue-tsc": "3.3.1",
|
|
14
14
|
"@sbc-connect/eslint-config": "0.0.8",
|
|
15
|
-
"@sbc-connect/
|
|
16
|
-
"@sbc-connect/
|
|
15
|
+
"@sbc-connect/vitest-config": "0.2.0",
|
|
16
|
+
"@sbc-connect/playwright-config": "0.2.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@sbc-connect/nuxt-auth": "0.11.
|
|
19
|
+
"@sbc-connect/nuxt-auth": "0.11.1"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"preinstall": "npx only-allow pnpm",
|