@brillout/docpress 0.16.16 → 0.16.18
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/+config.ts +1 -1
- package/ExternalLinks.tsx +9 -12
- package/dist/+config.d.ts +1 -0
- package/dist/+config.js +1 -1
- package/dist/types/Config.d.ts +1 -0
- package/dist/types/Heading.d.ts +1 -0
- package/package.json +4 -4
- package/types/Config.ts +1 -0
- package/types/Heading.ts +2 -0
- /package/{tsconfig.config.json → tsconfig.build.json} +0 -0
package/+config.ts
CHANGED
package/ExternalLinks.tsx
CHANGED
|
@@ -61,14 +61,16 @@ function ChangelogButton() {
|
|
|
61
61
|
<div
|
|
62
62
|
className="button"
|
|
63
63
|
style={{
|
|
64
|
+
background: '#f9f9f9',
|
|
64
65
|
display: 'flex',
|
|
65
66
|
alignItems: 'center',
|
|
66
|
-
paddingLeft:
|
|
67
|
-
paddingRight:
|
|
68
|
-
paddingTop:
|
|
69
|
-
paddingBottom:
|
|
70
|
-
fontSize: '0.
|
|
71
|
-
lineHeight:
|
|
67
|
+
paddingLeft: 5,
|
|
68
|
+
paddingRight: 5,
|
|
69
|
+
paddingTop: 3,
|
|
70
|
+
paddingBottom: 3,
|
|
71
|
+
fontSize: '0.92em',
|
|
72
|
+
lineHeight: '1em',
|
|
73
|
+
marginLeft: 1,
|
|
72
74
|
}}
|
|
73
75
|
>
|
|
74
76
|
<span
|
|
@@ -82,12 +84,7 @@ function ChangelogButton() {
|
|
|
82
84
|
>
|
|
83
85
|
v{version}
|
|
84
86
|
</span>
|
|
85
|
-
<img
|
|
86
|
-
className="decolorize-6"
|
|
87
|
-
src={iconChangelog}
|
|
88
|
-
height={16}
|
|
89
|
-
style={{ marginLeft: 6, position: 'relative', top: 1 }}
|
|
90
|
-
/>
|
|
87
|
+
<img className="decolorize-6" src={iconChangelog} height={15} style={{ marginLeft: 6 }} />
|
|
91
88
|
</div>
|
|
92
89
|
</a>
|
|
93
90
|
)
|
package/dist/+config.d.ts
CHANGED
package/dist/+config.js
CHANGED
package/dist/types/Config.d.ts
CHANGED
package/dist/types/Heading.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brillout/docpress",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.18",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@brillout/picocolors": "^1.0.10",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@types/react-dom": "^19.2.2",
|
|
71
71
|
"mdast-util-directive": "^3.1.0",
|
|
72
72
|
"mdast-util-mdx-jsx": "^3.2.0",
|
|
73
|
-
"vike": "^0.4.
|
|
73
|
+
"vike": "^0.4.255"
|
|
74
74
|
},
|
|
75
75
|
"repository": "https://github.com/brillout/docpress",
|
|
76
76
|
"license": "MIT",
|
|
@@ -80,9 +80,9 @@
|
|
|
80
80
|
"scripts": {
|
|
81
81
|
"======== Build": "",
|
|
82
82
|
"// Build vite.config.ts and +config.ts (other files don't need to be built as @brillout/docpress is noExternal)": "",
|
|
83
|
-
"build": "rm -rf dist/ && tsc --project tsconfig.
|
|
83
|
+
"build": "rm -rf dist/ && tsc --project tsconfig.build.json",
|
|
84
84
|
"======== Develop": "",
|
|
85
|
-
"// Typecheck
|
|
85
|
+
"// Typecheck": "",
|
|
86
86
|
"dev": "tsc --watch",
|
|
87
87
|
"========= Release": "",
|
|
88
88
|
"release": "release-me patch",
|
package/types/Config.ts
CHANGED
package/types/Heading.ts
CHANGED
|
File without changes
|