@bbki.ng/site 5.5.29 → 5.5.31
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 +14 -0
- package/package.json +2 -2
- package/src/plugins/xwy/index.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @bbki.ng/site
|
|
2
2
|
|
|
3
|
+
## 5.5.31
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- af2da88: fix breadcrumb link lineheight
|
|
8
|
+
- Updated dependencies [af2da88]
|
|
9
|
+
- @bbki.ng/ui@0.2.16
|
|
10
|
+
|
|
11
|
+
## 5.5.30
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- cde9130: update lineheight
|
|
16
|
+
|
|
3
17
|
## 5.5.29
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bbki.ng/site",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.31",
|
|
4
4
|
"description": "code behind bbki.ng",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"react-dom": "^18.0.0",
|
|
15
15
|
"react-router-dom": "6",
|
|
16
16
|
"swr": "^2.2.5",
|
|
17
|
-
"@bbki.ng/ui": "0.2.
|
|
17
|
+
"@bbki.ng/ui": "0.2.16"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@eslint/compat": "^1.0.0",
|
package/src/plugins/xwy/index.ts
CHANGED
|
@@ -79,7 +79,7 @@ class XwyPlugin implements IPlugin {
|
|
|
79
79
|
)
|
|
80
80
|
.replace(
|
|
81
81
|
/公园/,
|
|
82
|
-
`公园 <span class="font-xwy-icon text-[#679867] text-[1.6rem] align-middle"></span>`
|
|
82
|
+
`公园 <span class="font-xwy-icon text-[#679867] text-[1.6rem] align-middle leading-[28px]"></span>`
|
|
83
83
|
);
|
|
84
84
|
};
|
|
85
85
|
|