mm
This commit is contained in:
@@ -1 +0,0 @@
|
|||||||
registry = https://registry.npmmirror.com/
|
|
||||||
8
apps/ui-site/.vscode/settings.json
vendored
8
apps/ui-site/.vscode/settings.json
vendored
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"json.schemas": [
|
|
||||||
{
|
|
||||||
"fileMatch": ["/tsconfig.build.json", "/tsconfig.base.json"],
|
|
||||||
"schema": {}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="zh-CN">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>DefGov UI Web</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="root"></div>
|
|
||||||
<script type="module" src="/src/main.tsx"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "ui-site",
|
|
||||||
"version": "0.0.0",
|
|
||||||
"private": true,
|
|
||||||
"type": "module",
|
|
||||||
"sideEffects": [
|
|
||||||
"*.css"
|
|
||||||
],
|
|
||||||
"module": "./dist/index.es.js",
|
|
||||||
"main": "./dist/index.cjs.js",
|
|
||||||
"types": "./dist/index.d.ts",
|
|
||||||
"style": "./dist/index.css",
|
|
||||||
"exports": {
|
|
||||||
".": {
|
|
||||||
"types": "./dist/index.d.ts",
|
|
||||||
"import": "./dist/index.es.js",
|
|
||||||
"require": "./dist/index.cjs.js"
|
|
||||||
},
|
|
||||||
"./index.css": "./dist/index.css"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"dist"
|
|
||||||
],
|
|
||||||
"scripts": {
|
|
||||||
"dev": "vite",
|
|
||||||
"build": "tsc -p tsconfig.build.json && vite build"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@rollup/plugin-typescript": "^12.3.0",
|
|
||||||
"@types/node": "^25.6.0",
|
|
||||||
"@types/react": "^19.2.14",
|
|
||||||
"@types/react-dom": "^19.2.3",
|
|
||||||
"@vitejs/plugin-react": "~5.2.0",
|
|
||||||
"glob": "^13.0.6",
|
|
||||||
"tailwind-merge": "^3.5.0",
|
|
||||||
"tailwind-variants": "^3.2.2",
|
|
||||||
"ts-node": "^10.9.2",
|
|
||||||
"typescript": "~6.0.3",
|
|
||||||
"vite": "~7.3.2",
|
|
||||||
"vite-plugin-dts": "^4.5.4"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@defgov/ui-web-tw": "workspace:*",
|
|
||||||
"react": "^19.2.5",
|
|
||||||
"react-dom": "^19.2.5"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
import { clsm } from "@defgov/ui-web-tw";
|
|
||||||
import { ButtonGallery } from "./gallery/ButtonGallery";
|
|
||||||
import { cn } from "tailwind-variants";
|
|
||||||
|
|
||||||
export default function App() {
|
|
||||||
const s1 = "hta-xs";
|
|
||||||
const s2 = "hta-sm";
|
|
||||||
const sm = clsm(s1, s2);
|
|
||||||
console.log(sm); // 应该输出 hta-sm
|
|
||||||
// 合并逻辑是,第一个短横线“-”之前的,如果相同,就意味着是冲突项,后面的覆盖前面的
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<ButtonGallery />
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
import { createRoot } from "react-dom/client";
|
|
||||||
import App from "./App";
|
|
||||||
import "@defgov/ui-web/index.css";
|
|
||||||
|
|
||||||
const container = document.getElementById("root")!;
|
|
||||||
const root = createRoot(container);
|
|
||||||
|
|
||||||
root.render(<App />);
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"module": "es2022",
|
|
||||||
"moduleResolution": "bundler",
|
|
||||||
"lib": ["ES2025", "DOM", "DOM.Iterable"],
|
|
||||||
"strict": true,
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"isolatedModules": true,
|
|
||||||
"verbatimModuleSyntax": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "./tsconfig.base.json",
|
|
||||||
"compilerOptions": {
|
|
||||||
"jsx": "react-jsx",
|
|
||||||
"noEmit": true
|
|
||||||
},
|
|
||||||
"include": ["."]
|
|
||||||
}
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
import { defineConfig } from "vite";
|
|
||||||
import react from "@vitejs/plugin-react";
|
|
||||||
import dts from "vite-plugin-dts";
|
|
||||||
import typescript from "@rollup/plugin-typescript";
|
|
||||||
|
|
||||||
export default defineConfig({
|
|
||||||
plugins: [
|
|
||||||
react(),
|
|
||||||
dts({
|
|
||||||
insertTypesEntry: true,
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
|
|
||||||
esbuild: false,
|
|
||||||
|
|
||||||
build: {
|
|
||||||
rollupOptions: {
|
|
||||||
plugins: [typescript({ tsconfig: "./tsconfig.build.json" })],
|
|
||||||
external: ["react", "react-dom", "react/jsx-runtime"],
|
|
||||||
output: {
|
|
||||||
globals: {
|
|
||||||
react: "React",
|
|
||||||
"react-dom": "ReactDOM",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
sourcemap: true,
|
|
||||||
cssCodeSplit: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 9.3 KiB |
@@ -1,24 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<symbol id="bluesky-icon" viewBox="0 0 16 17">
|
|
||||||
<g clip-path="url(#bluesky-clip)"><path fill="#08060d" d="M7.75 7.735c-.693-1.348-2.58-3.86-4.334-5.097-1.68-1.187-2.32-.981-2.74-.79C.188 2.065.1 2.812.1 3.251s.241 3.602.398 4.13c.52 1.744 2.367 2.333 4.07 2.145-2.495.37-4.71 1.278-1.805 4.512 3.196 3.309 4.38-.71 4.987-2.746.608 2.036 1.307 5.91 4.93 2.746 2.72-2.746.747-4.143-1.747-4.512 1.702.189 3.55-.4 4.07-2.145.156-.528.397-3.691.397-4.13s-.088-1.186-.575-1.406c-.42-.19-1.06-.395-2.741.79-1.755 1.24-3.64 3.752-4.334 5.099"/></g>
|
|
||||||
<defs><clipPath id="bluesky-clip"><path fill="#fff" d="M.1.85h15.3v15.3H.1z"/></clipPath></defs>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="discord-icon" viewBox="0 0 20 19">
|
|
||||||
<path fill="#08060d" d="M16.224 3.768a14.5 14.5 0 0 0-3.67-1.153c-.158.286-.343.67-.47.976a13.5 13.5 0 0 0-4.067 0c-.128-.306-.317-.69-.476-.976A14.4 14.4 0 0 0 3.868 3.77C1.546 7.28.916 10.703 1.231 14.077a14.7 14.7 0 0 0 4.5 2.306q.545-.748.965-1.587a9.5 9.5 0 0 1-1.518-.74q.191-.14.372-.293c2.927 1.369 6.107 1.369 8.999 0q.183.152.372.294-.723.437-1.52.74.418.838.963 1.588a14.6 14.6 0 0 0 4.504-2.308c.37-3.911-.63-7.302-2.644-10.309m-9.13 8.234c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.894 0 1.614.82 1.599 1.82.001 1-.705 1.82-1.6 1.82m5.91 0c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.893 0 1.614.82 1.599 1.82 0 1-.706 1.82-1.6 1.82"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="documentation-icon" viewBox="0 0 21 20">
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="m15.5 13.333 1.533 1.322c.645.555.967.833.967 1.178s-.322.623-.967 1.179L15.5 18.333m-3.333-5-1.534 1.322c-.644.555-.966.833-.966 1.178s.322.623.966 1.179l1.534 1.321"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M17.167 10.836v-4.32c0-1.41 0-2.117-.224-2.68-.359-.906-1.118-1.621-2.08-1.96-.599-.21-1.349-.21-2.848-.21-2.623 0-3.935 0-4.983.369-1.684.591-3.013 1.842-3.641 3.428C3 6.449 3 7.684 3 10.154v2.122c0 2.558 0 3.838.706 4.726q.306.383.713.671c.76.536 1.79.64 3.581.66"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M3 10a2.78 2.78 0 0 1 2.778-2.778c.555 0 1.209.097 1.748-.047.48-.129.854-.503.982-.982.145-.54.048-1.194.048-1.749a2.78 2.78 0 0 1 2.777-2.777"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="github-icon" viewBox="0 0 19 19">
|
|
||||||
<path fill="#08060d" fill-rule="evenodd" d="M9.356 1.85C5.05 1.85 1.57 5.356 1.57 9.694a7.84 7.84 0 0 0 5.324 7.44c.387.079.528-.168.528-.376 0-.182-.013-.805-.013-1.454-2.165.467-2.616-.935-2.616-.935-.349-.91-.864-1.143-.864-1.143-.71-.48.051-.48.051-.48.787.051 1.2.805 1.2.805.695 1.194 1.817.857 2.268.649.064-.507.27-.857.49-1.052-1.728-.182-3.545-.857-3.545-3.87 0-.857.31-1.558.8-2.104-.078-.195-.349-1 .077-2.078 0 0 .657-.208 2.14.805a7.5 7.5 0 0 1 1.946-.26c.657 0 1.328.092 1.946.26 1.483-1.013 2.14-.805 2.14-.805.426 1.078.155 1.883.078 2.078.502.546.799 1.247.799 2.104 0 3.013-1.818 3.675-3.558 3.87.284.247.528.714.528 1.454 0 1.052-.012 1.896-.012 2.156 0 .208.142.455.528.377a7.84 7.84 0 0 0 5.324-7.441c.013-4.338-3.48-7.844-7.773-7.844" clip-rule="evenodd"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="social-icon" viewBox="0 0 20 20">
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M12.5 6.667a4.167 4.167 0 1 0-8.334 0 4.167 4.167 0 0 0 8.334 0"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M2.5 16.667a5.833 5.833 0 0 1 8.75-5.053m3.837.474.513 1.035c.07.144.257.282.414.309l.93.155c.596.1.736.536.307.965l-.723.73a.64.64 0 0 0-.152.531l.207.903c.164.715-.213.991-.84.618l-.872-.52a.63.63 0 0 0-.577 0l-.872.52c-.624.373-1.003.094-.84-.618l.207-.903a.64.64 0 0 0-.152-.532l-.723-.729c-.426-.43-.289-.864.306-.964l.93-.156a.64.64 0 0 0 .412-.31l.513-1.034c.28-.562.735-.562 1.012 0"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="x-icon" viewBox="0 0 19 19">
|
|
||||||
<path fill="#08060d" fill-rule="evenodd" d="M1.893 1.98c.052.072 1.245 1.769 2.653 3.77l2.892 4.114c.183.261.333.48.333.486s-.068.089-.152.183l-.522.593-.765.867-3.597 4.087c-.375.426-.734.834-.798.905a1 1 0 0 0-.118.148c0 .01.236.017.664.017h.663l.729-.83c.4-.457.796-.906.879-.999a692 692 0 0 0 1.794-2.038c.034-.037.301-.34.594-.675l.551-.624.345-.392a7 7 0 0 1 .34-.374c.006 0 .93 1.306 2.052 2.903l2.084 2.965.045.063h2.275c1.87 0 2.273-.003 2.266-.021-.008-.02-1.098-1.572-3.894-5.547-2.013-2.862-2.28-3.246-2.273-3.266.008-.019.282-.332 2.085-2.38l2-2.274 1.567-1.782c.022-.028-.016-.03-.65-.03h-.674l-.3.342a871 871 0 0 1-1.782 2.025c-.067.075-.405.458-.75.852a100 100 0 0 1-.803.91c-.148.172-.299.344-.99 1.127-.304.343-.32.358-.345.327-.015-.019-.904-1.282-1.976-2.808L6.365 1.85H1.8zm1.782.91 8.078 11.294c.772 1.08 1.413 1.973 1.425 1.984.016.017.241.02 1.05.017l1.03-.004-2.694-3.766L7.796 5.75 5.722 2.852l-1.039-.004-1.039-.004z" clip-rule="evenodd"/>
|
|
||||||
</symbol>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -1,184 +0,0 @@
|
|||||||
.counter {
|
|
||||||
font-size: 16px;
|
|
||||||
padding: 5px 10px;
|
|
||||||
border-radius: 5px;
|
|
||||||
color: var(--accent);
|
|
||||||
background: var(--accent-bg);
|
|
||||||
border: 2px solid transparent;
|
|
||||||
transition: border-color 0.3s;
|
|
||||||
margin-bottom: 24px;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
border-color: var(--accent-border);
|
|
||||||
}
|
|
||||||
&:focus-visible {
|
|
||||||
outline: 2px solid var(--accent);
|
|
||||||
outline-offset: 2px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero {
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
.base,
|
|
||||||
.framework,
|
|
||||||
.vite {
|
|
||||||
inset-inline: 0;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.base {
|
|
||||||
width: 170px;
|
|
||||||
position: relative;
|
|
||||||
z-index: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.framework,
|
|
||||||
.vite {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.framework {
|
|
||||||
z-index: 1;
|
|
||||||
top: 34px;
|
|
||||||
height: 28px;
|
|
||||||
transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
|
|
||||||
scale(1.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.vite {
|
|
||||||
z-index: 0;
|
|
||||||
top: 107px;
|
|
||||||
height: 26px;
|
|
||||||
width: auto;
|
|
||||||
transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
|
|
||||||
scale(0.8);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#center {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 25px;
|
|
||||||
place-content: center;
|
|
||||||
place-items: center;
|
|
||||||
flex-grow: 1;
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
padding: 32px 20px 24px;
|
|
||||||
gap: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#next-steps {
|
|
||||||
display: flex;
|
|
||||||
border-top: 1px solid var(--border);
|
|
||||||
text-align: left;
|
|
||||||
|
|
||||||
& > div {
|
|
||||||
flex: 1 1 0;
|
|
||||||
padding: 32px;
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
padding: 24px 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
margin-bottom: 16px;
|
|
||||||
width: 22px;
|
|
||||||
height: 22px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
flex-direction: column;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#docs {
|
|
||||||
border-right: 1px solid var(--border);
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
border-right: none;
|
|
||||||
border-bottom: 1px solid var(--border);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#next-steps ul {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
display: flex;
|
|
||||||
gap: 8px;
|
|
||||||
margin: 32px 0 0;
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
height: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: var(--text-h);
|
|
||||||
font-size: 16px;
|
|
||||||
border-radius: 6px;
|
|
||||||
background: var(--social-bg);
|
|
||||||
display: flex;
|
|
||||||
padding: 6px 12px;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
text-decoration: none;
|
|
||||||
transition: box-shadow 0.3s;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
box-shadow: var(--shadow);
|
|
||||||
}
|
|
||||||
.button-icon {
|
|
||||||
height: 18px;
|
|
||||||
width: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
margin-top: 20px;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
li {
|
|
||||||
flex: 1 1 calc(50% - 8px);
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
width: 100%;
|
|
||||||
justify-content: center;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#spacer {
|
|
||||||
height: 88px;
|
|
||||||
border-top: 1px solid var(--border);
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
height: 48px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ticks {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
&::before,
|
|
||||||
&::after {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
top: -4.5px;
|
|
||||||
border: 5px solid transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
left: 0;
|
|
||||||
border-left-color: var(--border);
|
|
||||||
}
|
|
||||||
&::after {
|
|
||||||
right: 0;
|
|
||||||
border-right-color: var(--border);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 13 KiB |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.0 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 8.5 KiB |
@@ -1,111 +0,0 @@
|
|||||||
:root {
|
|
||||||
--text: #6b6375;
|
|
||||||
--text-h: #08060d;
|
|
||||||
--bg: #fff;
|
|
||||||
--border: #e5e4e7;
|
|
||||||
--code-bg: #f4f3ec;
|
|
||||||
--accent: #aa3bff;
|
|
||||||
--accent-bg: rgba(170, 59, 255, 0.1);
|
|
||||||
--accent-border: rgba(170, 59, 255, 0.5);
|
|
||||||
--social-bg: rgba(244, 243, 236, 0.5);
|
|
||||||
--shadow:
|
|
||||||
rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
|
|
||||||
|
|
||||||
--sans: system-ui, 'Segoe UI', Roboto, sans-serif;
|
|
||||||
--heading: system-ui, 'Segoe UI', Roboto, sans-serif;
|
|
||||||
--mono: ui-monospace, Consolas, monospace;
|
|
||||||
|
|
||||||
font: 18px/145% var(--sans);
|
|
||||||
letter-spacing: 0.18px;
|
|
||||||
color-scheme: light dark;
|
|
||||||
color: var(--text);
|
|
||||||
background: var(--bg);
|
|
||||||
font-synthesis: none;
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
:root {
|
|
||||||
--text: #9ca3af;
|
|
||||||
--text-h: #f3f4f6;
|
|
||||||
--bg: #16171d;
|
|
||||||
--border: #2e303a;
|
|
||||||
--code-bg: #1f2028;
|
|
||||||
--accent: #c084fc;
|
|
||||||
--accent-bg: rgba(192, 132, 252, 0.15);
|
|
||||||
--accent-border: rgba(192, 132, 252, 0.5);
|
|
||||||
--social-bg: rgba(47, 48, 58, 0.5);
|
|
||||||
--shadow:
|
|
||||||
rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#social .button-icon {
|
|
||||||
filter: invert(1) brightness(2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#root {
|
|
||||||
width: 1126px;
|
|
||||||
max-width: 100%;
|
|
||||||
margin: 0 auto;
|
|
||||||
text-align: center;
|
|
||||||
border-inline: 1px solid var(--border);
|
|
||||||
min-height: 100svh;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
|
||||||
h2 {
|
|
||||||
font-family: var(--heading);
|
|
||||||
font-weight: 500;
|
|
||||||
color: var(--text-h);
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 56px;
|
|
||||||
letter-spacing: -1.68px;
|
|
||||||
margin: 32px 0;
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
font-size: 36px;
|
|
||||||
margin: 20px 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h2 {
|
|
||||||
font-size: 24px;
|
|
||||||
line-height: 118%;
|
|
||||||
letter-spacing: -0.24px;
|
|
||||||
margin: 0 0 8px;
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
code,
|
|
||||||
.counter {
|
|
||||||
font-family: var(--mono);
|
|
||||||
display: inline-flex;
|
|
||||||
border-radius: 4px;
|
|
||||||
color: var(--text-h);
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
font-size: 15px;
|
|
||||||
line-height: 135%;
|
|
||||||
padding: 4px 8px;
|
|
||||||
background: var(--code-bg);
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
import { StrictMode } from 'react'
|
import { StrictMode } from 'react'
|
||||||
import { createRoot } from 'react-dom/client'
|
import { createRoot } from 'react-dom/client'
|
||||||
import './index.css'
|
|
||||||
import App from './App.tsx'
|
import App from './App.tsx'
|
||||||
|
|
||||||
createRoot(document.getElementById('root')!).render(
|
createRoot(document.getElementById('root')!).render(
|
||||||
|
|||||||
@@ -12,5 +12,5 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20"
|
"node": ">=20"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@11.0.0-rc.5+sha512.c469fb6aa13a99e57aec935cd7b86ff422701f4602ecac2231d3dc20910586ebfb6b50a7b455d0778ec22ae56912d8d8e88e9f9e0a03c0875a6a41783a94a1bd"
|
"packageManager": "pnpm@11.0.9+sha512.34ce82e6780233cf9cad8685029a8f81d2e06196c5a9bad98879f7424940c6817c4e4524fb7d38b8553ceed48b9758b8ebaf1abd3600c232c4c8cf7366086f38"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,10 +30,12 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^25.6.0",
|
"@types/node": "^25.6.0",
|
||||||
"@vitejs/plugin-react": "^6.0.1",
|
"@vitejs/plugin-react": "^6.0.1",
|
||||||
"glob": "^13.0.6",
|
"tinyglobby": "^0.2.16",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3",
|
||||||
"vite": "^8.0.10"
|
"vite": "^8.0.10",
|
||||||
|
"@types/react": "^19.2.14",
|
||||||
|
"@types/react-dom": "^19.2.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"react": "^19",
|
"react": "^19",
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import { globSync } from "glob";
|
// 1. 引入 tinyglobby
|
||||||
|
import { globSync } from "tinyglobby";
|
||||||
|
|
||||||
interface Config {
|
interface Config {
|
||||||
outputDir: string;
|
outputDir: string;
|
||||||
@@ -77,13 +78,12 @@ function generateIndexFile(config: Config) {
|
|||||||
|
|
||||||
// ------ scanDirs forEach start ------------------------
|
// ------ scanDirs forEach start ------------------------
|
||||||
config.scanDirs.forEach((dir) => {
|
config.scanDirs.forEach((dir) => {
|
||||||
|
// 2. 路径模式保持不变,tinyglobby 能够正确处理
|
||||||
const scanPattern = path.resolve(currentPath, dir, "**", "*.*");
|
const scanPattern = path.resolve(currentPath, dir, "**", "*.*");
|
||||||
|
|
||||||
const allFilePath = globSync(scanPattern, {
|
const allFilePath = globSync(scanPattern, {
|
||||||
absolute: true,
|
absolute: true,
|
||||||
windowsPathsNoEscape: true,
|
// 3. 移除了 windowsPathsNoEscape,tinyglobby 默认处理路径更智能
|
||||||
dot: false,
|
|
||||||
follow: true,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const validFiles = allFilePath.filter((filePath) => {
|
const validFiles = allFilePath.filter((filePath) => {
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
@import './base/root.css';
|
|
||||||
@import './utility/size-insensitive/align-content.css';
|
|
||||||
@import './utility/size-insensitive/align-items.css';
|
|
||||||
@import './utility/size-insensitive/align-self.css';
|
|
||||||
@import './utility/size-insensitive/animation.css';
|
|
||||||
@import './utility/size-insensitive/box-decoration.css';
|
|
||||||
@import './utility/size-insensitive/box-inside.css';
|
|
||||||
@import './utility/size-insensitive/box-sizing.css';
|
|
||||||
@import './utility/size-insensitive/brand.css';
|
|
||||||
@import './utility/size-insensitive/break-after.css';
|
|
||||||
@import './utility/size-insensitive/break-before.css';
|
|
||||||
@import './utility/size-insensitive/cursor.css';
|
|
||||||
@import './utility/size-insensitive/display.css';
|
|
||||||
@import './utility/size-insensitive/drop-shadow.css';
|
|
||||||
@import './utility/size-insensitive/flex-direction.css';
|
|
||||||
@import './utility/size-insensitive/flex-wrap.css';
|
|
||||||
@import './utility/size-insensitive/font-family.css';
|
|
||||||
@import './utility/size-insensitive/justify-content.css';
|
|
||||||
@import './utility/size-insensitive/justify-items.css';
|
|
||||||
@import './utility/size-insensitive/justify-self.css';
|
|
||||||
@import './utility/size-insensitive/overflow.css';
|
|
||||||
@import './utility/size-insensitive/overscroll-behavior.css';
|
|
||||||
@import './utility/size-insensitive/position.css';
|
|
||||||
@import './utility/size-insensitive/screen-reader.css';
|
|
||||||
@import './utility/size-insensitive/theme.css';
|
|
||||||
@import './utility/size-insensitive/user-select.css';
|
|
||||||
@import './utility/size-insensitive/z-index.css';
|
|
||||||
@import './utility/size-sensitive/border-radius.css';
|
|
||||||
@import './utility/size-sensitive/font-size.css';
|
|
||||||
@import './utility/size-sensitive/font-weight.css';
|
|
||||||
@import './utility/size-sensitive/gap.css';
|
|
||||||
@import './utility/size-sensitive/height.css';
|
|
||||||
@import './utility/size-sensitive/margin-block.css';
|
|
||||||
@import './utility/size-sensitive/margin-inline.css';
|
|
||||||
@import './utility/size-sensitive/padding-long.css';
|
|
||||||
@import './utility/size-sensitive/padding-short.css';
|
|
||||||
@import './utility/size-sensitive/width.css';
|
|
||||||
@@ -1,4 +1 @@
|
|||||||
import "./index.css";
|
import './index.css'
|
||||||
export * from "./utils/cpm.ts";
|
|
||||||
export * from "./utils/cvr.ts";
|
|
||||||
export * from "./utils/prefix-list.ts";
|
|
||||||
89
packages/css/src/recipe/itemSizeRecipe.ts
Normal file
89
packages/css/src/recipe/itemSizeRecipe.ts
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
import { cvr } from "../utils/cvr";
|
||||||
|
|
||||||
|
export const itemSizeRecipe = cvr({
|
||||||
|
base: "relative select-none flex flex-nowrap justify-center items-center",
|
||||||
|
variants: {
|
||||||
|
size: {
|
||||||
|
xs: "text-xs h-item-xs gap-xs px-xs",
|
||||||
|
sm: "text-sm h-item-sm gap-sm px-sm",
|
||||||
|
md: "text-md h-item-md gap-md px-md",
|
||||||
|
lg: "text-lg h-item-lg gap-lg px-lg",
|
||||||
|
xl: "text-xl h-item-xl gap-xl px-xl",
|
||||||
|
"2xl": "text-2xl h-item-2xl gap-2xl px-2xl",
|
||||||
|
},
|
||||||
|
shape: {
|
||||||
|
square: "rounded-none",
|
||||||
|
rounded: "",
|
||||||
|
circle: "rounded-full",
|
||||||
|
},
|
||||||
|
iconOnly: {
|
||||||
|
true: "px-none",
|
||||||
|
false: "",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
compoundVariants: [
|
||||||
|
{ iconOnly: false, size: "xs", class: "px-xs" },
|
||||||
|
{ iconOnly: false, size: "sm", class: "px-sm" },
|
||||||
|
{ iconOnly: false, size: "md", class: "px-md" },
|
||||||
|
{ iconOnly: false, size: "lg", class: "px-lg" },
|
||||||
|
{ iconOnly: false, size: "xl", class: "px-xl" },
|
||||||
|
{ iconOnly: false, size: "2xl", class: "px-2xl" },
|
||||||
|
{ shape: "rounded", size: "xs", class: "rounded-sm" },
|
||||||
|
{
|
||||||
|
shape: "rounded",
|
||||||
|
size: "sm",
|
||||||
|
class: "rounded-md",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
shape: "rounded",
|
||||||
|
size: "md",
|
||||||
|
class: "rounded-lg",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
shape: "rounded",
|
||||||
|
size: "lg",
|
||||||
|
class: "rounded-xl",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
shape: "rounded",
|
||||||
|
size: "xl",
|
||||||
|
class: "rounded-2xl",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
shape: "rounded",
|
||||||
|
size: "2xl",
|
||||||
|
class: "rounded-3xl",
|
||||||
|
},
|
||||||
|
// --------------------------------------------------
|
||||||
|
{
|
||||||
|
iconOnly: true,
|
||||||
|
size: "xs",
|
||||||
|
class: "w-item-xs",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
iconOnly: true,
|
||||||
|
size: "sm",
|
||||||
|
class: "w-item-sm",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
iconOnly: true,
|
||||||
|
size: "md",
|
||||||
|
class: "w-item-md",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
iconOnly: true,
|
||||||
|
size: "lg",
|
||||||
|
class: "w-item-lg",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
iconOnly: true,
|
||||||
|
size: "xl",
|
||||||
|
class: "w-item-xl",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
iconOnly: true,
|
||||||
|
size: "2xl",
|
||||||
|
class: "w-item-2xl",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
@layer utility {
|
@layer utility {
|
||||||
.flex-wrap-nowrap {
|
.flex-nowrap {
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex-wrap-wrap {
|
.flex-wrap {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex-wrap-wrap-reverse {
|
.flex-wrap-reverse {
|
||||||
flex-wrap: wrap-reverse;
|
flex-wrap: wrap-reverse;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,9 +25,11 @@
|
|||||||
}
|
}
|
||||||
/* -------------- */
|
/* -------------- */
|
||||||
.h-inline-xs {
|
.h-inline-xs {
|
||||||
|
/* 16px */
|
||||||
height: calc(var(--font-size-xs) * var(--line-height-xs));
|
height: calc(var(--font-size-xs) * var(--line-height-xs));
|
||||||
}
|
}
|
||||||
.h-inline-sm {
|
.h-inline-sm {
|
||||||
|
/* 20px */
|
||||||
height: calc(var(--font-size-sm) * var(--line-height-sm));
|
height: calc(var(--font-size-sm) * var(--line-height-sm));
|
||||||
}
|
}
|
||||||
.h-inline-md {
|
.h-inline-md {
|
||||||
|
|||||||
@@ -3,11 +3,11 @@
|
|||||||
padding-inline: 0px;
|
padding-inline: 0px;
|
||||||
}
|
}
|
||||||
.px-xs {
|
.px-xs {
|
||||||
/* 6px */
|
/* 4px, 24px - 16px = 8px */
|
||||||
padding-inline: var(--padding-xs);
|
padding-inline: var(--padding-xs);
|
||||||
}
|
}
|
||||||
.px-sm {
|
.px-sm {
|
||||||
/* 8px */
|
/* 4px, 28px - 20px = 8px */
|
||||||
padding-inline: var(--padding-sm);
|
padding-inline: var(--padding-sm);
|
||||||
}
|
}
|
||||||
.px-md {
|
.px-md {
|
||||||
|
|||||||
@@ -14,23 +14,22 @@ function matchLongestPrefix(cls: string, prefixList: string[]): string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 重载 1
|
// 重载 1
|
||||||
export function cpm(...classes: Array<string | readonly string[]>): string;
|
export function cpm(...classes: Array<string | string[]>): string;
|
||||||
|
|
||||||
// 重载 2
|
// 重载 2
|
||||||
export function cpm(
|
export function cpm(
|
||||||
options: { extendedPrefixList?: string[] },
|
options: { extendedPrefixList?: string[] },
|
||||||
...classes: Array<string | readonly string[]>
|
...classes: Array<string | string[]>
|
||||||
): string;
|
): string;
|
||||||
|
|
||||||
export function cpm(
|
export function cpm(
|
||||||
arg1: { extendedPrefixList?: string[] } | string | readonly string[],
|
arg1: { extendedPrefixList?: string[] } | string | string[],
|
||||||
...rest: Array<string | readonly string[]>
|
...rest: Array<string | string[]>
|
||||||
): string {
|
): string {
|
||||||
const map = new Map<string, string>();
|
const map = new Map<string, string>();
|
||||||
|
|
||||||
// ✅ 明确拆分 options / classes
|
|
||||||
let options: { extendedPrefixList?: string[] } = {};
|
let options: { extendedPrefixList?: string[] } = {};
|
||||||
let classes: Array<string | readonly string[]>;
|
let classes: Array<string | string[]>;
|
||||||
|
|
||||||
if (typeof arg1 === "object" && !Array.isArray(arg1)) {
|
if (typeof arg1 === "object" && !Array.isArray(arg1)) {
|
||||||
options = arg1 as { extendedPrefixList?: string[] };
|
options = arg1 as { extendedPrefixList?: string[] };
|
||||||
|
|||||||
@@ -1,15 +1,21 @@
|
|||||||
import { cpm } from "./cpm";
|
import { cpm } from "./cpm";
|
||||||
|
|
||||||
|
// 1. 允许变体值的键可以是字符串,也可以是布尔值(为了开发体验,允许传 true/false)
|
||||||
|
// 但底层存储我们统一视为字符串处理
|
||||||
|
type VariantValue = string | boolean;
|
||||||
|
|
||||||
type VariantsConfig<V extends Record<string, Record<string, string>>> = {
|
type VariantsConfig<V extends Record<string, Record<string, string>>> = {
|
||||||
base?: string;
|
base?: string;
|
||||||
variants?: V;
|
variants?: V;
|
||||||
compoundVariants?: Array<
|
compoundVariants?: Array<
|
||||||
Partial<{ [K in keyof V]: keyof V[K] }> & { class: string }
|
// 修改这里:允许 compoundVariants 的值是 VariantValue,而不仅仅是 keyof V[K]
|
||||||
|
Partial<{ [K in keyof V]: VariantValue }> & { class: string }
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// 2. 修改 Props 定义,允许传入 boolean,因为 JS 对象 key 访问时,boolean 会被转为 string
|
||||||
type VariantProps<V extends Record<string, Record<string, string>>> = Partial<{
|
type VariantProps<V extends Record<string, Record<string, string>>> = Partial<{
|
||||||
[K in keyof V]: keyof V[K];
|
[K in keyof V]: keyof V[K] | boolean;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export function cvr<V extends Record<string, Record<string, string>>>(
|
export function cvr<V extends Record<string, Record<string, string>>>(
|
||||||
@@ -21,10 +27,12 @@ export function cvr<V extends Record<string, Record<string, string>>>(
|
|||||||
if (config.base) classes.push(config.base);
|
if (config.base) classes.push(config.base);
|
||||||
|
|
||||||
if (config.variants) {
|
if (config.variants) {
|
||||||
for (const [key, map] of Object.entries(config.variants) as any) {
|
for (const [key, map] of Object.entries(config.variants)) {
|
||||||
const value = props[key];
|
const value = props[key];
|
||||||
if (value && map[value]) {
|
// 运行时修复:如果传入的是 boolean true,需要转为字符串 "true" 才能匹配 map
|
||||||
classes.push(map[value]);
|
const stringifiedValue = String(value);
|
||||||
|
if (value && map[stringifiedValue]) {
|
||||||
|
classes.push(map[stringifiedValue]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -33,7 +41,11 @@ export function cvr<V extends Record<string, Record<string, string>>>(
|
|||||||
for (const cv of config.compoundVariants) {
|
for (const cv of config.compoundVariants) {
|
||||||
const match = Object.entries(cv)
|
const match = Object.entries(cv)
|
||||||
.filter(([k]) => k !== "class")
|
.filter(([k]) => k !== "class")
|
||||||
.every(([k, v]) => props[k] === v);
|
.every(([k, v]) => {
|
||||||
|
const propValue = props[k as keyof V];
|
||||||
|
// 运行时修复:统一转为字符串比较,确保 "true" === true 能匹配(虽然不建议混用,但要兼容)
|
||||||
|
return String(propValue) === String(v);
|
||||||
|
});
|
||||||
|
|
||||||
if (match && cv.class) {
|
if (match && cv.class) {
|
||||||
classes.push(cv.class);
|
classes.push(cv.class);
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export const defaultPrefixList = [
|
|||||||
"cursor",
|
"cursor",
|
||||||
"display",
|
"display",
|
||||||
"flex-direction",
|
"flex-direction",
|
||||||
"flex-wrap",
|
"flex",
|
||||||
"font-family",
|
"font-family",
|
||||||
"font-weight",
|
"font-weight",
|
||||||
"text",
|
"text",
|
||||||
|
|||||||
@@ -4,9 +4,9 @@
|
|||||||
"noEmit": false,
|
"noEmit": false,
|
||||||
"emitDeclarationOnly": true,
|
"emitDeclarationOnly": true,
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
|
"declarationDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"outDir": "./dist",
|
"outDir": "./dist"
|
||||||
"declarationDir": "./dist"
|
|
||||||
},
|
},
|
||||||
"include": ["src"],
|
"include": ["src"],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
|
|||||||
33
packages/ui-web-headless/common/Slot.tsx
Normal file
33
packages/ui-web-headless/common/Slot.tsx
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
import { mergeProps } from "@base-ui/react";
|
||||||
|
import * as React from "react";
|
||||||
|
import { cn } from "tailwind-variants";
|
||||||
|
|
||||||
|
export interface SlotProps extends React.HTMLAttributes<HTMLElement> {
|
||||||
|
children: React.ReactNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const Slot = React.forwardRef<HTMLElement, SlotProps>(
|
||||||
|
({ children, className: externalClassName, ...restProps }, ref) => {
|
||||||
|
if (!React.isValidElement(children)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
const child = children as React.ReactElement<Record<string, unknown>>;
|
||||||
|
const childProps = child.props || {};
|
||||||
|
|
||||||
|
const mergedClassName = cn(
|
||||||
|
childProps.className as string | undefined,
|
||||||
|
externalClassName,
|
||||||
|
);
|
||||||
|
|
||||||
|
const otherMergedProps = mergeProps(childProps, restProps);
|
||||||
|
|
||||||
|
return React.cloneElement(child, {
|
||||||
|
...otherMergedProps,
|
||||||
|
className: mergedClassName,
|
||||||
|
ref,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
Slot.displayName = "Slot";
|
||||||
18
packages/ui-web-headless/componnets/button/Button.tsx
Normal file
18
packages/ui-web-headless/componnets/button/Button.tsx
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
import { ComponentPropsWithRef, forwardRef, ReactNode } from "react";
|
||||||
|
|
||||||
|
export type ButtonState = {
|
||||||
|
loading?: boolean;
|
||||||
|
disabled?: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ButtonProps = {
|
||||||
|
size?: "xs" | "sm" | "md" | "lg";
|
||||||
|
shape?: "circle" | "rounded" | "square";
|
||||||
|
iconSvg?: ReactNode;
|
||||||
|
iconOnly?: boolean;
|
||||||
|
hideIcon?: boolean;
|
||||||
|
loadingIconSvg?: ReactNode;
|
||||||
|
} & ButtonState &
|
||||||
|
ComponentPropsWithRef<"button">;
|
||||||
|
|
||||||
|
export const Button = forwardRef();
|
||||||
44
packages/ui-web-headless/package.json
Normal file
44
packages/ui-web-headless/package.json
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"name": "@defgov/ui-web-headless",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"private": true,
|
||||||
|
"type": "module",
|
||||||
|
"sideEffects": [
|
||||||
|
"*.css"
|
||||||
|
],
|
||||||
|
"module": "./dist/index.es.js",
|
||||||
|
"main": "./dist/index.cjs.js",
|
||||||
|
"types": "./dist/index.d.ts",
|
||||||
|
"style": "./dist/index.css",
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"import": "./dist/index.es.js",
|
||||||
|
"require": "./dist/index.cjs.js",
|
||||||
|
"types": "./dist/index.d.ts"
|
||||||
|
},
|
||||||
|
"./index.css": "./dist/index.css"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"dist"
|
||||||
|
],
|
||||||
|
"scripts": {
|
||||||
|
"gen-index": "ts-node scripts/gen-index.ts",
|
||||||
|
"gen-dts": "tsc -p tsconfig.build.json",
|
||||||
|
"dev": "pnpm gen-index && vite build --watch",
|
||||||
|
"build": "pnpm gen-index && vite build && pnpm gen-dts"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^25.6.0",
|
||||||
|
"@vitejs/plugin-react": "^6.0.1",
|
||||||
|
"tinyglobby": "^0.2.16",
|
||||||
|
"ts-node": "^10.9.2",
|
||||||
|
"typescript": "^6.0.3",
|
||||||
|
"vite": "^8.0.10",
|
||||||
|
"@types/react": "^19.2.14",
|
||||||
|
"@types/react-dom": "^19.2.3"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"react": "^19",
|
||||||
|
"react-dom": "^19"
|
||||||
|
}
|
||||||
|
}
|
||||||
147
packages/ui-web-headless/scripts/gen-index.ts
Normal file
147
packages/ui-web-headless/scripts/gen-index.ts
Normal file
@@ -0,0 +1,147 @@
|
|||||||
|
import fs from "fs";
|
||||||
|
import path from "path";
|
||||||
|
// 1. 引入 tinyglobby
|
||||||
|
import { globSync } from "tinyglobby";
|
||||||
|
|
||||||
|
interface Config {
|
||||||
|
outputDir: string;
|
||||||
|
outputFilenameWithExt: string;
|
||||||
|
scanDirs: string[];
|
||||||
|
importPrefix: string;
|
||||||
|
predefineStatements: string[];
|
||||||
|
includeExtensions: string[];
|
||||||
|
excludeDirs: string[];
|
||||||
|
excludeFileExtensions: string[];
|
||||||
|
excludePatterns: RegExp[];
|
||||||
|
}
|
||||||
|
|
||||||
|
const cssConfig: Config = {
|
||||||
|
outputDir: "src",
|
||||||
|
outputFilenameWithExt: "index.css",
|
||||||
|
scanDirs: ["src"],
|
||||||
|
importPrefix: "@import",
|
||||||
|
predefineStatements: [],
|
||||||
|
includeExtensions: [".css"],
|
||||||
|
excludeDirs: ["__tests__", "tests", "story", "stories", "types"],
|
||||||
|
excludeFileExtensions: [],
|
||||||
|
excludePatterns: [/^index\.(css)$/, /\.(test|spec)\./, /\.(story|stories)\./],
|
||||||
|
};
|
||||||
|
|
||||||
|
const tsConfig: Config = {
|
||||||
|
outputDir: "src",
|
||||||
|
outputFilenameWithExt: "index.ts",
|
||||||
|
scanDirs: ["src"],
|
||||||
|
importPrefix: "export * from",
|
||||||
|
predefineStatements: ["import './index.css'"],
|
||||||
|
includeExtensions: [".ts", "tsx", "js", "jsx"],
|
||||||
|
excludeDirs: ["__tests__", "tests", "story", "stories", "types"],
|
||||||
|
excludeFileExtensions: [".d.ts"],
|
||||||
|
excludePatterns: [
|
||||||
|
/^index\.(ts|tsx|js|jsx)$/,
|
||||||
|
/\.(test|spec)\./,
|
||||||
|
/\.(story|stories)\./,
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
const normalizePath = (p: string) => p.replace(/\\/g, "/");
|
||||||
|
|
||||||
|
const isExcludeDir = (filePath: string, excludeDirs: string[]) => {
|
||||||
|
const normalized = normalizePath(filePath);
|
||||||
|
return excludeDirs.some((dir) => normalized.includes(`/${dir}/`));
|
||||||
|
};
|
||||||
|
|
||||||
|
const isExcludeFileExtensions = (
|
||||||
|
filePath: string,
|
||||||
|
excludeFileExtensions: string[],
|
||||||
|
) => excludeFileExtensions.some((ext) => filePath.endsWith(ext));
|
||||||
|
|
||||||
|
const isExcludePattern = (fileName: string, excludePatterns: RegExp[]) =>
|
||||||
|
excludePatterns.some((pattern) => pattern.test(fileName));
|
||||||
|
|
||||||
|
// ----------------------------------------
|
||||||
|
function isValidFile(filePath: string, config: Config): boolean {
|
||||||
|
const fileName = filePath.split(/[\\/]/).pop()!;
|
||||||
|
|
||||||
|
if (isExcludeDir(filePath, config.excludeDirs)) return false;
|
||||||
|
if (isExcludeFileExtensions(filePath, config.excludeFileExtensions))
|
||||||
|
return false;
|
||||||
|
if (isExcludePattern(fileName, config.excludePatterns)) return false;
|
||||||
|
|
||||||
|
const ext = path.extname(filePath);
|
||||||
|
return config.includeExtensions.includes(ext);
|
||||||
|
}
|
||||||
|
// -----------------------------------------
|
||||||
|
function generateIndexFile(config: Config) {
|
||||||
|
const currentPath = process.cwd();
|
||||||
|
const outputPath = path.resolve(currentPath, config.outputDir);
|
||||||
|
let exportStatements: string[] = [];
|
||||||
|
|
||||||
|
// ------ scanDirs forEach start ------------------------
|
||||||
|
config.scanDirs.forEach((dir) => {
|
||||||
|
// 2. 路径模式保持不变,tinyglobby 能够正确处理
|
||||||
|
const scanPattern = path.resolve(currentPath, dir, "**", "*.*");
|
||||||
|
|
||||||
|
const allFilePath = globSync(scanPattern, {
|
||||||
|
absolute: true,
|
||||||
|
// 3. 移除了 windowsPathsNoEscape,tinyglobby 默认处理路径更智能
|
||||||
|
});
|
||||||
|
|
||||||
|
const validFiles = allFilePath.filter((filePath) => {
|
||||||
|
return isValidFile(filePath, config);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (validFiles.length === 0) {
|
||||||
|
console.log(
|
||||||
|
`⚠️ 未找到符合条件的文件,跳过生成 ${config.outputFilenameWithExt}`,
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
validFiles.sort();
|
||||||
|
|
||||||
|
validFiles.forEach((file) => {
|
||||||
|
const relativePath = path.relative(outputPath, file);
|
||||||
|
const importPath = `./${relativePath.replace(/\\/g, "/")}`;
|
||||||
|
exportStatements.push(`${config.importPrefix} '${importPath}';`);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// --------- scanDirs forEach end ----------------
|
||||||
|
|
||||||
|
const indexFileContent = `
|
||||||
|
${config.predefineStatements.join("\n")}
|
||||||
|
${exportStatements.join("\n")}
|
||||||
|
`.trim();
|
||||||
|
|
||||||
|
const indexFilePath = path.resolve(
|
||||||
|
currentPath,
|
||||||
|
config.outputDir,
|
||||||
|
config.outputFilenameWithExt,
|
||||||
|
);
|
||||||
|
|
||||||
|
// ✅ 内容比对,避免重复写入
|
||||||
|
if (fs.existsSync(indexFilePath)) {
|
||||||
|
const old = fs.readFileSync(indexFilePath, "utf8");
|
||||||
|
if (old === indexFileContent) {
|
||||||
|
console.log(
|
||||||
|
`✅ ${config.outputFilenameWithExt} 内容无变化,无需重新生成`,
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fs.writeFileSync(indexFilePath, indexFileContent, "utf8");
|
||||||
|
console.log(`✅ 成功生成 ${config.outputFilenameWithExt}: ${indexFilePath}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// --------------------------------------------------
|
||||||
|
|
||||||
|
try {
|
||||||
|
console.log(`🚀 [gen-index] 开始扫描`);
|
||||||
|
generateIndexFile(cssConfig);
|
||||||
|
generateIndexFile(tsConfig);
|
||||||
|
} catch (err) {
|
||||||
|
const msg = err instanceof Error ? err.message : String(err);
|
||||||
|
console.error(`❌ [gen-index] 执行失败: ${msg}`);
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
@@ -1,28 +1,24 @@
|
|||||||
{
|
{
|
||||||
"extends": "./tsconfig.base.json",
|
"extends": "./tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"noEmit": false,
|
||||||
|
"emitDeclarationOnly": true,
|
||||||
|
"declaration": true,
|
||||||
|
"declarationDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"jsx": "react-jsx",
|
"outDir": "./dist"
|
||||||
"declaration": true
|
|
||||||
},
|
},
|
||||||
"include": ["src"],
|
"include": ["src"],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"dist",
|
"dist",
|
||||||
|
|
||||||
// ---------- build / cache ----------
|
|
||||||
".turbo/**/*",
|
".turbo/**/*",
|
||||||
".cache/**/*",
|
".cache/**/*",
|
||||||
".vite/**/*",
|
".vite/**/*",
|
||||||
|
|
||||||
// ---------- 配置文件 ----------
|
|
||||||
"vite.config.ts",
|
"vite.config.ts",
|
||||||
"*.config.ts",
|
"*.config.ts",
|
||||||
"*.config.js",
|
"*.config.js",
|
||||||
"tsconfig.*.json",
|
"tsconfig.*.json",
|
||||||
|
|
||||||
// ---------- 测试相关 ----------
|
|
||||||
"__tests__/**/*",
|
"__tests__/**/*",
|
||||||
"test/**/*",
|
"test/**/*",
|
||||||
"tests/**/*",
|
"tests/**/*",
|
||||||
@@ -30,22 +26,14 @@
|
|||||||
"**/*.test.tsx",
|
"**/*.test.tsx",
|
||||||
"**/*.spec.ts",
|
"**/*.spec.ts",
|
||||||
"**/*.spec.tsx",
|
"**/*.spec.tsx",
|
||||||
|
|
||||||
// ---------- Storybook ----------
|
|
||||||
".storybook/**/*",
|
".storybook/**/*",
|
||||||
"stories/**/*",
|
"stories/**/*",
|
||||||
|
|
||||||
// ---------- 示例 / 脚本 ----------
|
|
||||||
"example/**/*",
|
"example/**/*",
|
||||||
"examples/**/*",
|
"examples/**/*",
|
||||||
"scripts/**/*",
|
"scripts/**/*",
|
||||||
|
|
||||||
// ---------- 环境与静态资源 ----------
|
|
||||||
".env",
|
".env",
|
||||||
".env.*",
|
".env.*",
|
||||||
"public/**/*",
|
"public/**/*",
|
||||||
|
|
||||||
// ---------- 文档 ----------
|
|
||||||
"docs/**/*",
|
"docs/**/*",
|
||||||
"README.md",
|
"README.md",
|
||||||
"LICENSE"
|
"LICENSE"
|
||||||
26
packages/ui-web-headless/tsconfig.json
Normal file
26
packages/ui-web-headless/tsconfig.json
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es2025",
|
||||||
|
"lib": ["ES2025", "DOM", "DOM.Iterable"],
|
||||||
|
"module": "ESNext",
|
||||||
|
"types": ["node", "vite/client"],
|
||||||
|
"strict": true,
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
|
|
||||||
|
/* Bundler mode */
|
||||||
|
"moduleResolution": "bundler",
|
||||||
|
"allowImportingTsExtensions": true,
|
||||||
|
"verbatimModuleSyntax": true,
|
||||||
|
"moduleDetection": "force",
|
||||||
|
"noEmit": true,
|
||||||
|
"jsx": "react-jsx",
|
||||||
|
|
||||||
|
/* Linting */
|
||||||
|
"noUnusedLocals": true,
|
||||||
|
"noUnusedParameters": true,
|
||||||
|
"erasableSyntaxOnly": true,
|
||||||
|
"noFallthroughCasesInSwitch": true
|
||||||
|
},
|
||||||
|
"include": ["src", "scripts", "vite.config.ts"]
|
||||||
|
}
|
||||||
103
packages/ui-web-headless/utils/mergeProps.ts
Normal file
103
packages/ui-web-headless/utils/mergeProps.ts
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
function innerClassMergeFn(...classes: string[]): string {
|
||||||
|
return classes
|
||||||
|
.map((str) => str.trim())
|
||||||
|
.filter(Boolean)
|
||||||
|
.join(" ")
|
||||||
|
.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 重载1
|
||||||
|
export function mergeProps(
|
||||||
|
...propsN: Record<string, any>[]
|
||||||
|
): Record<string, any>;
|
||||||
|
|
||||||
|
// 重载2
|
||||||
|
export function mergeProps(
|
||||||
|
options: { classMergeFn: Function },
|
||||||
|
...propsN: Record<string, any>[]
|
||||||
|
): Record<string, any>;
|
||||||
|
|
||||||
|
// 实现
|
||||||
|
export function mergeProps(
|
||||||
|
arg1: { classMergeFn: Function } | Record<string, any>,
|
||||||
|
...rest: Record<string, any>[]
|
||||||
|
) {
|
||||||
|
let options: { classMergeFn: Function } = {
|
||||||
|
classMergeFn: innerClassMergeFn,
|
||||||
|
};
|
||||||
|
let propsN: Record<string, any>[];
|
||||||
|
|
||||||
|
if (
|
||||||
|
arg1 &&
|
||||||
|
typeof arg1 === "object" &&
|
||||||
|
!Array.isArray(arg1) &&
|
||||||
|
"classMergeFn" in arg1 &&
|
||||||
|
typeof (arg1 as any).classMergeFn === "function"
|
||||||
|
) {
|
||||||
|
options = arg1 as { classMergeFn: Function };
|
||||||
|
propsN = rest;
|
||||||
|
} else {
|
||||||
|
propsN = [arg1 as Record<string, any>, ...rest];
|
||||||
|
}
|
||||||
|
// --------------------------------
|
||||||
|
const result: any = {};
|
||||||
|
const eventHandlerMap = new Map<string, Function[]>();
|
||||||
|
const refs: any[] = [];
|
||||||
|
|
||||||
|
propsN.forEach((props) => {
|
||||||
|
if (!props) return;
|
||||||
|
|
||||||
|
if (props.className) {
|
||||||
|
result.className = options.classMergeFn(
|
||||||
|
result.className || "",
|
||||||
|
props.className,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (props.style) {
|
||||||
|
result.style = { ...(result.style || {}), ...props.style };
|
||||||
|
}
|
||||||
|
|
||||||
|
if (props.ref) {
|
||||||
|
refs.push(props.ref);
|
||||||
|
}
|
||||||
|
|
||||||
|
Object.keys(props).forEach((key) => {
|
||||||
|
if (key.startsWith("on") && typeof props[key] === "function") {
|
||||||
|
if (!eventHandlerMap.has(key)) {
|
||||||
|
eventHandlerMap.set(key, []);
|
||||||
|
}
|
||||||
|
eventHandlerMap.get(key)!.push(props[key]);
|
||||||
|
} else if (key !== "ref" && key !== "className" && key !== "style") {
|
||||||
|
// 其他普通属性,后面的覆盖前面的
|
||||||
|
result[key] = props[key];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// 合并 Refs
|
||||||
|
if (refs.length > 0) {
|
||||||
|
if (refs.length === 1) {
|
||||||
|
result.ref = refs[0];
|
||||||
|
} else {
|
||||||
|
result.ref = (node: any) => {
|
||||||
|
refs.forEach((ref) => {
|
||||||
|
if (typeof ref === "function") {
|
||||||
|
ref(node);
|
||||||
|
} else if (ref) {
|
||||||
|
ref.current = node;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 合并事件处理器
|
||||||
|
eventHandlerMap.forEach((handlers, key) => {
|
||||||
|
result[key] = (...args: any[]) => {
|
||||||
|
handlers.forEach((handler) => handler(...args));
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
39
packages/ui-web-headless/vite.config.ts
Normal file
39
packages/ui-web-headless/vite.config.ts
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import { defineConfig } from "vite";
|
||||||
|
import react from "@vitejs/plugin-react";
|
||||||
|
import path from "path";
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
// d.ts 由 tsc 完成,使用专门配置 tsconfig.build.json
|
||||||
|
// 转换由 oxc 完成
|
||||||
|
// 打包由 rolldown 完成
|
||||||
|
plugins: [react()],
|
||||||
|
|
||||||
|
build: {
|
||||||
|
cssMinify: false,
|
||||||
|
lib: {
|
||||||
|
entry: path.resolve(import.meta.dirname, "src/index.ts"),
|
||||||
|
// 不写 vite 默认是 index.mjs 和 index.js,不方便识别
|
||||||
|
formats: ["es", "cjs"],
|
||||||
|
// package.json 管别人怎么使用,
|
||||||
|
// build.lib 管怎么打包,生成什么
|
||||||
|
// 如果不一致,就会报错,指向文件不存在
|
||||||
|
fileName: (format) => `index.${format}.js`,
|
||||||
|
},
|
||||||
|
rolldownOptions: {
|
||||||
|
// 避免这些被打包,peerDependencies 对 rolldown 是无效的,不会自动 external
|
||||||
|
external: ["react", "react-dom", "react/jsx-runtime"],
|
||||||
|
// 专门给 UMD / IIFE 的映射表
|
||||||
|
output: {
|
||||||
|
globals: {
|
||||||
|
react: "React",
|
||||||
|
"react-dom": "ReactDOM",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
emptyOutDir: true, // 防止旧产物残留
|
||||||
|
sourcemap: true, // 方便调试
|
||||||
|
cssCodeSplit: false, // 合并成一个css文件
|
||||||
|
outDir: "dist", // 专管打包输出目录,tsconfig.build.json 中的 outDir 管的是 d.ts 输出目录
|
||||||
|
},
|
||||||
|
});
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
"@types/react": "^19.2.14",
|
"@types/react": "^19.2.14",
|
||||||
"@types/react-dom": "^19.2.3",
|
"@types/react-dom": "^19.2.3",
|
||||||
"@vitejs/plugin-react": "~5.2.0",
|
"@vitejs/plugin-react": "~5.2.0",
|
||||||
"glob": "^13.0.6",
|
"tinyglobby": "^0.2.16",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "~6.0.3",
|
"typescript": "~6.0.3",
|
||||||
"vite": "~7.3.2",
|
"vite": "~7.3.2",
|
||||||
|
|||||||
545
pnpm-lock.yaml
generated
545
pnpm-lock.yaml
generated
@@ -12,55 +12,6 @@ importers:
|
|||||||
specifier: ^2.8.0
|
specifier: ^2.8.0
|
||||||
version: 2.9.7
|
version: 2.9.7
|
||||||
|
|
||||||
apps/ui-site:
|
|
||||||
dependencies:
|
|
||||||
'@defgov/ui-web-tw':
|
|
||||||
specifier: workspace:*
|
|
||||||
version: link:../../packages/ui-web-tw
|
|
||||||
react:
|
|
||||||
specifier: ^19.2.5
|
|
||||||
version: 19.2.5
|
|
||||||
react-dom:
|
|
||||||
specifier: ^19.2.5
|
|
||||||
version: 19.2.5(react@19.2.5)
|
|
||||||
devDependencies:
|
|
||||||
'@rollup/plugin-typescript':
|
|
||||||
specifier: ^12.3.0
|
|
||||||
version: 12.3.0(rollup@4.60.2)(tslib@2.8.1)(typescript@6.0.3)
|
|
||||||
'@types/node':
|
|
||||||
specifier: ^25.6.0
|
|
||||||
version: 25.6.0
|
|
||||||
'@types/react':
|
|
||||||
specifier: ^19.2.14
|
|
||||||
version: 19.2.14
|
|
||||||
'@types/react-dom':
|
|
||||||
specifier: ^19.2.3
|
|
||||||
version: 19.2.3(@types/react@19.2.14)
|
|
||||||
'@vitejs/plugin-react':
|
|
||||||
specifier: ~5.2.0
|
|
||||||
version: 5.2.0(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0))
|
|
||||||
glob:
|
|
||||||
specifier: ^13.0.6
|
|
||||||
version: 13.0.6
|
|
||||||
tailwind-merge:
|
|
||||||
specifier: ^3.5.0
|
|
||||||
version: 3.5.0
|
|
||||||
tailwind-variants:
|
|
||||||
specifier: ^3.2.2
|
|
||||||
version: 3.2.2(tailwind-merge@3.5.0)(tailwindcss@4.2.4)
|
|
||||||
ts-node:
|
|
||||||
specifier: ^10.9.2
|
|
||||||
version: 10.9.2(@types/node@25.6.0)(typescript@6.0.3)
|
|
||||||
typescript:
|
|
||||||
specifier: ~6.0.3
|
|
||||||
version: 6.0.3
|
|
||||||
vite:
|
|
||||||
specifier: ~7.3.2
|
|
||||||
version: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)
|
|
||||||
vite-plugin-dts:
|
|
||||||
specifier: ^4.5.4
|
|
||||||
version: 4.5.4(@types/node@25.6.0)(rollup@4.60.2)(typescript@6.0.3)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0))
|
|
||||||
|
|
||||||
apps/vite-project:
|
apps/vite-project:
|
||||||
dependencies:
|
dependencies:
|
||||||
react:
|
react:
|
||||||
@@ -141,12 +92,52 @@ importers:
|
|||||||
'@types/node':
|
'@types/node':
|
||||||
specifier: ^25.6.0
|
specifier: ^25.6.0
|
||||||
version: 25.6.0
|
version: 25.6.0
|
||||||
|
'@types/react':
|
||||||
|
specifier: ^19.2.14
|
||||||
|
version: 19.2.14
|
||||||
|
'@types/react-dom':
|
||||||
|
specifier: ^19.2.3
|
||||||
|
version: 19.2.3(@types/react@19.2.14)
|
||||||
'@vitejs/plugin-react':
|
'@vitejs/plugin-react':
|
||||||
specifier: ^6.0.1
|
specifier: ^6.0.1
|
||||||
version: 6.0.1(vite@8.0.10(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1))
|
version: 6.0.1(vite@8.0.10(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1))
|
||||||
glob:
|
tinyglobby:
|
||||||
specifier: ^13.0.6
|
specifier: ^0.2.16
|
||||||
version: 13.0.6
|
version: 0.2.16
|
||||||
|
ts-node:
|
||||||
|
specifier: ^10.9.2
|
||||||
|
version: 10.9.2(@types/node@25.6.0)(typescript@6.0.3)
|
||||||
|
typescript:
|
||||||
|
specifier: ^6.0.3
|
||||||
|
version: 6.0.3
|
||||||
|
vite:
|
||||||
|
specifier: ^8.0.10
|
||||||
|
version: 8.0.10(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)
|
||||||
|
|
||||||
|
packages/ui-web-headless:
|
||||||
|
dependencies:
|
||||||
|
react:
|
||||||
|
specifier: ^19
|
||||||
|
version: 19.2.5
|
||||||
|
react-dom:
|
||||||
|
specifier: ^19
|
||||||
|
version: 19.2.5(react@19.2.5)
|
||||||
|
devDependencies:
|
||||||
|
'@types/node':
|
||||||
|
specifier: ^25.6.0
|
||||||
|
version: 25.6.0
|
||||||
|
'@types/react':
|
||||||
|
specifier: ^19.2.14
|
||||||
|
version: 19.2.14
|
||||||
|
'@types/react-dom':
|
||||||
|
specifier: ^19.2.3
|
||||||
|
version: 19.2.3(@types/react@19.2.14)
|
||||||
|
'@vitejs/plugin-react':
|
||||||
|
specifier: ^6.0.1
|
||||||
|
version: 6.0.1(vite@8.0.10(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1))
|
||||||
|
tinyglobby:
|
||||||
|
specifier: ^0.2.16
|
||||||
|
version: 0.2.16
|
||||||
ts-node:
|
ts-node:
|
||||||
specifier: ^10.9.2
|
specifier: ^10.9.2
|
||||||
version: 10.9.2(@types/node@25.6.0)(typescript@6.0.3)
|
version: 10.9.2(@types/node@25.6.0)(typescript@6.0.3)
|
||||||
@@ -196,9 +187,9 @@ importers:
|
|||||||
'@vitejs/plugin-react':
|
'@vitejs/plugin-react':
|
||||||
specifier: ~5.2.0
|
specifier: ~5.2.0
|
||||||
version: 5.2.0(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0))
|
version: 5.2.0(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0))
|
||||||
glob:
|
tinyglobby:
|
||||||
specifier: ^13.0.6
|
specifier: ^0.2.16
|
||||||
version: 13.0.6
|
version: 0.2.16
|
||||||
ts-node:
|
ts-node:
|
||||||
specifier: ^10.9.2
|
specifier: ^10.9.2
|
||||||
version: 10.9.2(@types/node@25.6.0)(typescript@6.0.3)
|
version: 10.9.2(@types/node@25.6.0)(typescript@6.0.3)
|
||||||
@@ -210,7 +201,41 @@ importers:
|
|||||||
version: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)
|
version: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)
|
||||||
vite-plugin-dts:
|
vite-plugin-dts:
|
||||||
specifier: ^5.0.0
|
specifier: ^5.0.0
|
||||||
version: 5.0.0(@microsoft/api-extractor@7.58.7(@types/node@25.6.0))(esbuild@0.27.7)(rollup@4.60.2)(typescript@6.0.3)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0))
|
version: 5.0.0(esbuild@0.27.7)(rollup@4.60.2)(typescript@6.0.3)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0))
|
||||||
|
|
||||||
|
templates/vite-react-lib:
|
||||||
|
dependencies:
|
||||||
|
react:
|
||||||
|
specifier: ^19
|
||||||
|
version: 19.2.5
|
||||||
|
react-dom:
|
||||||
|
specifier: ^19
|
||||||
|
version: 19.2.5(react@19.2.5)
|
||||||
|
devDependencies:
|
||||||
|
'@types/node':
|
||||||
|
specifier: ^25.6.0
|
||||||
|
version: 25.6.0
|
||||||
|
'@types/react':
|
||||||
|
specifier: ^19.2.14
|
||||||
|
version: 19.2.14
|
||||||
|
'@types/react-dom':
|
||||||
|
specifier: ^19.2.3
|
||||||
|
version: 19.2.3(@types/react@19.2.14)
|
||||||
|
'@vitejs/plugin-react':
|
||||||
|
specifier: ^6.0.1
|
||||||
|
version: 6.0.1(vite@8.0.10(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1))
|
||||||
|
tinyglobby:
|
||||||
|
specifier: ^0.2.16
|
||||||
|
version: 0.2.16
|
||||||
|
ts-node:
|
||||||
|
specifier: ^10.9.2
|
||||||
|
version: 10.9.2(@types/node@25.6.0)(typescript@6.0.3)
|
||||||
|
typescript:
|
||||||
|
specifier: ^6.0.3
|
||||||
|
version: 6.0.3
|
||||||
|
vite:
|
||||||
|
specifier: ^8.0.10
|
||||||
|
version: 8.0.10(@types/node@25.6.0)(esbuild@0.27.7)(jiti@2.6.1)
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
|
|
||||||
@@ -594,19 +619,6 @@ packages:
|
|||||||
'@jridgewell/trace-mapping@0.3.9':
|
'@jridgewell/trace-mapping@0.3.9':
|
||||||
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
|
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
|
||||||
|
|
||||||
'@microsoft/api-extractor-model@7.33.8':
|
|
||||||
resolution: {integrity: sha512-aIcoQggPyer3B6Ze3usz0YWC/oBwUHfRH5ETUsr+oT2BRA6SfTJl7IKPcPZkX4UR+PohowzW4uMxsvjrn8vm+w==}
|
|
||||||
|
|
||||||
'@microsoft/api-extractor@7.58.7':
|
|
||||||
resolution: {integrity: sha512-yK6OycD46gIzLRpj6ueVUWPk1ACSpkN1LBo05gY1qPTylbWyUCanXfH7+VgkI5LJrJoRSQR5F04XuCffCXLOBw==}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
'@microsoft/tsdoc-config@0.18.1':
|
|
||||||
resolution: {integrity: sha512-9brPoVdfN9k9g0dcWkFeA7IH9bbcttzDJlXvkf8b2OBzd5MueR1V2wkKBL0abn0otvmkHJC6aapBOTJDDeMCZg==}
|
|
||||||
|
|
||||||
'@microsoft/tsdoc@0.16.0':
|
|
||||||
resolution: {integrity: sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA==}
|
|
||||||
|
|
||||||
'@napi-rs/wasm-runtime@1.1.4':
|
'@napi-rs/wasm-runtime@1.1.4':
|
||||||
resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==}
|
resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -884,36 +896,6 @@ packages:
|
|||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
'@rushstack/node-core-library@5.23.1':
|
|
||||||
resolution: {integrity: sha512-wlKmIKIYCKuCASbITvOxLZXepPbwXvrv7S6ig6XNWFchSyhL/E2txmVXspHY49Wu2dzf7nI27a2k/yV5BA3EiA==}
|
|
||||||
peerDependencies:
|
|
||||||
'@types/node': '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
'@types/node':
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@rushstack/problem-matcher@0.2.1':
|
|
||||||
resolution: {integrity: sha512-gulfhBs6n+I5b7DvjKRfhMGyUejtSgOHTclF/eONr8hcgF1APEDjhxIsfdUYYMzC3rvLwGluqLjbwCFZ8nxrog==}
|
|
||||||
peerDependencies:
|
|
||||||
'@types/node': '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
'@types/node':
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@rushstack/rig-package@0.7.3':
|
|
||||||
resolution: {integrity: sha512-aAA518n6wxxjCfnTAOjQnm7ngNE0FVHxHAw2pxKlIhxrMn0XQjGcXKF0oKWpjBgJOmsaJpVob/v+zr3zxgPWuA==}
|
|
||||||
|
|
||||||
'@rushstack/terminal@0.24.0':
|
|
||||||
resolution: {integrity: sha512-8ZQS4MMaGsv27EXCBiH7WMPkRZrffeDoIevs6z9TM5dzqiY6+Hn4evfK/G+gvgBTjfvfkHIZPQQmalmI2sM4TQ==}
|
|
||||||
peerDependencies:
|
|
||||||
'@types/node': '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
'@types/node':
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@rushstack/ts-command-line@5.3.9':
|
|
||||||
resolution: {integrity: sha512-GIHqU+sRGQ3LGWAZu1O+9Yh++qwtyNIIGuNbcWHJjBTm2qRez0cwINUHZ+pQLR8UuzZDcMajrDaNbUYoaL/XtQ==}
|
|
||||||
|
|
||||||
'@tailwindcss/node@4.2.4':
|
'@tailwindcss/node@4.2.4':
|
||||||
resolution: {integrity: sha512-Ai7+yQPxz3ddrDQzFfBKdHEVBg0w3Zl83jnjuwxnZOsnH9pGn93QHQtpU0p/8rYWxvbFZHneni6p1BSLK4DkGA==}
|
resolution: {integrity: sha512-Ai7+yQPxz3ddrDQzFfBKdHEVBg0w3Zl83jnjuwxnZOsnH9pGn93QHQtpU0p/8rYWxvbFZHneni6p1BSLK4DkGA==}
|
||||||
|
|
||||||
@@ -1053,9 +1035,6 @@ packages:
|
|||||||
'@tybys/wasm-util@0.10.2':
|
'@tybys/wasm-util@0.10.2':
|
||||||
resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==}
|
resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==}
|
||||||
|
|
||||||
'@types/argparse@1.0.38':
|
|
||||||
resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
|
|
||||||
|
|
||||||
'@types/babel__core@7.20.5':
|
'@types/babel__core@7.20.5':
|
||||||
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
||||||
|
|
||||||
@@ -1196,26 +1175,6 @@ packages:
|
|||||||
'@volar/typescript@2.4.28':
|
'@volar/typescript@2.4.28':
|
||||||
resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==}
|
resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==}
|
||||||
|
|
||||||
'@vue/compiler-core@3.5.33':
|
|
||||||
resolution: {integrity: sha512-3PZLQwFw4Za3TC8t0FvTy3wI16Kt+pmwcgNZca4Pj9iWL2E72a/gZlpBtAJvEdDMdCxdG/qq0C7PN0bsJuv0Rw==}
|
|
||||||
|
|
||||||
'@vue/compiler-dom@3.5.33':
|
|
||||||
resolution: {integrity: sha512-PXq0yrfCLzzL07rbXO4awtXY1Z06LG2eu6Adg3RJFa/j3Cii217XxxLXG22N330gw7GmALCY0Z8RgXEviwgpjA==}
|
|
||||||
|
|
||||||
'@vue/compiler-vue2@2.7.16':
|
|
||||||
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
|
|
||||||
|
|
||||||
'@vue/language-core@2.2.0':
|
|
||||||
resolution: {integrity: sha512-O1ZZFaaBGkKbsRfnVH1ifOK1/1BUkyK+3SQsfnh6PmMmD4qJcTU8godCeA96jjDRTL6zgnK7YzCHfaUlH2r0Mw==}
|
|
||||||
peerDependencies:
|
|
||||||
typescript: '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
typescript:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
'@vue/shared@3.5.33':
|
|
||||||
resolution: {integrity: sha512-5vR2QIlmaLG77Ygd4pMP6+SGQ5yox9VhtnbDWTy9DzMzdmeLxZ1QqxrywEZ9sa1AVubfIJyaCG3ytyWU81ufcQ==}
|
|
||||||
|
|
||||||
acorn-jsx@5.3.2:
|
acorn-jsx@5.3.2:
|
||||||
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -1230,31 +1189,9 @@ packages:
|
|||||||
engines: {node: '>=0.4.0'}
|
engines: {node: '>=0.4.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
ajv-draft-04@1.0.0:
|
|
||||||
resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==}
|
|
||||||
peerDependencies:
|
|
||||||
ajv: ^8.5.0
|
|
||||||
peerDependenciesMeta:
|
|
||||||
ajv:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
ajv-formats@3.0.1:
|
|
||||||
resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
|
|
||||||
peerDependencies:
|
|
||||||
ajv: ^8.0.0
|
|
||||||
peerDependenciesMeta:
|
|
||||||
ajv:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
ajv@6.15.0:
|
ajv@6.15.0:
|
||||||
resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==}
|
resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==}
|
||||||
|
|
||||||
ajv@8.18.0:
|
|
||||||
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
|
|
||||||
|
|
||||||
alien-signals@0.4.9:
|
|
||||||
resolution: {integrity: sha512-piRGlMgQ65uRiY06mGU7I432AwPwAGf64TK1RXtM1Px4pPfLMTGI9TmsHTfioW1GukZRsNzkVQ/uHjhhd231Ow==}
|
|
||||||
|
|
||||||
ansi-regex@5.0.1:
|
ansi-regex@5.0.1:
|
||||||
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -1274,9 +1211,6 @@ packages:
|
|||||||
arg@4.1.3:
|
arg@4.1.3:
|
||||||
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
|
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
|
||||||
|
|
||||||
argparse@1.0.10:
|
|
||||||
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
|
|
||||||
|
|
||||||
balanced-match@1.0.0:
|
balanced-match@1.0.0:
|
||||||
resolution: {integrity: sha512-9Y0g0Q8rmSt+H33DfKv7FOc3v+iRI+o1lbzt8jGcIosYW37IIW/2XVYq5NPdmaD5NQ59Nk26Kl/vZbwW9Fr8vg==}
|
resolution: {integrity: sha512-9Y0g0Q8rmSt+H33DfKv7FOc3v+iRI+o1lbzt8jGcIosYW37IIW/2XVYq5NPdmaD5NQ59Nk26Kl/vZbwW9Fr8vg==}
|
||||||
|
|
||||||
@@ -1333,9 +1267,6 @@ packages:
|
|||||||
csstype@3.2.3:
|
csstype@3.2.3:
|
||||||
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
||||||
|
|
||||||
de-indent@1.0.2:
|
|
||||||
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
|
|
||||||
|
|
||||||
debug@4.4.3:
|
debug@4.4.3:
|
||||||
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
||||||
engines: {node: '>=6.0'}
|
engines: {node: '>=6.0'}
|
||||||
@@ -1356,10 +1287,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==}
|
resolution: {integrity: sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==}
|
||||||
engines: {node: '>=0.3.1'}
|
engines: {node: '>=0.3.1'}
|
||||||
|
|
||||||
diff@8.0.4:
|
|
||||||
resolution: {integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==}
|
|
||||||
engines: {node: '>=0.3.1'}
|
|
||||||
|
|
||||||
eastasianwidth@0.2.0:
|
eastasianwidth@0.2.0:
|
||||||
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
||||||
|
|
||||||
@@ -1376,10 +1303,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-otxSQPw4lkOZWkHpB3zaEQs6gWYEsmX4xQF68ElXC/TWvGxGMSGOvoNbaLXm6/cS/fSfHtsEdw90y20PCd+sCA==}
|
resolution: {integrity: sha512-otxSQPw4lkOZWkHpB3zaEQs6gWYEsmX4xQF68ElXC/TWvGxGMSGOvoNbaLXm6/cS/fSfHtsEdw90y20PCd+sCA==}
|
||||||
engines: {node: '>=10.13.0'}
|
engines: {node: '>=10.13.0'}
|
||||||
|
|
||||||
entities@7.0.1:
|
|
||||||
resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
|
|
||||||
engines: {node: '>=0.12'}
|
|
||||||
|
|
||||||
es-errors@1.3.0:
|
es-errors@1.3.0:
|
||||||
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@@ -1465,9 +1388,6 @@ packages:
|
|||||||
fast-levenshtein@2.0.6:
|
fast-levenshtein@2.0.6:
|
||||||
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
||||||
|
|
||||||
fast-uri@3.1.0:
|
|
||||||
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
|
|
||||||
|
|
||||||
fdir@6.5.0:
|
fdir@6.5.0:
|
||||||
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
||||||
engines: {node: '>=12.0.0'}
|
engines: {node: '>=12.0.0'}
|
||||||
@@ -1496,10 +1416,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-lXeSPRCndWPaipZbtI4CkvTZpF6OPsy19dkvf7+5AHeJD+w+iAKPc9Q78xWBmX4SdR+8xrtY9jTXs/YDv8q+Ug==}
|
resolution: {integrity: sha512-lXeSPRCndWPaipZbtI4CkvTZpF6OPsy19dkvf7+5AHeJD+w+iAKPc9Q78xWBmX4SdR+8xrtY9jTXs/YDv8q+Ug==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
|
|
||||||
fs-extra@11.3.4:
|
|
||||||
resolution: {integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==}
|
|
||||||
engines: {node: '>=14.14'}
|
|
||||||
|
|
||||||
fsevents@2.3.3:
|
fsevents@2.3.3:
|
||||||
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
||||||
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
||||||
@@ -1521,10 +1437,6 @@ packages:
|
|||||||
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
|
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
glob@13.0.6:
|
|
||||||
resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
|
|
||||||
engines: {node: 18 || 20 || >=22}
|
|
||||||
|
|
||||||
globals@17.6.0:
|
globals@17.6.0:
|
||||||
resolution: {integrity: sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==}
|
resolution: {integrity: sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
@@ -1532,18 +1444,10 @@ packages:
|
|||||||
graceful-fs@4.2.11:
|
graceful-fs@4.2.11:
|
||||||
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
||||||
|
|
||||||
has-flag@4.0.0:
|
|
||||||
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
||||||
engines: {node: '>=8'}
|
|
||||||
|
|
||||||
hasown@2.0.3:
|
hasown@2.0.3:
|
||||||
resolution: {integrity: sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==}
|
resolution: {integrity: sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
he@1.2.0:
|
|
||||||
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
hermes-estree@0.25.1:
|
hermes-estree@0.25.1:
|
||||||
resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
|
resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==}
|
||||||
|
|
||||||
@@ -1558,10 +1462,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
|
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
|
||||||
engines: {node: '>= 4'}
|
engines: {node: '>= 4'}
|
||||||
|
|
||||||
import-lazy@4.0.0:
|
|
||||||
resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
|
|
||||||
engines: {node: '>=8'}
|
|
||||||
|
|
||||||
imurmurhash@0.1.4:
|
imurmurhash@0.1.4:
|
||||||
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
||||||
engines: {node: '>=0.8.19'}
|
engines: {node: '>=0.8.19'}
|
||||||
@@ -1593,9 +1493,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
|
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
jju@1.4.0:
|
|
||||||
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
|
|
||||||
|
|
||||||
js-tokens@4.0.0:
|
js-tokens@4.0.0:
|
||||||
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
||||||
|
|
||||||
@@ -1610,9 +1507,6 @@ packages:
|
|||||||
json-schema-traverse@0.4.1:
|
json-schema-traverse@0.4.1:
|
||||||
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
||||||
|
|
||||||
json-schema-traverse@1.0.0:
|
|
||||||
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
|
||||||
|
|
||||||
json-stable-stringify-without-jsonify@1.0.1:
|
json-stable-stringify-without-jsonify@1.0.1:
|
||||||
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
||||||
|
|
||||||
@@ -1621,9 +1515,6 @@ packages:
|
|||||||
engines: {node: '>=6'}
|
engines: {node: '>=6'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
jsonfile@6.2.1:
|
|
||||||
resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==}
|
|
||||||
|
|
||||||
keyv@4.5.4:
|
keyv@4.5.4:
|
||||||
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
||||||
|
|
||||||
@@ -1720,10 +1611,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
|
resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
|
||||||
engines: {node: 14 || >=16.14}
|
engines: {node: 14 || >=16.14}
|
||||||
|
|
||||||
lru-cache@11.3.5:
|
|
||||||
resolution: {integrity: sha512-NxVFwLAnrd9i7KUBxC4DrUhmgjzOs+1Qm50D3oF1/oL+r1NpZ4gA7xvG0/zJ8evR7zIKn4vLf7qTNduWFtCrRw==}
|
|
||||||
engines: {node: 20 || >=22}
|
|
||||||
|
|
||||||
lru-cache@5.1.1:
|
lru-cache@5.1.1:
|
||||||
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
||||||
|
|
||||||
@@ -1733,10 +1620,6 @@ packages:
|
|||||||
make-error@1.3.6:
|
make-error@1.3.6:
|
||||||
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
|
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
|
||||||
|
|
||||||
minimatch@10.2.3:
|
|
||||||
resolution: {integrity: sha512-Rwi3pnapEqirPSbWbrZaa6N3nmqq4Xer/2XooiOKyV3q12ML06f7MOuc5DVH8ONZIFhwIYQ3yzPH4nt7iWHaTg==}
|
|
||||||
engines: {node: 18 || 20 || >=22}
|
|
||||||
|
|
||||||
minimatch@10.2.5:
|
minimatch@10.2.5:
|
||||||
resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
|
resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
|
||||||
engines: {node: 18 || 20 || >=22}
|
engines: {node: 18 || 20 || >=22}
|
||||||
@@ -1755,9 +1638,6 @@ packages:
|
|||||||
ms@2.1.3:
|
ms@2.1.3:
|
||||||
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
||||||
|
|
||||||
muggle-string@0.4.1:
|
|
||||||
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
|
|
||||||
|
|
||||||
nanoid@3.3.12:
|
nanoid@3.3.12:
|
||||||
resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
|
resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
|
||||||
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
||||||
@@ -1806,10 +1686,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
|
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
|
||||||
engines: {node: '>=16 || 14 >=14.18'}
|
engines: {node: '>=16 || 14 >=14.18'}
|
||||||
|
|
||||||
path-scurry@2.0.2:
|
|
||||||
resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
|
|
||||||
engines: {node: 18 || 20 || >=22}
|
|
||||||
|
|
||||||
pathe@2.0.3:
|
pathe@2.0.3:
|
||||||
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
||||||
|
|
||||||
@@ -1858,10 +1734,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-llUJLzz1zTUBrskt2pwZgLq59AemifIftw4aB7JxOqf1HY2FDaGDxgwpAPVzHU1kdWabH7FauP4i1oEeer2WCA==}
|
resolution: {integrity: sha512-llUJLzz1zTUBrskt2pwZgLq59AemifIftw4aB7JxOqf1HY2FDaGDxgwpAPVzHU1kdWabH7FauP4i1oEeer2WCA==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
require-from-string@2.0.2:
|
|
||||||
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
|
|
||||||
reselect@5.1.1:
|
reselect@5.1.1:
|
||||||
resolution: {integrity: sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==}
|
resolution: {integrity: sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==}
|
||||||
|
|
||||||
@@ -1913,17 +1785,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
source-map@0.6.1:
|
|
||||||
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
|
|
||||||
sprintf-js@1.0.3:
|
|
||||||
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
|
|
||||||
|
|
||||||
string-argv@0.3.2:
|
|
||||||
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
|
|
||||||
engines: {node: '>=0.6.19'}
|
|
||||||
|
|
||||||
string-width@4.2.0:
|
string-width@4.2.0:
|
||||||
resolution: {integrity: sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==}
|
resolution: {integrity: sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -1940,10 +1801,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
|
resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
|
|
||||||
supports-color@8.1.1:
|
|
||||||
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
|
|
||||||
engines: {node: '>=10'}
|
|
||||||
|
|
||||||
supports-preserve-symlinks-flag@1.0.0:
|
supports-preserve-symlinks-flag@1.0.0:
|
||||||
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@@ -2010,11 +1867,6 @@ packages:
|
|||||||
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
||||||
typescript: '>=4.8.4 <6.1.0'
|
typescript: '>=4.8.4 <6.1.0'
|
||||||
|
|
||||||
typescript@5.9.3:
|
|
||||||
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
||||||
engines: {node: '>=14.17'}
|
|
||||||
hasBin: true
|
|
||||||
|
|
||||||
typescript@6.0.3:
|
typescript@6.0.3:
|
||||||
resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
|
resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
|
||||||
engines: {node: '>=14.17'}
|
engines: {node: '>=14.17'}
|
||||||
@@ -2029,10 +1881,6 @@ packages:
|
|||||||
undici-types@7.19.2:
|
undici-types@7.19.2:
|
||||||
resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==}
|
resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==}
|
||||||
|
|
||||||
universalify@2.0.1:
|
|
||||||
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
|
|
||||||
engines: {node: '>= 10.0.0'}
|
|
||||||
|
|
||||||
unplugin-dts@1.0.0:
|
unplugin-dts@1.0.0:
|
||||||
resolution: {integrity: sha512-qz+U1lCscwq+t8Mkaxy5Esa7IQ5wWV18b4mnioOXSdnPaNiJ0+qgE3I+KL6UkXYZWxxGo2qdGone8LEQ52Sfkw==}
|
resolution: {integrity: sha512-qz+U1lCscwq+t8Mkaxy5Esa7IQ5wWV18b4mnioOXSdnPaNiJ0+qgE3I+KL6UkXYZWxxGo2qdGone8LEQ52Sfkw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -2084,15 +1932,6 @@ packages:
|
|||||||
v8-compile-cache-lib@3.0.1:
|
v8-compile-cache-lib@3.0.1:
|
||||||
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
|
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
|
||||||
|
|
||||||
vite-plugin-dts@4.5.4:
|
|
||||||
resolution: {integrity: sha512-d4sOM8M/8z7vRXHHq/ebbblfaxENjogAAekcfcDCCwAyvGqnPrc7f4NZbvItS+g4WTgerW0xDwSz5qz11JT3vg==}
|
|
||||||
peerDependencies:
|
|
||||||
typescript: '*'
|
|
||||||
vite: '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
vite:
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
vite-plugin-dts@5.0.0:
|
vite-plugin-dts@5.0.0:
|
||||||
resolution: {integrity: sha512-VLNAUttBq7pLxxL/m/ztjd5zj5yiviiC7ijfPFVLK5c45FLcibvieBsdjSka3a4ag1qdrAF9K3OysH4/lW+rPQ==}
|
resolution: {integrity: sha512-VLNAUttBq7pLxxL/m/ztjd5zj5yiviiC7ijfPFVLK5c45FLcibvieBsdjSka3a4ag1qdrAF9K3OysH4/lW+rPQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -2569,41 +2408,6 @@ snapshots:
|
|||||||
'@jridgewell/resolve-uri': 3.1.2
|
'@jridgewell/resolve-uri': 3.1.2
|
||||||
'@jridgewell/sourcemap-codec': 1.5.5
|
'@jridgewell/sourcemap-codec': 1.5.5
|
||||||
|
|
||||||
'@microsoft/api-extractor-model@7.33.8(@types/node@25.6.0)':
|
|
||||||
dependencies:
|
|
||||||
'@microsoft/tsdoc': 0.16.0
|
|
||||||
'@microsoft/tsdoc-config': 0.18.1
|
|
||||||
'@rushstack/node-core-library': 5.23.1(@types/node@25.6.0)
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@types/node'
|
|
||||||
|
|
||||||
'@microsoft/api-extractor@7.58.7(@types/node@25.6.0)':
|
|
||||||
dependencies:
|
|
||||||
'@microsoft/api-extractor-model': 7.33.8(@types/node@25.6.0)
|
|
||||||
'@microsoft/tsdoc': 0.16.0
|
|
||||||
'@microsoft/tsdoc-config': 0.18.1
|
|
||||||
'@rushstack/node-core-library': 5.23.1(@types/node@25.6.0)
|
|
||||||
'@rushstack/rig-package': 0.7.3
|
|
||||||
'@rushstack/terminal': 0.24.0(@types/node@25.6.0)
|
|
||||||
'@rushstack/ts-command-line': 5.3.9(@types/node@25.6.0)
|
|
||||||
diff: 8.0.4
|
|
||||||
minimatch: 10.2.3
|
|
||||||
resolve: 1.22.12
|
|
||||||
semver: 7.7.4
|
|
||||||
source-map: 0.6.1
|
|
||||||
typescript: 5.9.3
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@types/node'
|
|
||||||
|
|
||||||
'@microsoft/tsdoc-config@0.18.1':
|
|
||||||
dependencies:
|
|
||||||
'@microsoft/tsdoc': 0.16.0
|
|
||||||
ajv: 8.18.0
|
|
||||||
jju: 1.4.0
|
|
||||||
resolve: 1.22.12
|
|
||||||
|
|
||||||
'@microsoft/tsdoc@0.16.0': {}
|
|
||||||
|
|
||||||
'@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
|
'@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@emnapi/core': 1.10.0
|
'@emnapi/core': 1.10.0
|
||||||
@@ -2763,45 +2567,6 @@ snapshots:
|
|||||||
'@rollup/rollup-win32-x64-msvc@4.60.2':
|
'@rollup/rollup-win32-x64-msvc@4.60.2':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@rushstack/node-core-library@5.23.1(@types/node@25.6.0)':
|
|
||||||
dependencies:
|
|
||||||
ajv: 8.18.0
|
|
||||||
ajv-draft-04: 1.0.0(ajv@8.18.0)
|
|
||||||
ajv-formats: 3.0.1(ajv@8.18.0)
|
|
||||||
fs-extra: 11.3.4
|
|
||||||
import-lazy: 4.0.0
|
|
||||||
jju: 1.4.0
|
|
||||||
resolve: 1.22.12
|
|
||||||
semver: 7.7.4
|
|
||||||
optionalDependencies:
|
|
||||||
'@types/node': 25.6.0
|
|
||||||
|
|
||||||
'@rushstack/problem-matcher@0.2.1(@types/node@25.6.0)':
|
|
||||||
optionalDependencies:
|
|
||||||
'@types/node': 25.6.0
|
|
||||||
|
|
||||||
'@rushstack/rig-package@0.7.3':
|
|
||||||
dependencies:
|
|
||||||
jju: 1.4.0
|
|
||||||
resolve: 1.22.12
|
|
||||||
|
|
||||||
'@rushstack/terminal@0.24.0(@types/node@25.6.0)':
|
|
||||||
dependencies:
|
|
||||||
'@rushstack/node-core-library': 5.23.1(@types/node@25.6.0)
|
|
||||||
'@rushstack/problem-matcher': 0.2.1(@types/node@25.6.0)
|
|
||||||
supports-color: 8.1.1
|
|
||||||
optionalDependencies:
|
|
||||||
'@types/node': 25.6.0
|
|
||||||
|
|
||||||
'@rushstack/ts-command-line@5.3.9(@types/node@25.6.0)':
|
|
||||||
dependencies:
|
|
||||||
'@rushstack/terminal': 0.24.0(@types/node@25.6.0)
|
|
||||||
'@types/argparse': 1.0.38
|
|
||||||
argparse: 1.0.10
|
|
||||||
string-argv: 0.3.2
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@types/node'
|
|
||||||
|
|
||||||
'@tailwindcss/node@4.2.4':
|
'@tailwindcss/node@4.2.4':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@jridgewell/remapping': 2.3.5
|
'@jridgewell/remapping': 2.3.5
|
||||||
@@ -2901,8 +2666,6 @@ snapshots:
|
|||||||
tslib: 2.8.1
|
tslib: 2.8.1
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@types/argparse@1.0.38': {}
|
|
||||||
|
|
||||||
'@types/babel__core@7.20.5':
|
'@types/babel__core@7.20.5':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/parser': 7.29.3
|
'@babel/parser': 7.29.3
|
||||||
@@ -3088,39 +2851,6 @@ snapshots:
|
|||||||
path-browserify: 1.0.1
|
path-browserify: 1.0.1
|
||||||
vscode-uri: 3.1.0
|
vscode-uri: 3.1.0
|
||||||
|
|
||||||
'@vue/compiler-core@3.5.33':
|
|
||||||
dependencies:
|
|
||||||
'@babel/parser': 7.29.3
|
|
||||||
'@vue/shared': 3.5.33
|
|
||||||
entities: 7.0.1
|
|
||||||
estree-walker: 2.0.2
|
|
||||||
source-map-js: 1.2.1
|
|
||||||
|
|
||||||
'@vue/compiler-dom@3.5.33':
|
|
||||||
dependencies:
|
|
||||||
'@vue/compiler-core': 3.5.33
|
|
||||||
'@vue/shared': 3.5.33
|
|
||||||
|
|
||||||
'@vue/compiler-vue2@2.7.16':
|
|
||||||
dependencies:
|
|
||||||
de-indent: 1.0.2
|
|
||||||
he: 1.2.0
|
|
||||||
|
|
||||||
'@vue/language-core@2.2.0(typescript@6.0.3)':
|
|
||||||
dependencies:
|
|
||||||
'@volar/language-core': 2.4.28
|
|
||||||
'@vue/compiler-dom': 3.5.33
|
|
||||||
'@vue/compiler-vue2': 2.7.16
|
|
||||||
'@vue/shared': 3.5.33
|
|
||||||
alien-signals: 0.4.9
|
|
||||||
minimatch: 9.0.9
|
|
||||||
muggle-string: 0.4.1
|
|
||||||
path-browserify: 1.0.1
|
|
||||||
optionalDependencies:
|
|
||||||
typescript: 6.0.3
|
|
||||||
|
|
||||||
'@vue/shared@3.5.33': {}
|
|
||||||
|
|
||||||
acorn-jsx@5.3.2(acorn@8.16.0):
|
acorn-jsx@5.3.2(acorn@8.16.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.16.0
|
acorn: 8.16.0
|
||||||
@@ -3131,14 +2861,6 @@ snapshots:
|
|||||||
|
|
||||||
acorn@8.16.0: {}
|
acorn@8.16.0: {}
|
||||||
|
|
||||||
ajv-draft-04@1.0.0(ajv@8.18.0):
|
|
||||||
optionalDependencies:
|
|
||||||
ajv: 8.18.0
|
|
||||||
|
|
||||||
ajv-formats@3.0.1(ajv@8.18.0):
|
|
||||||
optionalDependencies:
|
|
||||||
ajv: 8.18.0
|
|
||||||
|
|
||||||
ajv@6.15.0:
|
ajv@6.15.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
fast-deep-equal: 3.1.3
|
fast-deep-equal: 3.1.3
|
||||||
@@ -3146,15 +2868,6 @@ snapshots:
|
|||||||
json-schema-traverse: 0.4.1
|
json-schema-traverse: 0.4.1
|
||||||
uri-js: 4.4.1
|
uri-js: 4.4.1
|
||||||
|
|
||||||
ajv@8.18.0:
|
|
||||||
dependencies:
|
|
||||||
fast-deep-equal: 3.1.3
|
|
||||||
fast-uri: 3.1.0
|
|
||||||
json-schema-traverse: 1.0.0
|
|
||||||
require-from-string: 2.0.2
|
|
||||||
|
|
||||||
alien-signals@0.4.9: {}
|
|
||||||
|
|
||||||
ansi-regex@5.0.1: {}
|
ansi-regex@5.0.1: {}
|
||||||
|
|
||||||
ansi-regex@6.2.2: {}
|
ansi-regex@6.2.2: {}
|
||||||
@@ -3167,10 +2880,6 @@ snapshots:
|
|||||||
|
|
||||||
arg@4.1.3: {}
|
arg@4.1.3: {}
|
||||||
|
|
||||||
argparse@1.0.10:
|
|
||||||
dependencies:
|
|
||||||
sprintf-js: 1.0.3
|
|
||||||
|
|
||||||
balanced-match@1.0.0: {}
|
balanced-match@1.0.0: {}
|
||||||
|
|
||||||
balanced-match@4.0.4: {}
|
balanced-match@4.0.4: {}
|
||||||
@@ -3219,8 +2928,6 @@ snapshots:
|
|||||||
|
|
||||||
csstype@3.2.3: {}
|
csstype@3.2.3: {}
|
||||||
|
|
||||||
de-indent@1.0.2: {}
|
|
||||||
|
|
||||||
debug@4.4.3:
|
debug@4.4.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
ms: 2.1.3
|
ms: 2.1.3
|
||||||
@@ -3231,8 +2938,6 @@ snapshots:
|
|||||||
|
|
||||||
diff@4.0.4: {}
|
diff@4.0.4: {}
|
||||||
|
|
||||||
diff@8.0.4: {}
|
|
||||||
|
|
||||||
eastasianwidth@0.2.0: {}
|
eastasianwidth@0.2.0: {}
|
||||||
|
|
||||||
electron-to-chromium@1.5.349: {}
|
electron-to-chromium@1.5.349: {}
|
||||||
@@ -3246,8 +2951,6 @@ snapshots:
|
|||||||
graceful-fs: 4.2.11
|
graceful-fs: 4.2.11
|
||||||
tapable: 2.3.3
|
tapable: 2.3.3
|
||||||
|
|
||||||
entities@7.0.1: {}
|
|
||||||
|
|
||||||
es-errors@1.3.0: {}
|
es-errors@1.3.0: {}
|
||||||
|
|
||||||
esbuild@0.27.7:
|
esbuild@0.27.7:
|
||||||
@@ -3374,8 +3077,6 @@ snapshots:
|
|||||||
|
|
||||||
fast-levenshtein@2.0.6: {}
|
fast-levenshtein@2.0.6: {}
|
||||||
|
|
||||||
fast-uri@3.1.0: {}
|
|
||||||
|
|
||||||
fdir@6.5.0(picomatch@4.0.4):
|
fdir@6.5.0(picomatch@4.0.4):
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
picomatch: 4.0.4
|
picomatch: 4.0.4
|
||||||
@@ -3402,12 +3103,6 @@ snapshots:
|
|||||||
cross-spawn: 7.0.6
|
cross-spawn: 7.0.6
|
||||||
signal-exit: 4.1.0
|
signal-exit: 4.1.0
|
||||||
|
|
||||||
fs-extra@11.3.4:
|
|
||||||
dependencies:
|
|
||||||
graceful-fs: 4.2.11
|
|
||||||
jsonfile: 6.2.1
|
|
||||||
universalify: 2.0.1
|
|
||||||
|
|
||||||
fsevents@2.3.3:
|
fsevents@2.3.3:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
@@ -3428,24 +3123,14 @@ snapshots:
|
|||||||
package-json-from-dist: 1.0.1
|
package-json-from-dist: 1.0.1
|
||||||
path-scurry: 1.11.1
|
path-scurry: 1.11.1
|
||||||
|
|
||||||
glob@13.0.6:
|
|
||||||
dependencies:
|
|
||||||
minimatch: 10.2.5
|
|
||||||
minipass: 7.1.3
|
|
||||||
path-scurry: 2.0.2
|
|
||||||
|
|
||||||
globals@17.6.0: {}
|
globals@17.6.0: {}
|
||||||
|
|
||||||
graceful-fs@4.2.11: {}
|
graceful-fs@4.2.11: {}
|
||||||
|
|
||||||
has-flag@4.0.0: {}
|
|
||||||
|
|
||||||
hasown@2.0.3:
|
hasown@2.0.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
function-bind: 1.1.2
|
function-bind: 1.1.2
|
||||||
|
|
||||||
he@1.2.0: {}
|
|
||||||
|
|
||||||
hermes-estree@0.25.1: {}
|
hermes-estree@0.25.1: {}
|
||||||
|
|
||||||
hermes-parser@0.25.1:
|
hermes-parser@0.25.1:
|
||||||
@@ -3456,8 +3141,6 @@ snapshots:
|
|||||||
|
|
||||||
ignore@7.0.5: {}
|
ignore@7.0.5: {}
|
||||||
|
|
||||||
import-lazy@4.0.0: {}
|
|
||||||
|
|
||||||
imurmurhash@0.1.4: {}
|
imurmurhash@0.1.4: {}
|
||||||
|
|
||||||
is-core-module@2.16.1:
|
is-core-module@2.16.1:
|
||||||
@@ -3482,8 +3165,6 @@ snapshots:
|
|||||||
|
|
||||||
jiti@2.6.1: {}
|
jiti@2.6.1: {}
|
||||||
|
|
||||||
jju@1.4.0: {}
|
|
||||||
|
|
||||||
js-tokens@4.0.0: {}
|
js-tokens@4.0.0: {}
|
||||||
|
|
||||||
jsesc@3.1.0: {}
|
jsesc@3.1.0: {}
|
||||||
@@ -3492,18 +3173,10 @@ snapshots:
|
|||||||
|
|
||||||
json-schema-traverse@0.4.1: {}
|
json-schema-traverse@0.4.1: {}
|
||||||
|
|
||||||
json-schema-traverse@1.0.0: {}
|
|
||||||
|
|
||||||
json-stable-stringify-without-jsonify@1.0.1: {}
|
json-stable-stringify-without-jsonify@1.0.1: {}
|
||||||
|
|
||||||
json5@2.2.3: {}
|
json5@2.2.3: {}
|
||||||
|
|
||||||
jsonfile@6.2.1:
|
|
||||||
dependencies:
|
|
||||||
universalify: 2.0.1
|
|
||||||
optionalDependencies:
|
|
||||||
graceful-fs: 4.2.11
|
|
||||||
|
|
||||||
keyv@4.5.4:
|
keyv@4.5.4:
|
||||||
dependencies:
|
dependencies:
|
||||||
json-buffer: 3.0.1
|
json-buffer: 3.0.1
|
||||||
@@ -3576,8 +3249,6 @@ snapshots:
|
|||||||
|
|
||||||
lru-cache@10.2.0: {}
|
lru-cache@10.2.0: {}
|
||||||
|
|
||||||
lru-cache@11.3.5: {}
|
|
||||||
|
|
||||||
lru-cache@5.1.1:
|
lru-cache@5.1.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
yallist: 3.1.1
|
yallist: 3.1.1
|
||||||
@@ -3588,10 +3259,6 @@ snapshots:
|
|||||||
|
|
||||||
make-error@1.3.6: {}
|
make-error@1.3.6: {}
|
||||||
|
|
||||||
minimatch@10.2.3:
|
|
||||||
dependencies:
|
|
||||||
brace-expansion: 5.0.5
|
|
||||||
|
|
||||||
minimatch@10.2.5:
|
minimatch@10.2.5:
|
||||||
dependencies:
|
dependencies:
|
||||||
brace-expansion: 5.0.5
|
brace-expansion: 5.0.5
|
||||||
@@ -3611,8 +3278,6 @@ snapshots:
|
|||||||
|
|
||||||
ms@2.1.3: {}
|
ms@2.1.3: {}
|
||||||
|
|
||||||
muggle-string@0.4.1: {}
|
|
||||||
|
|
||||||
nanoid@3.3.12: {}
|
nanoid@3.3.12: {}
|
||||||
|
|
||||||
natural-compare@1.4.0: {}
|
natural-compare@1.4.0: {}
|
||||||
@@ -3653,11 +3318,6 @@ snapshots:
|
|||||||
lru-cache: 10.2.0
|
lru-cache: 10.2.0
|
||||||
minipass: 7.1.3
|
minipass: 7.1.3
|
||||||
|
|
||||||
path-scurry@2.0.2:
|
|
||||||
dependencies:
|
|
||||||
lru-cache: 11.3.5
|
|
||||||
minipass: 7.1.3
|
|
||||||
|
|
||||||
pathe@2.0.3: {}
|
pathe@2.0.3: {}
|
||||||
|
|
||||||
picocolors@1.1.1: {}
|
picocolors@1.1.1: {}
|
||||||
@@ -3703,8 +3363,6 @@ snapshots:
|
|||||||
|
|
||||||
react@19.2.5: {}
|
react@19.2.5: {}
|
||||||
|
|
||||||
require-from-string@2.0.2: {}
|
|
||||||
|
|
||||||
reselect@5.1.1: {}
|
reselect@5.1.1: {}
|
||||||
|
|
||||||
resolve@1.22.12:
|
resolve@1.22.12:
|
||||||
@@ -3786,12 +3444,6 @@ snapshots:
|
|||||||
|
|
||||||
source-map-js@1.2.1: {}
|
source-map-js@1.2.1: {}
|
||||||
|
|
||||||
source-map@0.6.1: {}
|
|
||||||
|
|
||||||
sprintf-js@1.0.3: {}
|
|
||||||
|
|
||||||
string-argv@0.3.2: {}
|
|
||||||
|
|
||||||
string-width@4.2.0:
|
string-width@4.2.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
emoji-regex: 8.0.0
|
emoji-regex: 8.0.0
|
||||||
@@ -3812,10 +3464,6 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
ansi-regex: 6.2.2
|
ansi-regex: 6.2.2
|
||||||
|
|
||||||
supports-color@8.1.1:
|
|
||||||
dependencies:
|
|
||||||
has-flag: 4.0.0
|
|
||||||
|
|
||||||
supports-preserve-symlinks-flag@1.0.0: {}
|
supports-preserve-symlinks-flag@1.0.0: {}
|
||||||
|
|
||||||
tailwind-merge@3.5.0: {}
|
tailwind-merge@3.5.0: {}
|
||||||
@@ -3884,8 +3532,6 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
typescript@5.9.3: {}
|
|
||||||
|
|
||||||
typescript@6.0.3: {}
|
typescript@6.0.3: {}
|
||||||
|
|
||||||
ufo@1.6.4: {}
|
ufo@1.6.4: {}
|
||||||
@@ -3894,9 +3540,7 @@ snapshots:
|
|||||||
|
|
||||||
undici-types@7.19.2: {}
|
undici-types@7.19.2: {}
|
||||||
|
|
||||||
universalify@2.0.1: {}
|
unplugin-dts@1.0.0(esbuild@0.27.7)(rollup@4.60.2)(typescript@6.0.3)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)):
|
||||||
|
|
||||||
unplugin-dts@1.0.0(@microsoft/api-extractor@7.58.7(@types/node@25.6.0))(esbuild@0.27.7)(rollup@4.60.2)(typescript@6.0.3)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)):
|
|
||||||
dependencies:
|
dependencies:
|
||||||
'@rollup/pluginutils': 5.3.0(rollup@4.60.2)
|
'@rollup/pluginutils': 5.3.0(rollup@4.60.2)
|
||||||
'@volar/typescript': 2.4.28
|
'@volar/typescript': 2.4.28
|
||||||
@@ -3908,7 +3552,6 @@ snapshots:
|
|||||||
typescript: 6.0.3
|
typescript: 6.0.3
|
||||||
unplugin: 2.3.2
|
unplugin: 2.3.2
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@microsoft/api-extractor': 7.58.7(@types/node@25.6.0)
|
|
||||||
esbuild: 0.27.7
|
esbuild: 0.27.7
|
||||||
rollup: 4.60.2
|
rollup: 4.60.2
|
||||||
vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)
|
vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)
|
||||||
@@ -3937,30 +3580,10 @@ snapshots:
|
|||||||
|
|
||||||
v8-compile-cache-lib@3.0.1: {}
|
v8-compile-cache-lib@3.0.1: {}
|
||||||
|
|
||||||
vite-plugin-dts@4.5.4(@types/node@25.6.0)(rollup@4.60.2)(typescript@6.0.3)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)):
|
vite-plugin-dts@5.0.0(esbuild@0.27.7)(rollup@4.60.2)(typescript@6.0.3)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@microsoft/api-extractor': 7.58.7(@types/node@25.6.0)
|
unplugin-dts: 1.0.0(esbuild@0.27.7)(rollup@4.60.2)(typescript@6.0.3)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0))
|
||||||
'@rollup/pluginutils': 5.3.0(rollup@4.60.2)
|
|
||||||
'@volar/typescript': 2.4.28
|
|
||||||
'@vue/language-core': 2.2.0(typescript@6.0.3)
|
|
||||||
compare-versions: 6.1.1
|
|
||||||
debug: 4.4.3
|
|
||||||
kolorist: 1.8.0
|
|
||||||
local-pkg: 1.1.2
|
|
||||||
magic-string: 0.30.21
|
|
||||||
typescript: 6.0.3
|
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- '@types/node'
|
|
||||||
- rollup
|
|
||||||
- supports-color
|
|
||||||
|
|
||||||
vite-plugin-dts@5.0.0(@microsoft/api-extractor@7.58.7(@types/node@25.6.0))(esbuild@0.27.7)(rollup@4.60.2)(typescript@6.0.3)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)):
|
|
||||||
dependencies:
|
|
||||||
unplugin-dts: 1.0.0(@microsoft/api-extractor@7.58.7(@types/node@25.6.0))(esbuild@0.27.7)(rollup@4.60.2)(typescript@6.0.3)(vite@7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0))
|
|
||||||
optionalDependencies:
|
|
||||||
'@microsoft/api-extractor': 7.58.7(@types/node@25.6.0)
|
|
||||||
rollup: 4.60.2
|
rollup: 4.60.2
|
||||||
vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)
|
vite: 7.3.2(@types/node@25.6.0)(jiti@2.6.1)(lightningcss@1.32.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
|
|||||||
@@ -29,8 +29,10 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^25.6.0",
|
"@types/node": "^25.6.0",
|
||||||
|
"@types/react": "^19.2.14",
|
||||||
|
"@types/react-dom": "^19.2.3",
|
||||||
"@vitejs/plugin-react": "^6.0.1",
|
"@vitejs/plugin-react": "^6.0.1",
|
||||||
"glob": "^13.0.6",
|
"tinyglobby": "^0.2.16",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3",
|
||||||
"vite": "^8.0.10"
|
"vite": "^8.0.10"
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import { globSync } from "glob";
|
// 1. 引入 tinyglobby
|
||||||
|
import { globSync } from "tinyglobby";
|
||||||
|
|
||||||
interface Config {
|
interface Config {
|
||||||
outputDir: string;
|
outputDir: string;
|
||||||
@@ -77,13 +78,12 @@ function generateIndexFile(config: Config) {
|
|||||||
|
|
||||||
// ------ scanDirs forEach start ------------------------
|
// ------ scanDirs forEach start ------------------------
|
||||||
config.scanDirs.forEach((dir) => {
|
config.scanDirs.forEach((dir) => {
|
||||||
|
// 2. 路径模式保持不变,tinyglobby 能够正确处理
|
||||||
const scanPattern = path.resolve(currentPath, dir, "**", "*.*");
|
const scanPattern = path.resolve(currentPath, dir, "**", "*.*");
|
||||||
|
|
||||||
const allFilePath = globSync(scanPattern, {
|
const allFilePath = globSync(scanPattern, {
|
||||||
absolute: true,
|
absolute: true,
|
||||||
windowsPathsNoEscape: true,
|
// 3. 移除了 windowsPathsNoEscape,tinyglobby 默认处理路径更智能
|
||||||
dot: false,
|
|
||||||
follow: true,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const validFiles = allFilePath.filter((filePath) => {
|
const validFiles = allFilePath.filter((filePath) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user