@unocss/inspector 65.4.0 → 65.4.3
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/client/assets/{_id_-BW9zTrve.js → _id_-Bdb5ewtd.js} +1 -1
- package/dist/client/assets/{index-qBg2eJVp.css → index-DkDBKV_G.css} +1 -1
- package/dist/client/assets/index-Dz9ESvEl.js +296 -0
- package/dist/client/assets/{repl-e49XYLmR.js → repl-BEgKhDV7.js} +1 -1
- package/dist/client/index.html +7 -4
- package/dist/index.mjs +2 -2
- package/package.json +5 -5
- package/dist/client/assets/index-CQcRy5Wf.js +0 -296
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import{d as x,r as S,u as b,a as k,b as V,f as B,o as y,c as w,e as s,g as a,w as p,h as C,i as _,v as R,j as l,k as P,n as f,_ as E,l as N,m as U,p as $,q as I}from"./index-
|
|
1
|
+
import{d as x,r as S,u as b,a as k,b as V,f as B,o as y,c as w,e as s,g as a,w as p,h as C,i as _,v as R,j as l,k as P,n as f,_ as E,l as N,m as U,p as $,q as I}from"./index-Dz9ESvEl.js";const L={"h-full":"",grid:"~ rows-[max-content_1fr]","of-hidden":""},M={"h-full":"","of-hidden":"",grid:"","grid-cols-2":""},T=x({__name:"ReplPlayground",setup(v){const r=S(null),t=b(r,"repl-scrolls"),o=k("unocss:inspector:repl",`<div class="text-sm hover:text-red">
|
|
2
2
|
Hello World
|
|
3
3
|
</div>`),n=V("unocss-inspector-safelist",!1),{data:c}=B(o,n);return(z,e)=>{var i,m;const g=E,h=N,u=U;return y(),w("div",L,[s("div",{ref_key:"status",ref:r},[a(g,null,{default:p(()=>e[2]||(e[2]=[s("div",null," REPL Playground ",-1),s("div",{op60:""}," Edit your code below to test and play UnoCSS's matching and generating. ",-1)])),_:1}),a(h,{border:"b gray-400/20",title:""},{default:p(()=>[s("label",null,[C(s("input",{"onUpdate:modelValue":e[0]||(e[0]=d=>_(n)?n.value=d:null),type:"checkbox"},null,512),[[R,l(n)]]),e[3]||(e[3]=P(" Include safelist "))])]),_:1})],512),s("div",M,[a(u,{modelValue:l(o),"onUpdate:modelValue":e[1]||(e[1]=d=>_(o)?o.value=d:null),mode:"html",matched:((i=l(c))==null?void 0:i.matched)||[],class:"scrolls repl-scrolls",style:f(l(t))},null,8,["modelValue","matched","style"]),a(u,{border:"l main","model-value":((m=l(c))==null?void 0:m.css)||"/* empty */","read-only":!0,mode:"css",class:"scrolls repl-scrolls",style:f(l(t))},null,8,["model-value","style"])])])}}}),j={};function q(v,r){const t=T;return y(),I(t)}const H=$(j,[["render",q]]);export{H as default};
|
package/dist/client/index.html
CHANGED
|
@@ -4,12 +4,15 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>UnoCSS Inspector</title>
|
|
7
|
-
<link rel="icon" href="/__unocss/favicon.svg" type="image/svg+xml"
|
|
7
|
+
<link rel="icon" href="/__unocss/favicon.svg" type="image/svg+xml" />
|
|
8
8
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
9
9
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
10
|
-
<link
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
<link
|
|
11
|
+
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400&family=Fira+Code&display=swap"
|
|
12
|
+
rel="stylesheet"
|
|
13
|
+
/>
|
|
14
|
+
<script type="module" crossorigin src="/__unocss/assets/index-Dz9ESvEl.js"></script>
|
|
15
|
+
<link rel="stylesheet" crossorigin href="/__unocss/assets/index-DkDBKV_G.css">
|
|
13
16
|
</head>
|
|
14
17
|
<body>
|
|
15
18
|
<div id="app"></div>
|
package/dist/index.mjs
CHANGED
|
@@ -333,7 +333,7 @@ function getThemeColorForKey(theme, colors, key = "colors") {
|
|
|
333
333
|
continue;
|
|
334
334
|
}
|
|
335
335
|
}
|
|
336
|
-
return
|
|
336
|
+
return undefined;
|
|
337
337
|
}
|
|
338
338
|
return obj;
|
|
339
339
|
}
|
|
@@ -823,7 +823,7 @@ function UnocssInspector(ctx) {
|
|
|
823
823
|
single: true,
|
|
824
824
|
dev: true
|
|
825
825
|
}));
|
|
826
|
-
server.middlewares.use(`/$baseUrl}_api`, async (req, res, next) => {
|
|
826
|
+
server.middlewares.use(`/${baseUrl}_api`, async (req, res, next) => {
|
|
827
827
|
if (!req.url)
|
|
828
828
|
return next();
|
|
829
829
|
if (req.url === "/") {
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/inspector",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "65.4.
|
|
4
|
+
"version": "65.4.3",
|
|
5
5
|
"description": "The inspector UI for UnoCSS",
|
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"funding": "https://github.com/sponsors/antfu",
|
|
9
|
-
"homepage": "https://
|
|
9
|
+
"homepage": "https://unocss.dev",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/unocss/unocss",
|
|
13
|
-
"directory": "packages/inspector"
|
|
13
|
+
"directory": "packages-integrations/inspector"
|
|
14
14
|
},
|
|
15
15
|
"bugs": {
|
|
16
16
|
"url": "https://github.com/unocss/unocss/issues"
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"gzip-size": "^6.0.0",
|
|
39
39
|
"sirv": "^3.0.0",
|
|
40
40
|
"vue-flow-layout": "^0.1.1",
|
|
41
|
-
"@unocss/
|
|
42
|
-
"@unocss/
|
|
41
|
+
"@unocss/rule-utils": "65.4.3",
|
|
42
|
+
"@unocss/core": "65.4.3"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "unbuild",
|