@primer/doctocat-nextjs 0.0.0-20260129104707 → 0.0.0-20260202234433
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,18 +1,18 @@
|
|
|
1
1
|
# @primer/doctocat-nextjs
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-20260202234433
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Fake entry to force publishing
|
|
8
8
|
|
|
9
|
-
## 0.0.0-
|
|
9
|
+
## 0.0.0-20260202234431
|
|
10
10
|
|
|
11
11
|
### Minor Changes
|
|
12
12
|
|
|
13
13
|
- [#87](https://github.com/primer/doctocat-nextjs/pull/87) [`a0aa353`](https://github.com/primer/doctocat-nextjs/commit/a0aa353c296543f98d5a32d38f3d5631a7081f96) Thanks [@rezrah](https://github.com/rezrah)! - Upgrades Next.js and Nextra.
|
|
14
14
|
- **Next.js version >= v16.x is now required**. v15.x is no longer supported.
|
|
15
|
-
- `nextra` version
|
|
15
|
+
- `nextra` version is now `4.6.x`
|
|
16
16
|
|
|
17
17
|
## 0.8.1
|
|
18
18
|
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
.BreadcrumbRoot,
|
|
14
14
|
.BreadcrumbItem {
|
|
15
|
+
--fgColor-link: var(--brand-InlineLink-color-rest);
|
|
15
16
|
color: var(--brand-InlineLink-color-rest);
|
|
16
17
|
}
|
|
17
18
|
|
|
@@ -24,12 +25,10 @@
|
|
|
24
25
|
width: 100%;
|
|
25
26
|
}
|
|
26
27
|
|
|
27
|
-
|
|
28
28
|
.ActionsWrapper {
|
|
29
29
|
padding-block-start: var(--base-size-16);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
|
|
33
32
|
.RelatedLinks {
|
|
34
33
|
padding-top: var(--base-size-20);
|
|
35
34
|
}
|
package/css/prose.module.css
CHANGED
|
@@ -174,28 +174,6 @@
|
|
|
174
174
|
.Prose a:-webkit-any-link:not(:global(.custom-component) a:-webkit-any-link) {
|
|
175
175
|
color: var(--brand-InlineLink-color-rest);
|
|
176
176
|
text-decoration: underline;
|
|
177
|
-
position: relative;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
.Prose a:not(:global(.custom-component) a)::after {
|
|
181
|
-
content: '';
|
|
182
|
-
border-bottom: var(--brand-borderWidth-thin) solid var(--brand-InlineLink-color-rest);
|
|
183
|
-
height: 0;
|
|
184
|
-
transition: var(--brand-InlineLink-transition-timing) transform;
|
|
185
|
-
transform: scaleY(var(--brand-InlineLink-transition-scale-start));
|
|
186
|
-
transform-origin: 50% 100%;
|
|
187
|
-
width: 100%;
|
|
188
|
-
position: absolute;
|
|
189
|
-
bottom: 0;
|
|
190
|
-
left: 0;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.Prose a:not(:global(.custom-component) a):hover::after {
|
|
194
|
-
transform: scaleY(var(--brand-InlineLink-transition-scale-end));
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.Prose a:not(:global(.custom-component) a):active::after {
|
|
198
|
-
border-color: var(--brand-InlineLink-color-pressed);
|
|
199
177
|
}
|
|
200
178
|
|
|
201
179
|
.Prose code:not(:global(.custom-component) code) {
|