@momo-webplatform/mobase-next 1.0.3 → 1.0.4
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/index.d.mts +4 -0
- package/dist/index.mjs +8 -12
- package/package.json +3 -3
- package/src/styles/globals.css +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@momo-webplatform/mobase-next",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"**/*.css",
|
|
6
6
|
"./src/styles/**"
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"eslint": "^8.57.0",
|
|
69
69
|
"tsup": "^8.0.2",
|
|
70
70
|
"typescript": "5.5.4",
|
|
71
|
-
"@repo/
|
|
72
|
-
"@repo/
|
|
71
|
+
"@repo/eslint-config": "0.0.0",
|
|
72
|
+
"@repo/typescript-config": "0.0.0"
|
|
73
73
|
},
|
|
74
74
|
"publishConfig": {
|
|
75
75
|
"access": "public"
|
package/src/styles/globals.css
CHANGED
|
@@ -448,10 +448,12 @@ html {
|
|
|
448
448
|
tab-size: 4;
|
|
449
449
|
touch-action: manipulation;
|
|
450
450
|
text-rendering: optimizelegibility;
|
|
451
|
-
-webkit-font-smoothing: antialiased;
|
|
452
451
|
-moz-osx-font-smoothing: grayscale;
|
|
453
452
|
font-synthesis: none;
|
|
454
453
|
-webkit-text-size-adjust: 100%;
|
|
455
454
|
-moz-text-size-adjust: 100%;
|
|
456
455
|
text-size-adjust: 100%;
|
|
457
|
-
}
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
@import "./prose.css";
|