@mistweaverco/mdsvex-shiki 1.1.0 → 1.1.1

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.
Files changed (3) hide show
  1. package/README.md +7 -6
  2. package/package.json +1 -1
  3. package/styles.css +2 -1
package/README.md CHANGED
@@ -9,7 +9,8 @@ limited in features and customization options.
9
9
  We needed a better solution for our SvelteKit projects,
10
10
  so we created this package to fill the gap.
11
11
 
12
- <img width="945" height="874" alt="Screenshot" src="https://github.com/user-attachments/assets/c717f559-ae96-4372-a1ac-3eba3d4db340" />
12
+ <img width="794" height="558" alt="Screenshot" src="https://github.com/user-attachments/assets/38250632-432a-4f2a-8722-0ef1e4108f38" />
13
+
13
14
 
14
15
  ## Installation
15
16
 
@@ -17,19 +18,19 @@ Using your package manager of choice, run:
17
18
 
18
19
  ```bash
19
20
  # npm
20
- npm install @mistweaverco/mdsvex-shiki@v1.1.0
21
+ npm install @mistweaverco/mdsvex-shiki@v1.1.1
21
22
 
22
23
  # yarn
23
- yarn add @mistweaverco/mdsvex-shiki@v1.1.0
24
+ yarn add @mistweaverco/mdsvex-shiki@v1.1.1
24
25
 
25
26
  # bun
26
- bun add @mistweaverco/mdsvex-shiki@v1.1.0
27
+ bun add @mistweaverco/mdsvex-shiki@v1.1.1
27
28
 
28
29
  # pnpm
29
- pnpm add @mistweaverco/mdsvex-shiki@v1.1.0
30
+ pnpm add @mistweaverco/mdsvex-shiki@v1.1.1
30
31
 
31
32
  # deno
32
- deno add npm:@mistweaverco/mdsvex-shiki@v1.1.0
33
+ deno add npm:@mistweaverco/mdsvex-shiki@v1.1.1
33
34
  ```
34
35
 
35
36
  ## Configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mistweaverco/mdsvex-shiki",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",
package/styles.css CHANGED
@@ -112,7 +112,8 @@
112
112
  align-items: center;
113
113
  gap: 0.25em;
114
114
  max-width: calc(100% - 100px);
115
- overflow: hidden;
115
+ overflow-y: hidden;
116
+ overflow-x: auto;
116
117
  white-space: nowrap;
117
118
  }
118
119