@myst-theme/styles 0.5.6 → 0.5.8

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.
@@ -1,8 +1,8 @@
1
1
 
2
- > @myst-theme/styles@0.5.6 build
2
+ > @myst-theme/styles@0.5.8 build
3
3
  > tailwindcss -m -i ./app.css -o ../docs/public/tailwind.css
4
4
 
5
5
 
6
6
  Rebuilding...
7
7
 
8
- Done in 2160ms.
8
+ Done in 4006ms.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @myst-theme/styles
2
2
 
3
+ ## 0.5.8
4
+
5
+ ## 0.5.7
6
+
7
+ ### Patch Changes
8
+
9
+ - bf66da0: Allow citations to be elements other than `cite` (e.g. a Figure 1 reference is a span element.)
10
+
3
11
  ## 0.5.6
4
12
 
5
13
  ## 0.5.5
package/citations.css CHANGED
@@ -1,13 +1,13 @@
1
1
  cite {
2
2
  font-style: normal;
3
3
  }
4
- .cite-group.parenthetical cite::after {
4
+ .cite-group.parenthetical > *::after {
5
5
  content: ';\00a0';
6
6
  }
7
- .cite-group.narrative cite::after {
7
+ .cite-group.narrative > *::after {
8
8
  content: ',\00a0';
9
9
  }
10
- .cite-group > cite:last-of-type::after {
10
+ .cite-group > *:last-of-type::after {
11
11
  content: '';
12
12
  }
13
13
  .cite-group.parenthetical:before {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myst-theme/styles",
3
- "version": "0.5.6",
3
+ "version": "0.5.8",
4
4
  "main": "index.js",
5
5
  "style": "app.css",
6
6
  "scripts": {