@valaxyjs/devtools 0.19.5 → 0.19.7
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/{about-DAq0mJYu.js → about-OznFGoV6.js} +1 -1
- package/dist/client/assets/{categories-tKEG33gR.js → categories-Dof0ZrYR.js} +1 -1
- package/dist/client/assets/index-BnannfxL.js +833 -0
- package/dist/client/assets/{index-DUxi88Gt.js → index-CPK49_y2.js} +335 -49
- package/dist/client/assets/{index-CIq_dmzy.css → index-DzN-2s1X.css} +1 -1
- package/dist/client/assets/migration-BvfMdnj6.js +122 -0
- package/dist/client/assets/{index-BaHoMyce.js → splitpanes.es-tsc-z8w6.js} +163 -942
- package/dist/client/assets/{tags-BakzoUlM.js → tags-BIEb0ZZ9.js} +1 -1
- package/dist/client/index.html +2 -2
- package/dist/index.cjs +34 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +34 -0
- package/package.json +6 -4
- package/src/client/App.vue +9 -1
- package/src/client/components/VDHeader.vue +57 -0
- package/src/client/components.d.ts +48 -47
- package/src/client/main.ts +11 -1
- package/src/client/pages/index.vue +8 -18
- package/src/client/pages/migration.vue +73 -0
- package/src/client/shims.d.ts +12 -0
- package/src/client/typed-routes.d.ts +1 -0
- package/src/client/utils/get.ts +6 -0
- package/src/node/api/index.ts +49 -2
- package/src/node/types.ts +1 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./index-
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./index-BnannfxL.js","./_plugin-vue_export-helper-DgDhiqFL.js","./splitpanes.es-tsc-z8w6.js","./index-DF84L4of.css","./about-OznFGoV6.js","./categories-Dof0ZrYR.js","./migration-BvfMdnj6.js","./tags-BIEb0ZZ9.js"])))=>i.map(i=>d[i]);
|
|
2
2
|
true&&(function polyfill() {
|
|
3
3
|
const relList = document.createElement("link").relList;
|
|
4
4
|
if (relList && relList.supports && relList.supports("modulepreload")) {
|
|
@@ -39,7 +39,7 @@ true&&(function polyfill() {
|
|
|
39
39
|
/* Injected with object hook! */
|
|
40
40
|
|
|
41
41
|
/**
|
|
42
|
-
* @vue/shared v3.4.
|
|
42
|
+
* @vue/shared v3.4.35
|
|
43
43
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
44
44
|
* @license MIT
|
|
45
45
|
**/
|
|
@@ -69,6 +69,7 @@ const hasOwn = (val, key) => hasOwnProperty$1.call(val, key);
|
|
|
69
69
|
const isArray$1 = Array.isArray;
|
|
70
70
|
const isMap = (val) => toTypeString(val) === "[object Map]";
|
|
71
71
|
const isSet = (val) => toTypeString(val) === "[object Set]";
|
|
72
|
+
const isDate = (val) => toTypeString(val) === "[object Date]";
|
|
72
73
|
const isFunction = (val) => typeof val === "function";
|
|
73
74
|
const isString = (val) => typeof val === "string";
|
|
74
75
|
const isSymbol = (val) => typeof val === "symbol";
|
|
@@ -186,6 +187,55 @@ const isSpecialBooleanAttr = /* @__PURE__ */ makeMap(specialBooleanAttrs);
|
|
|
186
187
|
function includeBooleanAttr(value) {
|
|
187
188
|
return !!value || value === "";
|
|
188
189
|
}
|
|
190
|
+
function looseCompareArrays(a, b) {
|
|
191
|
+
if (a.length !== b.length) return false;
|
|
192
|
+
let equal = true;
|
|
193
|
+
for (let i = 0; equal && i < a.length; i++) {
|
|
194
|
+
equal = looseEqual(a[i], b[i]);
|
|
195
|
+
}
|
|
196
|
+
return equal;
|
|
197
|
+
}
|
|
198
|
+
function looseEqual(a, b) {
|
|
199
|
+
if (a === b) return true;
|
|
200
|
+
let aValidType = isDate(a);
|
|
201
|
+
let bValidType = isDate(b);
|
|
202
|
+
if (aValidType || bValidType) {
|
|
203
|
+
return aValidType && bValidType ? a.getTime() === b.getTime() : false;
|
|
204
|
+
}
|
|
205
|
+
aValidType = isSymbol(a);
|
|
206
|
+
bValidType = isSymbol(b);
|
|
207
|
+
if (aValidType || bValidType) {
|
|
208
|
+
return a === b;
|
|
209
|
+
}
|
|
210
|
+
aValidType = isArray$1(a);
|
|
211
|
+
bValidType = isArray$1(b);
|
|
212
|
+
if (aValidType || bValidType) {
|
|
213
|
+
return aValidType && bValidType ? looseCompareArrays(a, b) : false;
|
|
214
|
+
}
|
|
215
|
+
aValidType = isObject(a);
|
|
216
|
+
bValidType = isObject(b);
|
|
217
|
+
if (aValidType || bValidType) {
|
|
218
|
+
if (!aValidType || !bValidType) {
|
|
219
|
+
return false;
|
|
220
|
+
}
|
|
221
|
+
const aKeysCount = Object.keys(a).length;
|
|
222
|
+
const bKeysCount = Object.keys(b).length;
|
|
223
|
+
if (aKeysCount !== bKeysCount) {
|
|
224
|
+
return false;
|
|
225
|
+
}
|
|
226
|
+
for (const key in a) {
|
|
227
|
+
const aHasKey = a.hasOwnProperty(key);
|
|
228
|
+
const bHasKey = b.hasOwnProperty(key);
|
|
229
|
+
if (aHasKey && !bHasKey || !aHasKey && bHasKey || !looseEqual(a[key], b[key])) {
|
|
230
|
+
return false;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
return String(a) === String(b);
|
|
235
|
+
}
|
|
236
|
+
function looseIndexOf(arr, val) {
|
|
237
|
+
return arr.findIndex((item) => looseEqual(item, val));
|
|
238
|
+
}
|
|
189
239
|
const isRef$1 = (val) => {
|
|
190
240
|
return !!(val && val.__v_isRef === true);
|
|
191
241
|
};
|
|
@@ -228,7 +278,7 @@ const stringifySymbol = (v, i = "") => {
|
|
|
228
278
|
/* Injected with object hook! */
|
|
229
279
|
|
|
230
280
|
/**
|
|
231
|
-
* @vue/reactivity v3.4.
|
|
281
|
+
* @vue/reactivity v3.4.35
|
|
232
282
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
233
283
|
* @license MIT
|
|
234
284
|
**/
|
|
@@ -1206,7 +1256,7 @@ function proxyRefs(objectWithRefs) {
|
|
|
1206
1256
|
/* Injected with object hook! */
|
|
1207
1257
|
|
|
1208
1258
|
/**
|
|
1209
|
-
* @vue/runtime-core v3.4.
|
|
1259
|
+
* @vue/runtime-core v3.4.35
|
|
1210
1260
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
1211
1261
|
* @license MIT
|
|
1212
1262
|
**/
|
|
@@ -1546,6 +1596,36 @@ function withCtx(fn, ctx = currentRenderingInstance, isNonScopedSlot) {
|
|
|
1546
1596
|
renderFnWithContext._d = true;
|
|
1547
1597
|
return renderFnWithContext;
|
|
1548
1598
|
}
|
|
1599
|
+
function withDirectives(vnode, directives) {
|
|
1600
|
+
if (currentRenderingInstance === null) {
|
|
1601
|
+
return vnode;
|
|
1602
|
+
}
|
|
1603
|
+
const instance = getComponentPublicInstance(currentRenderingInstance);
|
|
1604
|
+
const bindings = vnode.dirs || (vnode.dirs = []);
|
|
1605
|
+
for (let i = 0; i < directives.length; i++) {
|
|
1606
|
+
let [dir, value, arg, modifiers = EMPTY_OBJ] = directives[i];
|
|
1607
|
+
if (dir) {
|
|
1608
|
+
if (isFunction(dir)) {
|
|
1609
|
+
dir = {
|
|
1610
|
+
mounted: dir,
|
|
1611
|
+
updated: dir
|
|
1612
|
+
};
|
|
1613
|
+
}
|
|
1614
|
+
if (dir.deep) {
|
|
1615
|
+
traverse(value);
|
|
1616
|
+
}
|
|
1617
|
+
bindings.push({
|
|
1618
|
+
dir,
|
|
1619
|
+
instance,
|
|
1620
|
+
value,
|
|
1621
|
+
oldValue: void 0,
|
|
1622
|
+
arg,
|
|
1623
|
+
modifiers
|
|
1624
|
+
});
|
|
1625
|
+
}
|
|
1626
|
+
}
|
|
1627
|
+
return vnode;
|
|
1628
|
+
}
|
|
1549
1629
|
function invokeDirectiveHook(vnode, prevVNode, instance, name) {
|
|
1550
1630
|
const bindings = vnode.dirs;
|
|
1551
1631
|
const oldBindings = prevVNode && prevVNode.dirs;
|
|
@@ -2618,20 +2698,33 @@ function normalizePropsOptions(comp, appContext, asMixin = false) {
|
|
|
2618
2698
|
if (validatePropName(normalizedKey)) {
|
|
2619
2699
|
const opt = raw[key];
|
|
2620
2700
|
const prop = normalized[normalizedKey] = isArray$1(opt) || isFunction(opt) ? { type: opt } : extend({}, opt);
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2701
|
+
const propType = prop.type;
|
|
2702
|
+
let shouldCast = false;
|
|
2703
|
+
let shouldCastTrue = true;
|
|
2704
|
+
if (isArray$1(propType)) {
|
|
2705
|
+
for (let index = 0; index < propType.length; ++index) {
|
|
2706
|
+
const type = propType[index];
|
|
2707
|
+
const typeName = isFunction(type) && type.name;
|
|
2708
|
+
if (typeName === "Boolean") {
|
|
2709
|
+
shouldCast = true;
|
|
2710
|
+
break;
|
|
2711
|
+
} else if (typeName === "String") {
|
|
2712
|
+
shouldCastTrue = false;
|
|
2713
|
+
}
|
|
2634
2714
|
}
|
|
2715
|
+
} else {
|
|
2716
|
+
shouldCast = isFunction(propType) && propType.name === "Boolean";
|
|
2717
|
+
}
|
|
2718
|
+
prop[
|
|
2719
|
+
0
|
|
2720
|
+
/* shouldCast */
|
|
2721
|
+
] = shouldCast;
|
|
2722
|
+
prop[
|
|
2723
|
+
1
|
|
2724
|
+
/* shouldCastTrue */
|
|
2725
|
+
] = shouldCastTrue;
|
|
2726
|
+
if (shouldCast || hasOwn(prop, "default")) {
|
|
2727
|
+
needCastKeys.push(normalizedKey);
|
|
2635
2728
|
}
|
|
2636
2729
|
}
|
|
2637
2730
|
}
|
|
@@ -2648,29 +2741,6 @@ function validatePropName(key) {
|
|
|
2648
2741
|
}
|
|
2649
2742
|
return false;
|
|
2650
2743
|
}
|
|
2651
|
-
function getType(ctor) {
|
|
2652
|
-
if (ctor === null) {
|
|
2653
|
-
return "null";
|
|
2654
|
-
}
|
|
2655
|
-
if (typeof ctor === "function") {
|
|
2656
|
-
return ctor.name || "";
|
|
2657
|
-
} else if (typeof ctor === "object") {
|
|
2658
|
-
const name = ctor.constructor && ctor.constructor.name;
|
|
2659
|
-
return name || "";
|
|
2660
|
-
}
|
|
2661
|
-
return "";
|
|
2662
|
-
}
|
|
2663
|
-
function isSameType(a, b) {
|
|
2664
|
-
return getType(a) === getType(b);
|
|
2665
|
-
}
|
|
2666
|
-
function getTypeIndex(type, expectedTypes) {
|
|
2667
|
-
if (isArray$1(expectedTypes)) {
|
|
2668
|
-
return expectedTypes.findIndex((t) => isSameType(t, type));
|
|
2669
|
-
} else if (isFunction(expectedTypes)) {
|
|
2670
|
-
return isSameType(expectedTypes, type) ? 0 : -1;
|
|
2671
|
-
}
|
|
2672
|
-
return -1;
|
|
2673
|
-
}
|
|
2674
2744
|
const isInternalKey = (key) => key[0] === "_" || key === "$stable";
|
|
2675
2745
|
const normalizeSlotValue = (value) => isArray$1(value) ? value.map(normalizeVNode) : [normalizeVNode(value)];
|
|
2676
2746
|
const normalizeSlot$1 = (key, rawSlot, ctx) => {
|
|
@@ -5340,12 +5410,12 @@ function h(type, propsOrChildren, children) {
|
|
|
5340
5410
|
return createVNode(type, propsOrChildren, children);
|
|
5341
5411
|
}
|
|
5342
5412
|
}
|
|
5343
|
-
const version = "3.4.
|
|
5413
|
+
const version = "3.4.35";
|
|
5344
5414
|
|
|
5345
5415
|
/* Injected with object hook! */
|
|
5346
5416
|
|
|
5347
5417
|
/**
|
|
5348
|
-
* @vue/runtime-dom v3.4.
|
|
5418
|
+
* @vue/runtime-dom v3.4.35
|
|
5349
5419
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
5350
5420
|
* @license MIT
|
|
5351
5421
|
**/
|
|
@@ -5715,6 +5785,127 @@ function shouldSetAsProp(el, key, value, isSVG) {
|
|
|
5715
5785
|
}
|
|
5716
5786
|
return key in el;
|
|
5717
5787
|
}
|
|
5788
|
+
const getModelAssigner = (vnode) => {
|
|
5789
|
+
const fn = vnode.props["onUpdate:modelValue"] || false;
|
|
5790
|
+
return isArray$1(fn) ? (value) => invokeArrayFns(fn, value) : fn;
|
|
5791
|
+
};
|
|
5792
|
+
function onCompositionStart(e) {
|
|
5793
|
+
e.target.composing = true;
|
|
5794
|
+
}
|
|
5795
|
+
function onCompositionEnd(e) {
|
|
5796
|
+
const target = e.target;
|
|
5797
|
+
if (target.composing) {
|
|
5798
|
+
target.composing = false;
|
|
5799
|
+
target.dispatchEvent(new Event("input"));
|
|
5800
|
+
}
|
|
5801
|
+
}
|
|
5802
|
+
const assignKey = Symbol("_assign");
|
|
5803
|
+
const vModelText = {
|
|
5804
|
+
created(el, { modifiers: { lazy, trim, number } }, vnode) {
|
|
5805
|
+
el[assignKey] = getModelAssigner(vnode);
|
|
5806
|
+
const castToNumber = number || vnode.props && vnode.props.type === "number";
|
|
5807
|
+
addEventListener(el, lazy ? "change" : "input", (e) => {
|
|
5808
|
+
if (e.target.composing) return;
|
|
5809
|
+
let domValue = el.value;
|
|
5810
|
+
if (trim) {
|
|
5811
|
+
domValue = domValue.trim();
|
|
5812
|
+
}
|
|
5813
|
+
if (castToNumber) {
|
|
5814
|
+
domValue = looseToNumber(domValue);
|
|
5815
|
+
}
|
|
5816
|
+
el[assignKey](domValue);
|
|
5817
|
+
});
|
|
5818
|
+
if (trim) {
|
|
5819
|
+
addEventListener(el, "change", () => {
|
|
5820
|
+
el.value = el.value.trim();
|
|
5821
|
+
});
|
|
5822
|
+
}
|
|
5823
|
+
if (!lazy) {
|
|
5824
|
+
addEventListener(el, "compositionstart", onCompositionStart);
|
|
5825
|
+
addEventListener(el, "compositionend", onCompositionEnd);
|
|
5826
|
+
addEventListener(el, "change", onCompositionEnd);
|
|
5827
|
+
}
|
|
5828
|
+
},
|
|
5829
|
+
// set value on mounted so it's after min/max for type="range"
|
|
5830
|
+
mounted(el, { value }) {
|
|
5831
|
+
el.value = value == null ? "" : value;
|
|
5832
|
+
},
|
|
5833
|
+
beforeUpdate(el, { value, oldValue, modifiers: { lazy, trim, number } }, vnode) {
|
|
5834
|
+
el[assignKey] = getModelAssigner(vnode);
|
|
5835
|
+
if (el.composing) return;
|
|
5836
|
+
const elValue = (number || el.type === "number") && !/^0\d/.test(el.value) ? looseToNumber(el.value) : el.value;
|
|
5837
|
+
const newValue = value == null ? "" : value;
|
|
5838
|
+
if (elValue === newValue) {
|
|
5839
|
+
return;
|
|
5840
|
+
}
|
|
5841
|
+
if (document.activeElement === el && el.type !== "range") {
|
|
5842
|
+
if (lazy && value === oldValue) {
|
|
5843
|
+
return;
|
|
5844
|
+
}
|
|
5845
|
+
if (trim && el.value.trim() === newValue) {
|
|
5846
|
+
return;
|
|
5847
|
+
}
|
|
5848
|
+
}
|
|
5849
|
+
el.value = newValue;
|
|
5850
|
+
}
|
|
5851
|
+
};
|
|
5852
|
+
const vModelCheckbox = {
|
|
5853
|
+
// #4096 array checkboxes need to be deep traversed
|
|
5854
|
+
deep: true,
|
|
5855
|
+
created(el, _, vnode) {
|
|
5856
|
+
el[assignKey] = getModelAssigner(vnode);
|
|
5857
|
+
addEventListener(el, "change", () => {
|
|
5858
|
+
const modelValue = el._modelValue;
|
|
5859
|
+
const elementValue = getValue(el);
|
|
5860
|
+
const checked = el.checked;
|
|
5861
|
+
const assign = el[assignKey];
|
|
5862
|
+
if (isArray$1(modelValue)) {
|
|
5863
|
+
const index = looseIndexOf(modelValue, elementValue);
|
|
5864
|
+
const found = index !== -1;
|
|
5865
|
+
if (checked && !found) {
|
|
5866
|
+
assign(modelValue.concat(elementValue));
|
|
5867
|
+
} else if (!checked && found) {
|
|
5868
|
+
const filtered = [...modelValue];
|
|
5869
|
+
filtered.splice(index, 1);
|
|
5870
|
+
assign(filtered);
|
|
5871
|
+
}
|
|
5872
|
+
} else if (isSet(modelValue)) {
|
|
5873
|
+
const cloned = new Set(modelValue);
|
|
5874
|
+
if (checked) {
|
|
5875
|
+
cloned.add(elementValue);
|
|
5876
|
+
} else {
|
|
5877
|
+
cloned.delete(elementValue);
|
|
5878
|
+
}
|
|
5879
|
+
assign(cloned);
|
|
5880
|
+
} else {
|
|
5881
|
+
assign(getCheckboxValue(el, checked));
|
|
5882
|
+
}
|
|
5883
|
+
});
|
|
5884
|
+
},
|
|
5885
|
+
// set initial checked on mount to wait for true-value/false-value
|
|
5886
|
+
mounted: setChecked,
|
|
5887
|
+
beforeUpdate(el, binding, vnode) {
|
|
5888
|
+
el[assignKey] = getModelAssigner(vnode);
|
|
5889
|
+
setChecked(el, binding, vnode);
|
|
5890
|
+
}
|
|
5891
|
+
};
|
|
5892
|
+
function setChecked(el, { value, oldValue }, vnode) {
|
|
5893
|
+
el._modelValue = value;
|
|
5894
|
+
if (isArray$1(value)) {
|
|
5895
|
+
el.checked = looseIndexOf(value, vnode.props.value) > -1;
|
|
5896
|
+
} else if (isSet(value)) {
|
|
5897
|
+
el.checked = value.has(vnode.props.value);
|
|
5898
|
+
} else if (value !== oldValue) {
|
|
5899
|
+
el.checked = looseEqual(value, getCheckboxValue(el, true));
|
|
5900
|
+
}
|
|
5901
|
+
}
|
|
5902
|
+
function getValue(el) {
|
|
5903
|
+
return "_value" in el ? el._value : el.value;
|
|
5904
|
+
}
|
|
5905
|
+
function getCheckboxValue(el, checked) {
|
|
5906
|
+
const key = checked ? "_trueValue" : "_falseValue";
|
|
5907
|
+
return key in el ? el[key] : checked;
|
|
5908
|
+
}
|
|
5718
5909
|
const rendererOptions = /* @__PURE__ */ extend({ patchProp }, nodeOps);
|
|
5719
5910
|
let renderer;
|
|
5720
5911
|
function ensureRenderer() {
|
|
@@ -5759,7 +5950,7 @@ function normalizeContainer(container) {
|
|
|
5759
5950
|
/* Injected with object hook! */
|
|
5760
5951
|
|
|
5761
5952
|
/*!
|
|
5762
|
-
* vue-router v4.4.
|
|
5953
|
+
* vue-router v4.4.2
|
|
5763
5954
|
* (c) 2024 Eduardo San Martin Morote
|
|
5764
5955
|
* @license MIT
|
|
5765
5956
|
*/
|
|
@@ -7598,6 +7789,9 @@ function extractChangingRecords(to, from) {
|
|
|
7598
7789
|
}
|
|
7599
7790
|
return [leavingRecords, updatingRecords, enteringRecords];
|
|
7600
7791
|
}
|
|
7792
|
+
function useRoute(_name) {
|
|
7793
|
+
return inject(routeLocationKey);
|
|
7794
|
+
}
|
|
7601
7795
|
|
|
7602
7796
|
/* Injected with object hook! */
|
|
7603
7797
|
|
|
@@ -7681,25 +7875,31 @@ const routes = [
|
|
|
7681
7875
|
{
|
|
7682
7876
|
path: "/",
|
|
7683
7877
|
name: "/",
|
|
7684
|
-
component: () => __vitePreload(() => import('./index-
|
|
7878
|
+
component: () => __vitePreload(() => import('./index-BnannfxL.js'),true?__vite__mapDeps([0,1,2,3]):void 0,import.meta.url)
|
|
7685
7879
|
/* no children */
|
|
7686
7880
|
},
|
|
7687
7881
|
{
|
|
7688
7882
|
path: "/about",
|
|
7689
7883
|
name: "/about",
|
|
7690
|
-
component: () => __vitePreload(() => import('./about-
|
|
7884
|
+
component: () => __vitePreload(() => import('./about-OznFGoV6.js'),true?__vite__mapDeps([4,1]):void 0,import.meta.url)
|
|
7691
7885
|
/* no children */
|
|
7692
7886
|
},
|
|
7693
7887
|
{
|
|
7694
7888
|
path: "/categories",
|
|
7695
7889
|
name: "/categories",
|
|
7696
|
-
component: () => __vitePreload(() => import('./categories-
|
|
7890
|
+
component: () => __vitePreload(() => import('./categories-Dof0ZrYR.js'),true?__vite__mapDeps([5,1]):void 0,import.meta.url)
|
|
7891
|
+
/* no children */
|
|
7892
|
+
},
|
|
7893
|
+
{
|
|
7894
|
+
path: "/migration",
|
|
7895
|
+
name: "/migration",
|
|
7896
|
+
component: () => __vitePreload(() => import('./migration-BvfMdnj6.js'),true?__vite__mapDeps([6,2]):void 0,import.meta.url)
|
|
7697
7897
|
/* no children */
|
|
7698
7898
|
},
|
|
7699
7899
|
{
|
|
7700
7900
|
path: "/tags",
|
|
7701
7901
|
name: "/tags",
|
|
7702
|
-
component: () => __vitePreload(() => import('./tags-
|
|
7902
|
+
component: () => __vitePreload(() => import('./tags-BIEb0ZZ9.js'),true?__vite__mapDeps([7,1]):void 0,import.meta.url)
|
|
7703
7903
|
/* no children */
|
|
7704
7904
|
}
|
|
7705
7905
|
];
|
|
@@ -7750,6 +7950,87 @@ const isStaticMode = document.body.getAttribute("data-valaxy-devtools-mode") ===
|
|
|
7750
7950
|
|
|
7751
7951
|
/* Injected with object hook! */
|
|
7752
7952
|
|
|
7953
|
+
const _hoisted_1$1 = {
|
|
7954
|
+
class: "w-full border-b shadow flex justify-end",
|
|
7955
|
+
dark: "border-b-black",
|
|
7956
|
+
flex: "~"
|
|
7957
|
+
};
|
|
7958
|
+
const _hoisted_2$1 = /* @__PURE__ */ createBaseVNode("div", { flex: "1" }, null, -1);
|
|
7959
|
+
const _hoisted_3 = /* @__PURE__ */ createBaseVNode("a", {
|
|
7960
|
+
href: "https://valaxy.site",
|
|
7961
|
+
target: "_blank",
|
|
7962
|
+
class: "bg-white dark:bg-gray-900 inline-flex justify-center items-center w-8 h-8 hover:bg-gray-200"
|
|
7963
|
+
}, [
|
|
7964
|
+
/* @__PURE__ */ createBaseVNode("div", { "i-ri-book-line": "" })
|
|
7965
|
+
], -1);
|
|
7966
|
+
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
7967
|
+
__name: "VDHeader",
|
|
7968
|
+
setup(__props) {
|
|
7969
|
+
const route = useRoute();
|
|
7970
|
+
const routeMenus = [
|
|
7971
|
+
{
|
|
7972
|
+
to: "/",
|
|
7973
|
+
opened: "i-vscode-icons:folder-type-route-opened",
|
|
7974
|
+
closed: "i-vscode-icons:folder-type-route"
|
|
7975
|
+
},
|
|
7976
|
+
// {
|
|
7977
|
+
// to: '/categories',
|
|
7978
|
+
// opened: 'i-vscode-icons:folder-type-route-opened',
|
|
7979
|
+
// closed: 'i-vscode-icons:folder-type-route',
|
|
7980
|
+
// },
|
|
7981
|
+
// {
|
|
7982
|
+
// to: '/tags',
|
|
7983
|
+
// opened: 'i-vscode-icons:folder-type-route-opened',
|
|
7984
|
+
// closed: 'i-vscode-icons:folder-type-route',
|
|
7985
|
+
// },
|
|
7986
|
+
{
|
|
7987
|
+
to: "/migration",
|
|
7988
|
+
opened: "i-vscode-icons:folder-type-tools-opened",
|
|
7989
|
+
closed: "i-vscode-icons:folder-type-tools"
|
|
7990
|
+
}
|
|
7991
|
+
];
|
|
7992
|
+
return (_ctx, _cache) => {
|
|
7993
|
+
const _component_RouterLink = resolveComponent("RouterLink");
|
|
7994
|
+
return openBlock(), createElementBlock("div", _hoisted_1$1, [
|
|
7995
|
+
(openBlock(), createElementBlock(Fragment, null, renderList(routeMenus, (menu) => {
|
|
7996
|
+
return createVNode(_component_RouterLink, {
|
|
7997
|
+
key: menu.to,
|
|
7998
|
+
class: normalizeClass(["dark:bg-gray-900 inline-flex justify-center items-center w-8 h-8 hover:bg-gray-100 dark:hover:bg-gray-800", {
|
|
7999
|
+
"bg-gray-200 dark:bg-gray-800": unref(route).path === menu.to,
|
|
8000
|
+
"bg-white": unref(route).path !== menu.to
|
|
8001
|
+
}]),
|
|
8002
|
+
to: menu.to
|
|
8003
|
+
}, {
|
|
8004
|
+
default: withCtx(() => [
|
|
8005
|
+
unref(route).path === menu.to ? (openBlock(), createElementBlock("div", {
|
|
8006
|
+
key: 0,
|
|
8007
|
+
class: normalizeClass(menu.opened)
|
|
8008
|
+
}, null, 2)) : (openBlock(), createElementBlock("div", {
|
|
8009
|
+
key: 1,
|
|
8010
|
+
class: normalizeClass(menu.closed)
|
|
8011
|
+
}, null, 2))
|
|
8012
|
+
]),
|
|
8013
|
+
_: 2
|
|
8014
|
+
}, 1032, ["class", "to"]);
|
|
8015
|
+
}), 64)),
|
|
8016
|
+
_hoisted_2$1,
|
|
8017
|
+
_hoisted_3
|
|
8018
|
+
]);
|
|
8019
|
+
};
|
|
8020
|
+
}
|
|
8021
|
+
});
|
|
8022
|
+
|
|
8023
|
+
/* Injected with object hook! */
|
|
8024
|
+
|
|
8025
|
+
const _hoisted_1 = {
|
|
8026
|
+
class: "h-full",
|
|
8027
|
+
flex: "~ col",
|
|
8028
|
+
text: "gray-700 dark:gray-200"
|
|
8029
|
+
};
|
|
8030
|
+
const _hoisted_2 = {
|
|
8031
|
+
style: { "height": "calc(100% - 32px)" },
|
|
8032
|
+
overflow: "auto"
|
|
8033
|
+
};
|
|
7753
8034
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
7754
8035
|
__name: "App",
|
|
7755
8036
|
setup(__props) {
|
|
@@ -7758,7 +8039,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
7758
8039
|
});
|
|
7759
8040
|
return (_ctx, _cache) => {
|
|
7760
8041
|
const _component_RouterView = resolveComponent("RouterView");
|
|
7761
|
-
return openBlock(),
|
|
8042
|
+
return openBlock(), createElementBlock("main", _hoisted_1, [
|
|
8043
|
+
createVNode(_sfc_main$1),
|
|
8044
|
+
createBaseVNode("div", _hoisted_2, [
|
|
8045
|
+
createVNode(_component_RouterView)
|
|
8046
|
+
])
|
|
8047
|
+
]);
|
|
7762
8048
|
};
|
|
7763
8049
|
}
|
|
7764
8050
|
});
|
|
@@ -7785,4 +8071,4 @@ app.mount("#app");
|
|
|
7785
8071
|
|
|
7786
8072
|
/* Injected with object hook! */
|
|
7787
8073
|
|
|
7788
|
-
export {
|
|
8074
|
+
export { isStaticMode as A, withDirectives as B, vModelCheckbox as C, vModelText as D, h as E, Fragment as F, normalizeStyle as G, createElementBlock as a, createCommentVNode as b, computed as c, defineComponent as d, ref as e, onMounted as f, getAppWindow as g, createBaseVNode as h, resolveComponent as i, createBlock as j, renderList as k, createTextVNode as l, createVNode as m, normalizeClass as n, openBlock as o, pageData as p, toRaw as q, renderSlot as r, frontmatter as s, toDisplayString as t, unref as u, getWindowProperty as v, withCtx as w, getGlobalValaxyProperty as x, activePath as y, devtoolsRouter as z };
|
|
@@ -384,7 +384,7 @@ Make elements with the HTML hidden attribute stay hidden by default.
|
|
|
384
384
|
|
|
385
385
|
[hidden] {
|
|
386
386
|
display: none;
|
|
387
|
-
} *,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.i-ri-book-line,[i-ri-book-line=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3 18.5V5a3 3 0 0 1 3-3h14a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5A3.5 3.5 0 0 1 3 18.5M19 20v-3H6.5a1.5 1.5 0 0 0 0 3zM5 15.337A3.5 3.5 0 0 1 6.5 15H19V4H6a1 1 0 0 0-1 1z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1.2em;height:1.2em;}.i-ri-folder-2-line,[i-ri-folder-2-line=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12.414 5H21a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7.414zM20 11H4v8h16zm0-2V7h-8.414l-2-2H4v4z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1.2em;height:1.2em;}.i-vscode-icons\:file-type-vscode,[i-vscode-icons\:file-type-vscode=""]{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%230065a9' d='m29.01 5.03l-5.766-2.776a1.74 1.74 0 0 0-1.989.338L2.38 19.8a1.166 1.166 0 0 0-.08 1.647q.037.04.077.077l1.541 1.4a1.165 1.165 0 0 0 1.489.066L28.142 5.75A1.158 1.158 0 0 1 30 6.672v-.067a1.75 1.75 0 0 0-.99-1.575'/%3E%3Cpath fill='%23007acc' d='m29.01 26.97l-5.766 2.777a1.745 1.745 0 0 1-1.989-.338L2.38 12.2a1.166 1.166 0 0 1-.08-1.647q.037-.04.077-.077l1.541-1.4A1.165 1.165 0 0 1 5.41 9.01l22.732 17.24A1.158 1.158 0 0 0 30 25.328v.072a1.75 1.75 0 0 1-.99 1.57'/%3E%3Cpath fill='%231f9cf0' d='M23.244 29.747a1.745 1.745 0 0 1-1.989-.338A1.025 1.025 0 0 0 23 28.684V3.316a1.024 1.024 0 0 0-1.749-.724a1.74 1.74 0 0 1 1.989-.339l5.765 2.772A1.75 1.75 0 0 1 30 6.6v18.8a1.75 1.75 0 0 1-.991 1.576Z'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;width:1.2em;height:1.2em;}.absolute{position:absolute;}.relative{position:relative;}.left-1{left:0.25rem;}[m~="x-1"]{margin-left:0.25rem;margin-right:0.25rem;}.mr-1,[mr-1=""]{margin-right:0.25rem;}.h-8{height:2rem;}.h-full{height:100%;}.w-8{width:2rem;}.w-full{width:100%;}.flex,[flex=""],[flex~="\~"]{display:flex;}.inline-flex,[inline-flex=""]{display:inline-flex;}.flex-grow{flex-grow:1;}[flex~="col"]{flex-direction:column;}.cursor-pointer{cursor:pointer;}.list-decimal{list-style-type:decimal;}.items-center,[items-center=""]{align-items:center;}.justify-end{justify-content:flex-end;}.justify-center,[justify-center=""]{justify-content:center;}[gap~="\32 "]{gap:0.5rem;}[overflow~="auto"]{overflow:auto;}.border,[border=""]{border-width:1px;}.border-b{border-bottom-width:1px;}.border-b-black,.dark [dark~="border-b-black"]{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgb(0 0 0 / var(--un-border-bottom-opacity));}.rounded{border-radius:0.25rem;}.rounded-full,[rounded-full=""]{border-radius:9999px;}.bg-gray-100{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity)) /* #f3f4f6 */;}.dark .dark\:bg-gray-900{--un-bg-opacity:1;background-color:rgb(17 24 39 / var(--un-bg-opacity)) /* #111827 */;}.p-2,[p~="\32 "]{padding:0.5rem;}.px-1{padding-left:0.25rem;padding-right:0.25rem;}.px-2,[p~="x-2"],[px-2=""]{padding-left:0.5rem;padding-right:0.5rem;}.py,[py~="\34 "]{padding-top:1rem;padding-bottom:1rem;}.py-1,[p~="y-1"],[py-1=""]{padding-top:0.25rem;padding-bottom:0.25rem;}.py-2,[py-2=""]{padding-top:0.5rem;padding-bottom:0.5rem;}.pl{padding-left:1rem;}.pl-5{padding-left:1.25rem;}.pr,[pr~="\34 "]{padding-right:1rem;}[pl~="\31 2"]{padding-left:3rem;}.text-xs{font-size:0.75rem;line-height:1rem;}.dark [text~="dark\:gray-200"]{--un-text-opacity:1;color:rgb(229 231 235 / var(--un-text-opacity)) /* #e5e7eb */;}.text-blue-500{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity)) /* #3b82f6 */;}[text~="gray-700"]{--un-text-opacity:1;color:rgb(55 65 81 / var(--un-text-opacity)) /* #374151 */;}.hover\:text-blue-500:hover{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity)) /* #3b82f6 */;}.font-bold{font-weight:700;}.op-60{opacity:0.6;}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-lg:hover{--un-shadow:var(--un-shadow-inset) 0 10px 15px -3px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 4px 6px -4px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-inset{--un-shadow-inset:inset;}.outline{outline-style:solid;}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);} html,
|
|
387
|
+
} *,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.i-ri-book-line,[i-ri-book-line=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M3 18.5V5a3 3 0 0 1 3-3h14a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5A3.5 3.5 0 0 1 3 18.5M19 20v-3H6.5a1.5 1.5 0 0 0 0 3zM5 15.337A3.5 3.5 0 0 1 6.5 15H19V4H6a1 1 0 0 0-1 1z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1.2em;height:1.2em;}.i-ri-folder-2-line,[i-ri-folder-2-line=""]{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M12.414 5H21a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7.414zM20 11H4v8h16zm0-2V7h-8.414l-2-2H4v4z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1.2em;height:1.2em;}.i-vscode-icons\:file-type-vscode,[i-vscode-icons\:file-type-vscode=""]{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%230065a9' d='m29.01 5.03l-5.766-2.776a1.74 1.74 0 0 0-1.989.338L2.38 19.8a1.166 1.166 0 0 0-.08 1.647q.037.04.077.077l1.541 1.4a1.165 1.165 0 0 0 1.489.066L28.142 5.75A1.158 1.158 0 0 1 30 6.672v-.067a1.75 1.75 0 0 0-.99-1.575'/%3E%3Cpath fill='%23007acc' d='m29.01 26.97l-5.766 2.777a1.745 1.745 0 0 1-1.989-.338L2.38 12.2a1.166 1.166 0 0 1-.08-1.647q.037-.04.077-.077l1.541-1.4A1.165 1.165 0 0 1 5.41 9.01l22.732 17.24A1.158 1.158 0 0 0 30 25.328v.072a1.75 1.75 0 0 1-.99 1.57'/%3E%3Cpath fill='%231f9cf0' d='M23.244 29.747a1.745 1.745 0 0 1-1.989-.338A1.025 1.025 0 0 0 23 28.684V3.316a1.024 1.024 0 0 0-1.749-.724a1.74 1.74 0 0 1 1.989-.339l5.765 2.772A1.75 1.75 0 0 1 30 6.6v18.8a1.75 1.75 0 0 1-.991 1.576Z'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;width:1.2em;height:1.2em;}.i-vscode-icons\:folder-type-route{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%23bf5555' d='M27.5 5.5h-9.3l-2.1 4.2H4.4v16.8h25.2v-21Zm0 4.2h-8.2l1.1-2.1h7.1Z'/%3E%3Cpath fill='%2340e81c' d='M14.2 18.428a4.2 4.2 0 1 1 4.2-4.2a4.2 4.2 0 0 1-4.2 4.2m0-6a1.8 1.8 0 1 0 1.8 1.8a1.8 1.8 0 0 0-1.8-1.797Z'/%3E%3Cpath fill='%231c91e8' d='M26.8 25.38a4.2 4.2 0 1 1 4.2-4.2a4.2 4.2 0 0 1-4.2 4.2m0-6a1.8 1.8 0 1 0 1.8 1.8a1.8 1.8 0 0 0-1.8-1.797Z'/%3E%3Cpath fill='%23eada1b' d='M16.187 31a4.2 4.2 0 1 1 4.2-4.2a4.2 4.2 0 0 1-4.2 4.2m0-6a1.8 1.8 0 1 0 1.8 1.8a1.8 1.8 0 0 0-1.8-1.8'/%3E%3Cpath fill='%23474756' d='M14.19 19.094a6 6 0 0 1-.645-.015l.519 3.306a4.9 4.9 0 0 1 2.1-.475a6 6 0 0 1 .668.042l-.517-3.3a4.9 4.9 0 0 1-2.125.442M22 22.158l-2.321 1.22a5 5 0 0 1 1.307 2.475l2.337-1.229A5.07 5.07 0 0 1 22 22.158m1.359-4.458l-4.38-2.422a4.9 4.9 0 0 1-1.355 2.448l4.388 2.432a5.05 5.05 0 0 1 1.347-2.458'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;width:1.2em;height:1.2em;}.i-vscode-icons\:folder-type-route-opened{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%23db7b7b' d='M27.4 5.5h-9.2l-2.1 4.2H4.3v16.8h25.2v-21Zm0 18.7H6.6V11.8h20.8Zm0-14.5h-8.2l1-2.1h7.1v2.1Z'/%3E%3Cpath fill='%23db7b7b' d='M25.7 13.7H.5l3.8 12.8h25.2z'/%3E%3Cpath fill='%2340e81c' d='M14.2 18.428a4.2 4.2 0 1 1 4.2-4.2a4.2 4.2 0 0 1-4.2 4.2m0-6a1.8 1.8 0 1 0 1.8 1.8a1.8 1.8 0 0 0-1.8-1.797Z'/%3E%3Cpath fill='%231c91e8' d='M26.8 25.38a4.2 4.2 0 1 1 4.2-4.2a4.2 4.2 0 0 1-4.2 4.2m0-6a1.8 1.8 0 1 0 1.8 1.8a1.8 1.8 0 0 0-1.8-1.797Z'/%3E%3Cpath fill='%23eada1b' d='M16.187 31a4.2 4.2 0 1 1 4.2-4.2a4.2 4.2 0 0 1-4.2 4.2m0-6a1.8 1.8 0 1 0 1.8 1.8a1.8 1.8 0 0 0-1.8-1.8'/%3E%3Cpath fill='%23474756' d='M14.19 19.094a6 6 0 0 1-.645-.015l.519 3.306a4.9 4.9 0 0 1 2.1-.475a6 6 0 0 1 .668.042l-.517-3.3a4.9 4.9 0 0 1-2.125.442M22 22.158l-2.321 1.22a5 5 0 0 1 1.307 2.475l2.337-1.229A5.07 5.07 0 0 1 22 22.158m1.359-4.458l-4.38-2.422a4.9 4.9 0 0 1-1.355 2.448l4.388 2.432a5.05 5.05 0 0 1 1.347-2.458'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;width:1.2em;height:1.2em;}.i-vscode-icons\:folder-type-tools{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%235c4300' d='M27.5 5.5h-9.3l-2.1 4.2H4.4v16.8h25.2v-21Zm0 4.2h-8.2l1.1-2.1h7.1Z'/%3E%3Cpath fill='%23d08b00' d='m23.826 20.454l1.5-1.5a4.34 4.34 0 0 0 3.382-.08a.413.413 0 0 0 .121-.668l-2.679-2.679a.833.833 0 0 1 0-1.179l2.676-2.676a.415.415 0 0 0-.117-.672a4.32 4.32 0 0 0-5.83 5.443l-1.534 1.534Zm-2.874-2.088l-2.079-2.079l-2.481 2.481l2.079 2.079l2.481 2.481l7.6 7.6a.556.556 0 0 0 .786 0l1.695-1.695a.556.556 0 0 0 0-.786l-7.6-7.6Z'/%3E%3Cpath fill='%23d08b00' d='m29.956 13.068l-2.222 2.222a.455.455 0 0 0 0 .643l1.713 1.713a.454.454 0 0 0 .676-.036a4.33 4.33 0 0 0 .571-4.406a.454.454 0 0 0-.738-.136M12.94 23.6l2.679 2.679a.833.833 0 0 1 0 1.179l-2.676 2.676a.415.415 0 0 0 .122.672a4.32 4.32 0 0 0 5.835-5.427l1.657-1.657l-2.481-2.481l-1.616 1.617a4.34 4.34 0 0 0-3.4.074a.413.413 0 0 0-.12.668'/%3E%3Cpath fill='%23d08b00' d='M11.651 24.235a4.33 4.33 0 0 0-.571 4.406a.454.454 0 0 0 .737.136l2.222-2.222a.455.455 0 0 0 0-.643L12.327 24.2a.454.454 0 0 0-.676.035m1.272-3.747a.68.68 0 0 0 .963 0l.128-.128a.68.68 0 0 0 0-.963l-.257-.257l.506-.506l-2.376-2.376l-.506.506l-.257-.257a.68.68 0 0 0-.963 0l-.128.128a.68.68 0 0 0 0 .963Zm3.677-8.8l2.347 2.347c2.705-1.8 4.218-.291 2.138-2.37c-1.44-1.439-3.257-.759-4.485.023m-.723.065a.68.68 0 0 0-.963 0l-2.89 2.89a.68.68 0 0 0 0 .963l.257.257l2.376 2.376l.257.257a.68.68 0 0 0 .882.069a1 1 0 0 0 .081-.069l.123-.121l2.481-2.481l.2-.2l.091-.091a.68.68 0 0 0 0-.963l-.28-.28l-2.356-2.356Z'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;width:1.2em;height:1.2em;}.i-vscode-icons\:folder-type-tools-opened{background:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='%237d6933' d='M27.4 5.5h-9.2l-2.1 4.2H4.3v16.8h25.2v-21Zm0 18.7H6.6V11.8h20.8Zm0-14.5h-8.2l1-2.1h7.1v2.1Z'/%3E%3Cpath fill='%237d6933' d='M25.7 13.7H.5l3.8 12.8h25.2z'/%3E%3Cpath fill='%23d08b00' d='m23.826 20.454l1.5-1.5a4.34 4.34 0 0 0 3.382-.08a.413.413 0 0 0 .121-.668l-2.679-2.679a.833.833 0 0 1 0-1.179l2.676-2.676a.415.415 0 0 0-.117-.672a4.32 4.32 0 0 0-5.83 5.443l-1.534 1.534Zm-2.874-2.088l-2.079-2.079l-2.481 2.481l2.079 2.079l2.481 2.481l7.6 7.6a.556.556 0 0 0 .786 0l1.695-1.695a.556.556 0 0 0 0-.786l-7.6-7.6Z'/%3E%3Cpath fill='%23d08b00' d='m29.956 13.068l-2.222 2.222a.455.455 0 0 0 0 .643l1.713 1.713a.454.454 0 0 0 .676-.036a4.33 4.33 0 0 0 .571-4.406a.454.454 0 0 0-.738-.136M12.94 23.6l2.679 2.679a.833.833 0 0 1 0 1.179l-2.676 2.676a.415.415 0 0 0 .122.672a4.32 4.32 0 0 0 5.835-5.427l1.657-1.657l-2.481-2.481l-1.616 1.617a4.34 4.34 0 0 0-3.4.074a.413.413 0 0 0-.12.668'/%3E%3Cpath fill='%23d08b00' d='M11.651 24.235a4.33 4.33 0 0 0-.571 4.406a.454.454 0 0 0 .737.136l2.222-2.222a.455.455 0 0 0 0-.643L12.327 24.2a.454.454 0 0 0-.676.035m1.272-3.747a.68.68 0 0 0 .963 0l.128-.128a.68.68 0 0 0 0-.963l-.257-.257l.506-.506l-2.376-2.376l-.506.506l-.257-.257a.68.68 0 0 0-.963 0l-.128.128a.68.68 0 0 0 0 .963Zm3.677-8.8l2.347 2.347c2.705-1.8 4.218-.291 2.138-2.37c-1.44-1.439-3.257-.759-4.485.023m-.723.065a.68.68 0 0 0-.963 0l-2.89 2.89a.68.68 0 0 0 0 .963l.257.257l2.376 2.376l.257.257a.68.68 0 0 0 .882.069a1 1 0 0 0 .081-.069l.123-.121l2.481-2.481l.2-.2l.091-.091a.68.68 0 0 0 0-.963l-.28-.28l-2.356-2.356Z'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;width:1.2em;height:1.2em;}.absolute{position:absolute;}.relative{position:relative;}.left-1{left:0.25rem;}[m~="x-1"]{margin-left:0.25rem;margin-right:0.25rem;}.mr-1,[mr-1=""]{margin-right:0.25rem;}.h-8{height:2rem;}.h-full{height:100%;}.h2{height:0.5rem;}.w-8{width:2rem;}.w-full{width:100%;}.flex,[flex=""],[flex~="\~"]{display:flex;}.inline-flex,[inline-flex=""]{display:inline-flex;}[flex~="\31 "]{flex:1 1 0%;}.flex-grow{flex-grow:1;}[flex~="col"]{flex-direction:column;}.cursor-pointer{cursor:pointer;}.list-decimal{list-style-type:decimal;}.items-center,[items-center=""]{align-items:center;}.justify-end{justify-content:flex-end;}.justify-center,[justify-center=""]{justify-content:center;}[gap~="\32 "]{gap:0.5rem;}[overflow~="auto"]{overflow:auto;}.border,[border=""]{border-width:1px;}.border-b{border-bottom-width:1px;}.border-b-black,.dark [dark~="border-b-black"]{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgb(0 0 0 / var(--un-border-bottom-opacity));}.rounded{border-radius:0.25rem;}.rounded-full,[rounded-full=""]{border-radius:9999px;}.bg-gray-200{--un-bg-opacity:1;background-color:rgb(229 231 235 / var(--un-bg-opacity)) /* #e5e7eb */;}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity)) /* #fff */;}.dark .dark\:bg-gray-800{--un-bg-opacity:1;background-color:rgb(31 41 55 / var(--un-bg-opacity)) /* #1f2937 */;}.dark .dark\:bg-gray-900{--un-bg-opacity:1;background-color:rgb(17 24 39 / var(--un-bg-opacity)) /* #111827 */;}.dark .dark\:hover\:bg-gray-800:hover{--un-bg-opacity:1;background-color:rgb(31 41 55 / var(--un-bg-opacity)) /* #1f2937 */;}.hover\:bg-gray-100:hover{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity)) /* #f3f4f6 */;}.hover\:bg-gray-200:hover{--un-bg-opacity:1;background-color:rgb(229 231 235 / var(--un-bg-opacity)) /* #e5e7eb */;}.p-2,[p~="\32 "]{padding:0.5rem;}.px-1{padding-left:0.25rem;padding-right:0.25rem;}.px-2,[p~="x-2"],[px-2=""]{padding-left:0.5rem;padding-right:0.5rem;}.py,[py~="\34 "]{padding-top:1rem;padding-bottom:1rem;}.py-1,[p~="y-1"],[py-1=""]{padding-top:0.25rem;padding-bottom:0.25rem;}.py-2,[py-2=""]{padding-top:0.5rem;padding-bottom:0.5rem;}.pl{padding-left:1rem;}.pl-5{padding-left:1.25rem;}.pr,[pr~="\34 "]{padding-right:1rem;}[pl~="\31 2"]{padding-left:3rem;}.text-xs{font-size:0.75rem;line-height:1rem;}.dark [text~="dark\:gray-200"]{--un-text-opacity:1;color:rgb(229 231 235 / var(--un-text-opacity)) /* #e5e7eb */;}.text-blue-500{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity)) /* #3b82f6 */;}[text~="gray-700"]{--un-text-opacity:1;color:rgb(55 65 81 / var(--un-text-opacity)) /* #374151 */;}.hover\:text-blue-500:hover{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity)) /* #3b82f6 */;}.font-bold{font-weight:700;}.op-60{opacity:0.6;}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.hover\:shadow-lg:hover{--un-shadow:var(--un-shadow-inset) 0 10px 15px -3px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 4px 6px -4px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-inset{--un-shadow-inset:inset;}.outline{outline-style:solid;}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);} html,
|
|
388
388
|
body {
|
|
389
389
|
height: 100%;
|
|
390
390
|
}
|