@rpg-engine/long-bow 0.8.24 → 0.8.27
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/dist/long-bow.cjs.development.js +3 -3
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +3 -3
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/components/CraftBook/CraftBook.tsx +1 -1
- package/src/components/InformationCenter/sections/bestiary/InformationCenterNPCDetails.tsx +3 -1
- package/src/components/InformationCenter/sections/items/InformationCenterItemDetails.tsx +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rpg-engine/long-bow",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.27",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"dependencies": {
|
|
85
85
|
"@capacitor/core": "^6.1.0",
|
|
86
86
|
"@rollup/plugin-image": "^2.1.1",
|
|
87
|
-
"@rpg-engine/shared": "^0.
|
|
87
|
+
"@rpg-engine/shared": "^0.10.0",
|
|
88
88
|
"dayjs": "^1.11.2",
|
|
89
89
|
"font-awesome": "^4.7.0",
|
|
90
90
|
"fs-extra": "^10.1.0",
|
|
@@ -265,7 +265,9 @@ const Value = styled.span`
|
|
|
265
265
|
const StyledCollapsible = styled(Collapsible)`
|
|
266
266
|
background: rgba(255, 255, 255, 0.05);
|
|
267
267
|
border-radius: 4px;
|
|
268
|
-
overflow:
|
|
268
|
+
overflow: auto;
|
|
269
|
+
scrollbar-width: thin;
|
|
270
|
+
scrollbar-color: ${uiColors.darkGray} transparent;
|
|
269
271
|
`;
|
|
270
272
|
|
|
271
273
|
const StatGrid = styled.div`
|
|
@@ -191,7 +191,9 @@ const Value = styled.span`
|
|
|
191
191
|
const StyledCollapsible = styled(Collapsible)`
|
|
192
192
|
background: rgba(255, 255, 255, 0.05);
|
|
193
193
|
border-radius: 4px;
|
|
194
|
-
overflow:
|
|
194
|
+
overflow: auto;
|
|
195
|
+
scrollbar-width: thin;
|
|
196
|
+
scrollbar-color: ${uiColors.darkGray} transparent;
|
|
195
197
|
`;
|
|
196
198
|
|
|
197
199
|
const Description = styled.p`
|