unplugin-docubook 1.0.2 → 1.1.0
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/components/index.cjs +10601 -554
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +10494 -501
- package/dist/components/index.js.map +1 -1
- package/package.json +35 -12
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unplugin-docubook",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"description": "Write with MDX — works with pretty much any JS framework: Vite, React, Vue, Svelte, you name it",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"keywords": [
|
|
@@ -106,6 +106,7 @@
|
|
|
106
106
|
"import": "./dist/framework/index.js",
|
|
107
107
|
"require": "./dist/framework/index.cjs"
|
|
108
108
|
},
|
|
109
|
+
"./theme.css": "./dist/components/theme.css",
|
|
109
110
|
"./package.json": "./package.json"
|
|
110
111
|
},
|
|
111
112
|
"main": "./dist/index.cjs",
|
|
@@ -128,11 +129,13 @@
|
|
|
128
129
|
"clsx": ">=2",
|
|
129
130
|
"esbuild": "*",
|
|
130
131
|
"lucide-react": ">=0.300",
|
|
132
|
+
"lucide-svelte": ">=0.300",
|
|
131
133
|
"lucide-vue-next": ">=0.300",
|
|
132
134
|
"react": ">=18",
|
|
133
135
|
"react-dom": ">=18",
|
|
134
136
|
"rollup": "^3 || ^4",
|
|
135
137
|
"svelte": ">=4",
|
|
138
|
+
"tailwindcss": ">=3",
|
|
136
139
|
"vite": ">=3",
|
|
137
140
|
"vue": ">=3",
|
|
138
141
|
"webpack": "^4 || ^5"
|
|
@@ -147,37 +150,43 @@
|
|
|
147
150
|
"@nuxt/schema": {
|
|
148
151
|
"optional": true
|
|
149
152
|
},
|
|
153
|
+
"clsx": {
|
|
154
|
+
"optional": true
|
|
155
|
+
},
|
|
150
156
|
"esbuild": {
|
|
151
157
|
"optional": true
|
|
152
158
|
},
|
|
153
|
-
"
|
|
159
|
+
"lucide-react": {
|
|
154
160
|
"optional": true
|
|
155
161
|
},
|
|
156
|
-
"
|
|
162
|
+
"lucide-svelte": {
|
|
157
163
|
"optional": true
|
|
158
164
|
},
|
|
159
|
-
"vue": {
|
|
165
|
+
"lucide-vue-next": {
|
|
160
166
|
"optional": true
|
|
161
167
|
},
|
|
162
|
-
"
|
|
168
|
+
"react": {
|
|
163
169
|
"optional": true
|
|
164
170
|
},
|
|
165
|
-
"
|
|
171
|
+
"react-dom": {
|
|
166
172
|
"optional": true
|
|
167
173
|
},
|
|
168
|
-
"
|
|
174
|
+
"rollup": {
|
|
169
175
|
"optional": true
|
|
170
176
|
},
|
|
171
|
-
"
|
|
177
|
+
"svelte": {
|
|
172
178
|
"optional": true
|
|
173
179
|
},
|
|
174
|
-
"
|
|
180
|
+
"tailwindcss": {
|
|
175
181
|
"optional": true
|
|
176
182
|
},
|
|
177
|
-
"
|
|
183
|
+
"vite": {
|
|
178
184
|
"optional": true
|
|
179
185
|
},
|
|
180
|
-
"
|
|
186
|
+
"vue": {
|
|
187
|
+
"optional": true
|
|
188
|
+
},
|
|
189
|
+
"webpack": {
|
|
181
190
|
"optional": true
|
|
182
191
|
}
|
|
183
192
|
},
|
|
@@ -186,6 +195,19 @@
|
|
|
186
195
|
},
|
|
187
196
|
"devDependencies": {
|
|
188
197
|
"@eslint/js": "^9.39.3",
|
|
198
|
+
"@radix-ui/react-accordion": "^1.2.12",
|
|
199
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
200
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
201
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
202
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
203
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
204
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
205
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
206
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
207
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
208
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
209
|
+
"@radix-ui/react-visually-hidden": "^1.2.4",
|
|
210
|
+
"@testing-library/dom": "^10.4.1",
|
|
189
211
|
"@testing-library/jest-dom": "^6.9.1",
|
|
190
212
|
"@testing-library/react": "^16.3.2",
|
|
191
213
|
"@types/node": "^22.15.21",
|
|
@@ -206,5 +228,6 @@
|
|
|
206
228
|
"typescript": "^5.8.3",
|
|
207
229
|
"typescript-eslint": "^8.56.1",
|
|
208
230
|
"vitest": "^3.1.4"
|
|
209
|
-
}
|
|
231
|
+
},
|
|
232
|
+
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
|
|
210
233
|
}
|