diff --git a/.all-contributorsrc b/.all-contributorsrc deleted file mode 100644 index 4c0cdf3f..00000000 --- a/.all-contributorsrc +++ /dev/null @@ -1,25 +0,0 @@ -{ - "files": [ - "README.md" - ], - "imageSize": 100, - "commit": false, - "commitConvention": "angular", - "contributors": [ - { - "login": "yunkuangao", - "name": "Cloud", - "avatar_url": "https://avatars.githubusercontent.com/u/40163747?v=4", - "profile": "https://heartofyun.com", - "contributions": [ - "tool" - ] - } - ], - "contributorsPerLine": 7, - "skipCi": true, - "repoType": "github", - "repoHost": "https://github.com", - "projectName": "xiaodaigua-ray.github.io", - "projectOwner": "XiaoDaiGua-Ray" -} diff --git a/.depcheckrc b/.depcheckrc deleted file mode 100644 index 8c906e3d..00000000 --- a/.depcheckrc +++ /dev/null @@ -1,2 +0,0 @@ -ignores: [ "eslint", "babel-*", "@use-*/**", "@use-*" ] -skip-missing: true \ No newline at end of file diff --git a/.env.development b/.env.development deleted file mode 100644 index d48e91ea..00000000 --- a/.env.development +++ /dev/null @@ -1,10 +0,0 @@ -#开发环境 -NODE_ENV = 'development' - -VITE_APP_URL = '/api' - -# office 服务代理地址 -VITE_APP_OFFICE_PROXY_URL = '/office/' - -# office 脚本地址(用于动态创建脚本标签) -VITE_APP_OFFICE_SCRIPT_URL = 'https://office.yka.one/web-apps/apps/api/documents/api.js' \ No newline at end of file diff --git a/.env.production b/.env.production deleted file mode 100644 index d4ddf677..00000000 --- a/.env.production +++ /dev/null @@ -1,10 +0,0 @@ -#生产环境 -NODE_ENV = 'production' - -VITE_APP_URL = '/' - -# office 服务代理地址 -VITE_APP_OFFICE_PROXY_URL = 'https://office.yka.one/' - -# office 脚本地址(用于动态创建脚本标签) -VITE_APP_OFFICE_SCRIPT_URL = 'https://office.yka.one/web-apps/apps/api/documents/api.js' \ No newline at end of file diff --git a/.env.test b/.env.test deleted file mode 100644 index 91ceefa8..00000000 --- a/.env.test +++ /dev/null @@ -1,10 +0,0 @@ -#测试环境 -NODE_ENV = 'test' - -VITE_APP_URL = 'https://testray.yka.moe/doc-json/' - -# office 服务代理地址 -VITE_APP_OFFICE_PROXY_URL = 'https://office.yka.one/' - -# office 脚本地址(用于动态创建脚本标签) -VITE_APP_OFFICE_SCRIPT_URL = 'https://office.yka.one/web-apps/apps/api/documents/api.js' \ No newline at end of file diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 50d3d1a3..00000000 --- a/.eslintignore +++ /dev/null @@ -1,15 +0,0 @@ -dist/* -node_modules/* -auto-imports.d.ts -components.d.ts -.gitignore -.vscode -public -yarn.* -vite-env.* -.prettierrc.* -visualizer.* -visualizer.html -.env.* -src/locales/lang -.depcheckrc \ No newline at end of file diff --git a/.eslintrc.cjs b/.eslintrc.cjs deleted file mode 100644 index 2e4aac16..00000000 --- a/.eslintrc.cjs +++ /dev/null @@ -1,198 +0,0 @@ -/* eslint-env node */ -module.exports = { - root: true, - env: { - browser: true, - node: true, - }, - extends: [ - 'eslint-config-prettier', - 'eslint:recommended', - 'plugin:@typescript-eslint/recommended', - 'plugin:vue/vue3-recommended', - 'plugin:vue/vue3-essential', - 'plugin:prettier/recommended', - 'prettier', - ], - parser: 'vue-eslint-parser', - parserOptions: { - ecmaVersion: 2020, - sourceType: 'module', - parser: '@typescript-eslint/parser', - ecmaFeatures: { - jsx: true, - tsx: true, - }, - }, - plugins: ['vue', '@typescript-eslint', 'prettier'], - globals: { - defineProps: 'readonly', - defineEmits: 'readonly', - defineExpose: 'readonly', - withDefaults: 'readonly', - }, - rules: { - '@typescript-eslint/no-explicit-any': [ - 'error', - { - ignoreRestArgs: true, - }, - ], - 'prettier/prettier': 'error', - 'no-unused-vars': 'off', - '@typescript-eslint/no-unused-vars': 'off', - '@typescript-eslint/ban-types': 'off', - '@typescript-eslint/explicit-module-boundary-types': 'off', - '@typescript-eslint/no-var-requires': 'off', - '@typescript-eslint/no-non-null-assertion': 'off', - '@typescript-eslint/no-non-null-asserted-optional-chain': 'off', - '@typescript-eslint/consistent-type-imports': [ - 'error', - { disallowTypeAnnotations: false }, - ], // 强制导入类型显示标注 `import type xxx from 'xxx'` - '@typescript-eslint/no-empty-interface': [ - 'error', - { - allowSingleExtends: true, - }, - ], - 'accessor-pairs': 2, // 强制同时存在 `get` 与 `set` - 'constructor-super': 0, // 强制子类构造函数中使用 `super` 调用父类的构造函数 - 'default-case': 2, // `switch` 中强制含有 `default` - eqeqeq: [2, 'allow-null'], // 强制使用严格判断 `===` - 'no-alert': 0, // 禁止使用 `alert`、`confirm` - 'no-array-constructor': 2, // 禁止使用数组构造器 - 'no-bitwise': 0, // 禁止使用按位运算符 - 'no-caller': 1, // 禁止使用 `arguments.caller`、`arguments.callee` - 'no-catch-shadow': 2, // 禁止 `catch` 子句参数与外部作用域变量同名 - 'no-class-assign': 2, // 禁止给类赋值 - 'no-cond-assign': 2, // 禁止在条件表达式中使用赋值语句 - 'no-const-assign': 2, // 禁止修改 `const` 声明的变量 - 'no-constant-condition': 2, // 禁止在条件中使用常量表达式 `if(true)`、`if(1)` - 'no-dupe-keys': 2, // 在创建对象字面量时不允许 `key` 重复 - 'no-dupe-args': 2, // 函数参数不能重复 - 'no-duplicate-case': 2, // `switch` 中的 `case` 标签不能重复 - 'no-eval': 1, // 禁止使用 `eval` - 'no-ex-assign': 2, // 禁止给 `catch` 语句中的异常参数赋值 - 'no-extend-native': 2, // 禁止扩展 `native` 对象 - 'no-extra-bind': 2, // 禁止不必要的函数绑定 - 'no-extra-boolean-cast': [ - 'error', - { - enforceForLogicalOperands: true, - }, - ], // 禁止不必要的 `bool` 转换 - 'no-extra-parens': 0, // 禁止非必要的括号 - semi: ['error', 'never', { beforeStatementContinuationChars: 'always' }], - 'no-fallthrough': 1, // 禁止 `switch` 穿透 - 'no-func-assign': 2, // 禁止重复的函数声明 - 'no-implicit-coercion': [ - 'error', - { - allow: ['!!', '~'], - }, - ], // 禁止隐式转换 - 'no-implied-eval': 2, // 禁止使用隐式 `eval` - 'no-invalid-regexp': 2, // 禁止无效的正则表达式 - 'no-invalid-this': 2, // 禁止无效的 `this` - 'no-irregular-whitespace': 2, // 禁止含有不合法空格 - 'no-iterator': 2, // 禁止使用 `__iterator__ ` 属性 - 'no-label-var': 2, // `label` 名不能与 `var` 声明的变量名相同 - 'no-labels': 2, // 禁止标签声明 - 'no-lone-blocks': 2, // 禁止不必要的嵌套块 - 'no-multi-spaces': 1, // 禁止使用多余的空格 - 'no-multiple-empty-lines': [1, { max: 2 }], // 空行最多不能超过 `2` 行 - 'no-new-func': 1, // 禁止使用 `new Function` - 'no-new-object': 2, // 禁止使用 `new Object` - 'no-new-require': 2, // 禁止使用 `new require` - 'no-sparse-arrays': 2, // 禁止稀疏数组 - 'no-trailing-spaces': 1, // 一行结束后面不要有空格 - 'no-unreachable': 2, // 禁止有无法执行的代码 - 'no-unused-expressions': [ - 'error', - { - allowShortCircuit: true, - allowTernary: true, - allowTaggedTemplates: true, - enforceForJSX: true, - }, - ], // 禁止无用的表达式 - 'no-useless-call': 2, // 禁止不必要的 `call` 和 `apply` - 'no-var': 'error', // 禁用 `var` - 'no-with': 2, // 禁用 `with` - 'no-undef': 0, - 'use-isnan': 2, // 强制使用 isNaN 判断 NaN - 'no-multi-assign': 2, // 禁止连续声明变量 - 'prefer-arrow-callback': 2, // 强制使用箭头函数作为回调 - curly: ['error', 'all'], - 'vue/multi-word-component-names': [ - 'error', - { - ignores: [], - }, - ], - 'vue/no-use-v-if-with-v-for': [ - 'error', - { - allowUsingIterationVar: false, - }, - ], - 'vue/require-v-for-key': ['error'], - 'vue/require-valid-default-prop': ['error'], - 'no-use-before-define': [ - 'error', - { - functions: true, - classes: true, - variables: false, - allowNamedExports: false, - }, - ], - 'vue/component-definition-name-casing': ['error', 'PascalCase'], - 'vue/html-closing-bracket-newline': [ - 'error', - { - singleline: 'never', - multiline: 'always', - }, - ], - 'vue/v-on-event-hyphenation': ['error', 'never'], - 'vue/component-tags-order': [ - 'error', - { - order: ['template', 'script', 'style'], - }, - ], - 'vue/no-v-html': ['error'], - 'vue/no-v-text': ['error'], - 'vue/component-api-style': [ - 'error', - ['script-setup', 'composition', 'composition-vue2'], - ], - 'vue/component-name-in-template-casing': [ - 'error', - 'PascalCase', - { - registeredComponentsOnly: true, - globals: ['RouterView'], - }, - ], - 'vue/no-unused-refs': ['error'], - 'vue/prop-name-casing': ['error', 'camelCase'], - 'vue/component-options-name-casing': ['error', 'camelCase'], - 'vue/attribute-hyphenation': [ - 'error', - 'never', - { - ignore: [], - }, - ], - 'vue/no-restricted-static-attribute': [ - 'error', - { - key: 'key', - message: 'Disallow using key as a custom attribute', - }, - ], - }, -} diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index dd84ea78..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Desktop (please complete the following information):** - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index bbcbbe7d..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 3dc6026c..00000000 --- a/.gitignore +++ /dev/null @@ -1,31 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* -yarn.lock* - -node_modules -dist-ssr -dist -dist/ -*.local -visualizer.* -components.d.ts -auto-imports.d.ts - -# Editor directories and files -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? -yarn-*.* -yarn.* -pnpm.* -pnpm-lock.yaml diff --git a/.husky/commit-msg b/.husky/commit-msg deleted file mode 100755 index 9cdbd7af..00000000 --- a/.husky/commit-msg +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env sh -. "$(dirname "$0")/_/husky.sh" - -yarn lint-staged --allow-empty "$1" \ No newline at end of file diff --git a/.husky/pre-commit b/.husky/pre-commit deleted file mode 100755 index 9cdbd7af..00000000 --- a/.husky/pre-commit +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env sh -. "$(dirname "$0")/_/husky.sh" - -yarn lint-staged --allow-empty "$1" \ No newline at end of file diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 2a1a040a..00000000 --- a/.npmignore +++ /dev/null @@ -1,5 +0,0 @@ -node_modules/ -dist/ -yarn.lock -yarn-error.log -visualizer.html \ No newline at end of file diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index c6df65bc..00000000 --- a/.prettierignore +++ /dev/null @@ -1,12 +0,0 @@ -dist/* -node_modules/* -auto-imports.d.ts -components.d.ts -.gitignore -public -yarn.* -vite-env.* -.prettierrc.* -visualizer.* -visualizer.html -.env.* \ No newline at end of file diff --git a/.prettierrc.cjs b/.prettierrc.cjs deleted file mode 100644 index 23cc440e..00000000 --- a/.prettierrc.cjs +++ /dev/null @@ -1,20 +0,0 @@ -module.exports = { - printWidth: 80, // 一行最多 `80` 字符 - tabWidth: 2, // 使用 `2` 个空格缩进 - useTabs: false, // 不使用缩进符, 而使用空格 - semi: false, // 行尾不需要有分号 - singleQuote: true, // 使用单引号 - quoteProps: 'as-needed', // 对象的 `key` 仅在必要时用引号 - jsxSingleQuote: false, // `jsx` 不使用单引号, 而使用双引号 - trailingComma: 'all', // 尾随逗号 - bracketSpacing: true, // 大括号内的首尾需要空格 - jsxBracketSameLine: false, // `jsx` 标签的反尖括号需要换行 - arrowParens: 'always', // 箭头函数, 只有一个参数的时候, 也需要括号 - rangeStart: 0, // 每个文件格式化的范围是文件的全部内容 - rangeEnd: Infinity, - requirePragma: false, // 不需要写文件开头的 `@prettier` - insertPragma: false, // 不需要自动在文件开头插入 `@prettier` - proseWrap: 'preserve', // 使用默认的折行标准 - htmlWhitespaceSensitivity: 'css', // 根据显示样式决定 `html` 要不要折行 - endOfLine: 'lf', // 换行符使用 `lf` -} diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index 62a1b221..00000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "recommendations": ["vue.volar", "lokalise.i18n-ally"] -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 0fa44d74..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "i18n-ally.localesPaths": ["src/locales/lang"], - "i18n-ally.keystyle": "nested", - "i18n-ally.sortKeys": true, - "i18n-ally.namespace": true, - "i18n-ally.pathMatcher": "{locale}/{namespaces}.{ext}", - "i18n-ally.enabledParsers": ["json"], - "i18n-ally.sourceLanguage": "zh-CN", - "i18n-ally.displayLanguage": "zh-CN", - "i18n-ally.enabledFrameworks": ["vue", "react"] -} diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index d19d8807..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,308 +0,0 @@ -# CHANGE LOG - -## 4.0.2 - -### Feats - -- 新增平级路由配置(router meta)配置项,sameLevel 允许你将子路由标记为平级模式,跳转时不会出发菜单、标签页更新,仅会更新面包屑 -- 修改路由菜单显示、隐藏逻辑,现在仅会针对权限的验证匹配选择是否加入菜单列表中 -- 更新 setupAppMenu 方法触发时机(Layout => menu store),现在将在 pinia menu store 初始化时触发 App Menu 更新 -- 更新了 utils 包中的一些方法,进行了一些重写和重命名 -- GlobalSearch 组件支持上下按键切换、回车键选择 -- 整合 router 模块的一些包,让它看起来更合理一点 -- 剔除 styles 包中一些不合理的样式模块 -- 补充了一些注释与说明文档 - -### Fixes - -- 修复不能正确渲染浏览器标题问题 -- 修复初始化模板菜单函数与菜单更新函数重复执行一些方法的问题 -- 修复指令示例变量绑定错误导致示例错误问题 -- 修复路由白名单失效 bug - -## 4.0.1 - -### Feats - -- 更改自定义路由暴露形式(由变量暴露改为方法获取) -- 模板所有方法进行检查,重命名部分方法(使其更加贴切其逻辑) -- 部分逻辑进行重写,使代码更容易阅读与维护 -- 模板类型进一步完善 - -### Fixes - -- 修复了内存高占用问题(路由模块) -- 修复类型导入错误问题 - -## 4.0.0 - -### Feats - -- 重构 types 包设计,现在的类型包更加清晰 -- 重构 utils 包设计,该包下的所有 hook 提供了更加友好的类型提示 -- RayIframe 组件新增 lazy 属性 -- 新增 v-disabled 指令 -- demo 页面展示优化 - -### Fixes - -- 修复一些已知的 bug - -### 补充 - -> 这次花了一点时间,将模板进行重新梳理,进行了一些很大的破坏性更新改动。核心重点是 types 包与 utils 包的重大更新。不过只是做了初步的一些大方向的更新,后续的细节更新还在继续。。。 - -## 3.3.7 - -### Feats - -- 新增全局指令(目前仅有:v-copy、v-debounce、v-throttle) - -### Fixes - -- 修复错误的插件命名,导致项目构建失败(viteComponents) - -## 3.3.6 - -### Feats - -- 重写 axios interceptor 方法。现在逻辑更加清晰,并且支持请求错误、响应错误处理。补充了两个工具函数 -- MenuTag 支持动态更新所在位置 -- 修复了鉴权方法的 bug -- 更新了 router permission 方法(路由守卫) -- 补充了一些模块文档 -- 搜索支持以菜单模块的 icon 进行渲染,如果为空则以 icon table 默认填充 -- 重写锁屏功能,现在将锁屏逻辑与解锁逻辑拆分为两个组件 - -### Fixes - -- 修复选中所搜结果后,菜单不能默认展开 bug - -### 补充 - -> 文档拖欠太多了,我补不回来了,就。。。算了吧,我在每个关键模块补充了对应的 md 说明文档,凑合一下吧。真希望有一个好心人帮补充文档。 - -## 3.3.5 - -### Feats - -- Router Meta 属性支持自定义图标,不再局限于 RayIcon,支持自定义图标 -- 更改部分组件默认值,默认值统一为 `null` -- 调整 validRole 方法逻辑,将该方法以前逻辑拆分为 validRole 与 validMenuItemShow 两个方法 -- 新增使用手册 - -### 补充 - -> 由于文档已经拖更很久,所以补充一个使用手册。最近太忙了,一直忙着更新完善模板本身,文档的事情暂时没有时间去维护更新,所以与模板断层太久。。。后续有时间肯定会补上!!! - -## 3.3.4 - -### Feats - -- 新增 RayIframe 组件 -- 同步更新 `naive-ui` 版本至最新版本(2.34.3 => 2.34.4) -- 支持更多 appConfig 配置 - -### TODO - -- MenuTag: 切换页面时, 同步更新该标签的所在位置 - -## 3.3.3 - -### Feats - -- 新增五个计算方法(解决精度问题) -- 解决一些小问题 - -## 3.3.1 - -### Feats - -- 新增 useAppTheme sass 方法 - -```ts -useAppTheme key 类型: 'dark' | 'light' -``` - -```scss -// 暗色主题 -.demo--dark { - @include useAppTheme('dark') { - color: #ffffff; - } -} -// 明亮主题 -.demo--light { - @include useAppTheme('light') { - color: #000000; - } -} -``` - -- 一些细节优化 -- axios 拦截器与 axios instance 进行独立(现在不再 instance.ts 文件中编写拦截器相关逻辑),拦截器逻辑放在 inject 包中 -- 一些 bug 修复 - -## 3.3.0 - -### 特征 - -- 取消 RootRoute 属性暴露全局 -- 新增 Route Meta keepAlive 配置开启页面缓存(可以在 AppConfig APP_KEEP_ALIVE 中进行缓存的配置管理) -- 回退使用自动导入路由模块方式,具体使用方法查看 [路由配置](https://github.com/XiaoDaiGua-Ray/ray-template/blob/main/src/router/README.md) -- 新增 Route Meta order 配置,配置菜单顺序 -- 新增 useVueRouter 方法,让你在 setup 环境之外使用 router hook -- 补充引入了一些 eslint 规则 -- 支持更多 appConfig 配置 - -### 补充 - -- 后续该模板还会持续维护,会尽可能多的支持更多业务场景 -- 最近破坏性更新很多,发布比较频繁,后续应该不会有这么大的破坏性更新。核心重点会放在模板整体的健壮性、可维护性上 -- 未来希望模板拆分为一个高拓展性的工程,积木式管理项目,让项目模块之间尽可能的解耦。让模板有更好的拓展性,让你在使用时,可以根据自身业务需求进行拓展(当然,我希望你能以项目的基本维护原则延续) - -## 3.2.3 - -### 特征 - -- 新增锁屏功能(值得注意的是,锁屏解锁后会刷新当前 RouterView 区域,因为在处于锁屏状态时,会自动销毁所有的操作页面。可以理解为是一个 v-if 操作行为) -- 新增 dayjs hook,支持国际化与切换 -- 支持更多 appConfig 配置 -- 调整 setupAppRoute 触发时机(现在会在 layout 渲染阶段触发) -- 补充了新的组件分包 AppComponents,存放该系统的一些组件(会与系统进行一些深度绑定,例如 AppAvatar 组件依赖系统数据) - -### 补充 - -- 锁屏功能的设计并不理想,后期会进行破坏性更新。锁屏触发条件与管理方式目前并不理想,管理有点混乱 -- 后期会考虑补充 keepAlive 功能。目前没有实现是因为该功能实现的话,需要将所有路由提升为顶层路由(这是 KeepAlive 组件限制),目前并未实现该功能。后期会在权衡后增加该功能,实现时会在 RayTransitionComponent 进行拓展补充 - -## 3.2.2 - -### 特征 - -- 移除 amfe-flexible 插件,改用为 postcss-px-to-viewport 作为适配插件 -- 支持更多 appConfig 配置 - -## 3.2.1 - -### 特征 - -- 调整系统文件分包,现在结构更加合理、更加清晰 -- 新增 src/appConfig 配置入口,配置系统(还在持续补充中...) -- vite 版本更新到 4.3.8 - -## 3.1.8 - -### Fixes - -- 修复路由切换不能复位容器位置问题(让可视区域置顶) - -### Feats - -- 新增 useI18n hook 方法 -- 手动补充 AppRouteRecordRaw、AppRouteMeta 类型 -- 重新拆分 Layout 入口文件 -- 重新指定组件暴露方法、属性 -- 修改国际化管理方式,现在支持自动合并管理与结合 i18n-ally 使用。并且支持 unplugin-vue-i18n 构建,提高性能 - -## 3.1.7 - -### Fixes - -- 修复默认获取容器可视区域高度问题 -- 修复登陆页虚线高度问题 - -### Feats - -- 修改 Menu 菜单过滤逻辑,现在如果权限不匹配或者设置了 hidden 属性,则会被过滤掉 -- 移除 $activedColor 全局 sass 变量,使用 --ray-theme-primary-color 替代 -- 新增路由菜单检索功能 -- 移除 App.tsx 中同步主题方法,改为使用 cfg 配置并且使用 ejs 注入 -- 移除 MenuTag 默认主题色,现在会以当前主题色为主色 - -## 3.1.6 - -### Fixes - -- 修复移动端登陆页显示问题 -- 改进了一些方法逻辑的问题 -- 修改移动端自适应配置方案(现在使用 postcss-px-to-viewport),默认不启用 -- 修复 RayTable 实例方法暴露错误 -- 修复 sideBarLogo.icon 为空时警告问题,现在未配置该属性则不会渲染图标 -- 修复 RayTable 演示页面 action 方法失效问题 - -### Feats - -- 新增加载动画 -- 现在可以直接配置首屏加载动画一些信息(cfg.ts) -- 新增对于 ejs 支持 -- 补充一些细节注释 -- 新增 RayChart 组件 loading、loadingOptions 属性配置 -- 新增反转色模式 -- 修改 Menu 菜单过滤逻辑,现在如果权限不匹配或者设置了 hidden 属性,则会被过滤掉 - -## 3.1.5 - -### Fixes - -- 配置 `tsconfig.json` 中 `ignoreDeprecations` 属性,消除 `ts5.0` 破坏性配置更新警告 - -### Feats - -- 基于 `onlyoffice` 新增 `Office` 功能(待完成...) -- 重写 `AxiosInstance` 类型 -- `src/types` 分包更加清晰 -- 将主色调同步至 `body`,默认同步 `cfg.primaryColor` 值 -- 登陆页一些修改(现在支持简单的响应式) -- 将一些设置型功能抽离为组件 -- 调整同步主题色执行时机 - -## 3.1.4 - -### Fixes - -- 修复主题色切换后,点击、鼠标滑入主题未被修改问题 -- 修复 menu store 菜单切换可能会重复执行问题 - -### Feats - -- 补充 MenuTag 标签页功能,现在支持丰富的关闭操作与右键菜单激活操作菜单功能 -- 新增配置全局重定向地址配置(详情见:[cfg](https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io/blob/main/cfg.ts)) -- 补充了一些不值一提的小东西 - -## 3.1.3 - -### Fixes - -- 修复菜单栏、标签页栏 border 显示问题 - -### Feats - -- RayTable 组件新增全屏、尺寸调整功能 -- 新增 css 预处理全局注入辅助函数。详情看 [mixinCSS](https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io/blob/main/cfg.ts) -- RayTable 组件部分提示文案修改 -- body 新增当前主题色 class 标识(dark: ray-template--dark,light: ray-template--light),便捷主题切换配置 - -## 3.1.2 - -### Fixes - -- 修复 DatePicker 组件国际化部分失效问题 - -### Feats - -- 修改 demo 页面展示 -- 修改 RayCollapseGrid、RayTable 组件为默认不展示 border - -## 3.1.1 - -### Fixes - -- 修复国际化语言包模块合并处理不能正常合并问题 -- 修复国际化切换时,面包屑、标签页不能正常切换 - -### Feats - -- 新增面包屑 -- 支持国际化语言包分包管理(但是,依旧是合并到一个文件中,所以需要注意 key 的管理) -- 新增国内预览地址 diff --git a/COMMONPROBLEM.md b/COMMONPROBLEM.md deleted file mode 100644 index fa14ec84..00000000 --- a/COMMONPROBLEM.md +++ /dev/null @@ -1,21 +0,0 @@ -## 常见问题 - -### 路由 - -#### 缓存失效 - -> 如果出现缓存配置不生效的情况可以按照如下方法进行排查 - -- 查看 APP_KEEP_ALIVE setupKeepAlive 属性是否配置为 true -- 查看每个组件的 `name` 是否唯一,[`KeepAlive`](https://cn.vuejs.org/guide/built-ins/keep-alive.html) 组件重度依赖组件 `name` 作为唯一标识。详情可以查看官方文档 -- 查看该页面的路由配置是否正确,比如:`path` 是否按照模板约定方式进行配置 - -#### 自动导入失败 - -> 模板采用自动导入路由模块方式。如果发现路由导入有误、或者导入报错,请查看文件命名是否有误。 - -### 国际化 - -#### 国际化切换错误、警告 - -> 模板二次封装 [`useI18n`](https://github.com/XiaoDaiGua-Ray/ray-template/blob/main/src/locales/useI18n.ts) 方法,首选该方法作为国际化语言切换方法。 diff --git a/MANUAL.md b/MANUAL.md deleted file mode 100644 index 2a1da888..00000000 --- a/MANUAL.md +++ /dev/null @@ -1,161 +0,0 @@ -## Ray Template 使用手册 - -## 前言 - -> `Ray Template` 默认使用 `yarn` 作为包管理器,并且默认启用严格模式的 `eslint`。在导入模块的时候除 `.ts` `.tsx` `.d.ts` 文件等不需要手动补全后缀名,其余的模块导入应该手动补全所有后缀名。 - -### 使用 - -#### 依赖安装 - -```sh -# yarn -yarn - -# npm -npm i -``` - -#### 启动项目 - -```sh -# yarn -yarn dev - -# npm -npm run dev -``` - -#### 构建项目 - -```sh -# yarn -yarn build - -# npm -npm run build -``` - -### 国际化 - -#### Tip - -- 每个新的语言包文件的文件名视为 path 开头(menu.json => menu.xxx) - -#### 新增语言包、新增语言模块 - -> 项目国际化管理模块,统一放置于 `src/locales` 下。 - -##### 文件包 - -- lang -- helper.ts -- index.ts -- useI18n.ts - -> 项目中使用 t locale 方法时,使用模板提供方法(useI18n.ts) - -```tsx -// 引入包 -import { useI18n } from '@/locales/useI18n' - -const { t, locale } = useI18n() - -/** - * - * t: 用于绑定国际化 path - * locale: 用于切换系统语言。参数 key 必须与 lang 包中的语言包一致 - */ - -const demo = () => {t('demo.demo')} - -locale('zh-CN') -locale('en-US') -``` - -##### 新增语言包 - -> 我们举例新增台湾地区语言包。 - -- `src/locales/lang` 文件下创建对应新语言包文件夹与语言文件 - - zh-TW 文件夹 - - zh-TW.ts 文件 -- 创建与原有语言格式一样的文件夹(可以直接 cv 过去) -- 配置语言下拉项(LOCAL_OPTIONS) -- 配置 dayjs 国际化映射(DAYJS_LOCAL_MAP) - -> 具体注意事项看注释。 - -##### 最后 - -> 按照上述步骤操作后,就已经给模板添加了一个新的语言包了。可以在页面的右上角国际化下拉框中看到新增的下拉选项,点击切换后,即可切换到对应的语言了。 - -### 路由 - -#### Tip - -- 在该模板中,路由 path 属性视 `/` 开头的路由为根路由 -- 路由会在初始化的时候将所有路由进行提升(全部提升为顶级路由),所以注意第一条 Tip -- 路由模块会影响菜单的输出显示(菜单模块与路由模块进行拆分开来的) -- 具体路由支持配置属性看 router/README.md 文件 - -#### 文件包 - -- constant 文件放置一些公共东西 -- helper 文件放置 router 的一些 hook 方法 -- modules 页面路由入口(modules 文件中每一个 xxx.ts 文件都会被视为是一个路由模块) -- utils router 拓展方法 -- ... - -##### 新增路由页面 - -- modules 中添加一个新的模块(log.ts) -- 配置路由的相关信息 -- views 中创建 log 相关的页面信息 - -```ts -// 辅助函数,配合 i18n-ally 插件使用 -import { t } from '@/locales/useI18n' - -// 路由配置类型提示 -import type { AppRouteRecordRaw } from '@/router/type' - -const log: AppRouteRecordRaw = { - path: '/log', - name: 'Log', - component: () => import('@/views/log/index.vue'), - meta: { - i18nKey: t('menu.Log'), - icon: 'log', - order: 3, - }, - children: [ - { - path: 'my-log', - name: 'MyLog', - component: () => import('@/views/my-log/index.vue'), - meta: { - i18nKey: t('menu.MyLog'), - order: 0, - }, - }, - { - path: 'group-log', - name: 'MyLog', - component: () => import('@/views/group-log/index.vue'), - meta: { - i18nKey: t('menu.GroupLog'), - order: 0, - }, - }, - ], -} - -export default log -``` - -##### 最后 - -> 打开浏览器可以看到页面菜单上已经有一个日志菜单。 - -#### 未完待续。。。后续慢慢更新该手册 diff --git a/README.md b/README.md deleted file mode 100644 index 7392c68d..00000000 --- a/README.md +++ /dev/null @@ -1,232 +0,0 @@ -# `Ray Template` - - - -[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-) - - - -## 感谢 - -> 感谢 对于本人的支持。 - -## 预览地址 - -- [点击预览](https://xiaodaigua-ray.github.io/ray-template/#/) -- [点击预览(加速地址)](https://ray-template.yunkuangao.com/#/) - -## 文档地址 - -- [文档](https://xiaodaigua-ray.github.io/ray-template-doc/) -- [文档(加速地址)](https://ray-template.yunkuangao.com/ray-template-doc/) - -## 更新日志 - -- [日志](https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io/blob/main/CHANGELOG.md) - -## 常见问题 - -- [常见问题](https://github.com/XiaoDaiGua-Ray/ray-template/blob/main/COMMONPROBLEM.md) - -## 功能 - -- 主题切换 -- 任意深度页面缓存 -- 系统配置化 -- 锁屏 -- 自动化路由 -- 带有拓展功能的表格 -- 封装 `axios` 自动取消重复请求,暴露拦截器注册器 -- 全局菜单搜索 -- 动态菜单(多级菜单) -- 主题色切换 -- 错误页 -- 面包屑 -- 标签页 -- 国际化(允许按模块管理语言包) -- 权限路由 -- 动态切换主题、贴花的 `EChart` 图 -- 最佳构建体验 -- 体积分析 -- 还有一些不值一提的小东西... - -## 未来 - -> 根据个人时间空余情况,会不定时对该模板进行更新和迭代。希望将该工具的功能不断补全(虽然现在已经是足够日常开发和使用),将该模板打造为一个更加健全的中后台模板。如果你有好的想法和建议,可以直接联系我或者直接提 `issues` 即可。 - -## 前言 - -> 该项目模板采用 `vue3.x` `vite4.x` `pinia` `tsx` 进行开发。 -> 使用 `naive ui` 作为组件库。 -> 预设了最佳构建体验的配置与常用搬砖工具。意在提供一个简洁、快速上手的模板。 -> 该模板不支持移动端设备。 - -## 提示 - -> 项目默认启用严格模式 `eslint`,但是由于 `vite-plugin-eslint` 插件优先级最高,所以如果出现自动导入类型错误提示,请优先解决其他问题。 -> 建议开启 `vscode` 保存自动修复功能。 - -## 版本说明 - -> 做了一些大的改动升级,让模板更加好用了一点,默认主题色也做了变更更好看了一点。啰嗦两句,好像也没啥其他的了... - -## 拉取依赖 - -```sh -# yarn - -yarn -``` - -```sh -# npm - -npm install -``` - -## 启动项目 - -```sh -# yarn - -yarn dev -``` - -```sh -# npm - -npm run dev -``` - -## 项目打包 - -```sh -# yarn - -yarn build -``` - -```sh -# npm - -npm run build -``` - -## 预览项目 - -```sh -# yarn - -yarn preview -``` - -```sh -# npm - -npm run preview -``` - -## 体积分析 - -```sh -# yarn - -yarn report -``` - -```sh -# npm - -npm run report -``` - -## 项目依赖 - -- [pinia](https://pinia.vuejs.org/) `全局状态管理器` -- [@vueuse](https://vueuse.org/) `vue3 hooks` -- [vue-router](https://router.vuejs.org/zh/) `router` -- [axios](http://axios-js.com/zh-cn/docs/index.html) `ajax request` -- [vue-i18n](https://kazupon.github.io/vue-i18n/zh/introduction.html) `国际化` -- [scrollreveal.js](https://scrollrevealjs.org/) `滚动加载动画`(暂时移除) -- [crypto-js](https://github.com/brix/crypto-js) `加密` -- [vite-svg-loader](https://github.com/jpkleemans/vite-svg-loader) `svg组件化` -- [vite-plugin-svg-icons](https://github.com/vbenjs/vite-plugin-svg-icons/blob/main/README.zh_CN.md) `svg雪碧图` -- [echarts5](https://echarts.apache.org/examples/zh/index.html#chart-type-line) `可视化` -- [lodash-es](https://www.lodashjs.com/) `拓展方法` -- 还有一些后续补充的,懒得写了。。。自己看项目依赖页面 - -## 基础组件 - -- `RayIcon` `svg icon` -- `RayChart` 基于 `echarts5.x` 封装可视化组件 -- `RayTransitionComponent` 带过渡动画路由组件,效果与 `RouterView` 相同 -- `RayTable` 基于 `Naive UI DataTable` 组件封装,实现了一些小功能 -- `RayCollapseGrid` 基于 `Naive UI NGrid` 组件封装的可折叠操作栏 - -## 项目结构 - -``` -- locales: 国际化多语言入口(本项目采用 json 格式) - -- assets: 项目静态资源入口 - -- component: 全局共用组件 - -- icons: 项目svg图标资源,需要配合 RayIcon 组件使用 - -- language: 国际化 - -- layout: 全局页面结构入口 - -- router: 路由表 - -- store: 全局状态管理入口 - -- styles: 全局公共样式入口 - -- types: 全局 type - -- utils: 工具包 - -- views: 页面入口 - -- vite-plugin: 插件注册 -``` - -## 浏览器支持 - -> 仅支持现代浏览器,不支持 `IE` - -## 最后,希望大家搬砖愉快 - -## 贡献者 - - - - - - - - - - -
Cloud
Cloud

🔧
- - - - - - -## Contributors ✨ - -Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): - - - - - - - - - -This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! diff --git a/auto-imports.d.ts b/auto-imports.d.ts deleted file mode 100644 index 58e06e8c..00000000 --- a/auto-imports.d.ts +++ /dev/null @@ -1,276 +0,0 @@ -// Generated by 'unplugin-auto-import' -export {} -declare global { - const EffectScope: typeof import('vue')['EffectScope'] - const acceptHMRUpdate: typeof import('pinia')['acceptHMRUpdate'] - const asyncComputed: typeof import('@vueuse/core')['asyncComputed'] - const autoResetRef: typeof import('@vueuse/core')['autoResetRef'] - const computed: typeof import('vue')['computed'] - const computedAsync: typeof import('@vueuse/core')['computedAsync'] - const computedEager: typeof import('@vueuse/core')['computedEager'] - const computedInject: typeof import('@vueuse/core')['computedInject'] - const computedWithControl: typeof import('@vueuse/core')['computedWithControl'] - const controlledComputed: typeof import('@vueuse/core')['controlledComputed'] - const controlledRef: typeof import('@vueuse/core')['controlledRef'] - const createApp: typeof import('vue')['createApp'] - const createEventHook: typeof import('@vueuse/core')['createEventHook'] - const createGlobalState: typeof import('@vueuse/core')['createGlobalState'] - const createInjectionState: typeof import('@vueuse/core')['createInjectionState'] - const createPinia: typeof import('pinia')['createPinia'] - const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn'] - const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable'] - const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn'] - const customRef: typeof import('vue')['customRef'] - const debouncedRef: typeof import('@vueuse/core')['debouncedRef'] - const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch'] - const defineAsyncComponent: typeof import('vue')['defineAsyncComponent'] - const defineComponent: typeof import('vue')['defineComponent'] - const defineStore: typeof import('pinia')['defineStore'] - const eagerComputed: typeof import('@vueuse/core')['eagerComputed'] - const effectScope: typeof import('vue')['effectScope'] - const extendRef: typeof import('@vueuse/core')['extendRef'] - const getActivePinia: typeof import('pinia')['getActivePinia'] - const getCurrentInstance: typeof import('vue')['getCurrentInstance'] - const getCurrentScope: typeof import('vue')['getCurrentScope'] - const h: typeof import('vue')['h'] - const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch'] - const inject: typeof import('vue')['inject'] - const isDefined: typeof import('@vueuse/core')['isDefined'] - const isProxy: typeof import('vue')['isProxy'] - const isReactive: typeof import('vue')['isReactive'] - const isReadonly: typeof import('vue')['isReadonly'] - const isRef: typeof import('vue')['isRef'] - const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable'] - const mapActions: typeof import('pinia')['mapActions'] - const mapGetters: typeof import('pinia')['mapGetters'] - const mapState: typeof import('pinia')['mapState'] - const mapStores: typeof import('pinia')['mapStores'] - const mapWritableState: typeof import('pinia')['mapWritableState'] - const markRaw: typeof import('vue')['markRaw'] - const nextTick: typeof import('vue')['nextTick'] - const onActivated: typeof import('vue')['onActivated'] - const onBeforeMount: typeof import('vue')['onBeforeMount'] - const onBeforeUnmount: typeof import('vue')['onBeforeUnmount'] - const onBeforeUpdate: typeof import('vue')['onBeforeUpdate'] - const onClickOutside: typeof import('@vueuse/core')['onClickOutside'] - const onDeactivated: typeof import('vue')['onDeactivated'] - const onErrorCaptured: typeof import('vue')['onErrorCaptured'] - const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke'] - const onLongPress: typeof import('@vueuse/core')['onLongPress'] - const onMounted: typeof import('vue')['onMounted'] - const onRenderTracked: typeof import('vue')['onRenderTracked'] - const onRenderTriggered: typeof import('vue')['onRenderTriggered'] - const onScopeDispose: typeof import('vue')['onScopeDispose'] - const onServerPrefetch: typeof import('vue')['onServerPrefetch'] - const onStartTyping: typeof import('@vueuse/core')['onStartTyping'] - const onUnmounted: typeof import('vue')['onUnmounted'] - const onUpdated: typeof import('vue')['onUpdated'] - const pausableWatch: typeof import('@vueuse/core')['pausableWatch'] - const provide: typeof import('vue')['provide'] - const reactify: typeof import('@vueuse/core')['reactify'] - const reactifyObject: typeof import('@vueuse/core')['reactifyObject'] - const reactive: typeof import('vue')['reactive'] - const reactiveComputed: typeof import('@vueuse/core')['reactiveComputed'] - const reactiveOmit: typeof import('@vueuse/core')['reactiveOmit'] - const reactivePick: typeof import('@vueuse/core')['reactivePick'] - const readonly: typeof import('vue')['readonly'] - const ref: typeof import('vue')['ref'] - const refAutoReset: typeof import('@vueuse/core')['refAutoReset'] - const refDebounced: typeof import('@vueuse/core')['refDebounced'] - const refDefault: typeof import('@vueuse/core')['refDefault'] - const refThrottled: typeof import('@vueuse/core')['refThrottled'] - const refWithControl: typeof import('@vueuse/core')['refWithControl'] - const resolveComponent: typeof import('vue')['resolveComponent'] - const resolveRef: typeof import('@vueuse/core')['resolveRef'] - const resolveUnref: typeof import('@vueuse/core')['resolveUnref'] - const setActivePinia: typeof import('pinia')['setActivePinia'] - const setMapStoreSuffix: typeof import('pinia')['setMapStoreSuffix'] - const shallowReactive: typeof import('vue')['shallowReactive'] - const shallowReadonly: typeof import('vue')['shallowReadonly'] - const shallowRef: typeof import('vue')['shallowRef'] - const storeToRefs: typeof import('pinia')['storeToRefs'] - const syncRef: typeof import('@vueuse/core')['syncRef'] - const syncRefs: typeof import('@vueuse/core')['syncRefs'] - const templateRef: typeof import('@vueuse/core')['templateRef'] - const throttledRef: typeof import('@vueuse/core')['throttledRef'] - const throttledWatch: typeof import('@vueuse/core')['throttledWatch'] - const toRaw: typeof import('vue')['toRaw'] - const toReactive: typeof import('@vueuse/core')['toReactive'] - const toRef: typeof import('vue')['toRef'] - const toRefs: typeof import('vue')['toRefs'] - const triggerRef: typeof import('vue')['triggerRef'] - const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount'] - const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount'] - const tryOnMounted: typeof import('@vueuse/core')['tryOnMounted'] - const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose'] - const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted'] - const unref: typeof import('vue')['unref'] - const unrefElement: typeof import('@vueuse/core')['unrefElement'] - const until: typeof import('@vueuse/core')['until'] - const useActiveElement: typeof import('@vueuse/core')['useActiveElement'] - const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery'] - const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter'] - const useArrayFind: typeof import('@vueuse/core')['useArrayFind'] - const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex'] - const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin'] - const useArrayMap: typeof import('@vueuse/core')['useArrayMap'] - const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce'] - const useArraySome: typeof import('@vueuse/core')['useArraySome'] - const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue'] - const useAsyncState: typeof import('@vueuse/core')['useAsyncState'] - const useAttrs: typeof import('vue')['useAttrs'] - const useBase64: typeof import('@vueuse/core')['useBase64'] - const useBattery: typeof import('@vueuse/core')['useBattery'] - const useBluetooth: typeof import('@vueuse/core')['useBluetooth'] - const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints'] - const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel'] - const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation'] - const useCached: typeof import('@vueuse/core')['useCached'] - const useClipboard: typeof import('@vueuse/core')['useClipboard'] - const useColorMode: typeof import('@vueuse/core')['useColorMode'] - const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog'] - const useCounter: typeof import('@vueuse/core')['useCounter'] - const useCssModule: typeof import('vue')['useCssModule'] - const useCssVar: typeof import('@vueuse/core')['useCssVar'] - const useCssVars: typeof import('vue')['useCssVars'] - const useCurrentElement: typeof import('@vueuse/core')['useCurrentElement'] - const useCycleList: typeof import('@vueuse/core')['useCycleList'] - const useDark: typeof import('@vueuse/core')['useDark'] - const useDateFormat: typeof import('@vueuse/core')['useDateFormat'] - const useDebounce: typeof import('@vueuse/core')['useDebounce'] - const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn'] - const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory'] - const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion'] - const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation'] - const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio'] - const useDevicesList: typeof import('@vueuse/core')['useDevicesList'] - const useDialog: typeof import('naive-ui')['useDialog'] - const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia'] - const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility'] - const useDraggable: typeof import('@vueuse/core')['useDraggable'] - const useDropZone: typeof import('@vueuse/core')['useDropZone'] - const useElementBounding: typeof import('@vueuse/core')['useElementBounding'] - const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint'] - const useElementHover: typeof import('@vueuse/core')['useElementHover'] - const useElementSize: typeof import('@vueuse/core')['useElementSize'] - const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility'] - const useEventBus: typeof import('@vueuse/core')['useEventBus'] - const useEventListener: typeof import('@vueuse/core')['useEventListener'] - const useEventSource: typeof import('@vueuse/core')['useEventSource'] - const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper'] - const useFavicon: typeof import('@vueuse/core')['useFavicon'] - const useFetch: typeof import('@vueuse/core')['useFetch'] - const useFileDialog: typeof import('@vueuse/core')['useFileDialog'] - const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess'] - const useFocus: typeof import('@vueuse/core')['useFocus'] - const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin'] - const useFps: typeof import('@vueuse/core')['useFps'] - const useFullscreen: typeof import('@vueuse/core')['useFullscreen'] - const useGamepad: typeof import('@vueuse/core')['useGamepad'] - const useGeolocation: typeof import('@vueuse/core')['useGeolocation'] - const useI18n: typeof import('vue-i18n')['useI18n'] - const useIdle: typeof import('@vueuse/core')['useIdle'] - const useImage: typeof import('@vueuse/core')['useImage'] - const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll'] - const useIntersectionObserver: typeof import('@vueuse/core')['useIntersectionObserver'] - const useInterval: typeof import('@vueuse/core')['useInterval'] - const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn'] - const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier'] - const useLastChanged: typeof import('@vueuse/core')['useLastChanged'] - const useLoadingBar: typeof import('naive-ui')['useLoadingBar'] - const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage'] - const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys'] - const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory'] - const useMediaControls: typeof import('@vueuse/core')['useMediaControls'] - const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery'] - const useMemoize: typeof import('@vueuse/core')['useMemoize'] - const useMemory: typeof import('@vueuse/core')['useMemory'] - const useMessage: typeof import('naive-ui')['useMessage'] - const useMounted: typeof import('@vueuse/core')['useMounted'] - const useMouse: typeof import('@vueuse/core')['useMouse'] - const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement'] - const useMousePressed: typeof import('@vueuse/core')['useMousePressed'] - const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver'] - const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage'] - const useNetwork: typeof import('@vueuse/core')['useNetwork'] - const useNotification: typeof import('naive-ui')['useNotification'] - const useNow: typeof import('@vueuse/core')['useNow'] - const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl'] - const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination'] - const useOnline: typeof import('@vueuse/core')['useOnline'] - const usePageLeave: typeof import('@vueuse/core')['usePageLeave'] - const useParallax: typeof import('@vueuse/core')['useParallax'] - const usePermission: typeof import('@vueuse/core')['usePermission'] - const usePointer: typeof import('@vueuse/core')['usePointer'] - const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe'] - const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme'] - const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark'] - const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages'] - const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion'] - const useRafFn: typeof import('@vueuse/core')['useRafFn'] - const useRefHistory: typeof import('@vueuse/core')['useRefHistory'] - const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver'] - const useRoute: typeof import('vue-router')['useRoute'] - const useRouter: typeof import('vue-router')['useRouter'] - const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation'] - const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea'] - const useScriptTag: typeof import('@vueuse/core')['useScriptTag'] - const useScroll: typeof import('@vueuse/core')['useScroll'] - const useScrollLock: typeof import('@vueuse/core')['useScrollLock'] - const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage'] - const useShare: typeof import('@vueuse/core')['useShare'] - const useSlots: typeof import('vue')['useSlots'] - const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition'] - const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis'] - const useStepper: typeof import('@vueuse/core')['useStepper'] - const useStorage: typeof import('@vueuse/core')['useStorage'] - const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync'] - const useStyleTag: typeof import('@vueuse/core')['useStyleTag'] - const useSupported: typeof import('@vueuse/core')['useSupported'] - const useSwipe: typeof import('@vueuse/core')['useSwipe'] - const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList'] - const useTextDirection: typeof import('@vueuse/core')['useTextDirection'] - const useTextSelection: typeof import('@vueuse/core')['useTextSelection'] - const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize'] - const useThrottle: typeof import('@vueuse/core')['useThrottle'] - const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn'] - const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory'] - const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo'] - const useTimeout: typeof import('@vueuse/core')['useTimeout'] - const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn'] - const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll'] - const useTimestamp: typeof import('@vueuse/core')['useTimestamp'] - const useTitle: typeof import('@vueuse/core')['useTitle'] - const useToNumber: typeof import('@vueuse/core')['useToNumber'] - const useToString: typeof import('@vueuse/core')['useToString'] - const useToggle: typeof import('@vueuse/core')['useToggle'] - const useTransition: typeof import('@vueuse/core')['useTransition'] - const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams'] - const useUserMedia: typeof import('@vueuse/core')['useUserMedia'] - const useVModel: typeof import('@vueuse/core')['useVModel'] - const useVModels: typeof import('@vueuse/core')['useVModels'] - const useVibrate: typeof import('@vueuse/core')['useVibrate'] - const useVirtualList: typeof import('@vueuse/core')['useVirtualList'] - const useWakeLock: typeof import('@vueuse/core')['useWakeLock'] - const useWebNotification: typeof import('@vueuse/core')['useWebNotification'] - const useWebSocket: typeof import('@vueuse/core')['useWebSocket'] - const useWebWorker: typeof import('@vueuse/core')['useWebWorker'] - const useWebWorkerFn: typeof import('@vueuse/core')['useWebWorkerFn'] - const useWindowFocus: typeof import('@vueuse/core')['useWindowFocus'] - const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll'] - const useWindowSize: typeof import('@vueuse/core')['useWindowSize'] - const watch: typeof import('vue')['watch'] - const watchArray: typeof import('@vueuse/core')['watchArray'] - const watchAtMost: typeof import('@vueuse/core')['watchAtMost'] - const watchDebounced: typeof import('@vueuse/core')['watchDebounced'] - const watchEffect: typeof import('vue')['watchEffect'] - const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable'] - const watchOnce: typeof import('@vueuse/core')['watchOnce'] - const watchPausable: typeof import('@vueuse/core')['watchPausable'] - const watchPostEffect: typeof import('vue')['watchPostEffect'] - const watchSyncEffect: typeof import('vue')['watchSyncEffect'] - const watchThrottled: typeof import('@vueuse/core')['watchThrottled'] - const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable'] - const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter'] - const whenever: typeof import('@vueuse/core')['whenever'] -} diff --git a/cfg.ts b/cfg.ts deleted file mode 100644 index 01d41f59..00000000 --- a/cfg.ts +++ /dev/null @@ -1,150 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-04-06 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 系统配置文件入口 - * - * 配置范围: - * - 构建: 开发构建、打包构建、预览构建、体积分析构建等 - * - 系统: 根路由、标题、浏览器标题、别名等 - * - 请求: 代理配置 - * - * 如果需要新增相关内容, 需要在 src/types/modules/cfg.ts 中进行类型配置 - * ``` - * interface Config // config 内容类型配置 - * - * interface AppConfig // __APP_CFG__ 内容配置 - * ``` - * - * __APP_CFG__ 说明 - * ``` - * 该属性是用于全局注入的配置方法 - * - * const { appPrimaryColor } = __APP_CFG__ - * - * 以上例子展示, 从 __APP_CFG__ 中解构取出 appPrimaryColor 根路由配置信息 - * __APP_CFG__ 会被挂载于全局变量 `window` 下(vite define 默认是挂载于 window 下) - * ``` - */ - -import path from 'node:path' - -import { - HTMLTitlePlugin, - buildOptions, - mixinCSSPlugin, -} from './vite-plugin/index' -import { APP_THEME } from './src/appConfig/designConfig' -import { - PRE_LOADING_CONFIG, - ROOT_ROUTE, - SIDE_BAR_LOGO, -} from './src/appConfig/appConfig' - -import type { AppConfigExport } from '@/types/modules/cfg' - -const config: AppConfigExport = { - /** 公共基础路径配置, 如果为空则会默认以 '/' 填充 */ - base: '/ray-template/', - /** 配置首屏加载信息 */ - preloadingConfig: PRE_LOADING_CONFIG, - /** 默认主题色(不可省略, 必填), 也用于 ejs 注入 */ - appPrimaryColor: APP_THEME.APP_PRIMARY_COLOR, - sideBarLogo: SIDE_BAR_LOGO, - /** - * - * 预处理全局需要注入的 css 文件 - * - * 预设: - * - ./src/styles/mixins.scss - * - ./src/styles/setting.scss - * - ./src/styles/theme.scss - * - * 如果需要删除或者修改, 需要同步修改目录下的 css 文件 - */ - mixinCSS: mixinCSSPlugin([ - './src/styles/mixins.scss', - './src/styles/setting.scss', - ]), - /** - * - * 版权信息 - * - * 也可以当作页底设置, 看实际业务需求 - */ - copyright: 'Copyright © 2022-present Ray', - /** - * - * 浏览器标题 - */ - title: HTMLTitlePlugin('Ray Template'), - /** - * - * 配置 HMR 特定选项(端口、主机、路径和协议) - */ - server: { - host: '0.0.0.0', - port: 9527, - open: false, - https: false, - strictPort: false, - fs: { - strict: false, - allow: [], - }, - proxy: { - '/api': { - target: 'url', - changeOrigin: true, - rewrite: (path) => path.replace(/^\/api/, ''), - }, - '/office': { - target: 'https://office.yka.one/', - changeOrigin: true, - rewrite: (path) => path.replace(/^\/office/, ''), - }, - }, - }, - /** - * - * 打包相关配置 - */ - buildOptions: buildOptions, - /** - * - * 预设别名 - * - `@`: `src` 根目录 - * - `@use-utils`: `src/utils` 根目录 - * - `@use-api`: `src/axios/api` 根目录 - * - `@use-images`: `src/assets/images` 根目录 - */ - alias: [ - { - find: '@', - replacement: path.resolve(__dirname, './src'), - }, - { - find: '@use-utils', - replacement: path.resolve(__dirname, './src/utils'), - }, - { - find: '@use-api', - replacement: path.resolve(__dirname, './src/axios/api'), - }, - { - find: '@use-images', - replacement: path.resolve(__dirname, './src/assets/images'), - }, - ], -} - -export default config diff --git a/commitlint.config.cjs b/commitlint.config.cjs deleted file mode 100644 index 552880ad..00000000 --- a/commitlint.config.cjs +++ /dev/null @@ -1,21 +0,0 @@ -module.exports = { - extends: ['@commitlint/config-conventional'], - rules: { - 'type-enum': [ - 2, - 'always', - [ - 'bug', - 'feat', - 'fix', - 'docs', - 'style', - 'refactor', - 'test', - 'chore', - 'revert', - 'merge', - ], - ], - }, -} diff --git a/components.d.ts b/components.d.ts deleted file mode 100644 index 903cc398..00000000 --- a/components.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -// generated by unplugin-vue-components -// We suggest you to commit this file into source control -// Read more: https://github.com/vuejs/core/pull/3399 -import '@vue/runtime-core' - -export {} - -declare module '@vue/runtime-core' { - export interface GlobalComponents { - RouterLink: typeof import('vue-router')['RouterLink'] - RouterView: typeof import('vue-router')['RouterView'] - TransitionComponent: typeof import('./src/components/RayTransitionComponent/TransitionComponent.vue')['default'] - } -} diff --git a/index.html b/index.html deleted file mode 100644 index b5fa5c4e..00000000 --- a/index.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - Vite + Vue + TS - - - -
-
-
-
- <%= preloadingConfig.title %> -
-
-
-
- - - diff --git a/package.json b/package.json deleted file mode 100644 index 8702e37b..00000000 --- a/package.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "name": "ray-template", - "private": false, - "version": "4.0.2", - "type": "module", - "scripts": { - "dev": "vite", - "build": "vue-tsc --noEmit && vite build --mode production", - "preview": "vite preview", - "test": "vue-tsc --noEmit && vite build --mode test", - "dev-build": "vue-tsc --noEmit && vite build --mode development", - "report": "vue-tsc --noEmit && vite build --mode report", - "prepare": "husky install" - }, - "lint-staged": { - "src/**/*.{vue,jsx,ts,tsx,json}": [ - "prettier --write", - "eslint", - "git add" - ] - }, - "dependencies": { - "@vueuse/core": "^9.1.0", - "axios": "^1.2.0", - "clipboard": "^2.0.11", - "crypto-js": "^4.1.1", - "currency.js": "^2.0.4", - "dayjs": "^1.11.7", - "echarts": "^5.4.0", - "lodash-es": "^4.17.21", - "naive-ui": "^2.34.4", - "pinia": "^2.0.17", - "pinia-plugin-persistedstate": "^2.4.0", - "print-js": "^1.6.0", - "qrcode.vue": "^3.3.4", - "sass": "^1.54.3", - "screenfull": "^6.0.2", - "vue": "^3.2.47", - "vue-i18n": "^9.2.2", - "vue-router": "^4.1.3", - "vuedraggable": "^4.1.0", - "xlsx": "^0.18.5" - }, - "devDependencies": { - "@babel/core": "^7.20.2", - "@babel/eslint-parser": "^7.19.1", - "@commitlint/cli": "^17.4.2", - "@commitlint/config-conventional": "^17.4.2", - "@intlify/unplugin-vue-i18n": "^0.5.0", - "@types/crypto-js": "^4.1.1", - "@types/lodash-es": "^4.17.7", - "@types/scrollreveal": "^0.0.8", - "@typescript-eslint/eslint-plugin": "^5.61.0", - "@typescript-eslint/parser": "^5.61.0", - "@vitejs/plugin-vue": "^4.1.0", - "@vitejs/plugin-vue-jsx": "^3.0.1", - "@vue/eslint-config-prettier": "^7.1.0", - "@vue/eslint-config-typescript": "^11.0.3", - "autoprefixer": "^10.4.8", - "depcheck": "^1.4.3", - "eslint": "^8.44.0", - "eslint-config-prettier": "^8.8.0", - "eslint-config-standard-with-typescript": "^23.0.0", - "eslint-plugin-import": "^2.25.2", - "eslint-plugin-n": "^15.0.0", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-promise": "^6.0.0", - "eslint-plugin-react": "^7.31.10", - "eslint-plugin-vue": "^9.15.1", - "husky": "^8.0.3", - "lint-staged": "^13.1.0", - "postcss": "^8.1.0", - "postcss-px-to-viewport": "^1.1.1", - "prettier": "^2.7.1", - "rollup-plugin-visualizer": "^5.8.3", - "svg-sprite-loader": "^6.0.11", - "typescript": "^5.0.2", - "unplugin-auto-import": "^0.11.0", - "unplugin-vue-components": "^0.22.0", - "vite": "^4.3.9", - "vite-plugin-compression": "^0.5.1", - "vite-plugin-ejs": "^1.6.4", - "vite-plugin-eslint": "^1.8.1", - "vite-plugin-imp": "^2.3.1", - "vite-plugin-inspect": "^0.7.26", - "vite-plugin-svg-icons": "^2.0.1", - "vite-svg-loader": "^3.4.0", - "vue-tsc": "^1.4.2" - }, - "description": "", - "main": "index.ts", - "repository": { - "type": "git", - "url": "git+https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io.git" - }, - "keywords": [ - "ray-template", - "vue3.2模板", - "vue3-tsx-vite-pinia", - "ray template", - "Ray Template", - "admin template", - "中后台模板" - ], - "files": [ - "**/*" - ], - "author": "Ray", - "license": "ISC", - "bugs": { - "url": "https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io/issues" - }, - "homepage": "https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io#readme" -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml deleted file mode 100644 index 9e529379..00000000 --- a/pnpm-lock.yaml +++ /dev/null @@ -1,6820 +0,0 @@ -lockfileVersion: '6.0' - -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - -dependencies: - '@vueuse/core': - specifier: ^9.1.0 - version: 9.1.0(vue@3.2.47) - axios: - specifier: ^1.2.0 - version: 1.2.0 - clipboard: - specifier: ^2.0.11 - version: 2.0.11 - crypto-js: - specifier: ^4.1.1 - version: 4.1.1 - currency.js: - specifier: ^2.0.4 - version: 2.0.4 - dayjs: - specifier: ^1.11.7 - version: 1.11.7 - echarts: - specifier: ^5.4.0 - version: 5.4.0 - lodash-es: - specifier: ^4.17.21 - version: 4.17.21 - naive-ui: - specifier: ^2.34.4 - version: 2.34.4(vue@3.2.47) - pinia: - specifier: ^2.0.17 - version: 2.0.17(typescript@5.0.2)(vue@3.2.47) - pinia-plugin-persistedstate: - specifier: ^2.4.0 - version: 2.4.0(pinia@2.0.17) - print-js: - specifier: ^1.6.0 - version: 1.6.0 - qrcode.vue: - specifier: ^3.3.4 - version: 3.3.4(vue@3.2.47) - sass: - specifier: ^1.54.3 - version: 1.63.6 - screenfull: - specifier: ^6.0.2 - version: 6.0.2 - vue: - specifier: ^3.2.47 - version: 3.2.47 - vue-i18n: - specifier: ^9.2.2 - version: 9.2.2(vue@3.2.47) - vue-router: - specifier: ^4.1.3 - version: 4.1.3(vue@3.2.47) - vuedraggable: - specifier: ^4.1.0 - version: 4.1.0(vue@3.2.47) - xlsx: - specifier: ^0.18.5 - version: 0.18.5 - -devDependencies: - '@babel/core': - specifier: ^7.20.2 - version: 7.20.2 - '@babel/eslint-parser': - specifier: ^7.19.1 - version: 7.19.1(@babel/core@7.20.2)(eslint@8.44.0) - '@commitlint/cli': - specifier: ^17.4.2 - version: 17.4.2 - '@commitlint/config-conventional': - specifier: ^17.4.2 - version: 17.4.2 - '@intlify/unplugin-vue-i18n': - specifier: ^0.5.0 - version: 0.5.0(vite@4.3.9)(vue-i18n@9.2.2) - '@types/crypto-js': - specifier: ^4.1.1 - version: 4.1.1 - '@types/lodash-es': - specifier: ^4.17.7 - version: 4.17.7 - '@types/scrollreveal': - specifier: ^0.0.8 - version: 0.0.8 - '@typescript-eslint/eslint-plugin': - specifier: ^5.61.0 - version: 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.0.2) - '@typescript-eslint/parser': - specifier: ^5.61.0 - version: 5.61.0(eslint@8.44.0)(typescript@5.0.2) - '@vitejs/plugin-vue': - specifier: ^4.1.0 - version: 4.1.0(vite@4.3.9)(vue@3.2.47) - '@vitejs/plugin-vue-jsx': - specifier: ^3.0.1 - version: 3.0.1(vite@4.3.9)(vue@3.2.47) - '@vue/eslint-config-prettier': - specifier: ^7.1.0 - version: 7.1.0(eslint@8.44.0)(prettier@2.8.8) - '@vue/eslint-config-typescript': - specifier: ^11.0.3 - version: 11.0.3(eslint-plugin-vue@9.15.1)(eslint@8.44.0)(typescript@5.0.2) - autoprefixer: - specifier: ^10.4.8 - version: 10.4.8(postcss@8.4.24) - depcheck: - specifier: ^1.4.3 - version: 1.4.3 - eslint: - specifier: ^8.44.0 - version: 8.44.0 - eslint-config-prettier: - specifier: ^8.8.0 - version: 8.8.0(eslint@8.44.0) - eslint-config-standard-with-typescript: - specifier: ^23.0.0 - version: 23.0.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint-plugin-import@2.25.2)(eslint-plugin-n@15.0.0)(eslint-plugin-promise@6.0.0)(eslint@8.44.0)(typescript@5.0.2) - eslint-plugin-import: - specifier: ^2.25.2 - version: 2.25.2(@typescript-eslint/parser@5.61.0)(eslint@8.44.0) - eslint-plugin-n: - specifier: ^15.0.0 - version: 15.0.0(eslint@8.44.0) - eslint-plugin-prettier: - specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.44.0)(prettier@2.8.8) - eslint-plugin-promise: - specifier: ^6.0.0 - version: 6.0.0(eslint@8.44.0) - eslint-plugin-react: - specifier: ^7.31.10 - version: 7.31.10(eslint@8.44.0) - eslint-plugin-vue: - specifier: ^9.15.1 - version: 9.15.1(eslint@8.44.0) - husky: - specifier: ^8.0.3 - version: 8.0.3 - lint-staged: - specifier: ^13.1.0 - version: 13.1.0 - postcss: - specifier: ^8.1.0 - version: 8.4.24 - postcss-px-to-viewport: - specifier: ^1.1.1 - version: 1.1.1 - prettier: - specifier: ^2.7.1 - version: 2.8.8 - rollup-plugin-visualizer: - specifier: ^5.8.3 - version: 5.8.3 - svg-sprite-loader: - specifier: ^6.0.11 - version: 6.0.11 - typescript: - specifier: ^5.0.2 - version: 5.0.2 - unplugin-auto-import: - specifier: ^0.11.0 - version: 0.11.0(@vueuse/core@9.1.0)(vite@4.3.9) - unplugin-vue-components: - specifier: ^0.22.0 - version: 0.22.0(vite@4.3.9)(vue@3.2.47) - vite: - specifier: ^4.3.9 - version: 4.3.9(@types/node@20.3.3)(sass@1.63.6) - vite-plugin-compression: - specifier: ^0.5.1 - version: 0.5.1(vite@4.3.9) - vite-plugin-ejs: - specifier: ^1.6.4 - version: 1.6.4 - vite-plugin-eslint: - specifier: ^1.8.1 - version: 1.8.1(eslint@8.44.0)(vite@4.3.9) - vite-plugin-imp: - specifier: ^2.3.1 - version: 2.3.1(vite@4.3.9) - vite-plugin-inspect: - specifier: ^0.7.26 - version: 0.7.26(vite@4.3.9) - vite-plugin-svg-icons: - specifier: ^2.0.1 - version: 2.0.1(vite@4.3.9) - vite-svg-loader: - specifier: ^3.4.0 - version: 3.4.0 - vue-tsc: - specifier: ^1.4.2 - version: 1.4.2(typescript@5.0.2) - -packages: - - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - dev: true - - /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 - dev: true - - /@antfu/utils@0.5.2: - resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==} - dev: true - - /@antfu/utils@0.7.5: - resolution: {integrity: sha512-dlR6LdS+0SzOAPx/TPRhnoi7hE251OVeT2Snw0RguNbBSbjUHdWr0l3vcUUDg26rEysT89kCbtw1lVorBXLLCg==} - dev: true - - /@babel/code-frame@7.22.5: - resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.22.5 - dev: true - - /@babel/compat-data@7.22.6: - resolution: {integrity: sha512-29tfsWTq2Ftu7MXmimyC0C5FDZv5DYxOZkh3XD3+QW4V/BYuv/LyEsjj3c0hqedEaDt6DBfDvexMKU8YevdqFg==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/core@7.20.2: - resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.20.2) - '@babel/helper-module-transforms': 7.22.5 - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.6 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.6 - '@babel/types': 7.22.5 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/core@7.22.6: - resolution: {integrity: sha512-HPIyDa6n+HKw5dEuway3vVAhBboYCtREBMp+IWeseZy6TFtzn6MHkCH2KKYUOC/vKKwgSMHQW4htBOrmuRPXfw==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/helper-compilation-targets': 7.22.6(@babel/core@7.22.6) - '@babel/helper-module-transforms': 7.22.5 - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.6 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.6 - '@babel/types': 7.22.5 - '@nicolo-ribaudo/semver-v6': 6.3.3 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/eslint-parser@7.19.1(@babel/core@7.20.2)(eslint@8.44.0): - resolution: {integrity: sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==} - engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} - peerDependencies: - '@babel/core': '>=7.11.0' - eslint: ^7.5.0 || ^8.0.0 - dependencies: - '@babel/core': 7.20.2 - '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 8.44.0 - eslint-visitor-keys: 2.1.0 - semver: 6.3.0 - dev: true - - /@babel/generator@7.22.5: - resolution: {integrity: sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 - jsesc: 2.5.2 - dev: true - - /@babel/helper-annotate-as-pure@7.22.5: - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - dev: true - - /@babel/helper-compilation-targets@7.22.6(@babel/core@7.20.2): - resolution: {integrity: sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.22.6 - '@babel/core': 7.20.2 - '@babel/helper-validator-option': 7.22.5 - '@nicolo-ribaudo/semver-v6': 6.3.3 - browserslist: 4.21.9 - lru-cache: 5.1.1 - dev: true - - /@babel/helper-compilation-targets@7.22.6(@babel/core@7.22.6): - resolution: {integrity: sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.22.6 - '@babel/core': 7.22.6 - '@babel/helper-validator-option': 7.22.5 - '@nicolo-ribaudo/semver-v6': 6.3.3 - browserslist: 4.21.9 - lru-cache: 5.1.1 - dev: true - - /@babel/helper-create-class-features-plugin@7.22.6(@babel/core@7.22.6): - resolution: {integrity: sha512-iwdzgtSiBxF6ni6mzVnZCF3xt5qE6cEA0J7nFt8QOAWZ0zjCFceEgpn3vtb2V7WFR6QzP2jmIFOHMTRo7eNJjQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@nicolo-ribaudo/semver-v6': 6.3.3 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-environment-visitor@7.22.5: - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-function-name@7.22.5: - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 - dev: true - - /@babel/helper-hoist-variables@7.22.5: - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - dev: true - - /@babel/helper-member-expression-to-functions@7.22.5: - resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - dev: true - - /@babel/helper-module-imports@7.22.5: - resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - dev: true - - /@babel/helper-module-transforms@7.22.5: - resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.6 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-optimise-call-expression@7.22.5: - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - dev: true - - /@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helper-replace-supers@7.22.5: - resolution: {integrity: sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.6 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - dev: true - - /@babel/helper-skip-transparent-expression-wrappers@7.22.5: - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - dev: true - - /@babel/helper-split-export-declaration@7.22.6: - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - dev: true - - /@babel/helper-string-parser@7.22.5: - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} - engines: {node: '>=6.9.0'} - - /@babel/helper-validator-identifier@7.22.5: - resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} - engines: {node: '>=6.9.0'} - - /@babel/helper-validator-option@7.22.5: - resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} - engines: {node: '>=6.9.0'} - dev: true - - /@babel/helpers@7.22.6: - resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.6 - '@babel/types': 7.22.5 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/highlight@7.22.5: - resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.22.5 - chalk: 2.4.2 - js-tokens: 4.0.0 - dev: true - - /@babel/parser@7.16.4: - resolution: {integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.22.5 - dev: true - - /@babel/parser@7.22.6: - resolution: {integrity: sha512-EIQu22vNkceq3LbjAq7knDf/UmtI2qbcNI8GRBlijez6TpQLvSodJPYfydQmNA5buwkxxxa/PVI44jjYZ+/cLw==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.22.5 - - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.6): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.6 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.6): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.6 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-transform-typescript@7.22.5(@babel/core@7.22.6): - resolution: {integrity: sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.6 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.6(@babel/core@7.22.6) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.6) - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/runtime@7.22.6: - resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.13.11 - dev: false - - /@babel/template@7.22.5: - resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.5 - '@babel/parser': 7.22.6 - '@babel/types': 7.22.5 - dev: true - - /@babel/traverse@7.22.6: - resolution: {integrity: sha512-53CijMvKlLIDlOTrdWiHileRddlIiwUIyCKqYa7lYnnPldXCG5dUSN38uT0cA6i7rHWNKJLH0VU/Kxdr1GzB3w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.22.6 - '@babel/types': 7.22.5 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/types@7.22.5: - resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 - to-fast-properties: 2.0.0 - - /@commitlint/cli@17.4.2: - resolution: {integrity: sha512-0rPGJ2O1owhpxMIXL9YJ2CgPkdrFLKZElIZHXDN8L8+qWK1DGH7Q7IelBT1pchXTYTuDlqkOTdh//aTvT3bSUA==} - engines: {node: '>=v14'} - hasBin: true - dependencies: - '@commitlint/format': 17.4.4 - '@commitlint/lint': 17.6.6 - '@commitlint/load': 17.5.0 - '@commitlint/read': 17.5.1 - '@commitlint/types': 17.4.4 - execa: 5.1.1 - lodash.isfunction: 3.0.9 - resolve-from: 5.0.0 - resolve-global: 1.0.0 - yargs: 17.7.2 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - dev: true - - /@commitlint/config-conventional@17.4.2: - resolution: {integrity: sha512-JVo1moSj5eDMoql159q8zKCU8lkOhQ+b23Vl3LVVrS6PXDLQIELnJ34ChQmFVbBdSSRNAbbXnRDhosFU+wnuHw==} - engines: {node: '>=v14'} - dependencies: - conventional-changelog-conventionalcommits: 5.0.0 - dev: true - - /@commitlint/config-validator@17.4.4: - resolution: {integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==} - engines: {node: '>=v14'} - dependencies: - '@commitlint/types': 17.4.4 - ajv: 8.12.0 - dev: true - - /@commitlint/ensure@17.4.4: - resolution: {integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==} - engines: {node: '>=v14'} - dependencies: - '@commitlint/types': 17.4.4 - lodash.camelcase: 4.3.0 - lodash.kebabcase: 4.1.1 - lodash.snakecase: 4.1.1 - lodash.startcase: 4.4.0 - lodash.upperfirst: 4.3.1 - dev: true - - /@commitlint/execute-rule@17.4.0: - resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==} - engines: {node: '>=v14'} - dev: true - - /@commitlint/format@17.4.4: - resolution: {integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==} - engines: {node: '>=v14'} - dependencies: - '@commitlint/types': 17.4.4 - chalk: 4.1.2 - dev: true - - /@commitlint/is-ignored@17.6.6: - resolution: {integrity: sha512-4Fw875faAKO+2nILC04yW/2Vy/wlV3BOYCSQ4CEFzriPEprc1Td2LILmqmft6PDEK5Sr14dT9tEzeaZj0V56Gg==} - engines: {node: '>=v14'} - dependencies: - '@commitlint/types': 17.4.4 - semver: 7.5.2 - dev: true - - /@commitlint/lint@17.6.6: - resolution: {integrity: sha512-5bN+dnHcRLkTvwCHYMS7Xpbr+9uNi0Kq5NR3v4+oPNx6pYXt8ACuw9luhM/yMgHYwW0ajIR20wkPAFkZLEMGmg==} - engines: {node: '>=v14'} - dependencies: - '@commitlint/is-ignored': 17.6.6 - '@commitlint/parse': 17.6.5 - '@commitlint/rules': 17.6.5 - '@commitlint/types': 17.4.4 - dev: true - - /@commitlint/load@17.5.0: - resolution: {integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==} - engines: {node: '>=v14'} - dependencies: - '@commitlint/config-validator': 17.4.4 - '@commitlint/execute-rule': 17.4.0 - '@commitlint/resolve-extends': 17.4.4 - '@commitlint/types': 17.4.4 - '@types/node': 20.3.3 - chalk: 4.1.2 - cosmiconfig: 8.2.0 - cosmiconfig-typescript-loader: 4.3.0(@types/node@20.3.3)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@5.0.2) - lodash.isplainobject: 4.0.6 - lodash.merge: 4.6.2 - lodash.uniq: 4.5.0 - resolve-from: 5.0.0 - ts-node: 10.9.1(@types/node@20.3.3)(typescript@5.0.2) - typescript: 5.0.2 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - dev: true - - /@commitlint/message@17.4.2: - resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==} - engines: {node: '>=v14'} - dev: true - - /@commitlint/parse@17.6.5: - resolution: {integrity: sha512-0zle3bcn1Hevw5Jqpz/FzEWNo2KIzUbc1XyGg6WrWEoa6GH3A1pbqNF6MvE6rjuy6OY23c8stWnb4ETRZyN+Yw==} - engines: {node: '>=v14'} - dependencies: - '@commitlint/types': 17.4.4 - conventional-changelog-angular: 5.0.13 - conventional-commits-parser: 3.2.4 - dev: true - - /@commitlint/read@17.5.1: - resolution: {integrity: sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==} - engines: {node: '>=v14'} - dependencies: - '@commitlint/top-level': 17.4.0 - '@commitlint/types': 17.4.4 - fs-extra: 11.1.1 - git-raw-commits: 2.0.11 - minimist: 1.2.8 - dev: true - - /@commitlint/resolve-extends@17.4.4: - resolution: {integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==} - engines: {node: '>=v14'} - dependencies: - '@commitlint/config-validator': 17.4.4 - '@commitlint/types': 17.4.4 - import-fresh: 3.3.0 - lodash.mergewith: 4.6.2 - resolve-from: 5.0.0 - resolve-global: 1.0.0 - dev: true - - /@commitlint/rules@17.6.5: - resolution: {integrity: sha512-uTB3zSmnPyW2qQQH+Dbq2rekjlWRtyrjDo4aLFe63uteandgkI+cc0NhhbBAzcXShzVk0qqp8SlkQMu0mgHg/A==} - engines: {node: '>=v14'} - dependencies: - '@commitlint/ensure': 17.4.4 - '@commitlint/message': 17.4.2 - '@commitlint/to-lines': 17.4.0 - '@commitlint/types': 17.4.4 - execa: 5.1.1 - dev: true - - /@commitlint/to-lines@17.4.0: - resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==} - engines: {node: '>=v14'} - dev: true - - /@commitlint/top-level@17.4.0: - resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==} - engines: {node: '>=v14'} - dependencies: - find-up: 5.0.0 - dev: true - - /@commitlint/types@17.4.4: - resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==} - engines: {node: '>=v14'} - dependencies: - chalk: 4.1.2 - dev: true - - /@cspotcode/source-map-support@0.8.1: - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} - dependencies: - '@jridgewell/trace-mapping': 0.3.9 - dev: true - - /@css-render/plugin-bem@0.15.12(css-render@0.15.12): - resolution: {integrity: sha512-Lq2jSOZn+wYQtsyaFj6QRz2EzAnd3iW5fZeHO1WSXQdVYwvwGX0ZiH3X2JQgtgYLT1yeGtrwrqJdNdMEUD2xTw==} - peerDependencies: - css-render: ~0.15.12 - dependencies: - css-render: 0.15.12 - dev: false - - /@css-render/vue3-ssr@0.15.12(vue@3.2.47): - resolution: {integrity: sha512-AQLGhhaE0F+rwybRCkKUdzBdTEM/5PZBYy+fSYe1T9z9+yxMuV/k7ZRqa4M69X+EI1W8pa4kc9Iq2VjQkZx4rg==} - peerDependencies: - vue: ^3.0.11 - dependencies: - vue: 3.2.47 - dev: false - - /@emotion/hash@0.8.0: - resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} - dev: false - - /@esbuild/android-arm64@0.17.19: - resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm@0.17.19: - resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-x64@0.17.19: - resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-arm64@0.17.19: - resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-x64@0.17.19: - resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-arm64@0.17.19: - resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-x64@0.17.19: - resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm64@0.17.19: - resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm@0.17.19: - resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ia32@0.17.19: - resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-loong64@0.17.19: - resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-mips64el@0.17.19: - resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ppc64@0.17.19: - resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-riscv64@0.17.19: - resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-s390x@0.17.19: - resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-x64@0.17.19: - resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/netbsd-x64@0.17.19: - resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-x64@0.17.19: - resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/sunos-x64@0.17.19: - resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-arm64@0.17.19: - resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-ia32@0.17.19: - resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-x64@0.17.19: - resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@eslint-community/eslint-utils@4.4.0(eslint@8.44.0): - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - dependencies: - eslint: 8.44.0 - eslint-visitor-keys: 3.4.1 - dev: true - - /@eslint-community/regexpp@4.5.1: - resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - dev: true - - /@eslint/eslintrc@2.1.0: - resolution: {integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - ajv: 6.12.6 - debug: 4.3.4 - espree: 9.6.0 - globals: 13.20.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@eslint/js@8.44.0: - resolution: {integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - - /@humanwhocodes/config-array@0.11.10: - resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==} - engines: {node: '>=10.10.0'} - dependencies: - '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - dev: true - - /@humanwhocodes/module-importer@1.0.1: - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - dev: true - - /@humanwhocodes/object-schema@1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - dev: true - - /@intlify/bundle-utils@7.0.0(vue-i18n@9.2.2): - resolution: {integrity: sha512-+/RBsYWbiZcs97RyVb4mrsSrLmIMaI6evj30jI9f1psjXx+syRbf0ab63I5SIz290EOm6TE80fTst/Xjel+D9w==} - engines: {node: '>= 14.16'} - peerDependencies: - petite-vue-i18n: '*' - vue-i18n: '*' - peerDependenciesMeta: - petite-vue-i18n: - optional: true - vue-i18n: - optional: true - dependencies: - '@intlify/message-compiler': 9.3.0-beta.20 - '@intlify/shared': 9.3.0-beta.20 - acorn: 8.9.0 - escodegen: 2.1.0 - estree-walker: 2.0.2 - jsonc-eslint-parser: 1.4.1 - magic-string: 0.30.1 - mlly: 1.4.0 - source-map: 0.6.1 - vue-i18n: 9.2.2(vue@3.2.47) - yaml-eslint-parser: 0.3.2 - dev: true - - /@intlify/core-base@9.2.2: - resolution: {integrity: sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA==} - engines: {node: '>= 14'} - dependencies: - '@intlify/devtools-if': 9.2.2 - '@intlify/message-compiler': 9.2.2 - '@intlify/shared': 9.2.2 - '@intlify/vue-devtools': 9.2.2 - - /@intlify/devtools-if@9.2.2: - resolution: {integrity: sha512-4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg==} - engines: {node: '>= 14'} - dependencies: - '@intlify/shared': 9.2.2 - - /@intlify/message-compiler@9.2.2: - resolution: {integrity: sha512-IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA==} - engines: {node: '>= 14'} - dependencies: - '@intlify/shared': 9.2.2 - source-map: 0.6.1 - - /@intlify/message-compiler@9.3.0-beta.20: - resolution: {integrity: sha512-hwqQXyTnDzAVZ300SU31jO0+3OJbpOdfVU6iBkrmNpS7t2HRnVACo0EwcEXzJa++4EVDreqz5OeqJbt+PeSGGA==} - engines: {node: '>= 16'} - dependencies: - '@intlify/shared': 9.3.0-beta.20 - source-map-js: 1.0.2 - dev: true - - /@intlify/shared@9.2.2: - resolution: {integrity: sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==} - engines: {node: '>= 14'} - - /@intlify/shared@9.3.0-beta.20: - resolution: {integrity: sha512-RucSPqh8O9FFxlYUysQTerSw0b9HIRpyoN1Zjogpm0qLiHK+lBNSa5sh1nCJ4wSsNcjphzgpLQCyR60GZlRV8g==} - engines: {node: '>= 16'} - dev: true - - /@intlify/shared@9.3.0-beta.21: - resolution: {integrity: sha512-VcE3XKBlQXHKRKAGP7YB/7n0TFH4EibJSGJ+t4rZuC8gTL6r/eqYM1fsw3JJFe70wamqx1oEmd2Hu/pnPlsfiQ==} - engines: {node: '>= 16'} - dev: true - - /@intlify/unplugin-vue-i18n@0.5.0(vite@4.3.9)(vue-i18n@9.2.2): - resolution: {integrity: sha512-hjiNVZnjO4WcuV+bpGWfll+4YQmbgV2V5PUMvX/eG7Aw1iuPQk5S7LbfmEDKk8i2KYLcHR3x/1yCYk/dHvWQWQ==} - engines: {node: '>= 14.16'} - peerDependencies: - petite-vue-i18n: '*' - vue-i18n: '*' - peerDependenciesMeta: - petite-vue-i18n: - optional: true - vue-i18n: - optional: true - dependencies: - '@intlify/bundle-utils': 7.0.0(vue-i18n@9.2.2) - '@intlify/shared': 9.3.0-beta.21 - '@rollup/pluginutils': 4.2.1 - '@vue/compiler-sfc': 3.3.4 - debug: 4.3.4 - fast-glob: 3.3.0 - js-yaml: 4.1.0 - json5: 2.2.3 - pathe: 0.2.0 - picocolors: 1.0.0 - source-map: 0.6.1 - unplugin: 0.8.1(vite@4.3.9) - vue-i18n: 9.2.2(vue@3.2.47) - transitivePeerDependencies: - - esbuild - - rollup - - supports-color - - vite - - webpack - dev: true - - /@intlify/vue-devtools@9.2.2: - resolution: {integrity: sha512-+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg==} - engines: {node: '>= 14'} - dependencies: - '@intlify/core-base': 9.2.2 - '@intlify/shared': 9.2.2 - - /@jridgewell/gen-mapping@0.3.3: - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.18 - dev: true - - /@jridgewell/resolve-uri@3.1.0: - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} - engines: {node: '>=6.0.0'} - dev: true - - /@jridgewell/resolve-uri@3.1.1: - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} - dev: true - - /@jridgewell/set-array@1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} - dev: true - - /@jridgewell/sourcemap-codec@1.4.14: - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - dev: true - - /@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - dev: true - - /@jridgewell/trace-mapping@0.3.18: - resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} - dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 - dev: true - - /@jridgewell/trace-mapping@0.3.9: - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - dev: true - - /@juggle/resize-observer@3.4.0: - resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} - dev: false - - /@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1: - resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} - dependencies: - eslint-scope: 5.1.1 - dev: true - - /@nicolo-ribaudo/semver-v6@6.3.3: - resolution: {integrity: sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==} - hasBin: true - dev: true - - /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - dev: true - - /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - dev: true - - /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 - dev: true - - /@polka/url@1.0.0-next.21: - resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} - dev: true - - /@rollup/pluginutils@4.2.1: - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} - engines: {node: '>= 8.0.0'} - dependencies: - estree-walker: 2.0.2 - picomatch: 2.3.1 - dev: true - - /@rollup/pluginutils@5.0.2: - resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0 - peerDependenciesMeta: - rollup: - optional: true - dependencies: - '@types/estree': 1.0.1 - estree-walker: 2.0.2 - picomatch: 2.3.1 - dev: true - - /@trysound/sax@0.2.0: - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - dev: true - - /@tsconfig/node10@1.0.9: - resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} - dev: true - - /@tsconfig/node12@1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - dev: true - - /@tsconfig/node14@1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - dev: true - - /@tsconfig/node16@1.0.4: - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - dev: true - - /@types/crypto-js@4.1.1: - resolution: {integrity: sha512-BG7fQKZ689HIoc5h+6D2Dgq1fABRa0RbBWKBd9SP/MVRVXROflpm5fhwyATX5duFmbStzyzyycPB8qUYKDH3NA==} - dev: true - - /@types/eslint@8.40.2: - resolution: {integrity: sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ==} - dependencies: - '@types/estree': 1.0.1 - '@types/json-schema': 7.0.12 - dev: true - - /@types/estree@1.0.1: - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} - dev: true - - /@types/json-schema@7.0.12: - resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} - dev: true - - /@types/json5@0.0.29: - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - dev: true - - /@types/katex@0.14.0: - resolution: {integrity: sha512-+2FW2CcT0K3P+JMR8YG846bmDwplKUTsWgT2ENwdQ1UdVfRk3GQrh6Mi4sTopy30gI8Uau5CEqHTDZ6YvWIUPA==} - dev: false - - /@types/lodash-es@4.17.7: - resolution: {integrity: sha512-z0ptr6UI10VlU6l5MYhGwS4mC8DZyYer2mCoyysZtSF7p26zOX8UpbrV0YpNYLGS8K4PUFIyEr62IMFFjveSiQ==} - dependencies: - '@types/lodash': 4.14.195 - - /@types/lodash@4.14.195: - resolution: {integrity: sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==} - - /@types/minimatch@3.0.5: - resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - dev: true - - /@types/minimist@1.2.2: - resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} - dev: true - - /@types/node@20.3.3: - resolution: {integrity: sha512-wheIYdr4NYML61AjC8MKj/2jrR/kDQri/CIpVoZwldwhnIrD/j9jIU5bJ8yBKuB2VhpFV7Ab6G2XkBjv9r9Zzw==} - dev: true - - /@types/normalize-package-data@2.4.1: - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} - dev: true - - /@types/parse-json@4.0.0: - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} - dev: true - - /@types/scrollreveal@0.0.8: - resolution: {integrity: sha512-HwD3vSmxjEozI4+uHY7pPxB47gppsv0racBHZreEQFC6K1kBKaIUkCTwUMH6gGFEDmLrgOckfGsTvR/n2yyV6g==} - dev: true - - /@types/semver@7.5.0: - resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} - dev: true - - /@types/svgo@2.6.4: - resolution: {integrity: sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng==} - dependencies: - '@types/node': 20.3.3 - dev: true - - /@types/web-bluetooth@0.0.15: - resolution: {integrity: sha512-w7hEHXnPMEZ+4nGKl/KDRVpxkwYxYExuHOYXyzIzCDzEZ9ZCGMAewulr9IqJu2LR4N37fcnb1XVeuZ09qgOxhA==} - - /@typescript-eslint/eslint-plugin@5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.0.2): - resolution: {integrity: sha512-A5l/eUAug103qtkwccSCxn8ZRwT+7RXWkFECdA4Cvl1dOlDUgTpAOfSEElZn2uSUxhdDpnCdetrf0jvU4qrL+g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@eslint-community/regexpp': 4.5.1 - '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.0.2) - '@typescript-eslint/scope-manager': 5.61.0 - '@typescript-eslint/type-utils': 5.61.0(eslint@8.44.0)(typescript@5.0.2) - '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.0.2) - debug: 4.3.4 - eslint: 8.44.0 - graphemer: 1.4.0 - ignore: 5.2.4 - natural-compare-lite: 1.4.0 - semver: 7.5.3 - tsutils: 3.21.0(typescript@5.0.2) - typescript: 5.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/parser@5.61.0(eslint@8.44.0)(typescript@5.0.2): - resolution: {integrity: sha512-yGr4Sgyh8uO6fSi9hw3jAFXNBHbCtKKFMdX2IkT3ZqpKmtAq3lHS4ixB/COFuAIJpwl9/AqF7j72ZDWYKmIfvg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.61.0 - '@typescript-eslint/types': 5.61.0 - '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.0.2) - debug: 4.3.4 - eslint: 8.44.0 - typescript: 5.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/scope-manager@5.61.0: - resolution: {integrity: sha512-W8VoMjoSg7f7nqAROEmTt6LoBpn81AegP7uKhhW5KzYlehs8VV0ZW0fIDVbcZRcaP3aPSW+JZFua+ysQN+m/Nw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.61.0 - '@typescript-eslint/visitor-keys': 5.61.0 - dev: true - - /@typescript-eslint/type-utils@5.61.0(eslint@8.44.0)(typescript@5.0.2): - resolution: {integrity: sha512-kk8u//r+oVK2Aj3ph/26XdH0pbAkC2RiSjUYhKD+PExemG4XSjpGFeyZ/QM8lBOa7O8aGOU+/yEbMJgQv/DnCg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.0.2) - '@typescript-eslint/utils': 5.61.0(eslint@8.44.0)(typescript@5.0.2) - debug: 4.3.4 - eslint: 8.44.0 - tsutils: 3.21.0(typescript@5.0.2) - typescript: 5.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/types@5.61.0: - resolution: {integrity: sha512-ldyueo58KjngXpzloHUog/h9REmHl59G1b3a5Sng1GfBo14BkS3ZbMEb3693gnP1k//97lh7bKsp6/V/0v1veQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - - /@typescript-eslint/typescript-estree@5.61.0(typescript@5.0.2): - resolution: {integrity: sha512-Fud90PxONnnLZ36oR5ClJBLTLfU4pIWBmnvGwTbEa2cXIqj70AEDEmOmpkFComjBZ/037ueKrOdHuYmSFVD7Rw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.61.0 - '@typescript-eslint/visitor-keys': 5.61.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.3 - tsutils: 3.21.0(typescript@5.0.2) - typescript: 5.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/utils@5.61.0(eslint@8.44.0)(typescript@5.0.2): - resolution: {integrity: sha512-mV6O+6VgQmVE6+xzlA91xifndPW9ElFW8vbSF0xCT/czPXVhwDewKila1jOyRwa9AE19zKnrr7Cg5S3pJVrTWQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0) - '@types/json-schema': 7.0.12 - '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 5.61.0 - '@typescript-eslint/types': 5.61.0 - '@typescript-eslint/typescript-estree': 5.61.0(typescript@5.0.2) - eslint: 8.44.0 - eslint-scope: 5.1.1 - semver: 7.5.3 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /@typescript-eslint/visitor-keys@5.61.0: - resolution: {integrity: sha512-50XQ5VdbWrX06mQXhy93WywSFZZGsv3EOjq+lqp6WC2t+j3mb6A9xYVdrRxafvK88vg9k9u+CT4l6D8PEatjKg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.61.0 - eslint-visitor-keys: 3.4.1 - dev: true - - /@vitejs/plugin-vue-jsx@3.0.1(vite@4.3.9)(vue@3.2.47): - resolution: {integrity: sha512-+Jb7ggL48FSPS1uhPnJbJwWa9Sr90vQ+d0InW+AhBM22n+cfuYqJZDckBc+W3QSHe1WDvewMZfa4wZOtk5pRgw==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^4.0.0 - vue: ^3.0.0 - dependencies: - '@babel/core': 7.22.6 - '@babel/plugin-transform-typescript': 7.22.5(@babel/core@7.22.6) - '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.22.6) - vite: 4.3.9(@types/node@20.3.3)(sass@1.63.6) - vue: 3.2.47 - transitivePeerDependencies: - - supports-color - dev: true - - /@vitejs/plugin-vue@4.1.0(vite@4.3.9)(vue@3.2.47): - resolution: {integrity: sha512-++9JOAFdcXI3lyer9UKUV4rfoQ3T1RN8yDqoCLar86s0xQct5yblxAE+yWgRnU5/0FOlVCpTZpYSBV/bGWrSrQ==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^4.0.0 - vue: ^3.2.25 - dependencies: - vite: 4.3.9(@types/node@20.3.3)(sass@1.63.6) - vue: 3.2.47 - dev: true - - /@volar/language-core@1.4.0: - resolution: {integrity: sha512-zZg771L/v4MCPwM1KJxvnQ3q3QgbGJtEytivqf+PsxPr0kQ7XtwB1J30dd+YSGN869pXXZ0V6vWdHkDpWC8F3A==} - dependencies: - '@volar/source-map': 1.4.0 - dev: true - - /@volar/source-map@1.4.0: - resolution: {integrity: sha512-gkV8ol9qtP7aMdgijc8a5Yoxxoo90TT55YCi9bsMbKxEUDsOAnlciFNlijR9Ebe42d67GV3w15/RzjveTRNGBw==} - dependencies: - muggle-string: 0.2.2 - dev: true - - /@volar/typescript@1.4.0(typescript@5.0.2): - resolution: {integrity: sha512-r6OMHj/LeS86iQy3LEjjS+qpmHr9I7BiH8gAwp9WEJP76FHlMPi/EPDQxhf3VcMQ/w6Pi5aBczqI+I3akr9t4g==} - peerDependencies: - typescript: '*' - dependencies: - '@volar/language-core': 1.4.0 - typescript: 5.0.2 - dev: true - - /@volar/vue-language-core@1.4.2: - resolution: {integrity: sha512-bDdFowfnyHI7udELEgUWukOh4l9jVTaxb9jZtj0GxUp0Mjj0u81d9+jE2UC3fFJpbndQLGFR6F+ffguHgmrj6Q==} - dependencies: - '@volar/language-core': 1.4.0 - '@volar/source-map': 1.4.0 - '@vue/compiler-dom': 3.3.4 - '@vue/compiler-sfc': 3.3.4 - '@vue/reactivity': 3.3.4 - '@vue/shared': 3.3.4 - minimatch: 9.0.2 - muggle-string: 0.2.2 - vue-template-compiler: 2.7.14 - dev: true - - /@volar/vue-typescript@1.4.2(typescript@5.0.2): - resolution: {integrity: sha512-A1m1cSvS0Pf7Sm9q0S/1riV4RQQeH2h5gGo0vR9fGK2SrAStvh4HuuxPOX4N9uMDbRsNMhC0ILXwtlvjQ/IXJA==} - dependencies: - '@volar/typescript': 1.4.0(typescript@5.0.2) - '@volar/vue-language-core': 1.4.2 - transitivePeerDependencies: - - typescript - dev: true - - /@vue/babel-helper-vue-transform-on@1.1.5: - resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==} - dev: true - - /@vue/babel-plugin-jsx@1.1.5(@babel/core@7.22.6): - resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.6 - '@babel/helper-module-imports': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.6) - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.6 - '@babel/types': 7.22.5 - '@vue/babel-helper-vue-transform-on': 1.1.5 - camelcase: 6.3.0 - html-tags: 3.3.1 - svg-tags: 1.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@vue/compiler-core@3.2.47: - resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==} - dependencies: - '@babel/parser': 7.22.6 - '@vue/shared': 3.2.47 - estree-walker: 2.0.2 - source-map: 0.6.1 - - /@vue/compiler-core@3.3.4: - resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==} - dependencies: - '@babel/parser': 7.22.6 - '@vue/shared': 3.3.4 - estree-walker: 2.0.2 - source-map-js: 1.0.2 - dev: true - - /@vue/compiler-dom@3.2.47: - resolution: {integrity: sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==} - dependencies: - '@vue/compiler-core': 3.2.47 - '@vue/shared': 3.2.47 - - /@vue/compiler-dom@3.3.4: - resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==} - dependencies: - '@vue/compiler-core': 3.3.4 - '@vue/shared': 3.3.4 - dev: true - - /@vue/compiler-sfc@3.2.47: - resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==} - dependencies: - '@babel/parser': 7.22.6 - '@vue/compiler-core': 3.2.47 - '@vue/compiler-dom': 3.2.47 - '@vue/compiler-ssr': 3.2.47 - '@vue/reactivity-transform': 3.2.47 - '@vue/shared': 3.2.47 - estree-walker: 2.0.2 - magic-string: 0.25.9 - postcss: 8.4.24 - source-map: 0.6.1 - - /@vue/compiler-sfc@3.3.4: - resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==} - dependencies: - '@babel/parser': 7.22.6 - '@vue/compiler-core': 3.3.4 - '@vue/compiler-dom': 3.3.4 - '@vue/compiler-ssr': 3.3.4 - '@vue/reactivity-transform': 3.3.4 - '@vue/shared': 3.3.4 - estree-walker: 2.0.2 - magic-string: 0.30.1 - postcss: 8.4.24 - source-map-js: 1.0.2 - dev: true - - /@vue/compiler-ssr@3.2.47: - resolution: {integrity: sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==} - dependencies: - '@vue/compiler-dom': 3.2.47 - '@vue/shared': 3.2.47 - - /@vue/compiler-ssr@3.3.4: - resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==} - dependencies: - '@vue/compiler-dom': 3.3.4 - '@vue/shared': 3.3.4 - dev: true - - /@vue/devtools-api@6.5.0: - resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==} - - /@vue/eslint-config-prettier@7.1.0(eslint@8.44.0)(prettier@2.8.8): - resolution: {integrity: sha512-Pv/lVr0bAzSIHLd9iz0KnvAr4GKyCEl+h52bc4e5yWuDVtLgFwycF7nrbWTAQAS+FU6q1geVd07lc6EWfJiWKQ==} - peerDependencies: - eslint: '>= 7.28.0' - prettier: '>= 2.0.0' - dependencies: - eslint: 8.44.0 - eslint-config-prettier: 8.8.0(eslint@8.44.0) - eslint-plugin-prettier: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.44.0)(prettier@2.8.8) - prettier: 2.8.8 - dev: true - - /@vue/eslint-config-typescript@11.0.3(eslint-plugin-vue@9.15.1)(eslint@8.44.0)(typescript@5.0.2): - resolution: {integrity: sha512-dkt6W0PX6H/4Xuxg/BlFj5xHvksjpSlVjtkQCpaYJBIEuKj2hOVU7r+TIe+ysCwRYFz/lGqvklntRkCAibsbPw==} - engines: {node: ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 - eslint-plugin-vue: ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/eslint-plugin': 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.0.2) - '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.0.2) - eslint: 8.44.0 - eslint-plugin-vue: 9.15.1(eslint@8.44.0) - typescript: 5.0.2 - vue-eslint-parser: 9.3.1(eslint@8.44.0) - transitivePeerDependencies: - - supports-color - dev: true - - /@vue/reactivity-transform@3.2.47: - resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==} - dependencies: - '@babel/parser': 7.22.6 - '@vue/compiler-core': 3.2.47 - '@vue/shared': 3.2.47 - estree-walker: 2.0.2 - magic-string: 0.25.9 - - /@vue/reactivity-transform@3.3.4: - resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==} - dependencies: - '@babel/parser': 7.22.6 - '@vue/compiler-core': 3.3.4 - '@vue/shared': 3.3.4 - estree-walker: 2.0.2 - magic-string: 0.30.1 - dev: true - - /@vue/reactivity@3.2.47: - resolution: {integrity: sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==} - dependencies: - '@vue/shared': 3.2.47 - - /@vue/reactivity@3.3.4: - resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==} - dependencies: - '@vue/shared': 3.3.4 - dev: true - - /@vue/runtime-core@3.2.47: - resolution: {integrity: sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==} - dependencies: - '@vue/reactivity': 3.2.47 - '@vue/shared': 3.2.47 - - /@vue/runtime-dom@3.2.47: - resolution: {integrity: sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA==} - dependencies: - '@vue/runtime-core': 3.2.47 - '@vue/shared': 3.2.47 - csstype: 2.6.21 - - /@vue/server-renderer@3.2.47(vue@3.2.47): - resolution: {integrity: sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==} - peerDependencies: - vue: 3.2.47 - dependencies: - '@vue/compiler-ssr': 3.2.47 - '@vue/shared': 3.2.47 - vue: 3.2.47 - - /@vue/shared@3.2.47: - resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==} - - /@vue/shared@3.3.4: - resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==} - dev: true - - /@vueuse/core@9.1.0(vue@3.2.47): - resolution: {integrity: sha512-BIroqvXEqt826aE9r3K5cox1zobuPuAzdYJ36kouC2TVhlXvFKIILgFVWrpp9HZPwB3aLzasmG3K87q7TSyXZg==} - dependencies: - '@types/web-bluetooth': 0.0.15 - '@vueuse/metadata': 9.1.0 - '@vueuse/shared': 9.1.0(vue@3.2.47) - vue-demi: 0.14.5(vue@3.2.47) - transitivePeerDependencies: - - '@vue/composition-api' - - vue - - /@vueuse/metadata@9.1.0: - resolution: {integrity: sha512-8OEhlog1iaAGTD3LICZ8oBGQdYeMwByvXetOtAOZCJOzyCRSwqwdggTsmVZZ1rkgYIEqgUBk942AsAPwM21s6A==} - - /@vueuse/shared@9.1.0(vue@3.2.47): - resolution: {integrity: sha512-pB/3njQu4tfJJ78ajELNda0yMG6lKfpToQW7Soe09CprF1k3QuyoNi1tBNvo75wBDJWD+LOnr+c4B5HZ39jY/Q==} - dependencies: - vue-demi: 0.14.5(vue@3.2.47) - transitivePeerDependencies: - - '@vue/composition-api' - - vue - - /JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} - hasBin: true - dependencies: - jsonparse: 1.3.1 - through: 2.3.8 - dev: true - - /acorn-jsx@5.3.2(acorn@7.4.1): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - acorn: 7.4.1 - dev: true - - /acorn-jsx@5.3.2(acorn@8.9.0): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - acorn: 8.9.0 - dev: true - - /acorn-walk@8.2.0: - resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} - engines: {node: '>=0.4.0'} - dev: true - - /acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - /acorn@8.9.0: - resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==} - engines: {node: '>=0.4.0'} - hasBin: true - dev: true - - /adler-32@1.3.1: - resolution: {integrity: sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==} - engines: {node: '>=0.8'} - dev: false - - /aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} - dependencies: - clean-stack: 2.2.0 - indent-string: 4.0.0 - dev: true - - /ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 - dev: true - - /ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - dev: true - - /ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} - dependencies: - type-fest: 0.21.3 - dev: true - - /ansi-regex@2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} - dev: true - - /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} - dev: true - - /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} - dev: true - - /ansi-styles@2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} - engines: {node: '>=0.10.0'} - dev: true - - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - dependencies: - color-convert: 1.9.3 - dev: true - - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - dependencies: - color-convert: 2.0.1 - dev: true - - /ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} - dev: true - - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 - - /arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - dev: true - - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - dependencies: - sprintf-js: 1.0.3 - dev: true - - /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: true - - /arr-diff@4.0.0: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} - engines: {node: '>=0.10.0'} - dev: true - - /arr-flatten@1.1.0: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} - engines: {node: '>=0.10.0'} - dev: true - - /arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} - engines: {node: '>=0.10.0'} - dev: true - - /array-buffer-byte-length@1.0.0: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} - dependencies: - call-bind: 1.0.2 - is-array-buffer: 3.0.2 - dev: true - - /array-differ@3.0.0: - resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} - engines: {node: '>=8'} - dev: true - - /array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} - dev: true - - /array-includes@3.1.6: - resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - get-intrinsic: 1.2.1 - is-string: 1.0.7 - dev: true - - /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - dev: true - - /array-unique@0.3.2: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} - engines: {node: '>=0.10.0'} - dev: true - - /array.prototype.flat@1.3.1: - resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - es-shim-unscopables: 1.0.0 - dev: true - - /array.prototype.flatmap@1.3.1: - resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - es-shim-unscopables: 1.0.0 - dev: true - - /arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - dev: true - - /arrify@2.0.1: - resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} - engines: {node: '>=8'} - dev: true - - /assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} - engines: {node: '>=0.10.0'} - dev: true - - /astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} - dev: true - - /async-validator@4.2.5: - resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==} - dev: false - - /async@3.2.4: - resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} - dev: true - - /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - dev: false - - /atob@2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} - engines: {node: '>= 4.5.0'} - hasBin: true - dev: true - - /autoprefixer@10.4.8(postcss@8.4.24): - resolution: {integrity: sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001512 - fraction.js: 4.2.0 - normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.24 - postcss-value-parser: 4.2.0 - dev: true - - /available-typed-arrays@1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} - dev: true - - /axios@1.2.0: - resolution: {integrity: sha512-zT7wZyNYu3N5Bu0wuZ6QccIf93Qk1eV8LOewxgjOZFd2DenOs98cJ7+Y6703d0wkaXGY6/nZd4EweJaHz9uzQw==} - dependencies: - follow-redirects: 1.15.2 - form-data: 4.0.0 - proxy-from-env: 1.1.0 - transitivePeerDependencies: - - debug - dev: false - - /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - dev: true - - /base@0.11.2: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} - engines: {node: '>=0.10.0'} - dependencies: - cache-base: 1.0.1 - class-utils: 0.3.6 - component-emitter: 1.3.0 - define-property: 1.0.0 - isobject: 3.0.1 - mixin-deep: 1.3.2 - pascalcase: 0.1.1 - dev: true - - /big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - dev: true - - /binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} - - /bluebird@3.7.2: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} - dev: true - - /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - dev: true - - /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - dev: true - - /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} - dependencies: - balanced-match: 1.0.2 - dev: true - - /braces@2.3.2: - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} - engines: {node: '>=0.10.0'} - dependencies: - arr-flatten: 1.1.0 - array-unique: 0.3.2 - extend-shallow: 2.0.1 - fill-range: 4.0.0 - isobject: 3.0.1 - repeat-element: 1.1.4 - snapdragon: 0.8.2 - snapdragon-node: 2.1.1 - split-string: 3.1.0 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} - dependencies: - fill-range: 7.0.1 - - /browserslist@4.21.9: - resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: 1.0.30001512 - electron-to-chromium: 1.4.450 - node-releases: 2.0.12 - update-browserslist-db: 1.0.11(browserslist@4.21.9) - dev: true - - /cache-base@1.0.1: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} - engines: {node: '>=0.10.0'} - dependencies: - collection-visit: 1.0.0 - component-emitter: 1.3.0 - get-value: 2.0.6 - has-value: 1.0.0 - isobject: 3.0.1 - set-value: 2.0.1 - to-object-path: 0.3.0 - union-value: 1.0.1 - unset-value: 1.0.0 - dev: true - - /call-bind@1.0.2: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} - dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.2.1 - dev: true - - /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - dev: true - - /camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} - dependencies: - camelcase: 5.3.1 - map-obj: 4.3.0 - quick-lru: 4.0.1 - dev: true - - /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} - dev: true - - /camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} - dev: true - - /caniuse-lite@1.0.30001512: - resolution: {integrity: sha512-2S9nK0G/mE+jasCUsMPlARhRCts1ebcp2Ji8Y8PWi4NDE1iRdLCnEPHkEfeBrGC45L4isBx5ur3IQ6yTE2mRZw==} - dev: true - - /cfb@1.2.2: - resolution: {integrity: sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==} - engines: {node: '>=0.8'} - dependencies: - adler-32: 1.3.1 - crc-32: 1.2.2 - dev: false - - /chalk@1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} - engines: {node: '>=0.10.0'} - dependencies: - ansi-styles: 2.2.1 - escape-string-regexp: 1.0.5 - has-ansi: 2.0.0 - strip-ansi: 3.0.1 - supports-color: 2.0.0 - dev: true - - /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - dev: true - - /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - dev: true - - /chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} - dependencies: - anymatch: 3.1.3 - braces: 3.0.2 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.2 - - /class-utils@0.3.6: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} - engines: {node: '>=0.10.0'} - dependencies: - arr-union: 3.1.0 - define-property: 0.2.5 - isobject: 3.0.1 - static-extend: 0.1.2 - dev: true - - /clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} - dev: true - - /cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} - dependencies: - restore-cursor: 3.1.0 - dev: true - - /cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} - dependencies: - slice-ansi: 3.0.0 - string-width: 4.2.3 - dev: true - - /cli-truncate@3.1.0: - resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - slice-ansi: 5.0.0 - string-width: 5.1.2 - dev: true - - /clipboard@2.0.11: - resolution: {integrity: sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==} - dependencies: - good-listener: 1.2.2 - select: 1.1.2 - tiny-emitter: 2.1.0 - dev: false - - /cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - dev: true - - /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - dev: true - - /clone@2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} - engines: {node: '>=0.8'} - dev: true - - /codepage@1.15.0: - resolution: {integrity: sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==} - engines: {node: '>=0.8'} - dev: false - - /collection-visit@1.0.0: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} - engines: {node: '>=0.10.0'} - dependencies: - map-visit: 1.0.0 - object-visit: 1.0.1 - dev: true - - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - dependencies: - color-name: 1.1.3 - dev: true - - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - dependencies: - color-name: 1.1.4 - dev: true - - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - dev: true - - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - dev: true - - /colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} - dev: true - - /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} - dependencies: - delayed-stream: 1.0.0 - dev: false - - /commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} - dev: true - - /commander@9.5.0: - resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} - engines: {node: ^12.20.0 || >=14} - dev: true - - /compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} - dependencies: - array-ify: 1.0.0 - dot-prop: 5.3.0 - dev: true - - /component-emitter@1.3.0: - resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} - dev: true - - /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - dev: true - - /conventional-changelog-angular@5.0.13: - resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} - engines: {node: '>=10'} - dependencies: - compare-func: 2.0.0 - q: 1.5.1 - dev: true - - /conventional-changelog-conventionalcommits@5.0.0: - resolution: {integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==} - engines: {node: '>=10'} - dependencies: - compare-func: 2.0.0 - lodash: 4.17.21 - q: 1.5.1 - dev: true - - /conventional-commits-parser@3.2.4: - resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} - engines: {node: '>=10'} - hasBin: true - dependencies: - JSONStream: 1.3.5 - is-text-path: 1.0.1 - lodash: 4.17.21 - meow: 8.1.2 - split2: 3.2.2 - through2: 4.0.2 - dev: true - - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - dev: true - - /copy-descriptor@0.1.1: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} - engines: {node: '>=0.10.0'} - dev: true - - /cors@2.8.5: - resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} - engines: {node: '>= 0.10'} - dependencies: - object-assign: 4.1.1 - vary: 1.1.2 - dev: true - - /cosmiconfig-typescript-loader@4.3.0(@types/node@20.3.3)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@5.0.2): - resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} - engines: {node: '>=12', npm: '>=6'} - peerDependencies: - '@types/node': '*' - cosmiconfig: '>=7' - ts-node: '>=10' - typescript: '>=3' - dependencies: - '@types/node': 20.3.3 - cosmiconfig: 8.2.0 - ts-node: 10.9.1(@types/node@20.3.3)(typescript@5.0.2) - typescript: 5.0.2 - dev: true - - /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} - dependencies: - '@types/parse-json': 4.0.0 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 - dev: true - - /cosmiconfig@8.2.0: - resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==} - engines: {node: '>=14'} - dependencies: - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - path-type: 4.0.0 - dev: true - - /crc-32@1.2.2: - resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} - engines: {node: '>=0.8'} - hasBin: true - dev: false - - /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - dev: true - - /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} - dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 - dev: true - - /crypto-js@4.1.1: - resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==} - dev: false - - /css-render@0.15.12: - resolution: {integrity: sha512-eWzS66patiGkTTik+ipO9qNGZ+uNuGyTmnz6/+EJIiFg8+3yZRpnMwgFo8YdXhQRsiePzehnusrxVvugNjXzbw==} - dependencies: - '@emotion/hash': 0.8.0 - csstype: 3.0.11 - dev: false - - /css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} - dependencies: - boolbase: 1.0.0 - css-what: 6.1.0 - domhandler: 4.3.1 - domutils: 2.8.0 - nth-check: 2.1.1 - dev: true - - /css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} - dependencies: - mdn-data: 2.0.14 - source-map: 0.6.1 - dev: true - - /css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} - dev: true - - /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - dev: true - - /csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} - dependencies: - css-tree: 1.1.3 - dev: true - - /csstype@2.6.21: - resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} - - /csstype@3.0.11: - resolution: {integrity: sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==} - dev: false - - /currency.js@2.0.4: - resolution: {integrity: sha512-6/OplJYgJ0RUlli74d93HJ/OsKVBi8lB1+Z6eJYS1YZzBuIp4qKKHpJ7ad+GvTlWmLR/hLJOWTykN5Nm8NJ7+w==} - engines: {node: '>=4'} - dev: false - - /dargs@7.0.0: - resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} - engines: {node: '>=8'} - dev: true - - /date-fns-tz@1.3.8(date-fns@2.30.0): - resolution: {integrity: sha512-qwNXUFtMHTTU6CFSFjoJ80W8Fzzp24LntbjFFBgL/faqds4e5mo9mftoRLgr3Vi1trISsg4awSpYVsOQCRnapQ==} - peerDependencies: - date-fns: '>=2.0.0' - dependencies: - date-fns: 2.30.0 - dev: false - - /date-fns@2.30.0: - resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} - engines: {node: '>=0.11'} - dependencies: - '@babel/runtime': 7.22.6 - dev: false - - /dayjs@1.11.7: - resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} - dev: false - - /de-indent@1.0.2: - resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} - dev: true - - /debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.0.0 - dev: true - - /debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - dev: true - - /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - dev: true - - /decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} - dependencies: - decamelize: 1.2.0 - map-obj: 1.0.1 - dev: true - - /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - dev: true - - /decode-uri-component@0.2.2: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} - engines: {node: '>=0.10'} - dev: true - - /deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - dev: true - - /deepmerge@1.3.2: - resolution: {integrity: sha512-qjMjTrk+RKv/sp4RPDpV5CnKhxjFI9p+GkLBOls5A8EEElldYWCWA9zceAkmfd0xIo2aU1nxiaLFoiya2sb6Cg==} - engines: {node: '>=0.10.0'} - dev: true - - /define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} - dev: true - - /define-properties@1.2.0: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} - engines: {node: '>= 0.4'} - dependencies: - has-property-descriptors: 1.0.0 - object-keys: 1.1.1 - dev: true - - /define-property@0.2.5: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} - engines: {node: '>=0.10.0'} - dependencies: - is-descriptor: 0.1.6 - dev: true - - /define-property@1.0.0: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} - engines: {node: '>=0.10.0'} - dependencies: - is-descriptor: 1.0.2 - dev: true - - /define-property@2.0.2: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} - engines: {node: '>=0.10.0'} - dependencies: - is-descriptor: 1.0.2 - isobject: 3.0.1 - dev: true - - /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} - dev: false - - /delegate@3.2.0: - resolution: {integrity: sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==} - dev: false - - /depcheck@1.4.3: - resolution: {integrity: sha512-vy8xe1tlLFu7t4jFyoirMmOR7x7N601ubU9Gkifyr9z8rjBFtEdWHDBMqXyk6OkK+94NXutzddVXJuo0JlUQKQ==} - engines: {node: '>=10'} - hasBin: true - dependencies: - '@babel/parser': 7.16.4 - '@babel/traverse': 7.22.6 - '@vue/compiler-sfc': 3.3.4 - camelcase: 6.3.0 - cosmiconfig: 7.1.0 - debug: 4.3.4 - deps-regex: 0.1.4 - ignore: 5.2.4 - is-core-module: 2.12.1 - js-yaml: 3.14.1 - json5: 2.2.3 - lodash: 4.17.21 - minimatch: 3.1.2 - multimatch: 5.0.0 - please-upgrade-node: 3.2.0 - query-ast: 1.0.5 - readdirp: 3.6.0 - require-package-name: 2.0.1 - resolve: 1.22.2 - sass: 1.63.6 - scss-parser: 1.0.6 - semver: 7.5.3 - yargs: 16.2.0 - transitivePeerDependencies: - - supports-color - dev: true - - /deps-regex@0.1.4: - resolution: {integrity: sha512-3tzwGYogSJi8HoG93R5x9NrdefZQOXgHgGih/7eivloOq6yC6O+yoFxZnkgP661twvfILONfoKRdF9GQOGx2RA==} - dev: true - - /diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} - dev: true - - /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} - dependencies: - path-type: 4.0.0 - dev: true - - /doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} - dependencies: - esutils: 2.0.3 - dev: true - - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - dependencies: - esutils: 2.0.3 - dev: true - - /dom-serializer@0.2.2: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} - dependencies: - domelementtype: 2.3.0 - entities: 2.2.0 - dev: true - - /dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} - dependencies: - domelementtype: 2.3.0 - domhandler: 4.3.1 - entities: 2.2.0 - dev: true - - /domelementtype@1.3.1: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} - dev: true - - /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - dev: true - - /domhandler@2.4.2: - resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} - dependencies: - domelementtype: 1.3.1 - dev: true - - /domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} - dependencies: - domelementtype: 2.3.0 - dev: true - - /domready@1.0.8: - resolution: {integrity: sha512-uIzsOJUNk+AdGE9a6VDeessoMCzF8RrZvJCX/W8QtyfgdR6Uofn/MvRonih3OtCO79b2VDzDOymuiABrQ4z3XA==} - dev: true - - /domutils@1.7.0: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} - dependencies: - dom-serializer: 0.2.2 - domelementtype: 1.3.1 - dev: true - - /domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} - dependencies: - dom-serializer: 1.4.1 - domelementtype: 2.3.0 - domhandler: 4.3.1 - dev: true - - /dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} - dependencies: - no-case: 3.0.4 - tslib: 2.6.0 - dev: true - - /dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} - dependencies: - is-obj: 2.0.0 - dev: true - - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - dev: true - - /echarts@5.4.0: - resolution: {integrity: sha512-uPsO9VRUIKAdFOoH3B0aNg7NRVdN7aM39/OjovjO9MwmWsAkfGyeXJhK+dbRi51iDrQWliXV60/XwLA7kg3z0w==} - dependencies: - tslib: 2.3.0 - zrender: 5.4.0 - dev: false - - /ejs@3.1.9: - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} - engines: {node: '>=0.10.0'} - hasBin: true - dependencies: - jake: 10.8.7 - dev: true - - /electron-to-chromium@1.4.450: - resolution: {integrity: sha512-BLG5HxSELlrMx7dJ2s+8SFlsCtJp37Zpk2VAxyC6CZtbc+9AJeZHfYHbrlSgdXp6saQ8StMqOTEDaBKgA7u1sw==} - dev: true - - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - dev: true - - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - dev: true - - /emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} - dev: true - - /entities@1.1.2: - resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} - dev: true - - /entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - dev: true - - /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - dependencies: - is-arrayish: 0.2.1 - dev: true - - /es-abstract@1.21.2: - resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} - engines: {node: '>= 0.4'} - dependencies: - array-buffer-byte-length: 1.0.0 - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.1 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 - gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 - has-proto: 1.0.1 - has-symbols: 1.0.3 - internal-slot: 1.0.5 - is-array-buffer: 3.0.2 - is-callable: 1.2.7 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.10 - is-weakref: 1.0.2 - object-inspect: 1.12.3 - object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 - safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.7 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 - typed-array-length: 1.0.4 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.9 - dev: true - - /es-set-tostringtag@2.0.1: - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} - engines: {node: '>= 0.4'} - dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 - has-tostringtag: 1.0.0 - dev: true - - /es-shim-unscopables@1.0.0: - resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} - dependencies: - has: 1.0.3 - dev: true - - /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} - dependencies: - is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 - dev: true - - /esbuild@0.17.19: - resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': 0.17.19 - '@esbuild/android-arm64': 0.17.19 - '@esbuild/android-x64': 0.17.19 - '@esbuild/darwin-arm64': 0.17.19 - '@esbuild/darwin-x64': 0.17.19 - '@esbuild/freebsd-arm64': 0.17.19 - '@esbuild/freebsd-x64': 0.17.19 - '@esbuild/linux-arm': 0.17.19 - '@esbuild/linux-arm64': 0.17.19 - '@esbuild/linux-ia32': 0.17.19 - '@esbuild/linux-loong64': 0.17.19 - '@esbuild/linux-mips64el': 0.17.19 - '@esbuild/linux-ppc64': 0.17.19 - '@esbuild/linux-riscv64': 0.17.19 - '@esbuild/linux-s390x': 0.17.19 - '@esbuild/linux-x64': 0.17.19 - '@esbuild/netbsd-x64': 0.17.19 - '@esbuild/openbsd-x64': 0.17.19 - '@esbuild/sunos-x64': 0.17.19 - '@esbuild/win32-arm64': 0.17.19 - '@esbuild/win32-ia32': 0.17.19 - '@esbuild/win32-x64': 0.17.19 - dev: true - - /escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} - dev: true - - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - dev: true - - /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - dev: true - - /escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} - dev: true - - /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true - dependencies: - esprima: 4.0.1 - estraverse: 5.3.0 - esutils: 2.0.3 - optionalDependencies: - source-map: 0.6.1 - dev: true - - /eslint-config-prettier@8.8.0(eslint@8.44.0): - resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' - dependencies: - eslint: 8.44.0 - dev: true - - /eslint-config-standard-with-typescript@23.0.0(@typescript-eslint/eslint-plugin@5.61.0)(eslint-plugin-import@2.25.2)(eslint-plugin-n@15.0.0)(eslint-plugin-promise@6.0.0)(eslint@8.44.0)(typescript@5.0.2): - resolution: {integrity: sha512-iaaWifImn37Z1OXbNW1es7KI+S7D408F9ys0bpaQf2temeBWlvb0Nc5qHkOgYaRb5QxTZT32GGeN1gtswASOXA==} - peerDependencies: - '@typescript-eslint/eslint-plugin': ^5.0.0 - eslint: ^8.0.1 - eslint-plugin-import: ^2.25.2 - eslint-plugin-n: ^15.0.0 - eslint-plugin-promise: ^6.0.0 - typescript: '*' - dependencies: - '@typescript-eslint/eslint-plugin': 5.61.0(@typescript-eslint/parser@5.61.0)(eslint@8.44.0)(typescript@5.0.2) - '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.0.2) - eslint: 8.44.0 - eslint-config-standard: 17.0.0(eslint-plugin-import@2.25.2)(eslint-plugin-n@15.0.0)(eslint-plugin-promise@6.0.0)(eslint@8.44.0) - eslint-plugin-import: 2.25.2(@typescript-eslint/parser@5.61.0)(eslint@8.44.0) - eslint-plugin-n: 15.0.0(eslint@8.44.0) - eslint-plugin-promise: 6.0.0(eslint@8.44.0) - typescript: 5.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-config-standard@17.0.0(eslint-plugin-import@2.25.2)(eslint-plugin-n@15.0.0)(eslint-plugin-promise@6.0.0)(eslint@8.44.0): - resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==} - peerDependencies: - eslint: ^8.0.1 - eslint-plugin-import: ^2.25.2 - eslint-plugin-n: ^15.0.0 - eslint-plugin-promise: ^6.0.0 - dependencies: - eslint: 8.44.0 - eslint-plugin-import: 2.25.2(@typescript-eslint/parser@5.61.0)(eslint@8.44.0) - eslint-plugin-n: 15.0.0(eslint@8.44.0) - eslint-plugin-promise: 6.0.0(eslint@8.44.0) - dev: true - - /eslint-import-resolver-node@0.3.7: - resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} - dependencies: - debug: 3.2.7 - is-core-module: 2.12.1 - resolve: 1.22.2 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0): - resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true - dependencies: - '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.0.2) - debug: 3.2.7 - eslint: 8.44.0 - eslint-import-resolver-node: 0.3.7 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-plugin-es@4.1.0(eslint@8.44.0): - resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} - engines: {node: '>=8.10.0'} - peerDependencies: - eslint: '>=4.19.1' - dependencies: - eslint: 8.44.0 - eslint-utils: 2.1.0 - regexpp: 3.2.0 - dev: true - - /eslint-plugin-import@2.25.2(@typescript-eslint/parser@5.61.0)(eslint@8.44.0): - resolution: {integrity: sha512-qCwQr9TYfoBHOFcVGKY9C9unq05uOxxdklmBXLVvcwo68y5Hta6/GzCZEMx2zQiu0woKNEER0LE7ZgaOfBU14g==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - dependencies: - '@typescript-eslint/parser': 5.61.0(eslint@8.44.0)(typescript@5.0.2) - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - debug: 2.6.9 - doctrine: 2.1.0 - eslint: 8.44.0 - eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.61.0)(eslint-import-resolver-node@0.3.7)(eslint@8.44.0) - has: 1.0.3 - is-core-module: 2.12.1 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.values: 1.1.6 - resolve: 1.22.2 - tsconfig-paths: 3.14.2 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - dev: true - - /eslint-plugin-n@15.0.0(eslint@8.44.0): - resolution: {integrity: sha512-cb70VSsNjteEL+sInXvlyewuE4OCW9CFmcOQKxyQzdAsoK+7pWpygf2q/Vsw/5dKSniO7qbawLjDqAakaILCIw==} - engines: {node: '>=12.22.0'} - peerDependencies: - eslint: '>=7.0.0' - dependencies: - eslint: 8.44.0 - eslint-plugin-es: 4.1.0(eslint@8.44.0) - eslint-utils: 3.0.0(eslint@8.44.0) - ignore: 5.2.4 - is-core-module: 2.12.1 - minimatch: 3.1.2 - resolve: 1.22.2 - semver: 6.3.0 - dev: true - - /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@8.44.0)(prettier@2.8.8): - resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - eslint: '>=7.28.0' - eslint-config-prettier: '*' - prettier: '>=2.0.0' - peerDependenciesMeta: - eslint-config-prettier: - optional: true - dependencies: - eslint: 8.44.0 - eslint-config-prettier: 8.8.0(eslint@8.44.0) - prettier: 2.8.8 - prettier-linter-helpers: 1.0.0 - dev: true - - /eslint-plugin-promise@6.0.0(eslint@8.44.0): - resolution: {integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - dependencies: - eslint: 8.44.0 - dev: true - - /eslint-plugin-react@7.31.10(eslint@8.44.0): - resolution: {integrity: sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==} - engines: {node: '>=4'} - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - doctrine: 2.1.0 - eslint: 8.44.0 - estraverse: 5.3.0 - jsx-ast-utils: 3.3.4 - minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 - prop-types: 15.8.1 - resolve: 2.0.0-next.4 - semver: 6.3.0 - string.prototype.matchall: 4.0.8 - dev: true - - /eslint-plugin-vue@9.15.1(eslint@8.44.0): - resolution: {integrity: sha512-CJE/oZOslvmAR9hf8SClTdQ9JLweghT6JCBQNrT2Iel1uVw0W0OLJxzvPd6CxmABKCvLrtyDnqGV37O7KQv6+A==} - engines: {node: ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0) - eslint: 8.44.0 - natural-compare: 1.4.0 - nth-check: 2.1.1 - postcss-selector-parser: 6.0.13 - semver: 7.5.3 - vue-eslint-parser: 9.3.1(eslint@8.44.0) - xml-name-validator: 4.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} - dependencies: - esrecurse: 4.3.0 - estraverse: 4.3.0 - dev: true - - /eslint-scope@7.2.0: - resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 - dev: true - - /eslint-utils@2.1.0: - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} - engines: {node: '>=6'} - dependencies: - eslint-visitor-keys: 1.3.0 - dev: true - - /eslint-utils@3.0.0(eslint@8.44.0): - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - dependencies: - eslint: 8.44.0 - eslint-visitor-keys: 2.1.0 - dev: true - - /eslint-visitor-keys@1.3.0: - resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} - engines: {node: '>=4'} - dev: true - - /eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} - dev: true - - /eslint-visitor-keys@3.4.1: - resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - - /eslint@8.44.0: - resolution: {integrity: sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.44.0) - '@eslint-community/regexpp': 4.5.1 - '@eslint/eslintrc': 2.1.0 - '@eslint/js': 8.44.0 - '@humanwhocodes/config-array': 0.11.10 - '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4 - doctrine: 3.0.0 - escape-string-regexp: 4.0.0 - eslint-scope: 7.2.0 - eslint-visitor-keys: 3.4.1 - espree: 9.6.0 - esquery: 1.5.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - find-up: 5.0.0 - glob-parent: 6.0.2 - globals: 13.20.0 - graphemer: 1.4.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.3 - strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 - text-table: 0.2.0 - transitivePeerDependencies: - - supports-color - dev: true - - /espree@6.2.1: - resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==} - engines: {node: '>=6.0.0'} - dependencies: - acorn: 7.4.1 - acorn-jsx: 5.3.2(acorn@7.4.1) - eslint-visitor-keys: 1.3.0 - dev: true - - /espree@9.6.0: - resolution: {integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - acorn: 8.9.0 - acorn-jsx: 5.3.2(acorn@8.9.0) - eslint-visitor-keys: 3.4.1 - dev: true - - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true - dev: true - - /esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} - dependencies: - estraverse: 5.3.0 - dev: true - - /esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} - dependencies: - estraverse: 5.3.0 - dev: true - - /estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} - dev: true - - /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - dev: true - - /estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - - /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - dev: true - - /etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} - dev: true - - /evtd@0.2.4: - resolution: {integrity: sha512-qaeGN5bx63s/AXgQo8gj6fBkxge+OoLddLniox5qtLAEY5HSnuSlISXVPxnSae1dWblvTh4/HoMIB+mbMsvZzw==} - dev: false - - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - dev: true - - /execa@6.1.0: - resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 3.0.1 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.1.0 - onetime: 6.0.0 - signal-exit: 3.0.7 - strip-final-newline: 3.0.0 - dev: true - - /expand-brackets@2.1.4: - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} - engines: {node: '>=0.10.0'} - dependencies: - debug: 2.6.9 - define-property: 0.2.5 - extend-shallow: 2.0.1 - posix-character-classes: 0.1.1 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} - dependencies: - is-extendable: 0.1.1 - dev: true - - /extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} - engines: {node: '>=0.10.0'} - dependencies: - assign-symbols: 1.0.0 - is-extendable: 1.0.1 - dev: true - - /extglob@2.0.4: - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} - engines: {node: '>=0.10.0'} - dependencies: - array-unique: 0.3.2 - define-property: 1.0.0 - expand-brackets: 2.1.4 - extend-shallow: 2.0.1 - fragment-cache: 0.2.1 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - dev: true - - /fast-diff@1.3.0: - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} - dev: true - - /fast-glob@3.3.0: - resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==} - engines: {node: '>=8.6.0'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 - dev: true - - /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - dev: true - - /fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - dev: true - - /fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} - dependencies: - reusify: 1.0.4 - dev: true - - /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} - dependencies: - flat-cache: 3.0.4 - dev: true - - /filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} - dependencies: - minimatch: 5.1.6 - dev: true - - /fill-range@4.0.0: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: 2.0.1 - is-number: 3.0.0 - repeat-string: 1.6.1 - to-regex-range: 2.1.1 - dev: true - - /fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} - dependencies: - to-regex-range: 5.0.1 - - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} - dependencies: - locate-path: 5.0.0 - path-exists: 4.0.0 - dev: true - - /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} - dependencies: - locate-path: 6.0.0 - path-exists: 4.0.0 - dev: true - - /flat-cache@3.0.4: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} - engines: {node: ^10.12.0 || >=12.0.0} - dependencies: - flatted: 3.2.7 - rimraf: 3.0.2 - dev: true - - /flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} - dev: true - - /follow-redirects@1.15.2: - resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - dev: false - - /for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - dependencies: - is-callable: 1.2.7 - dev: true - - /for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} - engines: {node: '>=0.10.0'} - dev: true - - /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} - dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 - dev: false - - /frac@1.1.2: - resolution: {integrity: sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==} - engines: {node: '>=0.8'} - dev: false - - /fraction.js@4.2.0: - resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} - dev: true - - /fragment-cache@0.2.1: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} - engines: {node: '>=0.10.0'} - dependencies: - map-cache: 0.2.2 - dev: true - - /fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.0 - dev: true - - /fs-extra@11.1.1: - resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: '>=14.14'} - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.0 - dev: true - - /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - dev: true - - /fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true - optional: true - - /function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - dev: true - - /function.prototype.name@1.1.5: - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - functions-have-names: 1.2.3 - dev: true - - /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - dev: true - - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - dev: true - - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - dev: true - - /get-intrinsic@1.2.1: - resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} - dependencies: - function-bind: 1.1.1 - has: 1.0.3 - has-proto: 1.0.1 - has-symbols: 1.0.3 - dev: true - - /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - dev: true - - /get-symbol-description@1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - dev: true - - /get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} - dev: true - - /git-raw-commits@2.0.11: - resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} - engines: {node: '>=10'} - hasBin: true - dependencies: - dargs: 7.0.0 - lodash: 4.17.21 - meow: 8.1.2 - split2: 3.2.2 - through2: 4.0.2 - dev: true - - /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - dependencies: - is-glob: 4.0.3 - - /glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - dependencies: - is-glob: 4.0.3 - dev: true - - /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - dev: true - - /global-dirs@0.1.1: - resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} - engines: {node: '>=4'} - dependencies: - ini: 1.3.8 - dev: true - - /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - dev: true - - /globals@13.20.0: - resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} - engines: {node: '>=8'} - dependencies: - type-fest: 0.20.2 - dev: true - - /globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} - dependencies: - define-properties: 1.2.0 - dev: true - - /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} - dependencies: - array-union: 2.1.0 - dir-glob: 3.0.1 - fast-glob: 3.3.0 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 3.0.0 - dev: true - - /good-listener@1.2.2: - resolution: {integrity: sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==} - dependencies: - delegate: 3.2.0 - dev: false - - /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} - dependencies: - get-intrinsic: 1.2.1 - dev: true - - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - dev: true - - /graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - dev: true - - /hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - dev: true - - /has-ansi@2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} - engines: {node: '>=0.10.0'} - dependencies: - ansi-regex: 2.1.1 - dev: true - - /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - dev: true - - /has-flag@1.0.0: - resolution: {integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==} - engines: {node: '>=0.10.0'} - dev: true - - /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - dev: true - - /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - dev: true - - /has-property-descriptors@1.0.0: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} - dependencies: - get-intrinsic: 1.2.1 - dev: true - - /has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: '>= 0.4'} - dev: true - - /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} - dev: true - - /has-tostringtag@1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} - dependencies: - has-symbols: 1.0.3 - dev: true - - /has-value@0.3.1: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} - engines: {node: '>=0.10.0'} - dependencies: - get-value: 2.0.6 - has-values: 0.1.4 - isobject: 2.1.0 - dev: true - - /has-value@1.0.0: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} - engines: {node: '>=0.10.0'} - dependencies: - get-value: 2.0.6 - has-values: 1.0.0 - isobject: 3.0.1 - dev: true - - /has-values@0.1.4: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} - engines: {node: '>=0.10.0'} - dev: true - - /has-values@1.0.0: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} - engines: {node: '>=0.10.0'} - dependencies: - is-number: 3.0.0 - kind-of: 4.0.0 - dev: true - - /has@1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} - dependencies: - function-bind: 1.1.1 - dev: true - - /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - dev: true - - /highlight.js@11.8.0: - resolution: {integrity: sha512-MedQhoqVdr0U6SSnWPzfiadUcDHfN/Wzq25AkXiQv9oiOO/sG0S7XkvpFIqWBl9Yq1UYyYOOVORs5UW2XlPyzg==} - engines: {node: '>=12.0.0'} - dev: false - - /hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - dev: true - - /hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} - dependencies: - lru-cache: 6.0.0 - dev: true - - /html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: '>=8'} - dev: true - - /htmlparser2@3.10.1: - resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==} - dependencies: - domelementtype: 1.3.1 - domhandler: 2.4.2 - domutils: 1.7.0 - entities: 1.1.2 - inherits: 2.0.4 - readable-stream: 3.6.2 - dev: true - - /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - dev: true - - /human-signals@3.0.1: - resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} - engines: {node: '>=12.20.0'} - dev: true - - /husky@8.0.3: - resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} - engines: {node: '>=14'} - hasBin: true - dev: true - - /ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} - engines: {node: '>= 4'} - dev: true - - /image-size@0.5.5: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} - engines: {node: '>=0.10.0'} - hasBin: true - dev: true - - /immutable@4.3.0: - resolution: {integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==} - - /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 - dev: true - - /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - dev: true - - /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} - dev: true - - /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - dependencies: - once: 1.4.0 - wrappy: 1.0.2 - dev: true - - /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - dev: true - - /ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - dev: true - - /internal-slot@1.0.5: - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} - engines: {node: '>= 0.4'} - dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 - side-channel: 1.0.4 - dev: true - - /invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} - dependencies: - loose-envify: 1.4.0 - dev: true - - /is-accessor-descriptor@0.1.6: - resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 3.2.2 - dev: true - - /is-accessor-descriptor@1.0.0: - resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 6.0.3 - dev: true - - /is-array-buffer@3.0.2: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - is-typed-array: 1.1.10 - dev: true - - /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - dev: true - - /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - dependencies: - has-bigints: 1.0.2 - dev: true - - /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - dependencies: - binary-extensions: 2.2.0 - - /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - dev: true - - /is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} - dev: true - - /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - dev: true - - /is-core-module@2.12.1: - resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} - dependencies: - has: 1.0.3 - dev: true - - /is-data-descriptor@0.1.4: - resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 3.2.2 - dev: true - - /is-data-descriptor@1.0.0: - resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 6.0.3 - dev: true - - /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.0 - dev: true - - /is-descriptor@0.1.6: - resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==} - engines: {node: '>=0.10.0'} - dependencies: - is-accessor-descriptor: 0.1.6 - is-data-descriptor: 0.1.4 - kind-of: 5.1.0 - dev: true - - /is-descriptor@1.0.2: - resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==} - engines: {node: '>=0.10.0'} - dependencies: - is-accessor-descriptor: 1.0.0 - is-data-descriptor: 1.0.0 - kind-of: 6.0.3 - dev: true - - /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true - dev: true - - /is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} - dev: true - - /is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} - dependencies: - is-plain-object: 2.0.4 - dev: true - - /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - dev: true - - /is-fullwidth-code-point@4.0.0: - resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} - engines: {node: '>=12'} - dev: true - - /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - dependencies: - is-extglob: 2.1.1 - - /is-negative-zero@2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} - dev: true - - /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.0 - dev: true - - /is-number@3.0.0: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 3.2.2 - dev: true - - /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - - /is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} - dev: true - - /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - dev: true - - /is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - dev: true - - /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} - dependencies: - isobject: 3.0.1 - dev: true - - /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - dev: true - - /is-shared-array-buffer@1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} - dependencies: - call-bind: 1.0.2 - dev: true - - /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} - dev: true - - /is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true - - /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} - dependencies: - has-tostringtag: 1.0.0 - dev: true - - /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} - dependencies: - has-symbols: 1.0.3 - dev: true - - /is-text-path@1.0.1: - resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} - engines: {node: '>=0.10.0'} - dependencies: - text-extensions: 1.9.0 - dev: true - - /is-typed-array@1.1.10: - resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} - engines: {node: '>= 0.4'} - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - dev: true - - /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} - dependencies: - call-bind: 1.0.2 - dev: true - - /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - dev: true - - /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} - dependencies: - is-docker: 2.2.1 - dev: true - - /isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - dev: true - - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - dev: true - - /isobject@2.1.0: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} - engines: {node: '>=0.10.0'} - dependencies: - isarray: 1.0.0 - dev: true - - /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} - dev: true - - /jake@10.8.7: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} - engines: {node: '>=10'} - hasBin: true - dependencies: - async: 3.2.4 - chalk: 4.1.2 - filelist: 1.0.4 - minimatch: 3.1.2 - dev: true - - /js-base64@2.6.4: - resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==} - dev: true - - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - dev: true - - /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - dev: true - - /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - dependencies: - argparse: 2.0.1 - dev: true - - /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true - dev: true - - /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - dev: true - - /json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - dev: true - - /json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - dev: true - - /json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - dev: true - - /json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} - hasBin: true - dependencies: - minimist: 1.2.8 - dev: true - - /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - dev: true - - /jsonc-eslint-parser@1.4.1: - resolution: {integrity: sha512-hXBrvsR1rdjmB2kQmUjf1rEIa+TqHBGMge8pwi++C+Si1ad7EjZrJcpgwym+QGK/pqTx+K7keFAtLlVNdLRJOg==} - engines: {node: '>=8.10.0'} - dependencies: - acorn: 7.4.1 - eslint-utils: 2.1.0 - eslint-visitor-keys: 1.3.0 - espree: 6.2.1 - semver: 6.3.0 - dev: true - - /jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - dev: true - - /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} - dependencies: - universalify: 2.0.0 - optionalDependencies: - graceful-fs: 4.2.11 - dev: true - - /jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} - dev: true - - /jsx-ast-utils@3.3.4: - resolution: {integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==} - engines: {node: '>=4.0'} - dependencies: - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - object.assign: 4.1.4 - object.values: 1.1.6 - dev: true - - /kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} - engines: {node: '>=0.10.0'} - dependencies: - is-buffer: 1.1.6 - dev: true - - /kind-of@4.0.0: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} - engines: {node: '>=0.10.0'} - dependencies: - is-buffer: 1.1.6 - dev: true - - /kind-of@5.1.0: - resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} - engines: {node: '>=0.10.0'} - dev: true - - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - dev: true - - /levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} - dependencies: - prelude-ls: 1.2.1 - type-check: 0.4.0 - dev: true - - /lilconfig@2.0.6: - resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} - engines: {node: '>=10'} - dev: true - - /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - dev: true - - /lint-staged@13.1.0: - resolution: {integrity: sha512-pn/sR8IrcF/T0vpWLilih8jmVouMlxqXxKuAojmbiGX5n/gDnz+abdPptlj0vYnbfE0SQNl3CY/HwtM0+yfOVQ==} - engines: {node: ^14.13.1 || >=16.0.0} - hasBin: true - dependencies: - cli-truncate: 3.1.0 - colorette: 2.0.20 - commander: 9.5.0 - debug: 4.3.4 - execa: 6.1.0 - lilconfig: 2.0.6 - listr2: 5.0.8 - micromatch: 4.0.5 - normalize-path: 3.0.0 - object-inspect: 1.12.3 - pidtree: 0.6.0 - string-argv: 0.3.2 - yaml: 2.3.1 - transitivePeerDependencies: - - enquirer - - supports-color - dev: true - - /listr2@5.0.8: - resolution: {integrity: sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==} - engines: {node: ^14.13.1 || >=16.0.0} - peerDependencies: - enquirer: '>= 2.3.0 < 3' - peerDependenciesMeta: - enquirer: - optional: true - dependencies: - cli-truncate: 2.1.0 - colorette: 2.0.20 - log-update: 4.0.0 - p-map: 4.0.0 - rfdc: 1.3.0 - rxjs: 7.8.1 - through: 2.3.8 - wrap-ansi: 7.0.0 - dev: true - - /loader-utils@1.4.2: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} - engines: {node: '>=4.0.0'} - dependencies: - big.js: 5.2.2 - emojis-list: 3.0.0 - json5: 1.0.2 - dev: true - - /local-pkg@0.4.3: - resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} - engines: {node: '>=14'} - dev: true - - /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} - dependencies: - p-locate: 4.1.0 - dev: true - - /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} - dependencies: - p-locate: 5.0.0 - dev: true - - /lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - dev: false - - /lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} - dev: true - - /lodash.isfunction@3.0.9: - resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} - dev: true - - /lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - dev: true - - /lodash.kebabcase@4.1.1: - resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} - dev: true - - /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - dev: true - - /lodash.mergewith@4.6.2: - resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} - dev: true - - /lodash.snakecase@4.1.1: - resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} - dev: true - - /lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - dev: true - - /lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - dev: true - - /lodash.upperfirst@4.3.1: - resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} - dev: true - - /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - - /log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} - dependencies: - ansi-escapes: 4.3.2 - cli-cursor: 3.1.0 - slice-ansi: 4.0.0 - wrap-ansi: 6.2.0 - dev: true - - /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true - dependencies: - js-tokens: 4.0.0 - dev: true - - /lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - dependencies: - tslib: 2.6.0 - dev: true - - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - dependencies: - yallist: 3.1.1 - dev: true - - /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} - dependencies: - yallist: 4.0.0 - dev: true - - /magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} - dependencies: - sourcemap-codec: 1.4.8 - - /magic-string@0.26.7: - resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==} - engines: {node: '>=12'} - dependencies: - sourcemap-codec: 1.4.8 - dev: true - - /magic-string@0.30.1: - resolution: {integrity: sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==} - engines: {node: '>=12'} - dependencies: - '@jridgewell/sourcemap-codec': 1.4.15 - dev: true - - /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - dev: true - - /map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} - dev: true - - /map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} - dev: true - - /map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - dev: true - - /map-visit@1.0.0: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} - engines: {node: '>=0.10.0'} - dependencies: - object-visit: 1.0.1 - dev: true - - /mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - dev: true - - /meow@8.1.2: - resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} - engines: {node: '>=10'} - dependencies: - '@types/minimist': 1.2.2 - camelcase-keys: 6.2.2 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 3.0.3 - read-pkg-up: 7.0.1 - redent: 3.0.0 - trim-newlines: 3.0.1 - type-fest: 0.18.1 - yargs-parser: 20.2.9 - dev: true - - /merge-options@1.0.1: - resolution: {integrity: sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==} - engines: {node: '>=4'} - dependencies: - is-plain-obj: 1.1.0 - dev: true - - /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - dev: true - - /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - dev: true - - /micromatch@3.1.0: - resolution: {integrity: sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==} - engines: {node: '>=0.10.0'} - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - braces: 2.3.2 - define-property: 1.0.0 - extend-shallow: 2.0.1 - extglob: 2.0.4 - fragment-cache: 0.2.1 - kind-of: 5.1.0 - nanomatch: 1.2.13 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} - dependencies: - braces: 3.0.2 - picomatch: 2.3.1 - dev: true - - /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} - dev: false - - /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} - dependencies: - mime-db: 1.52.0 - dev: false - - /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} - dev: true - - /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} - dev: true - - /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - dev: true - - /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - dependencies: - brace-expansion: 1.1.11 - dev: true - - /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} - dependencies: - brace-expansion: 2.0.1 - dev: true - - /minimatch@9.0.2: - resolution: {integrity: sha512-PZOT9g5v2ojiTL7r1xF6plNHLtOeTpSlDI007As2NlA2aYBMfVom17yqa6QzhmDP8QOhn7LjHTg7DFCVSSa6yg==} - engines: {node: '>=16 || 14 >=14.17'} - dependencies: - brace-expansion: 2.0.1 - dev: true - - /minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} - dependencies: - arrify: 1.0.1 - is-plain-obj: 1.1.0 - kind-of: 6.0.3 - dev: true - - /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - dev: true - - /mitt@1.1.2: - resolution: {integrity: sha512-3btxP0O9iGADGWAkteQ8mzDtEspZqu4I32y4GZYCV5BrwtzdcRpF4dQgNdJadCrbBx7Lu6Sq9AVrerMHR0Hkmw==} - dev: true - - /mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} - engines: {node: '>=0.10.0'} - dependencies: - for-in: 1.0.2 - is-extendable: 1.0.1 - dev: true - - /mlly@0.5.17: - resolution: {integrity: sha512-Rn+ai4G+CQXptDFSRNnChEgNr+xAEauYhwRvpPl/UHStTlgkIftplgJRsA2OXPuoUn86K4XAjB26+x5CEvVb6A==} - dependencies: - acorn: 8.9.0 - pathe: 1.1.1 - pkg-types: 1.0.3 - ufo: 1.1.2 - dev: true - - /mlly@1.4.0: - resolution: {integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==} - dependencies: - acorn: 8.9.0 - pathe: 1.1.1 - pkg-types: 1.0.3 - ufo: 1.1.2 - dev: true - - /mrmime@1.0.1: - resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} - engines: {node: '>=10'} - dev: true - - /ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - dev: true - - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - dev: true - - /muggle-string@0.2.2: - resolution: {integrity: sha512-YVE1mIJ4VpUMqZObFndk9CJu6DBJR/GB13p3tXuNbwD4XExaI5EOuRl6BHeIDxIqXZVxSfAC+y6U1Z/IxCfKUg==} - dev: true - - /multimatch@5.0.0: - resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} - engines: {node: '>=10'} - dependencies: - '@types/minimatch': 3.0.5 - array-differ: 3.0.0 - array-union: 2.1.0 - arrify: 2.0.1 - minimatch: 3.1.2 - dev: true - - /naive-ui@2.34.4(vue@3.2.47): - resolution: {integrity: sha512-aPG8PDfhSzIzn/jSC9y3Jb3Pe2wHJ7F0cFV1EWlbImSrZECeUmoc+fIcOSWbizoztkKfaUAeKwYdMl09MKkj1g==} - peerDependencies: - vue: ^3.0.0 - dependencies: - '@css-render/plugin-bem': 0.15.12(css-render@0.15.12) - '@css-render/vue3-ssr': 0.15.12(vue@3.2.47) - '@types/katex': 0.14.0 - '@types/lodash': 4.14.195 - '@types/lodash-es': 4.17.7 - async-validator: 4.2.5 - css-render: 0.15.12 - date-fns: 2.30.0 - date-fns-tz: 1.3.8(date-fns@2.30.0) - evtd: 0.2.4 - highlight.js: 11.8.0 - lodash: 4.17.21 - lodash-es: 4.17.21 - seemly: 0.3.6 - treemate: 0.3.11 - vdirs: 0.1.8(vue@3.2.47) - vooks: 0.2.12(vue@3.2.47) - vue: 3.2.47 - vueuc: 0.4.51(vue@3.2.47) - dev: false - - /nanoid@3.3.6: - resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - /nanomatch@1.2.13: - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} - engines: {node: '>=0.10.0'} - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - define-property: 2.0.2 - extend-shallow: 3.0.2 - fragment-cache: 0.2.1 - is-windows: 1.0.2 - kind-of: 6.0.3 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /natural-compare-lite@1.4.0: - resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} - dev: true - - /natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - dev: true - - /no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - dependencies: - lower-case: 2.0.2 - tslib: 2.6.0 - dev: true - - /node-releases@2.0.12: - resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==} - dev: true - - /normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.2 - semver: 5.7.1 - validate-npm-package-license: 3.0.4 - dev: true - - /normalize-package-data@3.0.3: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: '>=10'} - dependencies: - hosted-git-info: 4.1.0 - is-core-module: 2.12.1 - semver: 7.5.3 - validate-npm-package-license: 3.0.4 - dev: true - - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - - /normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} - dev: true - - /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} - dependencies: - path-key: 3.1.1 - dev: true - - /npm-run-path@5.1.0: - resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - path-key: 4.0.0 - dev: true - - /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} - dependencies: - boolbase: 1.0.0 - dev: true - - /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - dev: true - - /object-copy@0.1.0: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} - engines: {node: '>=0.10.0'} - dependencies: - copy-descriptor: 0.1.1 - define-property: 0.2.5 - kind-of: 3.2.2 - dev: true - - /object-inspect@1.12.3: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} - dev: true - - /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - dev: true - - /object-visit@1.0.1: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} - engines: {node: '>=0.10.0'} - dependencies: - isobject: 3.0.1 - dev: true - - /object.assign@4.1.4: - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - has-symbols: 1.0.3 - object-keys: 1.1.1 - dev: true - - /object.entries@1.1.6: - resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - dev: true - - /object.fromentries@2.0.6: - resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - dev: true - - /object.hasown@1.1.2: - resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} - dependencies: - define-properties: 1.2.0 - es-abstract: 1.21.2 - dev: true - - /object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} - engines: {node: '>=0.10.0'} - dependencies: - isobject: 3.0.1 - dev: true - - /object.values@1.1.6: - resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - dev: true - - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - dependencies: - wrappy: 1.0.2 - dev: true - - /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} - dependencies: - mimic-fn: 2.1.0 - dev: true - - /onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} - dependencies: - mimic-fn: 4.0.0 - dev: true - - /open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} - dependencies: - define-lazy-prop: 2.0.0 - is-docker: 2.2.1 - is-wsl: 2.2.0 - dev: true - - /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} - dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.4.1 - prelude-ls: 1.2.1 - type-check: 0.4.0 - dev: true - - /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} - dependencies: - p-try: 2.2.0 - dev: true - - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - dependencies: - yocto-queue: 0.1.0 - dev: true - - /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} - dependencies: - p-limit: 2.3.0 - dev: true - - /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} - dependencies: - p-limit: 3.1.0 - dev: true - - /p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} - dependencies: - aggregate-error: 3.1.0 - dev: true - - /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} - dev: true - - /param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} - dependencies: - dot-case: 3.0.4 - tslib: 2.6.0 - dev: true - - /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - dependencies: - callsites: 3.1.0 - dev: true - - /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} - dependencies: - '@babel/code-frame': 7.22.5 - error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.1 - lines-and-columns: 1.2.4 - dev: true - - /pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - dependencies: - no-case: 3.0.4 - tslib: 2.6.0 - dev: true - - /pascalcase@0.1.1: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} - engines: {node: '>=0.10.0'} - dev: true - - /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - dev: true - - /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - dev: true - - /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - dev: true - - /path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} - dev: true - - /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - dev: true - - /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - dev: true - - /pathe@0.2.0: - resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==} - dev: true - - /pathe@0.3.9: - resolution: {integrity: sha512-6Y6s0vT112P3jD8dGfuS6r+lpa0qqNrLyHPOwvXMnyNTQaYiwgau2DP3aNDsR13xqtGj7rrPo+jFUATpU6/s+g==} - dev: true - - /pathe@1.1.1: - resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} - dev: true - - /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - - /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - - /pidtree@0.6.0: - resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} - engines: {node: '>=0.10'} - hasBin: true - dev: true - - /pinia-plugin-persistedstate@2.4.0(pinia@2.0.17): - resolution: {integrity: sha512-bQcpv47jk3ISl+InuJWsFaS/K7pRZ97kfoD2WCf/suhnlLy48k3BnFM2tI6YZ1xMsDaPv4yOsaPuPAUuSmEO2Q==} - peerDependencies: - pinia: ^2.0.0 - peerDependenciesMeta: - pinia: - optional: true - dependencies: - pinia: 2.0.17(typescript@5.0.2)(vue@3.2.47) - dev: false - - /pinia@2.0.17(typescript@5.0.2)(vue@3.2.47): - resolution: {integrity: sha512-AtwLwEWQgIjofjgeFT+nxbnK5lT2QwQjaHNEDqpsi2AiCwf/NY78uWTeHUyEhiiJy8+sBmw0ujgQMoQbWiZDfA==} - peerDependencies: - '@vue/composition-api': ^1.4.0 - typescript: '>=4.4.4' - vue: ^2.6.14 || ^3.2.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - typescript: - optional: true - dependencies: - '@vue/devtools-api': 6.5.0 - typescript: 5.0.2 - vue: 3.2.47 - vue-demi: 0.14.5(vue@3.2.47) - dev: false - - /pkg-types@1.0.3: - resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} - dependencies: - jsonc-parser: 3.2.0 - mlly: 1.4.0 - pathe: 1.1.1 - dev: true - - /please-upgrade-node@3.2.0: - resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} - dependencies: - semver-compare: 1.0.0 - dev: true - - /posix-character-classes@0.1.1: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} - engines: {node: '>=0.10.0'} - dev: true - - /postcss-prefix-selector@1.16.0(postcss@5.2.18): - resolution: {integrity: sha512-rdVMIi7Q4B0XbXqNUEI+Z4E+pueiu/CS5E6vRCQommzdQ/sgsS4dK42U7GX8oJR+TJOtT+Qv3GkNo6iijUMp3Q==} - peerDependencies: - postcss: '>4 <9' - dependencies: - postcss: 5.2.18 - dev: true - - /postcss-px-to-viewport@1.1.1: - resolution: {integrity: sha512-2x9oGnBms+e0cYtBJOZdlwrFg/mLR4P1g2IFu7jYKvnqnH/HLhoKyareW2Q/x4sg0BgklHlP1qeWo2oCyPm8FQ==} - dependencies: - object-assign: 4.1.1 - postcss: 8.4.24 - dev: true - - /postcss-selector-parser@6.0.13: - resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} - engines: {node: '>=4'} - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - dev: true - - /postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - dev: true - - /postcss@5.2.18: - resolution: {integrity: sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==} - engines: {node: '>=0.12'} - dependencies: - chalk: 1.1.3 - js-base64: 2.6.4 - source-map: 0.5.7 - supports-color: 3.2.3 - dev: true - - /postcss@8.4.24: - resolution: {integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==} - engines: {node: ^10 || ^12 || >=14} - dependencies: - nanoid: 3.3.6 - picocolors: 1.0.0 - source-map-js: 1.0.2 - - /posthtml-parser@0.2.1: - resolution: {integrity: sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==} - dependencies: - htmlparser2: 3.10.1 - isobject: 2.1.0 - dev: true - - /posthtml-rename-id@1.0.12: - resolution: {integrity: sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==} - dependencies: - escape-string-regexp: 1.0.5 - dev: true - - /posthtml-render@1.4.0: - resolution: {integrity: sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==} - engines: {node: '>=10'} - dev: true - - /posthtml-svg-mode@1.0.3: - resolution: {integrity: sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==} - dependencies: - merge-options: 1.0.1 - posthtml: 0.9.2 - posthtml-parser: 0.2.1 - posthtml-render: 1.4.0 - dev: true - - /posthtml@0.9.2: - resolution: {integrity: sha512-spBB5sgC4cv2YcW03f/IAUN1pgDJWNWD8FzkyY4mArLUMJW+KlQhlmUdKAHQuPfb00Jl5xIfImeOsf6YL8QK7Q==} - engines: {node: '>=0.10.0'} - dependencies: - posthtml-parser: 0.2.1 - posthtml-render: 1.4.0 - dev: true - - /prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} - dev: true - - /prettier-linter-helpers@1.0.0: - resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} - engines: {node: '>=6.0.0'} - dependencies: - fast-diff: 1.3.0 - dev: true - - /prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - dev: true - - /print-js@1.6.0: - resolution: {integrity: sha512-BfnOIzSKbqGRtO4o0rnj/K3681BSd2QUrsIZy/+WdCIugjIswjmx3lDEZpXB2ruGf9d4b3YNINri81+J0FsBWg==} - dev: false - - /prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - react-is: 16.13.1 - dev: true - - /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - dev: false - - /punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} - engines: {node: '>=6'} - dev: true - - /q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - dev: true - - /qrcode.vue@3.3.4(vue@3.2.47): - resolution: {integrity: sha512-ZVPmKZUUqM/wZ19mIhecFJs7mO6KXFiZZmBZyU6wiB2aXZfYc/VpolXakQcKw/9aGFEmSHHVKfgNwyxtw/Q2Sw==} - peerDependencies: - vue: ^3.0.0 - dependencies: - vue: 3.2.47 - dev: false - - /query-ast@1.0.5: - resolution: {integrity: sha512-JK+1ma4YDuLjvKKcz9JZ70G+CM9qEOs/l1cZzstMMfwKUabTJ9sud5jvDGrUNuv03yKUgs82bLkHXJkDyhRmBw==} - dependencies: - invariant: 2.2.4 - lodash: 4.17.21 - dev: true - - /query-string@4.3.4: - resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==} - engines: {node: '>=0.10.0'} - dependencies: - object-assign: 4.1.1 - strict-uri-encode: 1.1.0 - dev: true - - /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - dev: true - - /quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} - dev: true - - /react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - dev: true - - /read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} - dependencies: - find-up: 4.1.0 - read-pkg: 5.2.0 - type-fest: 0.8.1 - dev: true - - /read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} - dependencies: - '@types/normalize-package-data': 2.4.1 - normalize-package-data: 2.5.0 - parse-json: 5.2.0 - type-fest: 0.6.0 - dev: true - - /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} - dependencies: - inherits: 2.0.4 - string_decoder: 1.3.0 - util-deprecate: 1.0.2 - dev: true - - /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} - dependencies: - picomatch: 2.3.1 - - /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} - dependencies: - indent-string: 4.0.0 - strip-indent: 3.0.0 - dev: true - - /regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} - dev: false - - /regex-not@1.0.2: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: 3.0.2 - safe-regex: 1.1.0 - dev: true - - /regexp.prototype.flags@1.5.0: - resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 - dev: true - - /regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} - dev: true - - /repeat-element@1.1.4: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} - engines: {node: '>=0.10.0'} - dev: true - - /repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: '>=0.10'} - dev: true - - /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - dev: true - - /require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} - dev: true - - /require-package-name@2.0.1: - resolution: {integrity: sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==} - dev: true - - /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - dev: true - - /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - dev: true - - /resolve-global@1.0.0: - resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} - engines: {node: '>=8'} - dependencies: - global-dirs: 0.1.1 - dev: true - - /resolve-url@0.2.1: - resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} - deprecated: https://github.com/lydell/resolve-url#deprecated - dev: true - - /resolve@1.22.2: - resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} - hasBin: true - dependencies: - is-core-module: 2.12.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - dev: true - - /resolve@2.0.0-next.4: - resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} - hasBin: true - dependencies: - is-core-module: 2.12.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - dev: true - - /restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} - dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 - dev: true - - /ret@0.1.15: - resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} - engines: {node: '>=0.12'} - dev: true - - /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - dev: true - - /rfdc@1.3.0: - resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} - dev: true - - /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true - dependencies: - glob: 7.2.3 - dev: true - - /rollup-plugin-visualizer@5.8.3: - resolution: {integrity: sha512-QGJk4Bqe4AOat5AjipOh8esZH1nck5X2KFpf4VytUdSUuuuSwvIQZjMGgjcxe/zXexltqaXp5Vx1V3LmnQH15Q==} - engines: {node: '>=14'} - hasBin: true - peerDependencies: - rollup: 2.x || 3.x - peerDependenciesMeta: - rollup: - optional: true - dependencies: - open: 8.4.2 - source-map: 0.7.4 - yargs: 17.7.2 - dev: true - - /rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /rollup@3.26.0: - resolution: {integrity: sha512-YzJH0eunH2hr3knvF3i6IkLO/jTjAEwU4HoMUbQl4//Tnl3ou0e7P5SjxdDr8HQJdeUJShlbEHXrrnEHy1l7Yg==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - dependencies: - queue-microtask: 1.2.3 - dev: true - - /rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} - dependencies: - tslib: 2.6.0 - dev: true - - /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - dev: true - - /safe-regex-test@1.0.0: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - is-regex: 1.1.4 - dev: true - - /safe-regex@1.1.0: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} - dependencies: - ret: 0.1.15 - dev: true - - /sass@1.63.6: - resolution: {integrity: sha512-MJuxGMHzaOW7ipp+1KdELtqKbfAWbH7OLIdoSMnVe3EXPMTmxTmlaZDCTsgIpPCs3w99lLo9/zDKkOrJuT5byw==} - engines: {node: '>=14.0.0'} - hasBin: true - dependencies: - chokidar: 3.5.3 - immutable: 4.3.0 - source-map-js: 1.0.2 - - /screenfull@6.0.2: - resolution: {integrity: sha512-AQdy8s4WhNvUZ6P8F6PB21tSPIYKniic+Ogx0AacBMjKP1GUHN2E9URxQHtCusiwxudnCKkdy4GrHXPPJSkCCw==} - engines: {node: ^14.13.1 || >=16.0.0} - dev: false - - /scss-parser@1.0.6: - resolution: {integrity: sha512-SH3TaoaJFzfAtqs3eG1j5IuHJkeEW5rKUPIjIN+ZorLAyJLHItQGnsgwHk76v25GtLtpT9IqfAcqK4vFWdiw+w==} - engines: {node: '>=6.0.0'} - dependencies: - invariant: 2.2.4 - lodash: 4.17.21 - dev: true - - /scule@0.3.2: - resolution: {integrity: sha512-zIvPdjOH8fv8CgrPT5eqtxHQXmPNnV/vHJYffZhE43KZkvULvpCTvOt1HPlFaCZx287INL9qaqrZg34e8NgI4g==} - dev: true - - /seemly@0.3.6: - resolution: {integrity: sha512-lEV5VB8BUKTo/AfktXJcy+JeXns26ylbMkIUco8CYREsQijuz4mrXres2Q+vMLdwkuLxJdIPQ8IlCIxLYm71Yw==} - dev: false - - /select@1.1.2: - resolution: {integrity: sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==} - dev: false - - /semver-compare@1.0.0: - resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} - dev: true - - /semver@5.7.1: - resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} - hasBin: true - dev: true - - /semver@6.3.0: - resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} - hasBin: true - dev: true - - /semver@7.5.2: - resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - - /semver@7.5.3: - resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - - /set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: 2.0.1 - is-extendable: 0.1.1 - is-plain-object: 2.0.4 - split-string: 3.1.0 - dev: true - - /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} - dependencies: - shebang-regex: 3.0.0 - dev: true - - /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - dev: true - - /side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} - dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - object-inspect: 1.12.3 - dev: true - - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - dev: true - - /sirv@2.0.3: - resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==} - engines: {node: '>= 10'} - dependencies: - '@polka/url': 1.0.0-next.21 - mrmime: 1.0.1 - totalist: 3.0.1 - dev: true - - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - dev: true - - /slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} - dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 - dev: true - - /slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} - dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 - dev: true - - /slice-ansi@5.0.0: - resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} - engines: {node: '>=12'} - dependencies: - ansi-styles: 6.2.1 - is-fullwidth-code-point: 4.0.0 - dev: true - - /snapdragon-node@2.1.1: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} - engines: {node: '>=0.10.0'} - dependencies: - define-property: 1.0.0 - isobject: 3.0.1 - snapdragon-util: 3.0.1 - dev: true - - /snapdragon-util@3.0.1: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 3.2.2 - dev: true - - /snapdragon@0.8.2: - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} - engines: {node: '>=0.10.0'} - dependencies: - base: 0.11.2 - debug: 2.6.9 - define-property: 0.2.5 - extend-shallow: 2.0.1 - map-cache: 0.2.2 - source-map: 0.5.7 - source-map-resolve: 0.5.3 - use: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /sortablejs@1.14.0: - resolution: {integrity: sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==} - dev: false - - /source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} - - /source-map-resolve@0.5.3: - resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated - dependencies: - atob: 2.1.2 - decode-uri-component: 0.2.2 - resolve-url: 0.2.1 - source-map-url: 0.4.1 - urix: 0.1.0 - dev: true - - /source-map-url@0.4.1: - resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} - deprecated: See https://github.com/lydell/source-map-url#deprecated - dev: true - - /source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} - dev: true - - /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - - /source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - dev: true - - /sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead - - /spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.13 - dev: true - - /spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} - dev: true - - /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.13 - dev: true - - /spdx-license-ids@3.0.13: - resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} - dev: true - - /split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} - engines: {node: '>=0.10.0'} - dependencies: - extend-shallow: 3.0.2 - dev: true - - /split2@3.2.2: - resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} - dependencies: - readable-stream: 3.6.2 - dev: true - - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - dev: true - - /ssf@0.11.2: - resolution: {integrity: sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==} - engines: {node: '>=0.8'} - dependencies: - frac: 1.1.2 - dev: false - - /stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - dev: true - - /static-extend@0.1.2: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} - engines: {node: '>=0.10.0'} - dependencies: - define-property: 0.2.5 - object-copy: 0.1.0 - dev: true - - /strict-uri-encode@1.1.0: - resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==} - engines: {node: '>=0.10.0'} - dev: true - - /string-argv@0.3.2: - resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} - engines: {node: '>=0.6.19'} - dev: true - - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} - dependencies: - emoji-regex: 8.0.0 - is-fullwidth-code-point: 3.0.0 - strip-ansi: 6.0.1 - dev: true - - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} - dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.1.0 - dev: true - - /string.prototype.matchall@4.0.8: - resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - get-intrinsic: 1.2.1 - has-symbols: 1.0.3 - internal-slot: 1.0.5 - regexp.prototype.flags: 1.5.0 - side-channel: 1.0.4 - dev: true - - /string.prototype.trim@1.2.7: - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - dev: true - - /string.prototype.trimend@1.0.6: - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - dev: true - - /string.prototype.trimstart@1.0.6: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.2 - dev: true - - /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} - dependencies: - safe-buffer: 5.2.1 - dev: true - - /strip-ansi@3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} - engines: {node: '>=0.10.0'} - dependencies: - ansi-regex: 2.1.1 - dev: true - - /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} - dependencies: - ansi-regex: 5.0.1 - dev: true - - /strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} - dependencies: - ansi-regex: 6.0.1 - dev: true - - /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - dev: true - - /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} - dev: true - - /strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} - dev: true - - /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} - dependencies: - min-indent: 1.0.1 - dev: true - - /strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - dev: true - - /strip-literal@0.4.2: - resolution: {integrity: sha512-pv48ybn4iE1O9RLgCAN0iU4Xv7RlBTiit6DKmMiErbs9x1wH6vXBs45tWc0H5wUIF6TLTrKweqkmYF/iraQKNw==} - dependencies: - acorn: 8.9.0 - dev: true - - /supports-color@2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} - engines: {node: '>=0.8.0'} - dev: true - - /supports-color@3.2.3: - resolution: {integrity: sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==} - engines: {node: '>=0.8.0'} - dependencies: - has-flag: 1.0.0 - dev: true - - /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - dependencies: - has-flag: 3.0.0 - dev: true - - /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - dependencies: - has-flag: 4.0.0 - dev: true - - /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - dev: true - - /svg-baker-runtime@1.4.7: - resolution: {integrity: sha512-Zorfwwj5+lWjk/oxwSMsRdS2sPQQdTmmsvaSpzU+i9ZWi3zugHLt6VckWfnswphQP0LmOel3nggpF5nETbt6xw==} - dependencies: - deepmerge: 1.3.2 - mitt: 1.1.2 - svg-baker: 1.7.0 - transitivePeerDependencies: - - supports-color - dev: true - - /svg-baker@1.7.0: - resolution: {integrity: sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==} - dependencies: - bluebird: 3.7.2 - clone: 2.1.2 - he: 1.2.0 - image-size: 0.5.5 - loader-utils: 1.4.2 - merge-options: 1.0.1 - micromatch: 3.1.0 - postcss: 5.2.18 - postcss-prefix-selector: 1.16.0(postcss@5.2.18) - posthtml-rename-id: 1.0.12 - posthtml-svg-mode: 1.0.3 - query-string: 4.3.4 - traverse: 0.6.7 - transitivePeerDependencies: - - supports-color - dev: true - - /svg-sprite-loader@6.0.11: - resolution: {integrity: sha512-TedsTf8wsHH6HgdwKjUveDZRC6q5gPloYV8A8/zZaRWP929J7x6TzQ6MvZFl+YYDJuJ0Akyuu/vNVJ+fbPuYXg==} - engines: {node: '>=6'} - dependencies: - bluebird: 3.7.2 - deepmerge: 1.3.2 - domready: 1.0.8 - escape-string-regexp: 1.0.5 - loader-utils: 1.4.2 - svg-baker: 1.7.0 - svg-baker-runtime: 1.4.7 - url-slug: 2.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /svg-tags@1.0.0: - resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} - dev: true - - /svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} - hasBin: true - dependencies: - '@trysound/sax': 0.2.0 - commander: 7.2.0 - css-select: 4.3.0 - css-tree: 1.1.3 - csso: 4.2.0 - picocolors: 1.0.0 - stable: 0.1.8 - dev: true - - /text-extensions@1.9.0: - resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} - engines: {node: '>=0.10'} - dev: true - - /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - dev: true - - /through2@4.0.2: - resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} - dependencies: - readable-stream: 3.6.2 - dev: true - - /through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - dev: true - - /tiny-emitter@2.1.0: - resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==} - dev: false - - /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - - /to-object-path@0.3.0: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} - engines: {node: '>=0.10.0'} - dependencies: - kind-of: 3.2.2 - dev: true - - /to-regex-range@2.1.1: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} - engines: {node: '>=0.10.0'} - dependencies: - is-number: 3.0.0 - repeat-string: 1.6.1 - dev: true - - /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} - dependencies: - is-number: 7.0.0 - - /to-regex@3.0.2: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} - engines: {node: '>=0.10.0'} - dependencies: - define-property: 2.0.2 - extend-shallow: 3.0.2 - regex-not: 1.0.2 - safe-regex: 1.1.0 - dev: true - - /totalist@3.0.1: - resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} - engines: {node: '>=6'} - dev: true - - /traverse@0.6.7: - resolution: {integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==} - dev: true - - /treemate@0.3.11: - resolution: {integrity: sha512-M8RGFoKtZ8dF+iwJfAJTOH/SM4KluKOKRJpjCMhI8bG3qB74zrFoArKZ62ll0Fr3mqkMJiQOmWYkdYgDeITYQg==} - dev: false - - /trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} - dev: true - - /ts-node@10.9.1(@types/node@20.3.3)(typescript@5.0.2): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.9 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 20.3.3 - acorn: 8.9.0 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 5.0.2 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - dev: true - - /tsconfig-paths@3.14.2: - resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} - dependencies: - '@types/json5': 0.0.29 - json5: 1.0.2 - minimist: 1.2.8 - strip-bom: 3.0.0 - dev: true - - /tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - dev: true - - /tslib@2.3.0: - resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==} - dev: false - - /tslib@2.6.0: - resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==} - dev: true - - /tsutils@3.21.0(typescript@5.0.2): - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - dependencies: - tslib: 1.14.1 - typescript: 5.0.2 - dev: true - - /type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} - dependencies: - prelude-ls: 1.2.1 - dev: true - - /type-fest@0.18.1: - resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} - engines: {node: '>=10'} - dev: true - - /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - dev: true - - /type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} - dev: true - - /type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} - dev: true - - /type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} - dev: true - - /typed-array-length@1.0.4: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} - dependencies: - call-bind: 1.0.2 - for-each: 0.3.3 - is-typed-array: 1.1.10 - dev: true - - /typescript@5.0.2: - resolution: {integrity: sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==} - engines: {node: '>=12.20'} - hasBin: true - - /ufo@1.1.2: - resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==} - dev: true - - /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} - dependencies: - call-bind: 1.0.2 - has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 - dev: true - - /unidecode@0.1.8: - resolution: {integrity: sha512-SdoZNxCWpN2tXTCrGkPF/0rL2HEq+i2gwRG1ReBvx8/0yTzC3enHfugOf8A9JBShVwwrRIkLX0YcDUGbzjbVCA==} - engines: {node: '>= 0.4.12'} - dev: true - - /unimport@0.6.8: - resolution: {integrity: sha512-MWkaPYvN0j+6jfEuiVFhfmy+aOtgAP11CozSbu/I3Cx+8ybjXIueB7GVlKofHabtjzSlPeAvWKJSFjHWsG2JaA==} - dependencies: - '@rollup/pluginutils': 4.2.1 - escape-string-regexp: 5.0.0 - fast-glob: 3.3.0 - local-pkg: 0.4.3 - magic-string: 0.26.7 - mlly: 0.5.17 - pathe: 0.3.9 - scule: 0.3.2 - strip-literal: 0.4.2 - unplugin: 0.9.6 - dev: true - - /union-value@1.0.1: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} - engines: {node: '>=0.10.0'} - dependencies: - arr-union: 3.1.0 - get-value: 2.0.6 - is-extendable: 0.1.1 - set-value: 2.0.1 - dev: true - - /universalify@2.0.0: - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} - engines: {node: '>= 10.0.0'} - dev: true - - /unplugin-auto-import@0.11.0(@vueuse/core@9.1.0)(vite@4.3.9): - resolution: {integrity: sha512-uIGNwIiuf6vdgGExvfVgaYKpRjeUZDNmCEvRvAwlwsOfiSiIkmQIq2TSPKcHGcP5OBD3k+PAP28qIs7m2ozzzg==} - engines: {node: '>=14'} - peerDependencies: - '@vueuse/core': '*' - peerDependenciesMeta: - '@vueuse/core': - optional: true - dependencies: - '@antfu/utils': 0.5.2 - '@rollup/pluginutils': 4.2.1 - '@vueuse/core': 9.1.0(vue@3.2.47) - local-pkg: 0.4.3 - magic-string: 0.26.7 - unimport: 0.6.8 - unplugin: 0.8.1(vite@4.3.9) - transitivePeerDependencies: - - esbuild - - rollup - - vite - - webpack - dev: true - - /unplugin-vue-components@0.22.0(vite@4.3.9)(vue@3.2.47): - resolution: {integrity: sha512-MpGcrnHgFLUK94Jf46UuiMOPQ4hVAijriR6bPbCGSBygiEDJbPXqy2C1d1k6PkixESFacKkipeuPhme+8F7gHQ==} - engines: {node: '>=14'} - peerDependencies: - '@babel/parser': ^7.15.8 - vue: 2 || 3 - peerDependenciesMeta: - '@babel/parser': - optional: true - dependencies: - '@antfu/utils': 0.5.2 - '@rollup/pluginutils': 4.2.1 - chokidar: 3.5.3 - debug: 4.3.4 - fast-glob: 3.3.0 - local-pkg: 0.4.3 - magic-string: 0.26.7 - minimatch: 5.1.6 - resolve: 1.22.2 - unplugin: 0.8.1(vite@4.3.9) - vue: 3.2.47 - transitivePeerDependencies: - - esbuild - - rollup - - supports-color - - vite - - webpack - dev: true - - /unplugin@0.8.1(vite@4.3.9): - resolution: {integrity: sha512-o7rUZoPLG1fH4LKinWgb77gDtTE6mw/iry0Pq0Z5UPvZ9+HZ1/4+7fic7t58s8/CGkPrDpGq+RltO+DmswcR4g==} - peerDependencies: - esbuild: '>=0.13' - rollup: ^2.50.0 - vite: ^2.3.0 || ^3.0.0-0 - webpack: 4 || 5 - peerDependenciesMeta: - esbuild: - optional: true - rollup: - optional: true - vite: - optional: true - webpack: - optional: true - dependencies: - acorn: 8.9.0 - chokidar: 3.5.3 - vite: 4.3.9(@types/node@20.3.3)(sass@1.63.6) - webpack-sources: 3.2.3 - webpack-virtual-modules: 0.4.6 - dev: true - - /unplugin@0.9.6: - resolution: {integrity: sha512-YYLtfoNiie/lxswy1GOsKXgnLJTE27la/PeCGznSItk+8METYZErO+zzV9KQ/hXhPwzIJsfJ4s0m1Rl7ZCWZ4Q==} - dependencies: - acorn: 8.9.0 - chokidar: 3.5.3 - webpack-sources: 3.2.3 - webpack-virtual-modules: 0.4.6 - dev: true - - /unset-value@1.0.0: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} - engines: {node: '>=0.10.0'} - dependencies: - has-value: 0.3.1 - isobject: 3.0.1 - dev: true - - /update-browserslist-db@1.0.11(browserslist@4.21.9): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - dependencies: - browserslist: 4.21.9 - escalade: 3.1.1 - picocolors: 1.0.0 - dev: true - - /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - dependencies: - punycode: 2.3.0 - dev: true - - /urix@0.1.0: - resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} - deprecated: Please see https://github.com/lydell/urix#deprecated - dev: true - - /url-slug@2.0.0: - resolution: {integrity: sha512-aiNmSsVgrjCiJ2+KWPferjT46YFKoE8i0YX04BlMVDue022Xwhg/zYlnZ6V9/mP3p8Wj7LEp0myiTkC/p6sxew==} - dependencies: - unidecode: 0.1.8 - dev: true - - /use@3.1.1: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} - engines: {node: '>=0.10.0'} - dev: true - - /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - dev: true - - /v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - dev: true - - /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 - dev: true - - /vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} - dev: true - - /vdirs@0.1.8(vue@3.2.47): - resolution: {integrity: sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==} - peerDependencies: - vue: ^3.0.11 - dependencies: - evtd: 0.2.4 - vue: 3.2.47 - dev: false - - /vite-plugin-compression@0.5.1(vite@4.3.9): - resolution: {integrity: sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==} - peerDependencies: - vite: '>=2.0.0' - dependencies: - chalk: 4.1.2 - debug: 4.3.4 - fs-extra: 10.1.0 - vite: 4.3.9(@types/node@20.3.3)(sass@1.63.6) - transitivePeerDependencies: - - supports-color - dev: true - - /vite-plugin-ejs@1.6.4: - resolution: {integrity: sha512-23p1RS4PiA0veXY5/gHZ60pl3pPvd8NEqdBsDgxNK8nM1rjFFDcVb0paNmuipzCgNP/Y0f/Id22M7Il4kvZ2jA==} - dependencies: - ejs: 3.1.9 - dev: true - - /vite-plugin-eslint@1.8.1(eslint@8.44.0)(vite@4.3.9): - resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==} - peerDependencies: - eslint: '>=7' - vite: '>=2' - dependencies: - '@rollup/pluginutils': 4.2.1 - '@types/eslint': 8.40.2 - eslint: 8.44.0 - rollup: 2.79.1 - vite: 4.3.9(@types/node@20.3.3)(sass@1.63.6) - dev: true - - /vite-plugin-imp@2.3.1(vite@4.3.9): - resolution: {integrity: sha512-Lp0FZBIIfXq/PyTRh+5e5tqgS6vJZewAx/fodgf/Z1Pk1jQzMiKw5gRn0xXqDEbm7A7avz6X1Le01Mp/LYMtoQ==} - peerDependencies: - vite: '>= 2.0.0-beta.5' - dependencies: - '@babel/core': 7.20.2 - '@babel/generator': 7.22.5 - '@babel/parser': 7.22.6 - '@babel/traverse': 7.22.6 - chalk: 4.1.2 - param-case: 3.0.4 - pascal-case: 3.1.2 - vite: 4.3.9(@types/node@20.3.3)(sass@1.63.6) - transitivePeerDependencies: - - supports-color - dev: true - - /vite-plugin-inspect@0.7.26(vite@4.3.9): - resolution: {integrity: sha512-gRjBay+OxLr/Dr+HXlfJVXZH0cqhE5hkkBvo2du2cA1LGUBnV8Aym89AdPrURkSpTk3Rvw9dNWM2VLIuw6RKJg==} - engines: {node: '>=14'} - peerDependencies: - vite: ^3.1.0 || ^4.0.0 - dependencies: - '@antfu/utils': 0.7.5 - '@rollup/pluginutils': 5.0.2 - debug: 4.3.4 - fs-extra: 11.1.1 - picocolors: 1.0.0 - sirv: 2.0.3 - vite: 4.3.9(@types/node@20.3.3)(sass@1.63.6) - transitivePeerDependencies: - - rollup - - supports-color - dev: true - - /vite-plugin-svg-icons@2.0.1(vite@4.3.9): - resolution: {integrity: sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==} - peerDependencies: - vite: '>=2.0.0' - dependencies: - '@types/svgo': 2.6.4 - cors: 2.8.5 - debug: 4.3.4 - etag: 1.8.1 - fs-extra: 10.1.0 - pathe: 0.2.0 - svg-baker: 1.7.0 - svgo: 2.8.0 - vite: 4.3.9(@types/node@20.3.3)(sass@1.63.6) - transitivePeerDependencies: - - supports-color - dev: true - - /vite-svg-loader@3.4.0: - resolution: {integrity: sha512-xD3yb1FX+f4l9/TmsYIqyki8ncpcVsZ2gEJFh/wLuNNqt55C8OJ+JlcMWOA/Z9gRA+ylV/TA1wmJLxzZkCRqlA==} - dependencies: - '@vue/compiler-sfc': 3.3.4 - svgo: 2.8.0 - dev: true - - /vite@4.3.9(@types/node@20.3.3)(sass@1.63.6): - resolution: {integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - '@types/node': 20.3.3 - esbuild: 0.17.19 - postcss: 8.4.24 - rollup: 3.26.0 - sass: 1.63.6 - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /vooks@0.2.12(vue@3.2.47): - resolution: {integrity: sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==} - peerDependencies: - vue: ^3.0.0 - dependencies: - evtd: 0.2.4 - vue: 3.2.47 - dev: false - - /vue-demi@0.14.5(vue@3.2.47): - resolution: {integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - peerDependencies: - '@vue/composition-api': ^1.0.0-rc.1 - vue: ^3.0.0-0 || ^2.6.0 - peerDependenciesMeta: - '@vue/composition-api': - optional: true - dependencies: - vue: 3.2.47 - - /vue-eslint-parser@9.3.1(eslint@8.44.0): - resolution: {integrity: sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g==} - engines: {node: ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '>=6.0.0' - dependencies: - debug: 4.3.4 - eslint: 8.44.0 - eslint-scope: 7.2.0 - eslint-visitor-keys: 3.4.1 - espree: 9.6.0 - esquery: 1.5.0 - lodash: 4.17.21 - semver: 7.5.3 - transitivePeerDependencies: - - supports-color - dev: true - - /vue-i18n@9.2.2(vue@3.2.47): - resolution: {integrity: sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ==} - engines: {node: '>= 14'} - peerDependencies: - vue: ^3.0.0 - dependencies: - '@intlify/core-base': 9.2.2 - '@intlify/shared': 9.2.2 - '@intlify/vue-devtools': 9.2.2 - '@vue/devtools-api': 6.5.0 - vue: 3.2.47 - - /vue-router@4.1.3(vue@3.2.47): - resolution: {integrity: sha512-XvK81bcYglKiayT7/vYAg/f36ExPC4t90R/HIpzrZ5x+17BOWptXLCrEPufGgZeuq68ww4ekSIMBZY1qdUdfjA==} - peerDependencies: - vue: ^3.2.0 - dependencies: - '@vue/devtools-api': 6.5.0 - vue: 3.2.47 - dev: false - - /vue-template-compiler@2.7.14: - resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==} - dependencies: - de-indent: 1.0.2 - he: 1.2.0 - dev: true - - /vue-tsc@1.4.2(typescript@5.0.2): - resolution: {integrity: sha512-8VFjVekJuFtFG+N4rEimoR0OvNubhoTIMl2dlvbpyAD40LVPR1PN2SUc2qZPnWGGRsXZAVmFgiBHX0RB20HGyA==} - hasBin: true - peerDependencies: - typescript: '*' - dependencies: - '@volar/vue-language-core': 1.4.2 - '@volar/vue-typescript': 1.4.2(typescript@5.0.2) - semver: 7.5.3 - typescript: 5.0.2 - dev: true - - /vue@3.2.47: - resolution: {integrity: sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ==} - dependencies: - '@vue/compiler-dom': 3.2.47 - '@vue/compiler-sfc': 3.2.47 - '@vue/runtime-dom': 3.2.47 - '@vue/server-renderer': 3.2.47(vue@3.2.47) - '@vue/shared': 3.2.47 - - /vuedraggable@4.1.0(vue@3.2.47): - resolution: {integrity: sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==} - peerDependencies: - vue: ^3.0.1 - dependencies: - sortablejs: 1.14.0 - vue: 3.2.47 - dev: false - - /vueuc@0.4.51(vue@3.2.47): - resolution: {integrity: sha512-pLiMChM4f+W8czlIClGvGBYo656lc2Y0/mXFSCydcSmnCR1izlKPGMgiYBGjbY9FDkFG8a2HEVz7t0DNzBWbDw==} - peerDependencies: - vue: ^3.0.11 - dependencies: - '@css-render/vue3-ssr': 0.15.12(vue@3.2.47) - '@juggle/resize-observer': 3.4.0 - css-render: 0.15.12 - evtd: 0.2.4 - seemly: 0.3.6 - vdirs: 0.1.8(vue@3.2.47) - vooks: 0.2.12(vue@3.2.47) - vue: 3.2.47 - dev: false - - /webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} - dev: true - - /webpack-virtual-modules@0.4.6: - resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} - dev: true - - /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 - dev: true - - /which-typed-array@1.1.9: - resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} - engines: {node: '>= 0.4'} - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - is-typed-array: 1.1.10 - dev: true - - /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true - dependencies: - isexe: 2.0.0 - dev: true - - /wmf@1.0.2: - resolution: {integrity: sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==} - engines: {node: '>=0.8'} - dev: false - - /word@0.3.0: - resolution: {integrity: sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==} - engines: {node: '>=0.8'} - dev: false - - /wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - dev: true - - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - dev: true - - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - dev: true - - /xlsx@0.18.5: - resolution: {integrity: sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==} - engines: {node: '>=0.8'} - hasBin: true - dependencies: - adler-32: 1.3.1 - cfb: 1.2.2 - codepage: 1.15.0 - crc-32: 1.2.2 - ssf: 0.11.2 - wmf: 1.0.2 - word: 0.3.0 - dev: false - - /xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - dev: true - - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - dev: true - - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - dev: true - - /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - dev: true - - /yaml-eslint-parser@0.3.2: - resolution: {integrity: sha512-32kYO6kJUuZzqte82t4M/gB6/+11WAuHiEnK7FreMo20xsCKPeFH5tDBU7iWxR7zeJpNnMXfJyXwne48D0hGrg==} - dependencies: - eslint-visitor-keys: 1.3.0 - lodash: 4.17.21 - yaml: 1.10.2 - dev: true - - /yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} - dev: true - - /yaml@2.3.1: - resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} - engines: {node: '>= 14'} - dev: true - - /yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} - dev: true - - /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} - dev: true - - /yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} - dependencies: - cliui: 7.0.4 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 20.2.9 - dev: true - - /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} - dependencies: - cliui: 8.0.1 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 - dev: true - - /yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} - dev: true - - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - dev: true - - /zrender@5.4.0: - resolution: {integrity: sha512-rOS09Z2HSVGFs2dn/TuYk5BlCaZcVe8UDLLjj1ySYF828LATKKdxuakSZMvrDz54yiKPDYVfjdKqcX8Jky3BIA==} - dependencies: - tslib: 2.3.0 - dev: false diff --git a/postcss.config.cjs b/postcss.config.cjs deleted file mode 100644 index 320ef306..00000000 --- a/postcss.config.cjs +++ /dev/null @@ -1,31 +0,0 @@ -module.exports = { - plugins: { - autoprefixer: { - overrideBrowserslist: [ - 'Android 4.1', - 'iOS 7.1', - 'Chrome > 31', - 'ff > 31', - 'ie >= 8', - 'last 10 versions', - ], - grid: true, - }, - // 'postcss-px-to-viewport': { - // /** 视窗的宽度(设计稿的宽度) */ - // viewportWidth: 1920, - // /** 视窗的高度(设计稿高度, 一般无需指定) */ - // viewportHeight: 1080, - // /** 指定 px 转换为视窗单位值的小数位数 */ - // unitPrecision: 3, - // /** 指定需要转换成的视窗单位 */ - // viewportUnit: 'vw', - // /** 指定不转换为视窗单位的类 */ - // selectorBlackList: ['.ignore'], - // /** 小于或等于 1px 不转换为视窗单位 */ - // minPixelValue: 1, - // /** 允许在媒体查询中转换 px */ - // mediaQuery: false, - // }, - }, -} diff --git a/public/ray.svg b/public/ray.svg deleted file mode 100644 index daaef75a..00000000 --- a/public/ray.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/App.tsx b/src/App.tsx deleted file mode 100644 index bc602e83..00000000 --- a/src/App.tsx +++ /dev/null @@ -1,105 +0,0 @@ -import RayGlobalProvider from '@/components/RayGlobalProvider/index' -import { RouterView } from 'vue-router' -import GlobalSpin from '@/spin/index' -import LockScreen from '@/components/AppComponents/AppLockScreen/index' - -import { getStorage } from '@/utils/cache' -import { get } from 'lodash-es' -import { useSetting } from '@/store' -import { addClass, removeClass, addStyle, colorToRgba } from '@/utils/element' - -import type { SettingState } from '@/store/modules/setting/type' - -const App = defineComponent({ - name: 'App', - setup() { - const settingStore = useSetting() - - const { themeValue } = storeToRefs(settingStore) - - /** 同步主题色变量至 body, 如果未获取到缓存值则已默认值填充 */ - const syncPrimaryColorToBody = () => { - const { - appPrimaryColor: { primaryColor, primaryFadeColor }, - } = __APP_CFG__ // 默认主题色 - const body = document.body - - const primaryColorOverride = getStorage( - 'piniaSettingStore', - 'localStorage', - ) - - if (primaryColorOverride) { - const _p = get( - primaryColorOverride, - 'primaryColorOverride.common.primaryColor', - primaryColor, - ) - const _fp = colorToRgba(_p, 0.3) - - /** 设置全局主题色 css 变量 */ - body.style.setProperty('--ray-theme-primary-color', _p) - body.style.setProperty( - '--ray-theme-primary-fade-color', - _fp || primaryFadeColor, - ) - } - } - - /** 隐藏加载动画 */ - const hiddenLoadingAnimation = () => { - /** pre-loading-animation 是默认 id */ - const el = document.getElementById('pre-loading-animation') - - if (el) { - addStyle(el, { - display: 'none', - }) - } - } - - syncPrimaryColorToBody() - hiddenLoadingAnimation() - - /** 切换主题时, 同步更新 body class 以便于进行自定义 css 配置 */ - watch( - () => themeValue.value, - (newData) => { - /** - * - * 初始化时根据当前主题色进行初始化 body 的 class 属性 - * - * 根据 themeValue 进行初始化 - */ - const body = document.body - const darkClassName = 'ray-template--dark' - const lightClassName = 'ray-template--light' - - newData - ? removeClass(body, lightClassName) - : removeClass(body, darkClassName) - - addClass(body, newData ? darkClassName : lightClassName) - }, - { - immediate: true, - }, - ) - }, - render() { - return ( - - - - - {{ - default: () => , - description: () => 'lodaing...', - }} - - - ) - }, -}) - -export default App diff --git a/src/appConfig/appConfig.ts b/src/appConfig/appConfig.ts deleted file mode 100644 index 992e827c..00000000 --- a/src/appConfig/appConfig.ts +++ /dev/null @@ -1,106 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-05-23 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** 系统配置 */ - -import type { - LayoutSideBarLogo, - PreloadingConfig, - RootRoute, -} from '@/types/modules/cfg' -import type { AppMenuConfig, AppKeepAlive } from '@/types/modules/appConfig' - -/** - * - * 系统缓存 - * - * 说明: - * - setupKeepAlive: 是否启用系统页面缓存, 设置为 false 则关闭系统页面缓存 - * - keepAliveExclude: 排除哪些页面不缓存 - * - maxKeepAliveLength: 最大缓存页面数量 - */ -export const APP_KEEP_ALIVE: Readonly = { - setupKeepAlive: true, - keepAliveExclude: [], - maxKeepAliveLength: 5, -} - -/** 首屏加载信息配置 */ -export const PRE_LOADING_CONFIG: PreloadingConfig = { - title: 'Ray Template', - tagColor: '#ff6700', - titleColor: '#2d8cf0', -} - -/** - * - * 配置根页面 - * 该项目所有重定向至首页, 都依赖该配置项 - * - * 如果修改了该项目的首页路由配置, 需要更改该配置项, 以免重定向首页操作出现错误 - */ -export const ROOT_ROUTE: Readonly = { - name: 'Dashboard', - path: '/dashboard', -} - -/** - * - * icon: LOGO 图标, 依赖 `RayIcon` 实现(如果为空则不会渲染图标) - * title: LOGO 标题 - * url: 点击跳转地址, 如果不配置该属性, 则不会触发跳转 - * jumpType: 跳转类型(station: 项目内跳转, outsideStation: 新页面打开) - * - * 如果不设置该属性或者为空, 则不会渲染 LOGO - */ -export const SIDE_BAR_LOGO: LayoutSideBarLogo = { - icon: 'ray', - title: 'Ray Template', - url: '/dashboard', - jumpType: 'station', -} - -/** - * - * 系统菜单折叠配置 - * - * MENU_COLLAPSED_WIDTH 配置仅当 MENU_COLLAPSED_MODE 为 width 风格时才有效 - * - * MENU_COLLAPSED_MODE: - * - transform: 边栏将只会移动它的位置而不会改变宽度 - * - width: Sider 的内容宽度将会被实际改变 - * MENU_COLLAPSED_ICON_SIZE 配置菜单未折叠时图标的大小 - * MENU_COLLAPSED_INDENT 配置菜单每级的缩进 - * MENU_ACCORDION 手风琴模式 - */ -export const APP_MENU_CONFIG: Readonly = { - MENU_COLLAPSED_WIDTH: 64, - MENU_COLLAPSED_MODE: 'width', - MENU_COLLAPSED_ICON_SIZE: 22, - MENU_COLLAPSED_INDENT: 24, - MENU_ACCORDION: false, -} - -/** - * - * 系统默认缓存 key 配置 - * 仅暴露部分系统获取缓存配置, 其余 key 暂不开放 - * - * 说明: - * - signin: 登陆信息缓存 key - * - localeLanguage: 国际化默认缓存 key - * - token: token key - */ -export const APP_CATCH_KEY = { - signin: 'signin', - localeLanguage: 'localeLanguage', - token: 'token', -} as const diff --git a/src/appConfig/designConfig.ts b/src/appConfig/designConfig.ts deleted file mode 100644 index 013d2d67..00000000 --- a/src/appConfig/designConfig.ts +++ /dev/null @@ -1,63 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-05-19 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** 系统颜色风格配置入口 */ - -import type { AppTheme } from '@/types/modules/cfg' - -export const APP_THEME: AppTheme = { - /** - * - * 系统主题颜色预设色盘 - * 支持 RGBA、RGB、十六进制 - */ - APP_THEME_COLOR: [ - '#2d8cf0', - '#0960bd', - '#536dfe', - '#ff5c93', - '#ee4f12', - '#9c27b0', - '#ff9800', - '#18A058', - ], - /** 系统主题色 */ - APP_PRIMARY_COLOR: { - /** 主题色 */ - primaryColor: '#2d8cf0', - /** 主题辅助色(用于整体 hover、active 等之类颜色) */ - primaryFadeColor: 'rgba(45, 140, 240, 0.3)', - }, - /** - * - * 配置系统 naive-ui 主题色 - * 官网文档地址: - * - * 注意: - * - APP_PRIMARY_COLOR common 配置优先级大于该配置 - * - * 如果需要定制化整体组件样式, 配置示例 - * ``` - * const themeOverrides: GlobalThemeOverrides = { - * common: { - * primaryColor: '#FF0000', - * }, - * Button: { - * textColor: '#FF0000', - * }, - * } - * ``` - * - * 具体自行查看官网, 还有模式更佳丰富的 peers 主题变量配置 - * 地址: - */ - APP_NAIVE_UI_THEME_OVERRIDES: {}, -} diff --git a/src/appConfig/localConfig.ts b/src/appConfig/localConfig.ts deleted file mode 100644 index 81ee6af3..00000000 --- a/src/appConfig/localConfig.ts +++ /dev/null @@ -1,62 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-05-19 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** 国际化相关配置 */ - -import type { DayjsLocal, DayjsLocalMap } from '@/dayjs/type' -import type { AppLocalesDropdownMixedOption } from '@/locales/type' - -/** - * - * 语言包语种添加后, 需要在此文件配置语言包 - * 该配置中的 key 也会影响 naiveLocales 方法, 配置后请仔细核对一下 - * - * 添加新的语言包后, 如果需要其类型提示, 需要在 CurrentAppMessages 中添加新的类型 - */ -export const LOCAL_OPTIONS: AppLocalesDropdownMixedOption[] = [ - { - key: 'zh-CN', - label: '中文(简体)', - }, - { - key: 'en-US', - label: 'English(US)', - }, -] - -/** - * - * 系统默认语言 - * - * 配置时应该与 LOCAL_OPTIONS 的 key 一致 - */ -export const SYSTEM_DEFAULT_LOCAL = 'zh-CN' - -/** - * - * dayjs 默认语言格式 - * 默认为英文(en) - * - * 系统默认设置为中文(大陆-简体) - */ -export const DEFAULT_DAYJS_LOCAL: DayjsLocal = 'zh-cn' - -/** - * - * i18n 国际化配置与 dayjs 配置的映射入口 - * - * key 应该与 LOCAL_OPTIONS key 一致 - * 配置时请仔细检查 - */ -export const DAYJS_LOCAL_MAP: DayjsLocalMap = { - 'zh-CN': 'zh-cn', - 'en-US': 'en', -} diff --git a/src/appConfig/regexConfig.ts b/src/appConfig/regexConfig.ts deleted file mode 100644 index 1c0c5b06..00000000 --- a/src/appConfig/regexConfig.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-12 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 正则入口 - * 系统公共正则, 配置在该文件中 - */ - -export const APP_REGEX: Record = { - /** css 尺寸单位匹配 */ - validerCSSUnit: - /^\d+(\.\d+)?(px|em|rem|%|vw|vh|vmin|vmax|cm|mm|in|pt|pc|ch|ex|q|s|ms|deg|rad|turn|grad|hz|khz|dpi|dpcm|dppx|fr|auto)$/, -} diff --git a/src/appConfig/requestConfig.ts b/src/appConfig/requestConfig.ts deleted file mode 100644 index 608663f8..00000000 --- a/src/appConfig/requestConfig.ts +++ /dev/null @@ -1,22 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import type { AxiosConfig } from '@/types/modules/appConfig' - -/** axios 相关配置 */ -export const AXIOS_CONFIG: AxiosConfig = { - baseURL: '', // `import.meta.env`, - withCredentials: false, // 是否允许跨域携带 `cookie` - timeout: 5 * 1000, - headers: { - 'Content-Type': 'application/json', - }, -} diff --git a/src/appConfig/routerConfig.ts b/src/appConfig/routerConfig.ts deleted file mode 100644 index 49b62053..00000000 --- a/src/appConfig/routerConfig.ts +++ /dev/null @@ -1,55 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-05-19 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** vue-router 相关配置入口 */ - -import type { LayoutInst } from 'naive-ui' - -/** - * - * 内容区域 ref 注册 - * 可以控制内容区域当前滚动位置 - * 如果你需要在切换路由时候配置自定义滚动到某个视图区域时, 可以使用该属性提供的方法(scrollTo) - * - * 请注意 - * 如果你动态的添加了某个属性后, 希望控制滚动条滚动到某个区域时, 应该注意 dom 挂载后再执行该方法 - * @example - * ```ts - * nextTick().then(() => { - * LAYOUT_CONTENT_REF.value?.scrollTo() - * }) - * ``` - */ -export const LAYOUT_CONTENT_REF = ref() - -/** 是否启用路由切换时顶部加载条 */ -export const SETUP_ROUTER_LOADING_BAR = true - -/** 是否启用路由守卫, 如果设置为 false 则不会触发路由切换校验 */ -export const SETUP_ROUTER_GUARD = true - -/** - * - * 路由白名单(不进行权限校验路由) - * - * 路由表单白名单 - * - * 如果需要启用该功能, 则需要配置路由 name 属性, 并且需要一一对应(对大小写敏感) - * 并且在配置 route name 属性时, 如果 name 类型为 symbol 的话, 会认为该路由永远不与白名单列表进行匹配 - */ -export const WHITE_ROUTES: string[] = ['RLogin', 'ErrorPage', 'RayTemplateDoc'] - -/** - * - * 超级管理员 - * 配置默认超级管理员, 默认拥有全部最高权限 - */ -export const SUPER_ADMIN: (string | number)[] = ['admin'] diff --git a/src/assets/images/ray.svg b/src/assets/images/ray.svg deleted file mode 100644 index daaef75a..00000000 --- a/src/assets/images/ray.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/axios/README.md b/src/axios/README.md deleted file mode 100644 index 9b5c590c..00000000 --- a/src/axios/README.md +++ /dev/null @@ -1,71 +0,0 @@ -## 说明 - -> axios 包,全局的 axios 使用入口 -> `src/axios/instance.ts` 文件为 axios 实例文件,应该不可更改,如果需要有拦截器相关的操作,应该在 `src/axios/inject` 文件下按照需求在对应注册器中进行注册相关方法。该项目将 axios instance 与 axios interceptor 进行解耦,避免实例文件的臃肿。 - -## 工具函数 - -- BeforeFetchFunction -- FetchErrorFunction - -> 两个工具函数方便类型推导。 - -## 约束 - -### 拦截器添加 - -> 这里以请求拦截器添加为示例 - -```ts -/** - * - * 拦截器说明 - * - * 注册一个根据系统当前环境是否携带测试环境请求拦截器 - */ - -import { appendRequestHeaders } from '@/axios/helper/axiosCopilot' - -import type { - RequestInterceptorConfig, - BeforeFetchFunction, - FetchErrorFunction, -} from '@/axios/type' - -const injectRequestHeaderOfEnv: BeforeFetchFunction< - RequestInterceptorConfig -> = (ins, mode) => { - if (mode === 'development') { - appendRequestHeaders(ins, [ - { - key: 'Development-Mode', - value: 'development', - }, - ]) - } -} - -/** - * - * 在 setupRequestInterceptor 中注册 - */ - -export const setupRequestInterceptor = () => { - setImplement( - 'implementRequestInterceptorArray', - [injectRequestHeaderOfEnv], - 'ok', - ) -} - -/** 至此完成了请求拦截器的注册 */ -``` - -### 注册器 - -> 每个类型注册器都有两个方法,用于注册拦截器方法。都以 setupXXX 开头命名。注册器以队列形式管理拦截器方法,所以可能需要注意执行顺序。如果有新的拦截器方法,需要根据其使用场景在对应的注册器中注册(注册器第二个参数中注册)。 - -- 请求注册器: setupRequestInterceptor -- 请求错误注册器: setupRequestErrorInterceptor -- 响应注册器: setupResponseInterceptor -- 响应错误注册器: setupResponseErrorInterceptor diff --git a/src/axios/api/test.ts b/src/axios/api/test.ts deleted file mode 100644 index 125ce98e..00000000 --- a/src/axios/api/test.ts +++ /dev/null @@ -1,44 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-31 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 该方法演示如何使用 axios - * - * 示范如何完整批注响应体及其数据: - * - * ``` - * const demoRequest = () => { - * return {} as AxiosResponseBody - * } - * ``` - */ - -import useRequest from '@/axios/instance' - -import type { AxiosResponseBody } from '@/types/modules/axios' - -interface AxiosTestResponse extends UnknownObjectKey { - data: UnknownObjectKey[] - city?: string -} - -/** - * - * @returns 测试 - * - * @medthod get - */ -export const onAxiosTest = async (city: string) => { - return useRequest({ - url: `https://www.tianqiapi.com/api?version=v9&appid=23035354&appsecret=8YvlPNrz&city=${city}`, - }) -} diff --git a/src/axios/helper/axiosCopilot.ts b/src/axios/helper/axiosCopilot.ts deleted file mode 100644 index 60150dc5..00000000 --- a/src/axios/helper/axiosCopilot.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** axios 拦截器工具 */ - -import type { RawAxiosRequestHeaders, AxiosRequestConfig } from 'axios' -import type { RequestHeaderOptions } from '../type' - -/** - * - * @param instance axios instance - * @param options axios headers options - * - * @remark 自定义 `axios` 请求头配置 - */ -export const appendRequestHeaders = ( - instance: AxiosRequestConfig, - options: RequestHeaderOptions[], -) => { - if (instance) { - const requestHeaders = instance.headers as RawAxiosRequestHeaders - - options.forEach((curr) => { - requestHeaders[curr.key] = curr.value - }) - } -} diff --git a/src/axios/helper/canceler.ts b/src/axios/helper/canceler.ts deleted file mode 100644 index 02e32c90..00000000 --- a/src/axios/helper/canceler.ts +++ /dev/null @@ -1,82 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-02-27 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 自动取消重复请求 - * - * 可以根据自己项目进行定制化配置 - */ - -import type { AxiosRequestConfig } from 'axios' - -export default class RequestCanceler { - pendingRequest: Map - - constructor() { - this.pendingRequest = new Map() - } - - /** - * - * @param config 请求体 config - * @returns 返回当前请求拼接 key - * - * @remark 将当前请求 config 生成 request key - */ - generateRequestKey(config: AxiosRequestConfig): string { - const { method, url } = config - - return [ - url || '', - method || '', - JSON.stringify(config.params), - JSON.stringify(config.data), - ].join('&') - } - - /** - * - * @param config axios request config - * - * @remark 给请求体添加 signal 属性, 用于取消请求 - */ - addPendingRequest(config: AxiosRequestConfig) { - const requestKey = this.generateRequestKey(config) - - if (!this.pendingRequest.has(requestKey)) { - const controller = new AbortController() - - config.signal = controller.signal - - this.pendingRequest.set(requestKey, controller) - } else { - // 如果已经有该 key 则重新挂载 signal - config.signal = this.pendingRequest.get(requestKey)?.signal - } - } - - /** - * - * @param config axios request config - * - * @remark 取消该请求, 并且清除 map 中对应 generateRequestKey value - */ - removePendingRequest(config: AxiosRequestConfig) { - const requestKey = this.generateRequestKey(config) - - if (this.pendingRequest.has(requestKey)) { - this.pendingRequest.get(requestKey)!.abort() - - this.pendingRequest.delete(requestKey) - } - } -} diff --git a/src/axios/helper/interceptor.ts b/src/axios/helper/interceptor.ts deleted file mode 100644 index 7a6c2e54..00000000 --- a/src/axios/helper/interceptor.ts +++ /dev/null @@ -1,145 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-05 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * axios 拦截器注入 - * - * 请求拦截器、响应拦截器 - * 暴露启动方法调用所有已注册方法 - * - * 该拦截器仅适合放置公共的 axios 拦截器操作, 并且采用队列形式管理请求拦截器的注入 - * 所以在使用的时候, 需要按照约定格式进行参数传递 - */ - -import RequestCanceler from '@/axios/helper/canceler' -import { getAppEnvironment } from '@use-utils/hook' - -import type { - RequestInterceptorConfig, - ResponseInterceptorConfig, - ImplementQueue, - ErrorImplementQueue, - FetchType, - AxiosFetchInstance, - AxiosFetchError, -} from '@/axios/type' -import type { AnyFunc } from '@/types/modules/utils' - -/** 当前请求的实例 */ -const axiosFetchInstance: AxiosFetchInstance = { - requestInstance: null, - responseInstance: null, -} -/** 请求失败返回值 */ -const axiosFetchError: AxiosFetchError = { - requestError: null, - responseError: null, -} -/** 请求队列(区分 reslove 与 reject 状态) */ -const implement: ImplementQueue = { - implementRequestInterceptorArray: [], - implementResponseInterceptorArray: [], -} -const errorImplement: ErrorImplementQueue = { - implementRequestInterceptorErrorArray: [], - implementResponseInterceptorErrorArray: [], -} -/** 取消器实例 */ -export const axiosCanceler = new RequestCanceler() - -export const useAxiosInterceptor = () => { - /** 创建拦截器实例 */ - const createAxiosInstance = ( - instance: RequestInterceptorConfig | ResponseInterceptorConfig, - instanceKey: keyof AxiosFetchInstance, - ) => { - instanceKey === 'requestInstance' - ? (axiosFetchInstance['requestInstance'] = - instance as RequestInterceptorConfig) - : (axiosFetchInstance['responseInstance'] = - instance as ResponseInterceptorConfig) - } - - /** 获取当前实例 */ - const getAxiosInstance = (instanceKey: keyof AxiosFetchInstance) => { - return axiosFetchInstance[instanceKey] - } - - /** 设置注入方法队列 */ - const setImplement = ( - key: keyof ImplementQueue | keyof ErrorImplementQueue, - func: AnyFunc[], - fetchType: FetchType, - ) => { - fetchType === 'ok' ? (implement[key] = func) : (errorImplement[key] = func) - } - - /** 获取队列中所有的所有拦截器方法 */ - const getImplement = ( - key: keyof ImplementQueue | keyof ErrorImplementQueue, - fetchType: FetchType, - ): AnyFunc[] => { - return fetchType === 'ok' ? implement[key] : errorImplement[key] - } - - /** 队列执行器 */ - const implementer = (funcs: AnyFunc[], ...args: any[]) => { - if (Array.isArray(funcs)) { - funcs?.forEach((curr) => { - if (typeof curr === 'function') { - curr(...args) - } - }) - } - } - - /** 请求、响应前执行拦截器队列中的所有方法 */ - const beforeFetch = ( - key: keyof AxiosFetchInstance, - implementKey: keyof ImplementQueue | keyof ErrorImplementQueue, - fetchType: FetchType, - ) => { - const funcArr = - fetchType === 'ok' - ? implement[implementKey] - : errorImplement[implementKey] - const instance = getAxiosInstance(key) - const { MODE } = getAppEnvironment() - - if (instance) { - implementer(funcArr, instance, MODE) - } - } - - /** 请求、响应错误时执行队列中所有方法 */ - const fetchError = ( - key: keyof AxiosFetchError, - error: unknown, - errorImplementKey: keyof ErrorImplementQueue, - ) => { - axiosFetchError[key] = error - - const funcArr = errorImplement[errorImplementKey] - const { MODE } = getAppEnvironment() - - implementer(funcArr, error, MODE) - } - - return { - createAxiosInstance, - setImplement, - getImplement, - getAxiosInstance, - beforeFetch, - fetchError, - } -} diff --git a/src/axios/inject/request/provide.ts b/src/axios/inject/request/provide.ts deleted file mode 100644 index f2becd29..00000000 --- a/src/axios/inject/request/provide.ts +++ /dev/null @@ -1,103 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-06 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 请求拦截器入口 - * 被注册方法执行时其实例能够保证获取到, 所以不需要做额外空判断 - * 在内部执行方法中, 已经做了边界处理 - * - * 提供两个工具方法, 方便类型推导 - */ - -import { useAxiosInterceptor, axiosCanceler } from '@/axios/helper/interceptor' -import { appendRequestHeaders } from '@/axios/helper/axiosCopilot' -import { APP_CATCH_KEY } from '@/appConfig/appConfig' -import { getStorage } from '@/utils/cache' - -import type { - RequestInterceptorConfig, - BeforeFetchFunction, - FetchErrorFunction, -} from '@/axios/type' - -const { setImplement } = useAxiosInterceptor() - -/** - * - * 这里只是示例如何获取到系统缓存的 token 并且返回请求头 token 的 key 和 value - * 尽可能的拆分每个拦截器的功能函数 - * 这是这个包存在的意义 - * - * 当然你也可以根据 request instance 来特殊处理, 这里暂时不做演示 - */ -const requestHeaderToken = (ins: RequestInterceptorConfig, mode: string) => { - const token = getStorage(APP_CATCH_KEY.token) - - if (ins.url) { - // TODO: 根据 url 不同是否设置 token - } - - return { - key: 'X-TOKEN', - value: token, - } -} - -/** 注入请求头信息 */ -const injectRequestHeaders: BeforeFetchFunction = ( - ins, - mode, -) => { - appendRequestHeaders(ins, [ - requestHeaderToken(ins, mode), - { - key: 'Demo-Header-Key', - value: 'Demo Header Value', - }, - ]) -} - -/** 注入重复请求拦截器 */ -const injectCanceler: BeforeFetchFunction = ( - ins, - mode, -) => { - axiosCanceler.removePendingRequest(ins) // 检查是否存在重复请求, 若存在则取消已发的请求 - axiosCanceler.addPendingRequest(ins) // 把当前的请求信息添加到 pendingRequest 表中 -} - -/** 请求发生错误示例 */ -const requestError: FetchErrorFunction = (error, mode) => { - console.log(error, mode) -} - -/** - * - * 注册请求拦截器 - * 请注意执行顺序 - */ -export const setupRequestInterceptor = () => { - setImplement( - 'implementRequestInterceptorArray', - [injectRequestHeaders, injectCanceler], - 'ok', - ) -} - -/** - * - * 注册请求错误拦截器 - * 请注意执行顺序 - */ -export const setupRequestErrorInterceptor = () => { - setImplement('implementRequestInterceptorErrorArray', [requestError], 'error') -} diff --git a/src/axios/inject/response/provide.ts b/src/axios/inject/response/provide.ts deleted file mode 100644 index 34eba431..00000000 --- a/src/axios/inject/response/provide.ts +++ /dev/null @@ -1,77 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-06 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 响应拦截器入口 - * 被注册方法执行时其实例能够保证获取到, 所以不需要做额外空判断 - * 在内部执行方法中, 已经做了边界处理 - * - * 提供两个工具方法, 方便类型推导 - */ - -import { useAxiosInterceptor, axiosCanceler } from '@/axios/helper/interceptor' - -import type { - ResponseInterceptorConfig, - BeforeFetchFunction, - FetchErrorFunction, -} from '@/axios/type' - -const { setImplement } = useAxiosInterceptor() - -/** 响应成功后移除缓存请求 url */ -const injectResponseCanceler: BeforeFetchFunction = ( - ins, - mode, -) => { - axiosCanceler.removePendingRequest(ins.config) -} - -/** - * - * @param error 错误信息 - * @param mode 当前环境 - * - * 你可以在响应错误的时候做一些什么 - * 这里不做具体演示 - * - * 方法执行时会有两个参数, 可以根据报错信息与环境定做一些处理 - */ -const responseError: FetchErrorFunction = (error, mode) => { - console.log(error, mode) -} - -/** - * - * 注册响应拦截器 - * 请注意执行顺序 - */ -export const setupResponseInterceptor = () => { - setImplement( - 'implementResponseInterceptorArray', - [injectResponseCanceler], - 'ok', - ) -} - -/** - * - * 注册响应错误拦截器 - * 请注意执行顺序 - */ -export const setupResponseErrorInterceptor = () => { - setImplement( - 'implementResponseInterceptorErrorArray', - [responseError], - 'error', - ) -} diff --git a/src/axios/instance.ts b/src/axios/instance.ts deleted file mode 100644 index 5f717cf1..00000000 --- a/src/axios/instance.ts +++ /dev/null @@ -1,80 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-11-18 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 请求拦截器与响应拦截器 - * 如果有需要拓展拦截器, 请在 inject 目录下参照示例方法继续拓展 - * 该页面不做改动与配置 - */ - -import axios from 'axios' -import { AXIOS_CONFIG } from '@/appConfig/requestConfig' -import { useAxiosInterceptor, axiosCanceler } from '@/axios/helper/interceptor' -import { - setupResponseInterceptor, - setupResponseErrorInterceptor, -} from '@/axios/inject/response/provide' -import { - setupRequestInterceptor, - setupRequestErrorInterceptor, -} from '@/axios/inject/request/provide' - -import type { AxiosInstanceExpand } from './type' - -const server: AxiosInstanceExpand = axios.create(AXIOS_CONFIG) -const { createAxiosInstance, beforeFetch, fetchError } = useAxiosInterceptor() - -// 请求拦截器 -server.interceptors.request.use( - (request) => { - // 生成 request instance - createAxiosInstance(request, 'requestInstance') - // 初始化拦截器所有已注入方法 - setupRequestInterceptor() - // 执行拦截器所有已注入方法 - beforeFetch('requestInstance', 'implementRequestInterceptorArray', 'ok') - - return request - }, - (error) => { - // 初始化拦截器所有已注入方法(错误状态) - setupRequestErrorInterceptor() - // 执行所有已注入方法 - fetchError('requestError', error, 'implementRequestInterceptorErrorArray') - - return Promise.reject(error) - }, -) - -// 响应拦截器 -server.interceptors.response.use( - (response) => { - createAxiosInstance(response, 'responseInstance') - setupResponseInterceptor() - beforeFetch('responseInstance', 'implementResponseInterceptorArray', 'ok') - - const { data } = response - - return Promise.resolve(data) - }, - (error) => { - setupResponseErrorInterceptor() - fetchError('responseError', error, 'implementResponseInterceptorErrorArray') - - // 注销该失败请求的取消器 - axiosCanceler.removePendingRequest(error.config || {}) - - return Promise.reject(error) - }, -) - -export default server diff --git a/src/axios/type.ts b/src/axios/type.ts deleted file mode 100644 index c05d1184..00000000 --- a/src/axios/type.ts +++ /dev/null @@ -1,116 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -import type { - AxiosHeaders, - AxiosRequestConfig, - HeadersDefaults, - AxiosDefaults, - Axios, - InternalAxiosRequestConfig, - AxiosResponse, -} from 'axios' -import type { AnyFunc } from '@/types/modules/utils' - -export type AxiosHeaderValue = - | AxiosHeaders - | string - | string[] - | number - | boolean - | null - -export interface RequestHeaderOptions { - key: string - value: AxiosHeaderValue -} - -export interface AxiosInstanceExpand extends Axios { - (config: AxiosRequestConfig): Promise - (url: string, config?: AxiosRequestConfig): Promise - - getUri(config?: AxiosRequestConfig): string - request(config: AxiosRequestConfig): Promise - get(url: string, config?: AxiosRequestConfig): Promise - delete( - url: string, - config?: AxiosRequestConfig, - ): Promise - head( - url: string, - config?: AxiosRequestConfig, - ): Promise - options( - url: string, - config?: AxiosRequestConfig, - ): Promise - post( - url: string, - data?: D, - config?: AxiosRequestConfig, - ): Promise - put( - url: string, - data?: D, - config?: AxiosRequestConfig, - ): Promise - patch( - url: string, - data?: D, - config?: AxiosRequestConfig, - ): Promise - postForm( - url: string, - data?: D, - config?: AxiosRequestConfig, - ): Promise - putForm( - url: string, - data?: D, - config?: AxiosRequestConfig, - ): Promise - patchForm( - url: string, - data?: D, - config?: AxiosRequestConfig, - ): Promise - - defaults: Omit & { - headers: HeadersDefaults & { - [key: string]: AxiosHeaderValue - } - } -} - -export type RequestInterceptorConfig = InternalAxiosRequestConfig - -export type ResponseInterceptorConfig = AxiosResponse - -export interface ImplementQueue { - implementRequestInterceptorArray: AnyFunc[] - implementResponseInterceptorArray: AnyFunc[] -} - -export interface ErrorImplementQueue { - implementRequestInterceptorErrorArray: AnyFunc[] - implementResponseInterceptorErrorArray: AnyFunc[] -} - -export type BeforeFetchFunction< - T = RequestInterceptorConfig | ResponseInterceptorConfig, -> = (ins: K, mode: string) => void - -export type FetchType = 'ok' | 'error' - -export type FetchErrorFunction = ( - error: K, - mode: string, -) => void - -export interface AxiosFetchInstance { - requestInstance: RequestInterceptorConfig | null - responseInstance: ResponseInterceptorConfig | null -} - -export interface AxiosFetchError { - requestError: T | null - responseError: T | null -} diff --git a/src/components/AppComponents/AppAvatar/index.scss b/src/components/AppComponents/AppAvatar/index.scss deleted file mode 100644 index cce24633..00000000 --- a/src/components/AppComponents/AppAvatar/index.scss +++ /dev/null @@ -1,7 +0,0 @@ -.app-avatar { - cursor: var(--app-avatar-cursor); - - & .app-avatar__name { - font-weight: 500; - } -} diff --git a/src/components/AppComponents/AppAvatar/index.tsx b/src/components/AppComponents/AppAvatar/index.tsx deleted file mode 100644 index 777597a4..00000000 --- a/src/components/AppComponents/AppAvatar/index.tsx +++ /dev/null @@ -1,88 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-05-31 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 系统管理员头像与名称 - * - * 头像展示基于 naive ui Avatar 组件, 继承该组件所有属性与方法 - * 默认读取本地 session catch 缓存 - */ - -import './index.scss' - -import { NAvatar, NSpace } from 'naive-ui' - -import { avatarProps, spaceProps } from 'naive-ui' -import { APP_CATCH_KEY } from '@/appConfig/appConfig' -import { getStorage } from '@/utils/cache' - -import type { PropType } from 'vue' -import type { AvatarProps, SpaceProps } from 'naive-ui' -import type { SigninCallback } from '@/store/modules/signin/type' - -const AppAvatar = defineComponent({ - name: 'AppAvatar', - props: { - ...avatarProps, - ...spaceProps, - cursor: { - type: String, - default: 'auto', - }, - spaceSize: { - type: [String, Number] as PropType, - default: 'medium', - }, - avatarSize: { - type: [String, Number] as PropType, - default: 'medium', - }, - }, - setup(props) { - const signin = getStorage(APP_CATCH_KEY.signin) - const cssVars = computed(() => { - const vars = { - '--app-avatar-cursor': props.cursor, - } - - return vars - }) - - return { - signin, - cssVars, - } - }, - render() { - return ( - - -
{this.signin?.name}
-
- ) - }, -}) - -export default AppAvatar diff --git a/src/components/AppComponents/AppLockScreen/appLockVar.ts b/src/components/AppComponents/AppLockScreen/appLockVar.ts deleted file mode 100644 index eb145d25..00000000 --- a/src/components/AppComponents/AppLockScreen/appLockVar.ts +++ /dev/null @@ -1,36 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-20 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 统一管理是否处于锁屏状态 - * - * 可以根据后台接口进行替换该变量, 只要是一个响应式的变量值即可 - */ - -const appLockScreen = useStorage('isAppLockScreen', false, sessionStorage, { - mergeDefaults: true, -}) - -const useAppLockScreen = () => { - const setLockAppScreen = (bool: boolean) => { - appLockScreen.value = bool - } - - const getLockAppScreen = () => appLockScreen.value - - return { - setLockAppScreen, - getLockAppScreen, - } -} - -export default useAppLockScreen diff --git a/src/components/AppComponents/AppLockScreen/components/LockScreen/index.tsx b/src/components/AppComponents/AppLockScreen/components/LockScreen/index.tsx deleted file mode 100644 index 473d5042..00000000 --- a/src/components/AppComponents/AppLockScreen/components/LockScreen/index.tsx +++ /dev/null @@ -1,91 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-20 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** 锁屏界面 */ - -import { NInput, NForm, NFormItem, NButton, NSpace } from 'naive-ui' -import AppAvatar from '@/components/AppComponents/AppAvatar/index' - -import { useSetting } from '@/store' -import useAppLockScreen from '@/components/AppComponents/AppLockScreen/appLockVar' -import { - rules, - useCondition, - autoFouceInput, -} from '@/components/AppComponents/AppLockScreen/hook' - -import type { FormInst, InputInst } from 'naive-ui' - -const LockScreen = defineComponent({ - name: 'LockScreen', - setup() { - const formInstRef = ref(null) - const inputInstRef = ref(null) - - const { setLockAppScreen } = useAppLockScreen() - const { changeSwitcher } = useSetting() - - const state = reactive({ - lockCondition: useCondition(), - }) - - /** 锁屏 */ - const lockScreen = () => { - formInstRef.value?.validate((error) => { - if (!error) { - setLockAppScreen(true) - changeSwitcher(true, 'lockScreenSwitch') - - state.lockCondition = useCondition() - } - }) - } - - autoFouceInput(inputInstRef) - - return { - ...toRefs(state), - lockScreen, - formInstRef, - inputInstRef, - } - }, - render() { - return ( -
- - - - - - - 锁屏 - - -
- ) - }, -}) - -export default LockScreen diff --git a/src/components/AppComponents/AppLockScreen/components/UnlockScreen/index.tsx b/src/components/AppComponents/AppLockScreen/components/UnlockScreen/index.tsx deleted file mode 100644 index e96d8722..00000000 --- a/src/components/AppComponents/AppLockScreen/components/UnlockScreen/index.tsx +++ /dev/null @@ -1,156 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-20 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** 解锁界面 */ - -import { NInput, NForm, NFormItem, NButton, NSpace } from 'naive-ui' -import AppAvatar from '@/components/AppComponents/AppAvatar/index' - -import dayjs from 'dayjs' -import { useSetting, useSignin } from '@/store' -import { - rules, - useCondition, - autoFouceInput, -} from '@/components/AppComponents/AppLockScreen/hook' -import useAppLockScreen from '@/components/AppComponents/AppLockScreen/appLockVar' - -import type { FormInst, InputInst } from 'naive-ui' - -const UnlockScreen = defineComponent({ - name: 'UnlockScreen', - setup() { - const formRef = ref(null) - const inputInstRef = ref(null) - - const { logout } = useSignin() - const { changeSwitcher } = useSetting() - const { setLockAppScreen } = useAppLockScreen() - - const HH_MM_FORMAT = 'HH:mm' - const AM_PM_FORMAT = 'A' - const YY_MM_DD_FORMAT = 'YY年MM月DD日' - const DDD_FORMAT = 'ddd' - - const state = reactive({ - lockCondition: useCondition(), - HH_MM: dayjs().format(HH_MM_FORMAT), - AM_PM: dayjs().locale('en').format(AM_PM_FORMAT), - YY_MM_DD: dayjs().format(YY_MM_DD_FORMAT), - DDD: dayjs().format(DDD_FORMAT), - }) - const dayInterval = setInterval(() => { - state.HH_MM = dayjs().format(HH_MM_FORMAT) - state.AM_PM = dayjs().format(AM_PM_FORMAT) - }, 6_000) - const yearInterval = setInterval(() => { - state.YY_MM_DD = dayjs().format(YY_MM_DD_FORMAT) - state.DDD = dayjs().format(DDD_FORMAT) - }, 86_400_000) - - /** 退出登陆并且回到登陆页 */ - const backToSignin = () => { - window.$dialog.warning({ - title: '警告', - content: '是否返回到登陆页?', - positiveText: '确定', - negativeText: '取消', - onPositiveClick: () => { - logout() - setTimeout(() => { - changeSwitcher(false, 'lockScreenSwitch') - }) - }, - }) - } - - /** 解锁 */ - const unlockScreen = () => { - formRef.value?.validate((error) => { - if (!error) { - setLockAppScreen(false) - changeSwitcher(false, 'lockScreenSwitch') - - state.lockCondition = useCondition() - } - }) - } - - onBeforeUnmount(() => { - clearInterval(dayInterval) - clearInterval(yearInterval) - }) - - return { - ...toRefs(state), - backToSignin, - unlockScreen, - formRef, - inputInstRef, - } - }, - render() { - return ( -
-
-
-
{this.HH_MM?.split(':')[0]}
-
{this.HH_MM?.split(':')[1]}
-
-
- -
-
- - - - - - - 返回登陆 - - - 进入系统 - - - -
- -
-
- ) - }, -}) - -export default UnlockScreen diff --git a/src/components/AppComponents/AppLockScreen/hook.ts b/src/components/AppComponents/AppLockScreen/hook.ts deleted file mode 100644 index 8db8c2e2..00000000 --- a/src/components/AppComponents/AppLockScreen/hook.ts +++ /dev/null @@ -1,38 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-20 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import type { InputInst } from 'naive-ui' -import type { Ref } from 'vue' - -/** 统一的校验锁屏密码校验规则 */ -export const rules = { - lockPassword: { - required: true, - message: '请输入正确格式密码', - min: 6, - max: 12, - trigger: ['input'], - }, -} - -/** 锁屏密码参数 */ -export const useCondition = () => { - return { - lockPassword: null, - } -} - -/** 自动获取焦点 */ -export const autoFouceInput = (inputInstRef: Ref) => { - nextTick(() => { - inputInstRef.value?.focus() - }) -} diff --git a/src/components/AppComponents/AppLockScreen/index.scss b/src/components/AppComponents/AppLockScreen/index.scss deleted file mode 100644 index 47777891..00000000 --- a/src/components/AppComponents/AppLockScreen/index.scss +++ /dev/null @@ -1,68 +0,0 @@ -.app-lock-screen__content { - & .app-lock-screen__input { - & button[class*="n-button"] { - width: 100%; - } - - & form[class*="n-form"] { - margin: 24px 0px; - } - } - - & .app-lock-screen__unlock { - .app-lock-screen__unlock__content { - position: relative; - width: 100%; - height: 100%; - @include flexCenter; - flex-direction: column; - - & .app-lock-screen__unlock__content-bg { - position: absolute; - width: 100%; - height: 100%; - @include flexCenter; - font-size: 220px; - gap: 80px; - z-index: 0; - - & .left, - & .right { - @include flexCenter; - border-radius: 30px; - background-color: #141313; - font-weight: 700; - padding: 80px; - filter: blur(4px); - } - } - - & .app-lock-screen__unlock__content-avatar { - margin-top: 5px; - color: #bababa; - font-weight: 500; - z-index: 1; - } - - & .app-lock-screen__unlock__content-input { - width: 260px; - z-index: 1; - } - - & .app-lock-screen__unlock__content-date { - position: fixed; - width: 100%; - font-size: 3rem; - text-align: center; - font-weight: 500; - bottom: 24px; - z-index: 1; - - & .current-year, - & .current-date span { - font-size: 1.5rem; - } - } - } - } -} diff --git a/src/components/AppComponents/AppLockScreen/index.tsx b/src/components/AppComponents/AppLockScreen/index.tsx deleted file mode 100644 index 056a7872..00000000 --- a/src/components/AppComponents/AppLockScreen/index.tsx +++ /dev/null @@ -1,59 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-05-13 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 这里没有做解锁密码校验, 只要符合校验规则值皆可 - * 可以根据需求自行更改 - */ - -import './index.scss' - -import { NModal } from 'naive-ui' -import LockScreen from './components/LockScreen' -import UnlockScreen from './components/UnlockScreen' - -import { useSetting } from '@/store' -import useAppLockScreen from '@/components/AppComponents/AppLockScreen/appLockVar' - -const AppLockScreen = defineComponent({ - name: 'AppLockScreen', - setup() { - const settingStore = useSetting() - const { lockScreenSwitch } = storeToRefs(settingStore) - - const { getLockAppScreen } = useAppLockScreen() - - return { - lockScreenSwitch, - getLockAppScreen, - } - }, - render() { - return ( - -
- {!this.getLockAppScreen() ? : } -
-
- ) - }, -}) - -export default AppLockScreen diff --git a/src/components/AppComponents/README.md b/src/components/AppComponents/README.md deleted file mode 100644 index d8e8cafd..00000000 --- a/src/components/AppComponents/README.md +++ /dev/null @@ -1,9 +0,0 @@ -## 描述 - -> 该组件包存放依赖系统数据的公共组件。 - -## 约束 - -- 该组件包仅存放与系统数据有绑定、关联的组件,纯组件或纯 UI 组件应放置于外层包中 -- 以 `App` 开头标记组件是系统组件 -- 组件应该尽量避免与其他系统组件有关联性 diff --git a/src/components/RayChart/index.scss b/src/components/RayChart/index.scss deleted file mode 100644 index 9205e373..00000000 --- a/src/components/RayChart/index.scss +++ /dev/null @@ -1,7 +0,0 @@ -.ray-chart { - width: var(--ray-chart-width); - height: var(--ray-chart-height); - border: none; - outline: none; - box-sizing: border-box; -} diff --git a/src/components/RayChart/index.tsx b/src/components/RayChart/index.tsx deleted file mode 100644 index 6dcd2a55..00000000 --- a/src/components/RayChart/index.tsx +++ /dev/null @@ -1,503 +0,0 @@ -/** - * - * 基于 `echarts` 的组件. 意在便捷的使用 `chart` 图 - * - * 暂时不支持自动解析导入 `chart` 组件, 如果使用未注册的组件, 需要在顶部手动导入并且再使用 `use` 注册 - * - * 预引入: 柱状图, 折线图, 饼图, k线图, 散点图等 - * 预引入: 提示框, 标题, 直角坐标系, 数据集, 内置数据转换器等 - * - * 如果需要大批量数据渲染, 可以通过获取实例后阶段性调用 `setOption` 方法注入数据 - * - * 该组件会在卸载组件时, 自动释放资源 - * - * 注意: 尽量别一次性倒入全部 `chart` 会造成打包体积异常大 - */ - -import './index.scss' - -import * as echarts from 'echarts/core' // `echarts` 核心模块 -import { - TitleComponent, - TooltipComponent, - GridComponent, - DatasetComponent, - TransformComponent, - LegendComponent, - ToolboxComponent, - AriaComponent, -} from 'echarts/components' // 提示框, 标题, 直角坐标系, 数据集, 内置数据转换器等组件(组件后缀都为 `Component`) -import { - BarChart, - LineChart, - PieChart, - CandlestickChart, - ScatterChart, - PictorialBarChart, -} from 'echarts/charts' // 系列类型(后缀都为 `SeriesOption`) -import { LabelLayout, UniversalTransition } from 'echarts/features' // 标签自动布局, 全局过渡动画等特性 -import { CanvasRenderer } from 'echarts/renderers' // `echarts` 渲染器 - -import { useSetting } from '@/store' -import { cloneDeep, debounce } from 'lodash-es' -import { on, off, addStyle, completeSize } from '@/utils/element' - -import type { PropType } from 'vue' -import type { EChartsInstance } from '@/types/modules/component' -import type { AnyFunc } from '@/types/modules/utils' - -export type AutoResize = - | boolean - | { - width: number - height: number - } - -export interface LoadingOptions { - text: string // 文本内容 - color: string // 颜色 - textColor: string // 字体颜色 - maskColor: string // 遮罩颜色 - zlevel: number // 水平 - fontSize: number // 字体大小 - showSpinner: boolean // 是否显示旋转动画(`spinner`) - spinnerRadius: number // 旋转动画(`spinner`)的半径 - lineWidth: number // 旋转动画(`spinner`)的线宽 - fontWeight: string // 字体粗细 - fontStyle: string // 字体风格 - fontFamily: string // 字体系列 -} - -export type ChartTheme = 'dark' | '' | object - -/** - * - * @returns LoadingOptions - * - * 为了方便使用加载动画, 写了此方法, 虽然没啥用 - */ -export const loadingOptions = (options?: LoadingOptions) => - Object.assign( - {}, - { - text: 'loading', - color: '#c23531', - textColor: '#000', - maskColor: 'rgba(255, 255, 255, 0.9)', - zlevel: 0, - fontSize: 12, - showSpinner: true, - spinnerRadius: 10, - lineWidth: 5, - fontWeight: 'normal', - fontStyle: 'normal', - fontFamily: 'sans-serif', - }, - options, - ) - -const RayChart = defineComponent({ - name: 'RayChart', - props: { - width: { - /** - * - * chart 容器初始化宽度 - * - * 如果未能继承宽度, 则会以 200px 宽度填充 - */ - type: String, - default: '100%', - }, - height: { - /** - * - * chart 容器初始化高度 - * - * 如果未能继承高度, 则会以 200px 宽度填充 - */ - type: String, - default: '100%', - }, - autoResize: { - /** - * - * `chart` 是否跟随窗口尺寸变化自动变化 - * - * 如果为对象, 则可以指定其变化尺寸, 实现图表大小不等于容器大小的效果 - */ - type: [Boolean, Object] as PropType, - default: true, - }, - canvasRender: { - /** - * - * `chart` 渲染器, 默认使用 `canvas` - * - * 考虑到打包体积与大多数业务场景缘故, 暂时移除 `SVGRenderer` 渲染器的默认导入 - */ - type: Boolean, - default: true, - }, - showAria: { - /** - * - * 是否开启 `chart` 无障碍访问 - * - * 此选项会覆盖 `options` 中的 `aria` 配置 - */ - type: Boolean, - default: false, - }, - options: { - type: Object as PropType, - default: () => ({}), - }, - success: { - /** - * - * 返回 chart 实例 - * - * 渲染成功回调函数 - * - * () => EChartsInstance - */ - type: Function, - default: () => ({}), - }, - error: { - /** - * - * 渲染失败回调函数 - * - * () => void - */ - type: Function, - default: () => ({}), - }, - theme: { - type: [String, Object] as PropType, - default: '', - }, - autoChangeTheme: { - /** - * - * 是否自动跟随模板主题切换 - * - * 如果开启此属性, 则会覆盖 `theme` 属性 - * - * 注意: 这个属性重度依赖此模板, 所以默认不开启. 并且动态切换主题有一定的性能问题 - */ - type: Boolean, - default: false, - }, - use: { - /** - * - * 拓展 `echarts` 图表 - * - * 由于官方并没有提供该类型, 手动去复刻成本过高, 故而采用 `any` - */ - type: Array, - default: () => [], - }, - watchOptions: { - /** 主动监听 options 变化 */ - type: Boolean, - default: true, - }, - loading: { - /** 加载动画 */ - type: Boolean, - default: false, - }, - loadingOptions: { - /** 配置加载动画样式 */ - type: Object as PropType, - default: () => loadingOptions(), - }, - }, - setup(props, { expose }) { - const settingStore = useSetting() - const { themeValue } = storeToRefs(settingStore) - const rayChartRef = ref() // `echart` 容器实例 - const echartInstanceRef = ref() // `echart` 拷贝实例, 解决直接使用响应式实例带来的问题 - let echartInstance: EChartsInstance // `echart` 实例 - let resizeDebounce: AnyFunc // resize 防抖方法实例 - - const cssVarsRef = computed(() => { - const cssVars = { - '--ray-chart-width': completeSize(props.width), - '--ray-chart-height': completeSize(props.height), - } - - return cssVars - }) - const modelLoadingOptions = computed(() => - loadingOptions(props.loadingOptions), - ) - - /** - * - * 注册 `echart` 组件, 图利, 渲染器等 - * - * 会自动合并拓展 `echart` 组件 - * 该方法必须在注册图表之前调用 - */ - const registerChartCore = async () => { - echarts.use([ - TitleComponent, - TooltipComponent, - GridComponent, - DatasetComponent, - TransformComponent, - LegendComponent, - ToolboxComponent, - AriaComponent, - ]) // 注册组件 - - echarts.use([ - BarChart, - LineChart, - PieChart, - CandlestickChart, - ScatterChart, - PictorialBarChart, - ]) // 注册类型 - - echarts.use([LabelLayout, UniversalTransition]) // 注册布局, 过度效果 - - // 如果业务场景中需要 `svg` 渲染器, 手动导入渲染器后使用该行代码即可(不过为了体积考虑, 移除了 SVG 渲染器) - // echarts.use([props.canvasRender ? CanvasRenderer : SVGRenderer]) - echarts.use([CanvasRenderer]) // 注册渲染器 - - try { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - echarts.use(props.use as any[]) - } catch (e) { - console.error( - 'Error: wrong property and method passed in extend attribute', - ) - } - } - - /** - * - * @returns `chart options` - * - * 合并配置项 - * - * 如果有需要特殊全局配置的可以在此继续写... - */ - const useMergeOptions = () => { - let options = cloneDeep(props.options) - - const merge = (opts: object) => Object.assign({}, options, opts) - - if (props.showAria) { - options = merge({ - aria: { - enabled: true, - decal: { - show: true, - }, - }, - }) - } - - return options - } - - /** - * - * 渲染 `echart` - * - * 缓存两个实例 - * - * 直接使用响应式代理实例会出现诡异的问题, 例如 `legend` 点击时报错 - */ - const renderChart = (theme: ChartTheme) => { - /** 获取 dom 容器 */ - const element = rayChartRef.value as HTMLElement - /** 获取配置项 */ - const options = useMergeOptions() - /** 获取 dom 容器实际宽高 */ - const { height, width } = element.getBoundingClientRect() - - /** 如果高度为 0, 则以 200px 填充 */ - if (height === 0) { - addStyle(element, { - height: '200px', - }) - } - - /** 如果款度为 0, 则以 200px 填充 */ - if (width === 0) { - addStyle(element, { - width: '200px', - }) - } - - try { - /** 注册 chart */ - echartInstance = echarts.init(element, theme) - echartInstanceRef.value = echartInstance - - /** 设置 options 配置项 */ - options && echartInstance.setOption(options) - - /** 渲染成功回调 */ - props.success?.(echartInstance) - } catch (e) { - /** 渲染失败回调 */ - props.error?.() - - console.error(e) - } - } - - /** - * - * @param bool 渲染带有主题色的可视化图 - * - * 区别自动跟随模板主题切换与指定主题切换 - */ - const renderThemeChart = (bool?: boolean) => { - if (props.autoChangeTheme) { - bool ? renderChart('dark') : renderChart('') - - return void 0 - } - - if (!props.theme) { - renderChart('') - } - } - - /** - * - * 销毁 `chart` 实例, 释放资源 - */ - const destroyChart = () => { - if (echartInstance) { - echartInstance.clear() - echartInstance.dispose() - } - } - - /** 重置 echarts 尺寸 */ - const resizeChart = () => { - if (echartInstance) { - echartInstance.resize() - } - } - - /** 监听全局主题变化, 然后重新渲染对应主题 echarts */ - watch( - () => [themeValue.value], - ([theme]) => { - /** - * - * Q: 为什么需要重新卸载再渲染 - * A: 因为 echarts 官方文档并未提供动态渲染方法 - * A: 虽然原型上有 setTheme 方法, 但是官方标记是仅限于在类 ECharts 中访问 - */ - if (props.autoChangeTheme) { - destroyChart() - - renderThemeChart(theme) - } - }, - ) - - watch( - () => props.showAria, - () => { - destroyChart() - - /** - * - * 贴花跟随主题渲染 - * - * 自动跟随模板主题或者指定主题皆可 - */ - if (props.autoChangeTheme || props.theme) { - themeValue.value ? renderChart('dark') : renderChart('') - } else { - renderChart('') - } - }, - ) - - /** 显示/隐藏加载动画 */ - watch( - () => props.loading, - (newData) => { - newData - ? echartInstance?.showLoading(modelLoadingOptions.value) - : echartInstance?.hideLoading() - }, - ) - - /** 监听 options 变化 */ - if (props.watchOptions) { - watch( - () => props.watchOptions, - () => { - /** 重新组合 options */ - const options = useMergeOptions() - - /** 如果 options 发生变动更新 echarts */ - echartInstance?.setOption(options) - }, - ) - } - - onBeforeMount(async () => { - /** 注册 echarts 组件与渲染器 */ - await registerChartCore() - }) - - onMounted(() => { - nextTick(() => { - /** 注册 echarts */ - if (props.autoChangeTheme) { - renderThemeChart(themeValue.value) - } else { - props.theme ? renderChart('dark') : renderChart('') - } - - /** 注册事件 */ - if (props.autoResize) { - resizeDebounce = debounce(resizeChart, 500) - - on(window, 'resize', resizeDebounce) - } - }) - }) - - onBeforeUnmount(() => { - /** 卸载 echarts */ - destroyChart() - /** 卸载事件柄 */ - off(window, 'resize', resizeDebounce) - }) - - expose({ - echart: echartInstanceRef, - }) - - return { - rayChartRef, - cssVarsRef, - echartInstance: echartInstanceRef, - } - }, - render() { - return ( -
- ) - }, -}) - -export default RayChart diff --git a/src/components/RayCollapseGrid/index.ts b/src/components/RayCollapseGrid/index.ts deleted file mode 100644 index bbe54ee2..00000000 --- a/src/components/RayCollapseGrid/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import RayCollapseGrid from './src/index' - -export default RayCollapseGrid diff --git a/src/components/RayCollapseGrid/src/index.scss b/src/components/RayCollapseGrid/src/index.scss deleted file mode 100644 index 5bf1654c..00000000 --- a/src/components/RayCollapseGrid/src/index.scss +++ /dev/null @@ -1,20 +0,0 @@ -.ray-collapse-grid { - box-sizing: border-box; - - & .collapse-icon { - height: 100%; - display: flex; - align-items: center; - cursor: pointer; - transition: color 0.3s var(--r-bezier); - - > .collapse-icon--arrow { - margin-left: 0.5em; - transition: color 0.3s var(--r-bezier), transform 0.3s var(--r-bezier); - - &.collapse-icon--arrow__expanded { - transform: rotate(180deg); - } - } - } -} diff --git a/src/components/RayCollapseGrid/src/index.tsx b/src/components/RayCollapseGrid/src/index.tsx deleted file mode 100644 index 274cde56..00000000 --- a/src/components/RayCollapseGrid/src/index.tsx +++ /dev/null @@ -1,95 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-12-27 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import './index.scss' - -import { collapseGridProps } from './props' - -import { NCard, NGrid, NGridItem, NSpace } from 'naive-ui' -import RayIcon from '@/components/RayIcon' - -const RayCollapseGrid = defineComponent({ - name: 'RayCollapseGrid', - props: collapseGridProps, - emits: ['updateValue'], - setup(props, { emit }) { - const modelCollapsed = ref(props.value) - - const handleCollapse = () => { - modelCollapsed.value = !modelCollapsed.value - - emit('updateValue', modelCollapsed.value) - } - - const CollapseIcon = () => ( -
- - {modelCollapsed.value - ? props.collapseToggleText[0] - : props.collapseToggleText[1]} - - -
- ) - - return { - modelCollapsed, - handleCollapse, - CollapseIcon, - } - }, - render() { - return ( - - {{ - default: () => ( - - {this.$slots.default?.()} - - - {this.$slots.action?.()} - {this.CollapseIcon()} - - - - ), - }} - - ) - }, -}) - -export default RayCollapseGrid - -/** - * - * - * - * 可折叠操作栏 - * - * 可以结合表单或者表格使用 - * - * 该组件完全基于 `NGrid` `NGridItem` 实现, 所以需要在使用该组件时使用 `NGridItem` 包裹元素 - */ diff --git a/src/components/RayCollapseGrid/src/props.ts b/src/components/RayCollapseGrid/src/props.ts deleted file mode 100644 index 4ae28dac..00000000 --- a/src/components/RayCollapseGrid/src/props.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { gridProps } from 'naive-ui' - -import type { PropType } from 'vue' -import type { CollapseToggleText } from './type' - -export const collapseGridProps = { - value: { - /** - * - * 是否折叠操作栏 - * - * 默认折叠 - * - * `true` 收起, `false` 展开 - */ - type: Boolean, - default: true, - }, - collapseToggleText: { - /** - * - * 自定义展开与收起文案 - * - * 默认 `['展开', '收起']` - * - * 索引第一位为展开时显示内容, 所以第二位置为收起时显示内容 - */ - type: Array as unknown as PropType, - default: () => ['展开', '收起'], - }, - bordered: { - /** - * - * 卡片边框 - * - * 默认 `false` - */ - type: Boolean, - default: false, - }, - ...gridProps, -} as const - -/** - * - * 基于 `NGird` 实现 - * - * 继承该组件所有属性和方法, - * - * `xGap` 默认 `12` - * - * `yGap` 默认 `18` - */ diff --git a/src/components/RayCollapseGrid/src/type.ts b/src/components/RayCollapseGrid/src/type.ts deleted file mode 100644 index 12094f2a..00000000 --- a/src/components/RayCollapseGrid/src/type.ts +++ /dev/null @@ -1 +0,0 @@ -export type CollapseToggleText = [string | number, string | number] diff --git a/src/components/RayGlobalProvider/index.tsx b/src/components/RayGlobalProvider/index.tsx deleted file mode 100644 index cdbc4602..00000000 --- a/src/components/RayGlobalProvider/index.tsx +++ /dev/null @@ -1,94 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-14 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 全局注入 naive ui 提示性组件 - * 使用该组件注册后, 可以直接通过 window.$message、window.$notification、window.$dialog、window.$loadingBar 访问 - * 但是, 使用该组件注册后, 使用 window.$notification 组件时不能更改 placement 位置(只能默认右上角弹出) - * 如果需要更改弹出位置, 需要在需要地方重新定义组件注册 - */ - -import { - NDialogProvider, - NLoadingBarProvider, - NMessageProvider, - NNotificationProvider, - NConfigProvider, - createDiscreteApi, - darkTheme, - NGlobalStyle, -} from 'naive-ui' - -import { useSetting } from '@/store' -import { naiveLocales } from '@/locales/helper' - -const GlobalProvider = defineComponent({ - name: 'GlobalProvider', - setup() { - const settingStore = useSetting() - - const modelPrimaryColorOverride = computed( - () => settingStore.primaryColorOverride, - ) - const modelThemeValue = computed(() => - settingStore.themeValue ? darkTheme : null, - ) - const localePackage = computed(() => { - const key = settingStore.localeLanguage - - return naiveLocales(key) - }) - - const { message, notification, dialog, loadingBar } = createDiscreteApi( - ['message', 'dialog', 'notification', 'loadingBar'], - { - configProviderProps: computed(() => ({ - theme: modelThemeValue.value, - })), - }, - ) - - window.$dialog = dialog // 注入 `dialog` - window.$message = message // 注入 `message` - window.$loadingBar = loadingBar // 注入 `loadingBar` - window.$notification = notification // 注入 `notification` - - return { - modelPrimaryColorOverride, - modelThemeValue, - localePackage, - } - }, - render() { - return ( - - - - - - - {this.$slots.default?.()} - - - - - - ) - }, -}) - -export default GlobalProvider diff --git a/src/components/RayIcon/index.scss b/src/components/RayIcon/index.scss deleted file mode 100644 index 470518e4..00000000 --- a/src/components/RayIcon/index.scss +++ /dev/null @@ -1,20 +0,0 @@ -.ray-icon { - position: relative; - width: var(--ray-icon-width); - height: var(--ray-icon-height); - border: none; - outline: none; - text-align: center; - display: inline-flex; - justify-content: center; - align-items: center; - fill: currentColor; - transform: translateZ(0); - opacity: var(--ray-icon-depth); - cursor: var(--ray-icon-cursor); - - & svg[RayIconAttribute="ray-icon"] { - width: var(--ray-icon-width); - height: var(--ray-icon-height); - } -} diff --git a/src/components/RayIcon/index.tsx b/src/components/RayIcon/index.tsx deleted file mode 100644 index 24da1649..00000000 --- a/src/components/RayIcon/index.tsx +++ /dev/null @@ -1,106 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-01-04 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import './index.scss' - -const RayIcon = defineComponent({ - name: 'RayIcon', - props: { - color: { - type: String, - default: 'currentColor', - }, - prefix: { - type: String, - default: 'icon', - }, - name: { - type: String, - required: true, - }, - size: { - type: [Number, String], - default: 14, - }, - width: { - type: [Number, String], - default: 0, - }, - height: { - type: [Number, String], - default: 0, - }, - customClassName: { - /** 自定义 class name */ - type: String, - default: null, - }, - depth: { - /** 图标深度 */ - type: Number, - default: 1, - }, - cursor: { - /** 鼠标指针样式 */ - type: String, - default: 'default', - }, - }, - emits: ['click'], - setup(props, ctx) { - const emit = ctx.emit - - const modelColor = computed(() => props.color) - const symbolId = computed(() => `#${props.prefix}-${props.name}`) - const cssVars = computed(() => { - const cssVar = { - '--ray-icon-width': props.width - ? props.width + 'px' - : props.size + 'px', - '--ray-icon-height': props.height - ? props.height + 'px' - : props.size + 'px', - '--ray-icon-depth': props.depth, - '--ray-icon-cursor': props.cursor, - } - - return cssVar - }) - - const handleClick = () => { - emit('click') - } - - return { - modelColor, - symbolId, - cssVars, - handleClick, - } - }, - render() { - return ( - - - - - - ) - }, -}) - -export default RayIcon diff --git a/src/components/RayIframe/index.ts b/src/components/RayIframe/index.ts deleted file mode 100644 index ecea3ef2..00000000 --- a/src/components/RayIframe/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import RayIframe from './src/index' - -export default RayIframe diff --git a/src/components/RayIframe/src/index.scss b/src/components/RayIframe/src/index.scss deleted file mode 100644 index 1a29ca87..00000000 --- a/src/components/RayIframe/src/index.scss +++ /dev/null @@ -1,13 +0,0 @@ -.ray-iframe { - width: var(--ray-iframe-width); - height: var(--ray-iframe-height); - box-sizing: border-box; - border: var(--ray-iframe-frameborder); - - & .ray-iframe__container { - width: 100%; - height: 100%; - border: 0; - outline: 0; - } -} diff --git a/src/components/RayIframe/src/index.tsx b/src/components/RayIframe/src/index.tsx deleted file mode 100644 index 9171ccfa..00000000 --- a/src/components/RayIframe/src/index.tsx +++ /dev/null @@ -1,180 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-09 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import './index.scss' - -import { NSpin } from 'naive-ui' - -import { completeSize, on, off } from '@use-utils/element' - -import type { PropType } from 'vue' -import type { SpinProps } from 'naive-ui' - -const RayIframe = defineComponent({ - name: 'RayIframe', - props: { - src: { - /** iframe url */ - type: String, - required: true, - }, - iframeWrapperClass: { - /** 自定义类名 */ - type: String, - default: null, - }, - frameborder: { - /** 边框尺寸, 0 则不显示 */ - type: Number, - default: 0, - }, - width: { - /** iframe 宽度 */ - type: [String, Number], - default: '100%', - }, - height: { - /** iframe 高度 */ - type: [String, Number], - default: '100%', - }, - allow: { - /** - * - * iframe 特征策略 - * - * ``` - * 全屏激活: allow = 'fullscreen' - * 允许跨域: allow = 'payment' - * ``` - * - * 但是该配置属性受到浏览器安全策略影响, 使用前请仔细阅读文档 - */ - type: String, - default: null, - }, - name: { - /** iframe 定位嵌入的浏览上下文的名称 */ - type: String, - default: null, - }, - title: { - /** 标识 iframe 的主要内容 */ - type: String, - default: null, - }, - success: { - /** - * - * iframe 加载成功回调 - * 返回值: iframe 对象, Event - */ - type: Function, - default: null, - }, - error: { - /** - * - * iframe 加载失败回调 - * 返回值: iframe 对象, Event - */ - type: Function, - default: null, - }, - customSpinProps: { - type: Object as PropType, - default: () => ({}), - }, - lazy: { - /** 是否延迟加载 iframe */ - type: Boolean, - default: true, - }, - }, - setup(props, { expose }) { - const cssVars = computed(() => { - const cssVar = { - '--ray-iframe-frameborder': completeSize(props.frameborder), - '--ray-iframe-width': completeSize(props.width), - '--ray-iframe-height': completeSize(props.height), - } - - return cssVar - }) - const iframeRef = ref() - const spinShow = ref(true) - - const iframeLoadSuccess = (e: Event) => { - spinShow.value = false - - props.success?.(iframeRef.value, e) - } - - const iframeLoadError = (e: Event) => { - spinShow.value = false - - props.error?.(iframeRef.value, e) - } - - const getIframeRef = () => { - const iframeEl = iframeRef.value as HTMLElement - - return iframeEl - } - - expose() - - onMounted(() => { - on(getIframeRef(), 'load', iframeLoadSuccess.bind(this)) - on(getIframeRef(), 'error', iframeLoadError) - }) - - onBeforeUnmount(() => { - off(getIframeRef(), 'load', iframeLoadSuccess) - off(getIframeRef(), 'error', iframeLoadError) - }) - - return { - cssVars, - iframeRef, - spinShow, - } - }, - render() { - return ( -
- - {{ - ...this.$slots, - default: () => ( - - ), - }} - -
- ) - }, -}) - -export default RayIframe diff --git a/src/components/RayLink/index.tsx b/src/components/RayLink/index.tsx deleted file mode 100644 index 67459166..00000000 --- a/src/components/RayLink/index.tsx +++ /dev/null @@ -1,95 +0,0 @@ -import { NAvatar, NTooltip, NSpace } from 'naive-ui' - -interface AvatarOptions { - key: string - src: string - tooltip: string - icon: string -} - -const RayLink = defineComponent({ - name: 'RayLink', - setup() { - const avatarOptions: AvatarOptions[] = [ - { - key: 'yunhome', - src: 'https://yunkuangao.me/', - tooltip: '云之家', - icon: 'https://yunkuangao.me/wp-content/uploads/2022/05/cropped-cropped-QQ%E5%9B%BE%E7%89%8720220511113928.jpg', - }, - { - key: 'yun-cloud-images', - src: 'https://yunkuangao.com/', - tooltip: '云图床', - icon: 'https://yunkuangao.me/wp-content/uploads/2022/05/cropped-cropped-QQ%E5%9B%BE%E7%89%8720220511113928.jpg', - }, - { - key: 'ray-js-note', - src: 'https://note.youdao.com/s/ObWEe2BB', - tooltip: 'Ray的前端学习笔记', - icon: 'https://usc1.contabostorage.com/c2e495d7890844d392e8ec0c6e5d77eb:image/longmao.jpeg', - }, - { - key: 'ray-js-cover', - src: 'https://note.youdao.com/s/IC8xKPdB', - tooltip: 'Ray的面试题总结', - icon: 'https://usc1.contabostorage.com/c2e495d7890844d392e8ec0c6e5d77eb:image/longmao.jpeg', - }, - { - key: 'ray-template-doc', - src: 'https://xiaodaigua-ray.github.io/ray-template-doc/', - tooltip: 'Ray Template Doc', - icon: 'https://usc1.contabostorage.com/c2e495d7890844d392e8ec0c6e5d77eb:image/longmao.jpeg', - }, - { - key: 'ray-template-doc-out', - src: 'https://ray-template.yunkuangao.com/', - tooltip: 'Ray Template Doc (国内地址)', - icon: 'https://usc1.contabostorage.com/c2e495d7890844d392e8ec0c6e5d77eb:image/longmao.jpeg', - }, - ] - - const handleLinkClick = (item: AvatarOptions) => { - window.open(item.src) - } - - return { - handleLinkClick, - avatarOptions, - } - }, - render() { - return ( - - {this.avatarOptions.map((curr) => ( - - {{ - trigger: () => ( - - ), - default: () => curr.tooltip, - }} - - ))} - - ) - }, -}) - -export default RayLink - -/** - * - * 友链组件 - * - * 这个组件用作初试模板中, 不喜欢自行删除 - */ diff --git a/src/components/RayTable/index.ts b/src/components/RayTable/index.ts deleted file mode 100644 index 2b2b1819..00000000 --- a/src/components/RayTable/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -import RayTable from './src/index' - -export default RayTable -export type { RayTableInst } from './src/type' diff --git a/src/components/RayTable/src/components/TableAction/index.tsx b/src/components/RayTable/src/components/TableAction/index.tsx deleted file mode 100644 index 319352fa..00000000 --- a/src/components/RayTable/src/components/TableAction/index.tsx +++ /dev/null @@ -1,132 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-12-22 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { NPopconfirm, NSpace, NButton, NPopover } from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' - -export type EmitterType = 'positive' | 'negative' - -const TableAction = defineComponent({ - name: 'TableAction', - props: { - tooltip: { - /** - * - * 提示内容 - */ - type: String, - required: true, - }, - negativeText: { - /** - * - * 取消提示按钮文本内容 - * - * 默认 `取消` - */ - type: String, - default: '取消', - }, - positiveText: { - /** - * - * 确认提示按钮文本内容 - * - * 默认 `确认` - */ - type: String, - default: '确认', - }, - icon: { - /** - * - * 图标 - * - * 必须为 `icons` 中已包含的 - */ - type: String, - required: true, - }, - iconSize: { - /** - * - * 图标尺寸 - * - * 默认为 `18px` - */ - type: Number, - default: 18, - }, - popoverContent: { - type: String, - required: true, - }, - }, - emits: ['positive', 'negative'], - setup(_, { emit }) { - const showPopoconfirm = ref(false) - - const handleEmit = (type: EmitterType) => { - type === 'positive' ? emit('positive') : emit('negative') - - showPopoconfirm.value = false - } - - return { - handleEmit, - showPopoconfirm, - } - }, - render() { - return ( - - {{ - trigger: () => ( - - {{ - trigger: () => ( - - ), - default: () => this.tooltip, - action: () => ( - - - {this.negativeText} - - - {this.positiveText} - - - ), - }} - - ), - default: () => this.popoverContent, - }} - - ) - }, -}) - -export default TableAction diff --git a/src/components/RayTable/src/components/TableScreenfull/index.scss b/src/components/RayTable/src/components/TableScreenfull/index.scss deleted file mode 100644 index e69de29b..00000000 diff --git a/src/components/RayTable/src/components/TableScreenfull/index.tsx b/src/components/RayTable/src/components/TableScreenfull/index.tsx deleted file mode 100644 index e8d55abe..00000000 --- a/src/components/RayTable/src/components/TableScreenfull/index.tsx +++ /dev/null @@ -1,67 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-11 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import './index.scss' - -import { NPopover } from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' - -import screenfull from 'screenfull' - -import type { TableSettingProvider } from '@/components/RayTable/src/type' - -const TableScreenfull = defineComponent({ - name: 'TableScreenfull', - setup() { - const tableSettingProvider = inject( - 'tableSettingProvider', - {} as TableSettingProvider, - ) - - const rayTableUUID = computed(() => tableSettingProvider.rayTableUUID) - let currentTableIsFullscreen = screenfull.isFullscreen // 缓存当前是否处于全屏状态 - - const handleScreenfull = () => { - const el = document.getElementById(rayTableUUID.value) - - currentTableIsFullscreen = !currentTableIsFullscreen - - if (el && screenfull.isEnabled && currentTableIsFullscreen) { - screenfull.request(el) - } else { - screenfull.exit() - } - } - - return { - handleScreenfull, - } - }, - render() { - return ( - - {{ - trigger: () => ( - - ), - default: () => '全屏表格', - }} - - ) - }, -}) - -export default TableScreenfull diff --git a/src/components/RayTable/src/components/TableSetting/hook.ts b/src/components/RayTable/src/components/TableSetting/hook.ts deleted file mode 100644 index 5314b758..00000000 --- a/src/components/RayTable/src/components/TableSetting/hook.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { ActionOptions } from '@/components/RayTable/src/type' - -export const setupSettingOptions = (options: ActionOptions[]) => { - const arr = options.map((curr) => { - if (curr.fixed) { - curr.fixed === 'right' - ? (curr.rightFixedActivated = true) - : (curr.leftFixedActivated = true) - } - - if (curr.resizable) { - curr.resizeColumnActivated = true - } - - return curr - }) - - return arr -} diff --git a/src/components/RayTable/src/components/TableSetting/index.scss b/src/components/RayTable/src/components/TableSetting/index.scss deleted file mode 100644 index 3bae6b52..00000000 --- a/src/components/RayTable/src/components/TableSetting/index.scss +++ /dev/null @@ -1,70 +0,0 @@ -.ray-table__setting:hover { - transform: rotate(180deg); - transition: transform 0.3s var(--r-bezier); -} - -.table-setting__card { - padding: 12px 8px; - - & .n-card__content { - padding: 0 !important; - margin: 0 !important; - } -} - -.ray-table__setting-option--draggable { - display: grid; - grid-row-gap: 10px; - justify-self: center; - align-self: center; - - & .draggable-item { - display: flex; - align-items: center; - cursor: pointer; - padding: 8px 10px; - border-radius: 2px; - transition: background-color 0.3s var(--r-bezier); - - &.draggable-item--dark { - &:hover { - background-color: var(--ray-theme-primary-fade-color); - } - } - - &:hover { - background-color: var(--ray-theme-primary-fade-color); - - & .draggable-item__d--icon { - opacity: 1; - } - } - - & .draggable-item__d--icon { - transition: opacity 0.3s var(--r-bezier), transform 0.3s var(--r-bezier); - opacity: 0; - } - - & .draggable-item__d--icon, - & .draggable-item__icon { - padding: 5px; - outline: none; - border: none; - } - - & .draggable-item__icon { - cursor: pointer; - } - - & .draggable-item__icon { - &.draggable-item__icon--actived { - color: var(--ray-theme-primary-color); - } - } - - & .n-ellipsis { - max-width: 80px; - min-width: 80px; - } - } -} diff --git a/src/components/RayTable/src/components/TableSetting/index.tsx b/src/components/RayTable/src/components/TableSetting/index.tsx deleted file mode 100644 index 891e08d0..00000000 --- a/src/components/RayTable/src/components/TableSetting/index.tsx +++ /dev/null @@ -1,233 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-12-08 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 依赖 table columns 属性操作 - * - * 支持拖拽修改列顺序、动态修改列宽度、固定(锁列) - */ - -import './index.scss' - -import { NCard, NPopover, NEllipsis } from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' -import VueDraggable from 'vuedraggable' - -import { setupSettingOptions } from './hook' -import { useSetting } from '@/store' - -import type { - TableSettingProvider, - ActionOptions, - FixedType, - TableSettingFixedPopoverIcon, -} from '@/components/RayTable/src/type' - -const TableSetting = defineComponent({ - name: 'TableSetting', - emits: ['columnsUpdate'], - setup(_, { emit }) { - const tableSettingProvider = inject( - 'tableSettingProvider', - {} as TableSettingProvider, - ) - const settingStore = useSetting() - - const settingOptions = ref( - setupSettingOptions(tableSettingProvider.modelColumns.value), - ) // 表格表头 - const disableDraggable = ref(true) // 拖拽开关(暂时弃用) - const { themeValue } = storeToRefs(settingStore) - - /** 拖拽结束后 */ - const handleDraggableEnd = () => { - emit('columnsUpdate', settingOptions.value) - } - - const FixedPopoverIcon = (options: TableSettingFixedPopoverIcon) => { - const { element, name, tooltip, fn, index, fixed, key } = options - - return ( - - {{ - trigger: () => ( - - ), - default: () => tooltip, - }} - - ) - } - - /** - * - * @param type 列所需固定方向 - * @param idx 当前操作栏索引位置 - * - * @remark 操作栏锁定列, 不能同时存在两种状态(互斥) - */ - const handleFixedClick = (type: FixedType, idx: number) => { - const key = `${type}FixedActivated` - const value = settingOptions.value[idx] - - if (key === 'leftFixedActivated') { - value['rightFixedActivated'] = false - } else if (key === 'rightFixedActivated') { - value['leftFixedActivated'] = false - } - - value[key] = !value[key] - - if (value[key]) { - value.fixed = type - } else { - value.fixed = undefined - } - - settingOptions.value[idx] = value - - emit('columnsUpdate', settingOptions.value) - } - - /** - * - * @param idx 索引 - * - * @remark 动态设置列宽度, 如果表格并未出现横向滚动条则不会启用拖拽修改列按钮 - */ - const handleResizeColumnClick = (idx: number) => { - const value = settingOptions.value[idx] - - value['resizeColumnActivated'] = !value['resizeColumnActivated'] - value['resizable'] = value['resizeColumnActivated'] - - settingOptions.value[idx] = value - - emit('columnsUpdate', settingOptions.value) - } - - return { - settingOptions, - handleDraggableEnd, - handleFixedClick, - disableDraggable, - FixedPopoverIcon, - handleResizeColumnClick, - themeValue, - } - }, - render() { - return ( - - {{ - trigger: () => ( - - ), - default: () => ( - - {{ - default: () => ( - - {{ - item: ({ - element, - index, - }: { - element: ActionOptions - index: number - }) => ( -
- - - {element.title} - - {this.FixedPopoverIcon({ - element: element, - name: 'left_arrow', - tooltip: '左固定', - fn: this.handleFixedClick, - index, - fixed: 'left', - key: 'leftFixedActivated', - })} - - {{ - trigger: () => ( - - ), - default: () => '修改列宽', - }} - - {this.FixedPopoverIcon({ - element: element, - name: 'right_arrow', - tooltip: '右固定', - fn: this.handleFixedClick, - index, - fixed: 'right', - key: 'rightFixedActivated', - })} -
- ), - }} -
- ), - }} -
- ), - }} -
- ) - }, -}) - -export default TableSetting diff --git a/src/components/RayTable/src/components/TableSize/index.scss b/src/components/RayTable/src/components/TableSize/index.scss deleted file mode 100644 index 4fcbd871..00000000 --- a/src/components/RayTable/src/components/TableSize/index.scss +++ /dev/null @@ -1,47 +0,0 @@ -.ray-table__table-size { - padding: 0 !important; - - & .n-card__content { - padding: 0 !important; - margin: 0 !important; - - & .table-size__dropdown { - box-sizing: border-box; - padding: 4px 0; - background-color: transparent; - - & .table-size__dropdown-wrapper { - position: relative; - z-index: 1; - display: flex; - flex-direction: column; - - & .dropdown-item { - height: 34px; - line-height: 34px; - text-align: center; - cursor: pointer; - padding: 0 16px; - transition: background-color 0.3s var(--r-bezier), color 0.3s var(--r-bezier); - - &.dropdown-item--active, - &:hover { - background-color: var(--ray-theme-primary-fade-color); - color: var(--ray-theme-primary-color); - } - } - } - } - } -} - -.ray-table__table-size--dark { - @include useAppTheme("dark") { - & .table-size__dropdown-wrapper { - & .dropdown-item:hover { - background-color: var(--ray-theme-primary-fade-color); - color: var(--ray-theme-primary-color); - } - } - } -} diff --git a/src/components/RayTable/src/components/TableSize/index.tsx b/src/components/RayTable/src/components/TableSize/index.tsx deleted file mode 100644 index bdd04779..00000000 --- a/src/components/RayTable/src/components/TableSize/index.tsx +++ /dev/null @@ -1,129 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-10 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import './index.scss' - -import { NPopover, NCard } from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' - -import type { TableSettingProvider } from '@/components/RayTable/src/type' -import type { ComponentSize } from '@/types/modules/component' - -const TableSize = defineComponent({ - name: 'TableSize', - emits: ['changeSize'], - setup(_, { emit }) { - const tableSettingProvider = inject( - 'tableSettingProvider', - {} as TableSettingProvider, - ) - - const popoverShow = ref(false) - const currentSize = ref(tableSettingProvider.size) - const size = computed({ - get: () => tableSettingProvider.size, - set: (val) => { - currentSize.value = val - }, - }) - const sizeOptions = ref([ - { - label: '默认', - key: 'medium', - }, - { - label: '紧凑', - key: 'small', - }, - { - label: '宽松', - key: 'large', - }, - ]) - - const handleDropdownClick = (key: ComponentSize) => { - sizeOptions.value.forEach((curr) => { - if (curr.key === key) { - size.value = key - - popoverShow.value = false - - emit('changeSize', key) - } - }) - } - - return { - sizeOptions, - currentSize, - handleDropdownClick, - popoverShow, - } - }, - render() { - return ( - - {{ - trigger: () => ( - - {{ - trigger: () => ( - - ), - default: () => '表格密度', - }} - - ), - default: () => ( - -
-
- {this.sizeOptions.map((curr) => ( -
-
{curr.label}
-
- ))} -
-
-
- ), - }} -
- ) - }, -}) - -export default TableSize diff --git a/src/components/RayTable/src/index.scss b/src/components/RayTable/src/index.scss deleted file mode 100644 index 71ef89d8..00000000 --- a/src/components/RayTable/src/index.scss +++ /dev/null @@ -1,39 +0,0 @@ -@keyframes scaleScreenfull { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.3); - } - 100% { - transform: scale(1); - } -} - -.ray-table { - & .ray-table-icon { - transition: transform 0.3s var(--r-bezier); - - &:hover { - animation: scaleScreenfull 0.3s linear; - animation-direction: alternate; - } - } - - & .ray-table__setting, - & .ray-table-icon { - cursor: pointer; - outline: none; - border: none; - } - - & .n-card-header .n-card-header__main { - padding-right: var(--ray-table-header-space); - } - - & .ray-table-header-extra__space { - display: flex; - gap: 0 12px; - align-items: center; - } -} diff --git a/src/components/RayTable/src/index.tsx b/src/components/RayTable/src/index.tsx deleted file mode 100644 index fa6a903a..00000000 --- a/src/components/RayTable/src/index.tsx +++ /dev/null @@ -1,328 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-12-08 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * - * - * 完全继承 `NDataTable`, 该组件继承 `NDataTable Props` 属性和方法 - * - * 实现: 抬头, 操作栏, 右键菜单功能拓展, 输出 `excel`, 表格尺寸调整 - * - * 右键菜单功能, 需要同时启用 `showMenu` 与配置菜单选项才能正常使用 - * - * 可以通过设置 `action` 为 `false` 隐藏操作栏 - * - * 具体拓展 `props` 方法, 可以查看 `props.ts` 中相关注释与代码 - * - * 基于 `xlsx.js` 实现输出 `excel` - */ - -/** - * - * 为什么有些拓展功能是写在该组件内, 有些则是完全抽离出去呢... - * 好问题, 因为我一开始没想到而且我又想偷懒 - * - * 凑合凑合看吧, 等我啥时候有空再抽离出去 - */ - -import './index.scss' - -import { NDataTable, NCard, NDropdown } from 'naive-ui' -import TableSetting from './components/TableSetting/index' -import TableAction from './components/TableAction/index' -import TableSize from './components/TableSize/index' -import TableScreenfull from './components/TableScreenfull/index' - -import props from './props' -import print from 'print-js' -import { uuid } from '@use-utils/hook' -import { exportFileToXLSX } from '@use-utils/xlsx' - -import type { ActionOptions } from './type' -import type { WritableComputedRef } from 'vue' -import type { DropdownOption } from 'naive-ui' -import type { ExportExcelHeader } from '@use-utils/xlsx' -import type { DataTableInst } from 'naive-ui' -import type { ComponentSize } from '@/types/modules/component' - -const RayTable = defineComponent({ - name: 'RayTable', - props: props, - emits: ['update:columns', 'menuSelect', 'exportSuccess', 'exportError'], - setup(props, { emit, expose }) { - const rayTableInstance = ref() - - const tableUUID = uuid(16) // 表格 id, 用于打印表格 - const rayTableUUID = uuid(16) // RayTable id, 用于全屏表格 - const modelRightClickMenu = computed(() => props.rightClickMenu) - const modelColumns = computed({ - get: () => props.columns, - set: (arr) => { - emit('update:columns', arr) - }, - }) as unknown as WritableComputedRef - const menuConfig = reactive({ - x: 0, - y: 0, - showMenu: false, - }) - let prevRightClickIndex = -1 // 缓存上次点击索引位置 - const cssVars = computed(() => { - const cssVar = { - '--ray-table-header-space': props.tableHeaderSpace, - } - - return cssVar - }) - const tableSize = ref(props.size) - const tableMethods = ref>() - - /** 注入相关属性 */ - provide('tableSettingProvider', { - modelRightClickMenu, - modelColumns, - size: props.size, - rayTableUUID, - }) - - /** 拖拽更新后的表格列 */ - const handleColumnsUpdate = (arr: ActionOptions[]) => { - modelColumns.value = arr - } - - /** - * - * @param key 右键菜单当前选择 `key` - * @param option 右键菜单当前 `item` - * - * @remark (key: string | number, index: number,option: DropdownOption) => void - */ - const handleRightMenuSelect = ( - key: string | number, - option: DropdownOption, - ) => { - emit('menuSelect', key, prevRightClickIndex, option) - - menuConfig.showMenu = false - } - - /** - * - * @param arr 表格当前行 - * @param idx 表格当前索引位置 - * @returns 自定义属性集 - * - * @remark 集成右键菜单属性, 会自动拦截右键方法, 会自动合并自定义行属性 - */ - const handleRowProps = (arr: ActionOptions, idx: number) => { - const interceptRowProps = props.rowProps?.(arr, idx) - - return { - ...interceptRowProps, - onContextmenu: (e: MouseEvent) => { - e.preventDefault() - - prevRightClickIndex = idx - - menuConfig.showMenu = false - - nextTick().then(() => { - menuConfig.showMenu = true - - menuConfig.x = e.clientX - menuConfig.y = e.clientY - }) - }, - } - } - - /** - * - * 导出表格数据为 `excel` - * - * 基于 `xlsx` - * - * 按需导入 `xlsx` 减少体积, 不依赖传统 `file save` 插件导出方式 - */ - const handleExportPositive = async () => { - if (props.data.length && props.columns.length) { - try { - await exportFileToXLSX( - props.data, - props.columns as ExportExcelHeader[], - { - filename: props.exportFilename, - }, - ) - - emit('exportSuccess') - } catch (e) { - emit('exportError') - } - } - } - - /** - * - * 打印输出表格内容 - * - * 默认配置按照 `print-js` 配置 - * - * 会自动合并自定义配置项 - * - * 受到 `print-js` 限制有些样式是无法打印输出的 - */ - const handlePrintPositive = () => { - const options = Object.assign({}, props.printOptions, { - printable: tableUUID, - type: props.printType, - documentTitle: props.printOptions.documentTitle - ? props.printOptions.documentTitle - : '表格', - }) - - print(options) - } - - /** 更新后的表格尺寸 */ - const handleChangeTableSize = (size: ComponentSize) => { - tableSize.value = size - } - - const registerRayTableMethods = (ins: DataTableInst) => { - const { - clearFilters, - clearSorter, - filters, - page, - scrollTo, - sort, - filter, - } = ins - - tableMethods.value = { - clearFilters, - clearSorter, - filters, - page, - scrollTo, - sort, - filter, - } - } - - expose({ - tableMethods: computed(() => tableMethods.value), - }) - - onMounted(() => { - registerRayTableMethods(rayTableInstance.value as DataTableInst) - }) - - return { - tableUUID, - rayTableUUID, - handleColumnsUpdate, - ...toRefs(menuConfig), - handleRowProps, - handleRightMenuSelect, - handleExportPositive, - handlePrintPositive, - cssVars, - handleChangeTableSize, - tableSize, - rayTableInstance, - } - }, - render() { - return ( - - {{ - default: () => ( - <> - - {{ - ...this.$slots, - }} - - {this.showMenu ? ( - // 右键菜单 - (this.showMenu = false)} - onSelect={this.handleRightMenuSelect.bind(this)} - /> - ) : ( - '' - )} - - ), - header: () => this.title, - 'header-extra': () => - this.action ? ( -
- {/* 打印输出操作 */} - - {/* 输出为Excel表格 */} - - {/* 表格尺寸调整 */} - - {/* 全屏表格 */} - - {/* 表格列操作 */} - -
- ) : ( - '' - ), - footer: () => this.$slots.tableFooter?.(), - }} -
- ) - }, -}) - -export default RayTable diff --git a/src/components/RayTable/src/props.ts b/src/components/RayTable/src/props.ts deleted file mode 100644 index 7de02339..00000000 --- a/src/components/RayTable/src/props.ts +++ /dev/null @@ -1,219 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-12-08 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { dataTableProps } from 'naive-ui' - -import type { PropType, VNode, VNodeChild } from 'vue' -import type { DropdownMixedOption } from './type' -import type PrintConfiguration from 'print-js' - -const rayTableProps = { - ...dataTableProps, // 继承 `data table props` - rightClickMenu: { - /** - * - * 表格右键菜单, 基于 `NDropdown` 实现 - * - * 如果菜单内容长度为 `0` 则不会渲染 - * - * 只需要传入对应的菜单配置项, 即可自动开启右键菜单功能 - */ - type: Array as PropType, - default: () => [], - }, - title: { - /** - * - * 表格标题 - * - * 可以自定义渲染 - */ - type: [String, Object] as PropType, - default: '', - }, - action: { - /** - * - * 是否开启操作栏 - * - * 默认开启 - */ - type: Boolean, - default: true, - }, - actionExtra: { - /** - * - * 自定义拓展操作栏 - * - * 暂时不开放 - */ - type: Object as PropType, - default: () => ({}), - }, - showMenu: { - /** - * - * 是否展示右键菜单 - * - * 默认启用 - */ - type: Boolean, - default: true, - }, - exportTooltip: { - /** - * - * 导出表格提示 - */ - type: String, - default: '是否导出为Excel表格?', - }, - exportType: { - /** - * - * 导出类型 - * - * 默认为 `xlsx` - * - * 暂时只支持导出为 `xlsx` - */ - type: String, - default: 'xlsx', - }, - exportPositiveText: { - /** - * - * 导出确认按钮文字 - * - * 默认为 `确认` - */ - type: String, - default: '确认', - }, - exportNegativeText: { - /** - * - * 导出取消按钮文字 - * - * 默认为 `取消` - */ - type: String, - default: '取消', - }, - exportFilename: { - /** - * - * 导出表格名称 - */ - type: String, - default: '', - }, - printPositiveText: { - /** - * - * 打印确认按钮文字 - * - * 默认为 `确认` - */ - type: String, - default: '确认', - }, - printNegativeText: { - /** - * - * 打印取消按钮文字 - * - * 默认为 `取消` - */ - type: String, - default: '取消', - }, - printTooltip: { - /** - * - * 打印表格提示 - */ - type: String, - default: '是否打印该表格?', - }, - printType: { - /** - * - * 打印输出类型: 'pdf' | 'html' | 'image' | 'json' - * - * 默认为 `html` - */ - type: String as PropType, - default: 'html', - }, - printOptions: { - /** - * - * `print-js` 打印配置项 - * - * 会自动过滤: `printable`, 'type' - */ - type: Object as PropType< - Omit - >, - default: () => ({}), - }, - printIcon: { - /** - * - * 打印按钮自定义图标名称 - * - * 需要结合 `RayIcon` 组件使用 - * - * 如果需要自定义图标, 则需要在 `src/icons` 中添加后使用 - */ - type: String, - default: 'print', - }, - exportExcelIcon: { - /** - * - * 导出为表格按钮自定义图标名称 - * - * 需要结合 `RayIcon` 组件使用 - * - * 如果需要自定义图标, 则需要在 `src/icons` 中添加后使用 - */ - type: String, - default: 'export_excel', - }, - tableHeaderSpace: { - /** - * - * 表格头部操作栏, 主要操作栏与额外操作栏之间间隔 - */ - type: String, - default: '10px', - }, - bordered: { - /** - * - * 表格边框 - */ - type: Boolean, - default: false, - }, -} as const - -export default rayTableProps - -/** - * - * `Ray Table Props` - * - * 继承 `Naive UI Data Table` - */ diff --git a/src/components/RayTable/src/type.ts b/src/components/RayTable/src/type.ts deleted file mode 100644 index 65dd12d3..00000000 --- a/src/components/RayTable/src/type.ts +++ /dev/null @@ -1,78 +0,0 @@ -import type { - DropdownOption, - DropdownGroupOption, - DropdownDividerOption, - DropdownRenderOption, - DataTableBaseColumn, - DataTableInst, -} from 'naive-ui' -import type { ComputedRef, WritableComputedRef, VNode } from 'vue' -import type { ComponentSize } from '@/types/modules/component' - -export interface ActionOptions extends DataTableBaseColumn { - leftFixedActivated?: boolean // 向左固定 - rightFixedActivated?: boolean // 向右固定 - resizeColumnActivated?: boolean // 拖拽表格列 -} - -export type FixedType = 'left' | 'right' | undefined - -export interface TableSettingFixedPopoverIcon { - element: ActionOptions - name: string - tooltip: string - fn: Function - index: number - fixed: FixedType - key: 'leftFixedActivated' | 'rightFixedActivated' -} - -export type DropdownMixedOption = - | DropdownOption - | DropdownGroupOption - | DropdownDividerOption - | DropdownRenderOption - -export type SettingOptions = WritableComputedRef - -export type RightClickMenu = ComputedRef - -export interface TableSettingProvider { - modelRightClickMenu: RightClickMenu - modelColumns: SettingOptions - size: ComponentSize - rayTableUUID: string -} - -export interface ExportExcelProvider { - exportTooltip: string - exportType: string - exportPositiveText: string - exportNegativeText: string - exportFilename: string -} - -export type ColumnKey = string | number - -declare type VNodeChildAtom = - | VNode - | string - | number - | boolean - | null - | undefined - | void - -export declare type VNodeArrayChildren = Array< - VNodeArrayChildren | VNodeChildAtom -> - -export declare type VNodeChild = VNodeChildAtom | VNodeArrayChildren - -export declare type TableColumnTitle = - | string - | ((column: DataTableBaseColumn) => VNodeChild) - -export declare type RayTableInst = { - tableMethods: Omit -} diff --git a/src/components/RayTransitionComponent/TransitionComponent.vue b/src/components/RayTransitionComponent/TransitionComponent.vue deleted file mode 100644 index de49154b..00000000 --- a/src/components/RayTransitionComponent/TransitionComponent.vue +++ /dev/null @@ -1,46 +0,0 @@ - - diff --git a/src/dayjs/index.ts b/src/dayjs/index.ts deleted file mode 100644 index 335ea102..00000000 --- a/src/dayjs/index.ts +++ /dev/null @@ -1,39 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import dayjs from 'dayjs' -import { DEFAULT_DAYJS_LOCAL, DAYJS_LOCAL_MAP } from '@/appConfig/localConfig' -import 'dayjs/locale/zh-cn' - -import type { DayjsLocal } from './type' - -export const setupDayjs = () => { - dayjs.locale(DEFAULT_DAYJS_LOCAL) -} - -/** - * - * dayjs hook - * - * 说明: - * - locale: 切换 dayjs 语言配置 - */ -export const useDayjs = () => { - const locale = (key: DayjsLocal) => { - const mapkey = DAYJS_LOCAL_MAP[key] - - mapkey ? dayjs.locale(mapkey) : dayjs.locale(DEFAULT_DAYJS_LOCAL) - } - - return { - locale, - } -} diff --git a/src/dayjs/type.ts b/src/dayjs/type.ts deleted file mode 100644 index c01cfa34..00000000 --- a/src/dayjs/type.ts +++ /dev/null @@ -1,6 +0,0 @@ -export type DayjsLocal = 'zh-cn' | 'en' - -export interface DayjsLocalMap { - 'zh-CN': 'zh-cn' - 'en-US': 'en' -} diff --git a/src/directives/README.md b/src/directives/README.md deleted file mode 100644 index ac6962fd..00000000 --- a/src/directives/README.md +++ /dev/null @@ -1,38 +0,0 @@ -## 说明 - -> 全局自定义指令入口。 - -## 规范 - -- 指令应该为全局的通用性指令 -- 如果指令需要与系统的数据进行关联,应该注意数据的管理与指令注册使用时机 - -## 添加指令说明 - -- 模板视 modules 中每一个文件包为一个模板的指令(全局),并且每个文件包的名称,也被视为该指令名称 -- 添加文件包后,强制要求 index.ts 为指令的输出文件名 -- modules 包中所有指令都会被自动合并到模板中 - -```ts -/** - * - * 示例添加 demo 指令 - */ - -// 1. modules 中添加文件包 -// 2. modules/demo 目录下创建 index.ts 文件 -// 3. 进行自定义指令开发 - -import type { Directive } from 'vue' -import type { RoleBindingValue } from './type' - -const demoDirective: Directive = { - beforeMount: (el, binding) => { - console.log(el, binding) - }, -} - -export default demoDirective - -// 4. 按照上述步骤执行后,会自动在模板中创建一个 v-demo 的指令供全局使用 -``` diff --git a/src/directives/README_DIR.md b/src/directives/README_DIR.md deleted file mode 100644 index 382f1a0b..00000000 --- a/src/directives/README_DIR.md +++ /dev/null @@ -1,215 +0,0 @@ -## 全局自定义指令 - -### v-copy - -- 参数类型: any(参数会强制被 String 方法强制转换) -- 默认值: '' - -#### 示例 - -```tsx -import { NSpace, NCard, NInput, NInputGroup, NButton, NSwitch } from 'naive-ui' - -const Demo = defineComponent({ - name: 'Demo', - setup() { - const dmeoCopyValue = ref('hello copy') - - return { - dmeoCopyValue, - } - }, - render() { - return ( - - - 复制 - - ) - }, -}) -``` - -### v-debounce - -- 参数类型: DebounceBindingOptions -- 默认值: - -```ts -{ - trigger: 'click', - wait: 500, - options: null -} -``` - -#### 示例 - -```tsx -import { NSpace, NCard, NInput, NInputGroup, NButton, NSwitch } from 'naive-ui' - -const Demo = defineComponent({ - name: 'Demo', - setup() { - const demoValue = ref(0) - - const updateDemoValue = () => { - demoValue.value++ - } - - return { - demoValue, - updateDemoValue, - } - }, - render() { - return ( - - - 点击执行 - -

我执行了{this.demoValue}次

-

该方法将延迟 1s 执行

-
- ) - }, -}) -``` - -### v-throttle - -- 参数类型: ThrottleBindingOptions -- 默认值: - -```ts -{ - trigger: 'click', - wait: 500, - options: null -} -``` - -#### 示例 - -```tsx -import { NSpace, NCard, NInput, NInputGroup, NButton, NSwitch } from 'naive-ui' - -const Demo = defineComponent({ - name: 'Demo', - setup() { - const demoValue = ref(0) - - const updateDemoValue = () => { - demoValue.value++ - } - - return { - demoValue, - updateDemoValue, - } - }, - render() { - return ( - - - 点击执行 - -

我执行了{this.demoValue}次

-

该方法 1s 内仅会执行一次

-
- ) - }, -}) -``` - -### v-disabled - -- 参数类型: boolean -- 默认值: false - -#### Tip - -> 该指令基于 css 层面进行禁用操作,如果元素含有 `disabled` 属性方法,会尝试使用原生 `disabled` 属性。对于组件库而言,本身就提供了丰富的 `disabled props`,所以应该是优先使用组件自带属性。 - -#### 示例 - -```tsx -import { - NSpace, - NCard, - NInput, - NInputGroup, - NButton, - NSwitch, - NForm, - NFormItem, -} from 'naive-ui' - -const Demo = defineComponent({ - name: 'Demo', - setup() { - const disabledValue = ref(false) - - return { - disabledValue, - } - }, - render() { - return ( - - - {{ - checked: () => '取消', - unchecked: () => '禁用', - }} - -

- 该指令会强制禁用(通过 css 层面)禁用元素交互。但是 naive ui - 组件提供了完整的 disabled - 属性,所以在组件库有禁用需求时,直接调用组件库 disabled 属性即可 -

- - - -
- - -
-
-
- - -

我是可以被禁用的文本内容

-
-
- - - 按钮 - - - - - - - - -
-
- ) - }, -}) -``` diff --git a/src/directives/helper/combine.ts b/src/directives/helper/combine.ts deleted file mode 100644 index ea0647ab..00000000 --- a/src/directives/helper/combine.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-24 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import type { DirectiveModules } from '@/directives/type' - -export const combineDirective = < - T extends Record, - K extends keyof T, ->( - directiveModules: T, -) => { - const directives = Object.keys(directiveModules).reduce((pre, curr) => { - if (directiveModules[curr]?.default) { - const value = directiveModules[curr]?.default - - pre[curr] = value - - return pre - } else { - throw new Error('directiveModules[curr]?.default is undefined') - } - }, {} as Record) - - return directives -} diff --git a/src/directives/index.ts b/src/directives/index.ts deleted file mode 100644 index a1495b2c..00000000 --- a/src/directives/index.ts +++ /dev/null @@ -1,49 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-24 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { combineDirective } from './helper/combine' -import { forIn } from 'lodash-es' -import { isValueType } from '@/utils/hook' - -import type { App } from 'vue' -import type { DirectiveModules } from '@/directives/type' - -/** - * - * 初始化全局自定义指令 - * - * 该方法会将 modules 下每个文件夹视为一个指令 - * 并且会将文件夹名称识别为指令名称 - * 每个文件下的 index.ts 文件视为每个指令的入口(也就是指令的处理逻辑, 需要暴露出一个 Directive 类型的对象) - */ -export const setupDirective = (app: App) => { - // 获取 modules 包下所有的 index.ts 文件 - const directiveRawModules: Record = - import.meta.glob('./modules/**/index.ts', { - eager: true, - }) - // 将所有的包提取出来(./modules/[file-name]/index.ts) - const directivesModules = combineDirective(directiveRawModules) - // 提取文件名(./modules/copy/index.ts => copy) - const reg = /(?<=modules\/).*(?=\/index\.ts)/ - - forIn(directivesModules, (value, key) => { - const dname = key.match(reg)?.[0] - - if (isValueType(dname, 'String')) { - app.directive(dname, value) - } else { - throw new Error( - 'directiveName is not string, please check your directive file name', - ) - } - }) -} diff --git a/src/directives/modules/copy/index.ts b/src/directives/modules/copy/index.ts deleted file mode 100644 index 0fb51bbc..00000000 --- a/src/directives/modules/copy/index.ts +++ /dev/null @@ -1,54 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-24 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * directive name: copy - */ - -import ClipboardJS from 'clipboard' - -import type { Directive } from 'vue' -import type { CopyElement } from './type' - -let clipboard: ClipboardJS | null - -const copyDirective: Directive = { - mounted: (el, binding) => { - const value = binding.value - - clipboard = new ClipboardJS(el, { - text: () => String(value), - }) - - clipboard?.on('success', () => { - window.$message.success('复制成功') - }) - clipboard?.on('error', () => { - window.$message.error('复制失败') - }) - }, - updated: (el, binding) => { - /** 其实这块代码写的挺蠢的, 但是我目前不知道怎么去优化, 阿巴阿巴阿巴 */ - const value = binding.value - - clipboard = new ClipboardJS(el, { - text: () => String(value), - }) - }, - beforeUnmount: () => { - clipboard?.destroy() - - clipboard = null - }, -} - -export default copyDirective diff --git a/src/directives/modules/copy/type.ts b/src/directives/modules/copy/type.ts deleted file mode 100644 index 5b3f4f00..00000000 --- a/src/directives/modules/copy/type.ts +++ /dev/null @@ -1,3 +0,0 @@ -export interface CopyElement extends Element, UnknownObjectKey { - $value: string -} diff --git a/src/directives/modules/debounce/index.ts b/src/directives/modules/debounce/index.ts deleted file mode 100644 index 7101bf48..00000000 --- a/src/directives/modules/debounce/index.ts +++ /dev/null @@ -1,49 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-24 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * directive name: debounce - */ - -import { debounce } from 'lodash-es' -import { on, off } from '@use-utils/element' - -import type { Directive } from 'vue' -import type { DebounceBindingOptions } from './type' -import type { AnyFunc } from '@/types/modules/utils' - -let debounceFunction: AnyFunc | null - -const debounceDirective: Directive = { - beforeMount: (el, binding) => { - const { func, trigger = 'click', wait = 500, options } = binding.value - - if (typeof func !== 'function') { - throw new Error('debounce directive value must be a function') - } - - debounceFunction = debounce(func, wait, Object.assign({}, {}, options)) - - on(el, trigger, debounceFunction) - }, - beforeUnmount: (el, binding) => { - const { trigger = 'click' } = binding.value - - if (debounceFunction) { - off(el, trigger, debounceFunction) - } - - debounceFunction = null - }, -} - -export default debounceDirective diff --git a/src/directives/modules/debounce/type.ts b/src/directives/modules/debounce/type.ts deleted file mode 100644 index 25aa981d..00000000 --- a/src/directives/modules/debounce/type.ts +++ /dev/null @@ -1,9 +0,0 @@ -import type { DebounceSettings } from 'lodash-es' -import type { AnyFunc } from '@/types/modules/utils' - -export interface DebounceBindingOptions { - func: AnyFunc - trigger: string - wait: number - options: DebounceSettings -} diff --git a/src/directives/modules/disabled/index.ts b/src/directives/modules/disabled/index.ts deleted file mode 100644 index 6b6a15b2..00000000 --- a/src/directives/modules/disabled/index.ts +++ /dev/null @@ -1,43 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-26 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * directive name: disabled - */ - -import { addClass, removeClass } from '@/utils/element' - -import type { Directive } from 'vue' - -const updateElementDisabledType = (el: HTMLElement, value: boolean) => { - if (el) { - const classes = 'ray-template__directive--disabled' - - value ? addClass(el, classes) : removeClass(el, classes) - el?.setAttribute('disabled', value ? 'disabled' : '') - } -} - -const disabledDirective: Directive = { - mounted: (el, binding) => { - const value = binding.value - - updateElementDisabledType(el, value) - }, - updated: (el, binding) => { - const value = binding.value - - updateElementDisabledType(el, value) - }, -} - -export default disabledDirective diff --git a/src/directives/modules/throttle/index.ts b/src/directives/modules/throttle/index.ts deleted file mode 100644 index c6f632bb..00000000 --- a/src/directives/modules/throttle/index.ts +++ /dev/null @@ -1,49 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-24 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * directive name: throttle - */ - -import { throttle } from 'lodash-es' -import { on, off } from '@use-utils/element' - -import type { Directive } from 'vue' -import type { ThrottleBindingOptions } from './type' -import type { AnyFunc } from '@/types/modules/utils' - -let throttleFunction: AnyFunc | null - -const throttleDirective: Directive = { - beforeMount: (el, binding) => { - const { func, trigger = 'click', wait = 500, options } = binding.value - - if (typeof func !== 'function') { - throw new Error('throttle directive value must be a function') - } - - throttleFunction = throttle(func, wait, Object.assign({}, {}, options)) - - on(el, trigger, throttleFunction) - }, - beforeUnmount: (el, binding) => { - const { trigger = 'click' } = binding.value - - if (throttleFunction) { - off(el, trigger, throttleFunction) - } - - throttleFunction = null - }, -} - -export default throttleDirective diff --git a/src/directives/modules/throttle/type.ts b/src/directives/modules/throttle/type.ts deleted file mode 100644 index 9d8c36c7..00000000 --- a/src/directives/modules/throttle/type.ts +++ /dev/null @@ -1,9 +0,0 @@ -import type { ThrottleSettings } from 'lodash-es' -import type { AnyFunc } from '@/types/modules/utils' - -export interface ThrottleBindingOptions { - func: AnyFunc - trigger: string - wait: number - options: ThrottleSettings -} diff --git a/src/directives/type.ts b/src/directives/type.ts deleted file mode 100644 index bc47065c..00000000 --- a/src/directives/type.ts +++ /dev/null @@ -1,5 +0,0 @@ -import type { Directive } from 'vue' - -export interface DirectiveModules extends Object { - default: Directive -} diff --git a/src/error/PageResult/index.scss b/src/error/PageResult/index.scss deleted file mode 100644 index 4f125e3a..00000000 --- a/src/error/PageResult/index.scss +++ /dev/null @@ -1,5 +0,0 @@ -.error-page { - width: 100%; - height: 100vh; - @include flexCenter; -} diff --git a/src/error/PageResult/index.tsx b/src/error/PageResult/index.tsx deleted file mode 100644 index abd96bde..00000000 --- a/src/error/PageResult/index.tsx +++ /dev/null @@ -1,50 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 错误页面 - * - * 基于 NResult 组件实现, 继承该组件所有 props 与 slots - * 可以当作一个组件使用, 也可以当作一个页面调用 - */ - -import './index.scss' - -import { NResult, NButton } from 'naive-ui' - -import { redirectRouterToDashboard } from '@/router/helper/routerCopilot' -import { resultProps } from 'naive-ui' - -const PageResult = defineComponent({ - name: 'PageResult', - props: { - ...resultProps, - }, - render() { - return ( -
- - {{ - ...this.$slots, - footer: () => ( - - 返回首页 - - ), - }} - -
- ) - }, -}) - -export default PageResult diff --git a/src/error/README.md b/src/error/README.md deleted file mode 100644 index 7f7a00c3..00000000 --- a/src/error/README.md +++ /dev/null @@ -1,10 +0,0 @@ -## 异常 - -### 说明 - -- 当前系统使用 Error404 作为系统的默认异常页重定向页面(可自行替换或者更改) -- 提供公共的入口组件,虽然没啥大用,强迫症患者典型 - -### 更改与替换 - -> 如果需要自己更改,或者补充更多的异常页面,可以在当前文件的 views 下补充(建议这么做哈)。也可以直接摒弃现有的东西,全部重新折腾一次,因为这个东西,一般不会太复杂。 diff --git a/src/error/index.ts b/src/error/index.ts deleted file mode 100644 index 1b74c9c1..00000000 --- a/src/error/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import PageResult from './PageResult/index' - -export default PageResult diff --git a/src/error/views/Error404/index.tsx b/src/error/views/Error404/index.tsx deleted file mode 100644 index 4866300a..00000000 --- a/src/error/views/Error404/index.tsx +++ /dev/null @@ -1,24 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import PageResult from '@/error/index' - -const ErrorPage404 = defineComponent({ - name: 'ErrorPage404', - setup() { - return {} - }, - render() { - return - }, -}) - -export default ErrorPage404 diff --git a/src/error/views/Error500/index.tsx b/src/error/views/Error500/index.tsx deleted file mode 100644 index 40983271..00000000 --- a/src/error/views/Error500/index.tsx +++ /dev/null @@ -1,24 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import PageResult from '@/error/index' - -const ErrorPage500 = defineComponent({ - name: 'ErrorPage500', - setup() { - return {} - }, - render() { - return - }, -}) - -export default ErrorPage500 diff --git a/src/icons/A_README.md b/src/icons/A_README.md deleted file mode 100644 index 5ffe5148..00000000 --- a/src/icons/A_README.md +++ /dev/null @@ -1,17 +0,0 @@ -## 说明 - -该文件包属于全局 `svg icon`,配合 `RayIcon` 组件使用。 - -## TIP - -添加新的 `svg` 图标时,应该注意图标自带 `fill` 属性的管理。如果自带了 `fill` 属性的图标,则会导致使用组件 `color` 属性失效的问题。所以如果是需要动态使用 `css` 属性控制样式的图标,应该去掉其 `fill` 属性或者配置为 `fill = currentColor`。 - -```html - -``` - -## 使用方法 - -- 导入 `svg` 图标 -- 命名(`命名必须全局唯一,并且尽量避免使用特殊符号`) -- 导入 `RayIcon` 组件,配置 `name` 属性即可将 `svg` 作为图标使用 diff --git a/src/icons/adjustment.svg b/src/icons/adjustment.svg deleted file mode 100644 index bdca828e..00000000 --- a/src/icons/adjustment.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/axios.svg b/src/icons/axios.svg deleted file mode 100644 index 7c12ac06..00000000 --- a/src/icons/axios.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/close.svg b/src/icons/close.svg deleted file mode 100644 index bd6c6877..00000000 --- a/src/icons/close.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/dark.svg b/src/icons/dark.svg deleted file mode 100644 index 9c69a797..00000000 --- a/src/icons/dark.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/dashboard.svg b/src/icons/dashboard.svg deleted file mode 100644 index f680d2a8..00000000 --- a/src/icons/dashboard.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/icons/doc.svg b/src/icons/doc.svg deleted file mode 100644 index 6b7be9ee..00000000 --- a/src/icons/doc.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/icons/draggable.svg b/src/icons/draggable.svg deleted file mode 100644 index d5ff298a..00000000 --- a/src/icons/draggable.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/echart.svg b/src/icons/echart.svg deleted file mode 100644 index 253fc303..00000000 --- a/src/icons/echart.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/error.svg b/src/icons/error.svg deleted file mode 100644 index ad9fb923..00000000 --- a/src/icons/error.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/icons/expanded.svg b/src/icons/expanded.svg deleted file mode 100644 index 09c0c573..00000000 --- a/src/icons/expanded.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/export_excel.svg b/src/icons/export_excel.svg deleted file mode 100644 index 44937b41..00000000 --- a/src/icons/export_excel.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/icons/fullscreen.svg b/src/icons/fullscreen.svg deleted file mode 100644 index 92f163c3..00000000 --- a/src/icons/fullscreen.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/github.svg b/src/icons/github.svg deleted file mode 100644 index 1c0235ed..00000000 --- a/src/icons/github.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/google.svg b/src/icons/google.svg deleted file mode 100644 index d422a58f..00000000 --- a/src/icons/google.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/language.svg b/src/icons/language.svg deleted file mode 100644 index b399fdcb..00000000 --- a/src/icons/language.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/left_arrow.svg b/src/icons/left_arrow.svg deleted file mode 100644 index 356171b0..00000000 --- a/src/icons/left_arrow.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/light.svg b/src/icons/light.svg deleted file mode 100644 index 2df0d3e2..00000000 --- a/src/icons/light.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/icons/lock.svg b/src/icons/lock.svg deleted file mode 100644 index 12e8dcf5..00000000 --- a/src/icons/lock.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/icons/login_bg.svg b/src/icons/login_bg.svg deleted file mode 100644 index 12ed3eb1..00000000 --- a/src/icons/login_bg.svg +++ /dev/null @@ -1,602 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/icons/more.svg b/src/icons/more.svg deleted file mode 100644 index c18fd376..00000000 --- a/src/icons/more.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/icons/office.svg b/src/icons/office.svg deleted file mode 100644 index 1bb9e2c5..00000000 --- a/src/icons/office.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/other.svg b/src/icons/other.svg deleted file mode 100644 index 517ad080..00000000 --- a/src/icons/other.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/icons/print.svg b/src/icons/print.svg deleted file mode 100644 index 0501d0c5..00000000 --- a/src/icons/print.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/icons/qrcode.svg b/src/icons/qrcode.svg deleted file mode 100644 index 8a844786..00000000 --- a/src/icons/qrcode.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/ray.svg b/src/icons/ray.svg deleted file mode 100644 index daaef75a..00000000 --- a/src/icons/ray.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/icons/reload.svg b/src/icons/reload.svg deleted file mode 100644 index ac935338..00000000 --- a/src/icons/reload.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/rely.svg b/src/icons/rely.svg deleted file mode 100644 index 3bb8d53d..00000000 --- a/src/icons/rely.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/icons/resize_h.svg b/src/icons/resize_h.svg deleted file mode 100644 index f78d5e09..00000000 --- a/src/icons/resize_h.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/right_arrow.svg b/src/icons/right_arrow.svg deleted file mode 100644 index a1659e24..00000000 --- a/src/icons/right_arrow.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/scroll_reveal.svg b/src/icons/scroll_reveal.svg deleted file mode 100644 index 4bf132eb..00000000 --- a/src/icons/scroll_reveal.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/search.svg b/src/icons/search.svg deleted file mode 100644 index d1952363..00000000 --- a/src/icons/search.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/src/icons/setting.svg b/src/icons/setting.svg deleted file mode 100644 index c3de195b..00000000 --- a/src/icons/setting.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/icons/table.svg b/src/icons/table.svg deleted file mode 100644 index 81b761a0..00000000 --- a/src/icons/table.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/icons/twitter.svg b/src/icons/twitter.svg deleted file mode 100644 index 2d8eb3eb..00000000 --- a/src/icons/twitter.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - \ No newline at end of file diff --git a/src/layout/components/Menu/index.scss b/src/layout/components/Menu/index.scss deleted file mode 100644 index b4d90627..00000000 --- a/src/layout/components/Menu/index.scss +++ /dev/null @@ -1,43 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-01-06 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -.ray-menu__logo { - height: 50px; - padding: 0 18px 0 24px; - display: flex; - flex-wrap: nowrap; - justify-content: center; - align-items: center; - gap: 8px 12px; - font-weight: 600; - overflow: hidden; - border-right: solid 1px var(--n-border-color); - - &.ray-menu__logo-url { - position: sticky; - top: 0; - cursor: pointer; - background-color: var(--n-color); - z-index: 20; - } - - & .ray-menu__logo-title { - opacity: 0; - display: none; - flex: 1; - @include overflowEllipsis; - - &.ray-menu__logo-title--open { - opacity: 1; - display: inline-block; - } - } -} diff --git a/src/layout/components/Menu/index.tsx b/src/layout/components/Menu/index.tsx deleted file mode 100644 index 027de23f..00000000 --- a/src/layout/components/Menu/index.tsx +++ /dev/null @@ -1,120 +0,0 @@ -import './index.scss' - -import { NMenu, NLayoutSider, NEllipsis } from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' - -import { useMenu } from '@/store' -import { APP_MENU_CONFIG } from '@/appConfig/appConfig' -import { useVueRouter } from '@/router/helper/useVueRouter' - -import type { MenuInst } from 'naive-ui' -import type { NaiveMenuOptions } from '@/types/modules/component' -import type { AppMenuOption } from '@/types/modules/app' - -const LayoutMenu = defineComponent({ - name: 'LayoutMenu', - setup() { - const menuRef = ref(null) - - const menuStore = useMenu() - const { router } = useVueRouter() - - const { changeMenuModelValue, collapsedMenu } = menuStore - const modelMenuKey = computed({ - get: () => { - nextTick().then(() => { - showMenuOption() - }) - - return menuStore.menuKey - }, - // eslint-disable-next-line @typescript-eslint/no-empty-function - set: () => {}, - }) - const modelMenuOptions = computed(() => menuStore.options) - const modelCollapsed = computed(() => menuStore.collapsed) - const { - layout: { sideBarLogo }, - } = __APP_CFG__ - - const handleSideBarLogoClick = () => { - if (sideBarLogo && sideBarLogo.url) { - sideBarLogo.jumpType === 'station' - ? router.push(sideBarLogo.url) - : window.open(sideBarLogo.url) - } - } - - const showMenuOption = () => { - const key = modelMenuKey.value as string - - nextTick().then(() => { - menuRef.value?.showOption?.(key) - }) - } - - return { - modelMenuKey, - changeMenuModelValue, - modelMenuOptions, - modelCollapsed, - collapsedMenu, - sideBarLogo, - handleSideBarLogoClick, - menuRef, - } - }, - render() { - return ( - - {this.sideBarLogo ? ( -
- {this.sideBarLogo.icon ? ( - - ) : ( - '' - )} -

- {this.sideBarLogo.title} -

-
- ) : ( - '' - )} - { - this.changeMenuModelValue(key, op as unknown as AppMenuOption) - }} - accordion={APP_MENU_CONFIG.MENU_ACCORDION} - /> -
- ) - }, -}) - -export default LayoutMenu diff --git a/src/layout/components/MenuTag/index.scss b/src/layout/components/MenuTag/index.scss deleted file mode 100644 index d7238a22..00000000 --- a/src/layout/components/MenuTag/index.scss +++ /dev/null @@ -1,44 +0,0 @@ -$space: calc($layoutRouterViewContainer / 2); -$menuTagWrapperWidth: 76px; - -.menu-tag { - height: $layoutMenuHeight; - border-bottom: solid 1px var(--n-border-color); - display: flex; - align-items: center; - - & .menu-tag-sapce { - width: calc(100% - $space * 2); - padding: $space; - - & .menu-tag-wrapper { - width: calc(100% - $space * 2 - $menuTagWrapperWidth); - } - - & .ray-icon { - cursor: pointer; - } - - & .menu-tag__left-arrow { - transform: rotate(90deg); - } - - & .menu-tag__right-wrapper { - display: inline-flex; - align-items: center; - - & .menu-tag__right-arrow { - transform: rotate(270deg); - } - - & .menu-tag__right-setting { - width: 28px; - height: 20px; - } - } - } - - & .n-tag { - cursor: pointer; - } -} diff --git a/src/layout/components/MenuTag/index.tsx b/src/layout/components/MenuTag/index.tsx deleted file mode 100644 index df87d860..00000000 --- a/src/layout/components/MenuTag/index.tsx +++ /dev/null @@ -1,547 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-12-08 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 操作说明: - * - 关闭全部: 关闭所有标签页, 并且重定向至根页面 rootRoute.path - * - 关闭右侧: 关闭右侧所有标签, 如果选中标签页与当前激活页不一致并且激活页在右侧, 则会重定向至当前选中标签页 - * - 关闭左侧: 关闭左侧所有标签, 如果选中标签页与当前激活页不一致并且激活页在左侧, 则会重定向至当前选中标签页 - * - 关闭其他: 关闭其他所有标签, 如果选中标签页与当前激活页不一致并且激活页在其中, 则会重定向至当前选中标签页 - * - * root path 标签不可被关闭, 所以不会显示关闭按钮 - * 页面刷新后, 仅会保留刷新前激活 key 的 tag 标签 - * - * 注入 MENU_TAG_DATA 属性, 用于动态更新 MenuTag 标签所在的位置 - */ - -import './index.scss' - -import { NScrollbar, NTag, NSpace, NLayoutHeader, NDropdown } from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' - -import { useMenu, useSetting } from '@/store' -import { uuid } from '@/utils/hook' -import { hasClass } from '@/utils/element' -import { redirectRouterToDashboard } from '@/router/helper/routerCopilot' -import { ROOT_ROUTE } from '@/appConfig/appConfig' -import { queryElements } from '@use-utils/element' - -import type { MenuOption, ScrollbarInst } from 'naive-ui' -import type { MenuTagOptions, AppMenuOption } from '@/types/modules/app' - -const MenuTag = defineComponent({ - name: 'MenuTag', - setup(_, { expose }) { - const scrollRef = ref(null) - - const menuStore = useMenu() - const settingStore = useSetting() - - const { menuKey, menuTagOptions } = storeToRefs(menuStore) - const { - changeMenuModelValue, - spliceMenTagOptions, - emptyMenuTagOptions, - setMenuTagOptions, - } = menuStore - const { changeSwitcher } = settingStore - const { path } = ROOT_ROUTE - - const exclude = ['closeAll', 'closeRight', 'closeLeft', 'closeOther'] - let currentContentmenuIndex = -1 // 当前右键标签页索引位置 - const modelMenuTagOptions = computed(() => - menuTagOptions.value.map((curr, _idx, currentArray) => { - if (curr.key === menuKey.value && curr.key !== path) { - curr.closeable = true - } else { - curr.closeable = false - } - - if (curr.key === path) { - curr.closeable = false - } - - if (currentArray.length <= 1) { - curr.closeable = false - } - - return curr - }), - ) - const moreOptions = ref([ - { - label: '重新加载', - key: 'reloadCurrentPage', - icon: () => - h( - RayIcon, - { - size: 16, - name: 'reload', - }, - {}, - ), - }, - { - label: '关闭其他', - key: 'closeOther', - icon: () => - h( - RayIcon, - { - size: 16, - name: 'other', - }, - {}, - ), - }, - { - label: '关闭右侧', - key: 'closeRight', - icon: () => - h( - RayIcon, - { - size: 16, - name: 'right_arrow', - }, - {}, - ), - }, - { - label: '关闭左侧', - key: 'closeLeft', - icon: () => - h( - RayIcon, - { - size: 16, - name: 'left_arrow', - }, - {}, - ), - }, - { - type: 'divider', - key: 'd1', - }, - { - label: '全部关闭', - key: 'closeAll', - icon: () => - h( - RayIcon, - { - size: 16, - name: 'close', - }, - {}, - ), - disabled: false, - }, - ]) - const scrollBarUUID = uuid(16) - const actionMap = { - reloadCurrentPage: () => { - changeSwitcher(false, 'reloadRouteSwitch') - - setTimeout(() => changeSwitcher(true, 'reloadRouteSwitch')) - }, - closeAll: () => { - /** - * - * 关闭全部标签页, 然后重定向至首页(dashboard) - * 如果做了相关更改, 则需要手动更新 - */ - if (moreOptions.value.length > 1) { - emptyMenuTagOptions() - redirectRouterToDashboard(true) - } - }, - closeRight: () => { - /** - * - * 关闭右侧标签 - * - * 如果当前选择标签与 menuKey 不匹配, 则会关闭当前标签右侧所有变迁并且跳转至该页面 - */ - const length = moreOptions.value.length - const routeItem = modelMenuTagOptions.value[currentContentmenuIndex] - - spliceMenTagOptions(currentContentmenuIndex + 1, length - 1) - - if (menuKey.value !== routeItem.key) { - changeMenuModelValue(routeItem.key, routeItem) - } - }, - closeLeft: () => { - spliceMenTagOptions(0, currentContentmenuIndex) - }, - closeOther: () => { - /** - * - * 关闭其他标签 - * - * 如果关闭标签与当前 menuKey 不匹配, 则会关闭当前选择标签页以外的所有标签页并且跳转至该页面 - */ - const routeItem = modelMenuTagOptions.value[currentContentmenuIndex] - - if (menuKey.value !== routeItem.key) { - emptyMenuTagOptions() - changeMenuModelValue(routeItem.key, routeItem) - } else { - setMenuTagOptions(routeItem, false) - } - }, - } - /** 右键菜单 */ - const actionState = reactive({ - x: 0, - y: 0, - actionDropdownShow: false, - }) - const MENU_TAG_DATA = 'menu_tag_data' - - /** - * - * @param idx 索引 - * - * @remark 关闭 `tag` 菜单, 如果仅有一个则不能关闭 - */ - const closeCurrentMenuTag = (idx: number) => { - spliceMenTagOptions(idx) - - if (menuKey.value !== path) { - const options = modelMenuTagOptions.value - const length = options.length - - const tag = options[length - 1] - - changeMenuModelValue(tag.key as string, tag) - } - } - - const setMoreOptionsDisabled = ( - key: string | number, - disabled: boolean, - ) => { - moreOptions.value.forEach((curr) => { - if (curr.key === key) { - curr.disabled = disabled - - return - } - }) - } - - /** - * - * @param item 当前菜单值 - */ - const handleTagClick = (item: AppMenuOption) => { - changeMenuModelValue(item.key as string, item) - } - - const getScrollElement = () => { - const scroll = document.getElementById(scrollBarUUID) // 获取滚动条容器 - - if (scroll) { - const scrollContentElement = Array.from( - scroll.childNodes, - ) as HTMLElement[] - const findElement = scrollContentElement.find((el) => - hasClass(el, 'n-scrollbar-container'), - ) - - return findElement - } - - return undefined - } - - const handleScrollX = (type: 'left' | 'right') => { - const el = getScrollElement() - - if (el) { - /** - * - * 找到实际横向滚动元素(class: n-scrollbar-container) - * 获取 scrollLeft 属性后, 用于左右滚动边界值进行处理 - */ - const scrollX = el!.scrollLeft || 0 - const rolling = - type === 'left' ? Math.max(0, scrollX - 200) : scrollX + 200 - - scrollRef.value?.scrollTo({ - left: rolling, - behavior: 'smooth', - }) - } - } - - /** 更多操作操作栏 */ - const actionDropdownSelect = (key: string | number) => { - actionState.actionDropdownShow = false - - actionMap[key]?.() - } - - /** - * - * 右键点击标签页 - * - * 缓存当前点击标签页索引值(用于关闭左或者右侧标签页操作) - */ - const handleContextMenu = (idx: number, e: MouseEvent) => { - e.preventDefault() - - actionState.actionDropdownShow = false - currentContentmenuIndex = idx - - nextTick().then(() => { - actionState.actionDropdownShow = true - actionState.x = e.clientX - actionState.y = e.clientY - }) - } - - const setDisabledAccordionToIndex = () => { - const length = modelMenuTagOptions.value.length - 1 - - if (currentContentmenuIndex === length) { - setMoreOptionsDisabled('closeRight', true) - } else if (currentContentmenuIndex < length) { - setMoreOptionsDisabled('closeRight', false) - } - - if (currentContentmenuIndex === 0) { - setMoreOptionsDisabled('closeLeft', true) - } else if (currentContentmenuIndex > 0) { - setMoreOptionsDisabled('closeLeft', false) - } - } - - /** - * - * 如果通过更多按钮触发关闭事件, 则根据当前标签所在索引值为 currentContentmenuIndex - * - * 并且动态设置是否可操作状态 - */ - const setCurrentContentmenuIndex = () => { - const index = modelMenuTagOptions.value.findIndex( - (curr) => curr.key === menuKey.value, - ) - - currentContentmenuIndex = index - - setDisabledAccordionToIndex() - } - - /** 仅有 modelMenuTagOptions 长度大于 1 并且非 root path 时, 才激活关闭按钮 */ - const menuTagMouseenter = (option: MenuTagOptions) => { - if (modelMenuTagOptions.value.length > 1 && option.key !== path) { - option.closeable = true - } - } - - /** 移出 MenuTag 时, 判断是否为当前已激活 key */ - const menuTagMouseleave = (option: MenuTagOptions) => { - if (option.key !== menuKey.value) { - option.closeable = false - } - } - - /** - * - * 每当新的页面打开后, 将滚动条横向滚到至底部 - * 使用 nextTick 避免元素未渲染挂载至页面 - */ - const updateScrollBarPosition = () => { - const el = getScrollElement() - - if (el) { - nextTick().then(() => { - scrollRef.value?.scrollTo({ - left: 99999, - behavior: 'smooth', - }) - }) - } - } - - /** 动态更新 menu tag 所在位置 */ - const positionMenuTag = () => { - nextTick().then(() => { - const tags = queryElements( - `attr:${MENU_TAG_DATA}="${menuKey.value}"`, - ) - - if (tags?.length) { - const [menuTag] = tags - - menuTag.scrollIntoView?.() - } - }) - } - - /** 如果有且只有一个标签页时, 禁止全部关闭操作 */ - watch( - () => modelMenuTagOptions.value, - (newData, oldData) => { - moreOptions.value.forEach((curr) => { - if (exclude.includes(curr.key)) { - newData.length > 1 - ? (curr.disabled = false) - : (curr.disabled = true) - } - }) - - if (oldData?.length) { - if (newData.length > oldData?.length) { - updateScrollBarPosition() - } else if (newData.length === oldData?.length) { - positionMenuTag() - } - } - }, - { - immediate: true, - }, - ) - - /** 动态设置关闭按钮是否可操作 */ - watch( - () => actionState.actionDropdownShow, - () => { - setDisabledAccordionToIndex() - }, - ) - - expose({}) - - return { - modelMenuTagOptions, - changeMenuModelValue, - closeCurrentMenuTag, - menuKey, - handleTagClick, - moreOptions, - handleScrollX, - scrollRef, - scrollBarUUID, - actionDropdownSelect, - rootPath: path, - actionState, - handleContextMenu, - setCurrentContentmenuIndex, - menuTagMouseenter, - menuTagMouseleave, - MENU_TAG_DATA, - } - }, - render() { - return ( - - - - ) - }, -}) - -export default MenuTag diff --git a/src/layout/components/SiderBar/Components/Breadcrumb/index.tsx b/src/layout/components/SiderBar/Components/Breadcrumb/index.tsx deleted file mode 100644 index 00ebbe30..00000000 --- a/src/layout/components/SiderBar/Components/Breadcrumb/index.tsx +++ /dev/null @@ -1,96 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-03 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 顶部面包屑 - * - * 如果下拉菜单条目小于一条, 则不会触发下拉菜单 - * - * 添加 标签, 避免 Runtime directive used on component... 警告 - */ - -import { NDropdown, NBreadcrumb, NBreadcrumbItem } from 'naive-ui' - -import { useMenu } from '@/store' - -import type { DropdownOption, MenuOption } from 'naive-ui' -import type { - AppMenuOption, - MenuTagOptions, - AppMenuKey, -} from '@/types/modules/app' - -const Breadcrumb = defineComponent({ - name: 'RBreadcrumb', - setup() { - const menuStore = useMenu() - - const { changeMenuModelValue } = menuStore - const { breadcrumbOptions } = storeToRefs(menuStore) - const modelBreadcrumbOptions = computed(() => breadcrumbOptions.value) - - const handleDropdownSelect = ( - key: string | number, - option: DropdownOption, - ) => { - changeMenuModelValue(key, option as unknown as AppMenuOption) - } - - const handleBreadcrumbItemClick = (option: AppMenuOption) => { - if (!option.children?.length) { - const { meta = {} } = option - - if (!meta.sameLevel) { - changeMenuModelValue(option.key, option) - } - } - } - - return { - modelBreadcrumbOptions, - handleDropdownSelect, - handleBreadcrumbItemClick, - } - }, - render() { - return ( - - {this.modelBreadcrumbOptions.map((curr) => ( - - 1 ? curr.children : [] - } - onSelect={this.handleDropdownSelect.bind(this)} - > - {{ - default: () => ( - - {curr.label && typeof curr.label === 'function' - ? curr.label() - : curr.breadcrumbLabel} - - ), - }} - - - ))} - - ) - }, -}) - -export default Breadcrumb diff --git a/src/layout/components/SiderBar/Components/GlobalSeach/index.scss b/src/layout/components/SiderBar/Components/GlobalSeach/index.scss deleted file mode 100644 index 95592308..00000000 --- a/src/layout/components/SiderBar/Components/GlobalSeach/index.scss +++ /dev/null @@ -1,102 +0,0 @@ -$globalSearchWidth: 650px; - -.global-seach { - position: fixed; - width: $globalSearchWidth; - left: 50%; - margin-left: calc(0px - $globalSearchWidth / 2); - top: 60px; - - & .global-seach__wrapper { - box-sizing: border-box; - - & .global-seach__card { - width: $globalSearchWidth; - border-radius: 6px; - padding: 12px; - - & .ray-icon { - color: var(--ray-theme-primary-color); - } - - & .global-seach__card-header { - margin-bottom: 12px; - } - - & .global-seach__card-content { - height: auto; - max-height: calc(100% - 98px); - - & .content-item { - padding: 12px; - border-radius: 6px; - cursor: pointer; - transition: background-color 0.3s var(--r-bezier); - - & .content-item-icon { - @include flexCenter; - } - } - } - - & .global-seach__card-footer { - width: 100%; - - & .card-footer__tip-wrapper { - display: flex; - align-items: center; - margin-top: 24px; - - & .tip-wrapper-item { - display: flex; - align-items: center; - - & .item-icon { - display: flex; - align-items: center; - margin-right: 4px; - - & span { - color: var(--ray-theme-primary-color); - } - } - } - } - } - } - } -} - -.global-seach--dark { - @include useAppTheme("dark") { - & .global-seach__card { - background-color: #242424; - - & .global-seach__card-content .content-item { - background-color: #2f2f2f; - - &.content-item--active, - &:hover { - background-color: var(--ray-theme-primary-fade-color); - } - } - } - } -} - -.global-seach--light { - @include useAppTheme("light") { - & .global-seach__card { - background-color: #f9f9f9; - - & .global-seach__card-content .content-item { - background-color: #ffffff; - - &.content-item--active, - &:hover { - background-color: var(--ray-theme-primary-fade-color); - } - } - } - } -} diff --git a/src/layout/components/SiderBar/Components/GlobalSeach/index.tsx b/src/layout/components/SiderBar/Components/GlobalSeach/index.tsx deleted file mode 100644 index a0043692..00000000 --- a/src/layout/components/SiderBar/Components/GlobalSeach/index.tsx +++ /dev/null @@ -1,338 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-04-16 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import './index.scss' - -import { NInput, NModal, NResult, NScrollbar, NSpace } from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' - -import { on, off, queryElements, addClass, removeClass } from '@/utils/element' -import { debounce } from 'lodash-es' -import { useMenu } from '@/store' -import { validMenuItemShow } from '@/router/helper/routerCopilot' - -import type { AppRouteMeta } from '@/router/type' -import type { AppMenuOption } from '@/types/modules/app' - -const GlobalSeach = defineComponent({ - name: 'GlobalSeach', - props: { - show: { - type: Boolean, - default: false, - }, - }, - emits: ['update:show'], - setup(props, { emit }) { - const menuStore = useMenu() - - const { changeMenuModelValue } = menuStore - const modelShow = computed({ - get: () => props.show, - set: (val) => { - emit('update:show', val) - - if (!val) { - resetSearchSomeValue() - } - }, - }) - const modelMenuOptions = computed(() => menuStore.options) - const state = reactive({ - searchValue: null, - searchOptions: [] as AppMenuOption[], - }) - const tiptextOptions = [ - { - icon: 'cmd / ctrl + k', - label: '唤起', - plain: true, - }, - { - icon: '↑ ↓', - label: '切换', - plain: true, - }, - { - icon: 'esc', - label: '关闭', - plain: true, - }, - ] - /** 初始化索引 */ - let searchElementIndex = 0 - /** 缓存索引 */ - let preSearchElementIndex = searchElementIndex - - /** 初始化一些值 */ - const resetSearchSomeValue = () => { - state.searchOptions = [] - state.searchValue = null - searchElementIndex = 0 - preSearchElementIndex = searchElementIndex - } - - /** 按下 ctrl + k 或者 command + k 激活搜索栏 */ - const registerArouseKeyboard = (e: KeyboardEvent) => { - if ((e.ctrlKey || e.metaKey) && e.key === 'k') { - e.preventDefault() - e.stopPropagation() - resetSearchSomeValue() - - modelShow.value = true - } - } - - /** 根据输入值模糊检索菜单 */ - const handleSearchMenuOptions = (value: string) => { - const arr: AppMenuOption[] = [] - - const filterArr = (options: AppMenuOption[]) => { - options.forEach((curr) => { - if (curr.children?.length && validMenuItemShow(curr)) { - filterArr(curr.children) - } - - /** 处理菜单名与输入值, 不区分大小写 */ - const _breadcrumbLabel = curr.breadcrumbLabel?.toLocaleLowerCase() - const _value = String(value).toLocaleLowerCase() - - if ( - _breadcrumbLabel?.includes(_value) && - validMenuItemShow(curr) && - !curr.children?.length - ) { - arr.push(curr) - } - }) - } - - if (value) { - filterArr(modelMenuOptions.value) - - state.searchOptions = arr - } else { - state.searchOptions = [] - } - - nextTick().then(() => { - autoFouceSearchItem() - }) - } - - const handleSearchItemClick = (option: AppMenuOption) => { - if (option) { - const { meta } = option - - /** 如果配置站外跳转则不会关闭搜索框 */ - if (meta.windowOpen) { - window.open(meta.windowOpen) - } else { - modelShow.value = false - - changeMenuModelValue(option.key, option) - } - } - } - - /** 自动聚焦检索项 */ - const autoFouceSearchItem = () => { - const currentOption = state.searchOptions[searchElementIndex] - const preOption = state.searchOptions[preSearchElementIndex] - - if (currentOption) { - nextTick().then(() => { - const searchElementOptions = queryElements( - `attr:data_path="${currentOption.path}"`, - ) - const preSearchElementOptions = preOption - ? queryElements(`attr:data_path="${preOption?.path}"`) - : null - - if (preSearchElementOptions?.length) { - const [el] = preSearchElementOptions - - removeClass(el, 'content-item--active') - } - - if (searchElementOptions?.length) { - const [el] = searchElementOptions - - addClass(el, 'content-item--active') - } - }) - } - } - - /** 渲染搜索菜单前缀图标, 如果没有则用 icon table 代替 */ - const RenderPreIcon = (meta: AppRouteMeta) => { - const { icon } = meta - - if (typeof icon === 'string') { - return - } else if (typeof icon === 'function') { - return () => icon - } else { - return - } - } - - /** 注册按键: 上、下、回车 */ - const registerChangeSearchElementIndex = (e: KeyboardEvent) => { - const keyCode = e.key - - if (keyCode === 'ArrowUp' || keyCode === 'ArrowDown') { - e.preventDefault() - e.stopPropagation() - } - - preSearchElementIndex = searchElementIndex <= 0 ? 0 : searchElementIndex - - /** 更新索引 */ - const updateIndex = (type: 'up' | 'down') => { - if (type === 'up') { - searchElementIndex = - searchElementIndex - 1 < 0 ? 0 : searchElementIndex - 1 - } else if (type === 'down') { - searchElementIndex = - searchElementIndex + 1 >= state.searchOptions.length - ? state.searchOptions.length - 1 - : searchElementIndex + 1 - } - } - - switch (keyCode) { - case 'ArrowUp': - updateIndex('up') - - break - case 'ArrowDown': - updateIndex('down') - - break - case 'Enter': - // eslint-disable-next-line no-case-declarations - const option = state.searchOptions[searchElementIndex] - - if (option) { - handleSearchItemClick(option) - } - - break - - default: - break - } - - autoFouceSearchItem() - } - - onMounted(() => { - on(window, 'keydown', (e: Event) => { - registerArouseKeyboard(e as KeyboardEvent) - registerChangeSearchElementIndex(e as KeyboardEvent) - }) - }) - - onBeforeUnmount(() => { - off(window, 'keydown', (e: Event) => { - registerArouseKeyboard(e as KeyboardEvent) - registerChangeSearchElementIndex(e as KeyboardEvent) - }) - }) - - return { - ...toRefs(state), - modelShow, - tiptextOptions, - handleSearchMenuOptions: debounce(handleSearchMenuOptions, 300), - handleSearchItemClick, - RenderPreIcon, - } - }, - render() { - return ( - -
-
-
-
- - {{ - prefix: () => , - }} - -
- - {this.searchOptions.length ? ( - - {this.searchOptions.map((curr) => ( - -
- {this.RenderPreIcon(curr.meta)} -
-
- {curr.breadcrumbLabel} -
-
- ))} -
- ) : ( - - {{ - icon: () => '', - }} - - )} -
- -
-
-
-
- ) - }, -}) - -export default GlobalSeach diff --git a/src/layout/components/SiderBar/Components/SettingDrawer/components/ThemeSwitch/index.tsx b/src/layout/components/SiderBar/Components/SettingDrawer/components/ThemeSwitch/index.tsx deleted file mode 100644 index 07b0f8ac..00000000 --- a/src/layout/components/SiderBar/Components/SettingDrawer/components/ThemeSwitch/index.tsx +++ /dev/null @@ -1,91 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-04-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { NSpace, NSwitch, NTooltip } from 'naive-ui' -import RayIcon from '@/components/RayIcon' - -import { useSetting } from '@/store' -import { useI18n } from '@/locales/useI18n' - -const ThemeSwitch = defineComponent({ - name: 'ThemeSwitch', - setup() { - const { t } = useI18n() - const settingStore = useSetting() - const { changeSwitcher } = settingStore - const { themeValue } = storeToRefs(settingStore) - - const handleRailStyle = ({ checked }: { checked: boolean }) => { - return checked - ? { - backgroundColor: '#000000', - } - : { - color: '#000000', - } - } - - return { - t, - changeSwitcher, - themeValue, - handleRailStyle, - } - }, - render() { - const { t } = this - - return ( - - - {{ - trigger: () => ( - - this.changeSwitcher(bool, 'themeValue') - } - > - {{ - 'checked-icon': () => - h( - RayIcon, - { - name: 'dark', - }, - {}, - ), - 'unchecked-icon': () => - h( - RayIcon, - { - name: 'light', - }, - {}, - ), - checked: () => '亮', - unchecked: () => '暗', - }} - - ), - default: () => - this.themeValue - ? t('headerSettingOptions.ThemeOptions.Dark') - : t('headerSettingOptions.ThemeOptions.Light'), - }} - - - ) - }, -}) - -export default ThemeSwitch diff --git a/src/layout/components/SiderBar/Components/SettingDrawer/index.scss b/src/layout/components/SiderBar/Components/SettingDrawer/index.scss deleted file mode 100644 index 760db0c1..00000000 --- a/src/layout/components/SiderBar/Components/SettingDrawer/index.scss +++ /dev/null @@ -1,8 +0,0 @@ -.setting-drawer__space { - width: 100%; - - & .n-descriptions-table-content { - display: flex !important; - justify-content: space-between; - } -} diff --git a/src/layout/components/SiderBar/Components/SettingDrawer/index.tsx b/src/layout/components/SiderBar/Components/SettingDrawer/index.tsx deleted file mode 100644 index ebed3dbf..00000000 --- a/src/layout/components/SiderBar/Components/SettingDrawer/index.tsx +++ /dev/null @@ -1,129 +0,0 @@ -import './index.scss' -import { - NDrawer, - NDrawerContent, - NDivider, - NSpace, - NSwitch, - NColorPicker, - NDescriptions, - NDescriptionsItem, -} from 'naive-ui' -import ThemeSwitch from '@/layout/components/SiderBar/components/SettingDrawer/components/ThemeSwitch/index' - -import { APP_THEME } from '@/appConfig/designConfig' -import { useSetting } from '@/store' -import { useI18n } from '@/locales/useI18n' - -import type { PropType } from 'vue' -import type { Placement } from '@/types/modules/component' - -const SettingDrawer = defineComponent({ - name: 'SettingDrawer', - props: { - show: { - type: Boolean, - default: false, - }, - placement: { - type: String as PropType, - default: 'right', - }, - width: { - type: Number, - default: 280, - }, - }, - emits: ['update:show'], - setup(props, { emit }) { - const { t } = useI18n() - const settingStore = useSetting() - - const { changePrimaryColor, changeSwitcher } = settingStore - const { - themeValue, - primaryColorOverride, - menuTagSwitch, - breadcrumbSwitch, - invertSwitch, - } = storeToRefs(settingStore) - - const modelShow = computed({ - get: () => props.show, - set: (bool) => { - emit('update:show', bool) - }, - }) - - return { - modelShow, - t, - changePrimaryColor, - themeValue, - primaryColorOverride, - menuTagSwitch, - changeSwitcher, - breadcrumbSwitch, - invertSwitch, - } - }, - render() { - const { t } = this - - return ( - - - - - {t('headerSettingOptions.ThemeOptions.Title')} - - - - {t('headerSettingOptions.ThemeOptions.PrimaryColorConfig')} - - - - {t('headerSettingOptions.InterfaceDisplay')} - - - - - this.changeSwitcher(bool, 'menuTagSwitch') - } - /> - - - - this.changeSwitcher(bool, 'breadcrumbSwitch') - } - /> - - - - this.changeSwitcher(bool, 'invertSwitch') - } - /> - - - - - - ) - }, -}) - -export default SettingDrawer diff --git a/src/layout/components/SiderBar/Components/TooltipIcon/index.scss b/src/layout/components/SiderBar/Components/TooltipIcon/index.scss deleted file mode 100644 index 571763cf..00000000 --- a/src/layout/components/SiderBar/Components/TooltipIcon/index.scss +++ /dev/null @@ -1,5 +0,0 @@ -.tooltip-text__icon { - cursor: pointer; - outline: none; - border: none; -} diff --git a/src/layout/components/SiderBar/Components/TooltipIcon/index.tsx b/src/layout/components/SiderBar/Components/TooltipIcon/index.tsx deleted file mode 100644 index ddb0a507..00000000 --- a/src/layout/components/SiderBar/Components/TooltipIcon/index.tsx +++ /dev/null @@ -1,64 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-12-29 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import './index.scss' - -import { NTooltip } from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' - -import { tooltipProps } from 'naive-ui' - -const TooltipIcon = defineComponent({ - name: 'TooltipIcon', - props: { - ...tooltipProps, - iconName: { - type: String, - required: true, - }, - customClassName: { - type: String, - default: '', - }, - tooltipText: { - type: String, - default: '', - }, - }, - emits: ['click'], - setup(_, { emit }) { - const handleClick = (e?: MouseEvent) => { - emit('click', e) - } - return { - handleClick, - } - }, - render() { - return ( - - {{ - trigger: () => ( - - ), - default: () => this.tooltipText, - }} - - ) - }, -}) - -export default TooltipIcon diff --git a/src/layout/components/SiderBar/hook.ts b/src/layout/components/SiderBar/hook.ts deleted file mode 100644 index de358624..00000000 --- a/src/layout/components/SiderBar/hook.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { useSetting, useSignin } from '@/store' - -export const useAvatarOptions = () => [ - { - key: 'person', - label: '个人信息', - }, - { - key: 'lockScreen', - label: '锁定屏幕', - }, - { - type: 'divider', - key: 'd1', - }, - { - key: 'logout', - label: '退出登陆', - }, -] - -const avatarDropdownActionMap = { - logout: () => { - const signinStore = useSignin() - const { logout } = signinStore - - window.$dialog.warning({ - title: '提示', - content: '您确定要退出登录吗', - positiveText: '确定', - negativeText: '不确定', - onPositiveClick: () => { - logout() - }, - }) - }, - lockScreen: () => { - const settingStore = useSetting() - const { changeSwitcher } = settingStore - - changeSwitcher(true, 'lockScreenSwitch') - }, -} - -export const avatarDropdownClick = (key: string | number) => { - const action = avatarDropdownActionMap[key] - - action ? action() : window.$message.info('这个人很懒, 没做这个功能~') -} diff --git a/src/layout/components/SiderBar/index.scss b/src/layout/components/SiderBar/index.scss deleted file mode 100644 index 83c39953..00000000 --- a/src/layout/components/SiderBar/index.scss +++ /dev/null @@ -1,16 +0,0 @@ -.layout-header { - height: $layoutHeaderHeight; - padding: 0 $layoutRouterViewContainer; - display: flex; - align-items: center; - - > .layout-header__method { - width: 100%; - - & .layout-header__method--icon { - cursor: pointer; - outline: none; - border: none; - } - } -} diff --git a/src/layout/components/SiderBar/index.tsx b/src/layout/components/SiderBar/index.tsx deleted file mode 100644 index 60804127..00000000 --- a/src/layout/components/SiderBar/index.tsx +++ /dev/null @@ -1,212 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-01-04 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 本来想通过写数据配置化的方式实现顶部的功能小按钮, 结果事实发现... - * - * 但是我又不想改, 就这样吧 - */ - -import './index.scss' - -import { NLayoutHeader, NSpace, NTooltip, NDropdown } from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' -import TootipIcon from '@/layout/components/SiderBar/components/TooltipIcon/index' -import SettingDrawer from './components/SettingDrawer/index' -import Breadcrumb from './components/Breadcrumb/index' -import GlobalSeach from './components/GlobalSeach/index' -import AppAvatar from '@/components/AppComponents/AppAvatar/index' - -import { useSetting } from '@/store' -import { LOCAL_OPTIONS } from '@/appConfig/localConfig' -import { useAvatarOptions, avatarDropdownClick } from './hook' -import screenfull from 'screenfull' -import { useI18n } from '@/locales/useI18n' - -import type { IconEventMapOptions, IconEventMap } from './type' -import type { SigninCallback } from '@/store/modules/signin/type' - -const SiderBar = defineComponent({ - name: 'SiderBar', - setup() { - const settingStore = useSetting() - - const { t } = useI18n() - const { updateLocale, changeSwitcher } = settingStore - - const { drawerPlacement, breadcrumbSwitch } = storeToRefs(settingStore) - const showSettings = ref(false) - const spaceItemStyle = { - display: 'flex', - } - const globalSearchShown = ref(false) - - /** - * - * 顶部左边操作栏 - */ - const leftIconOptions = computed(() => [ - { - name: 'reload', - size: 18, - tooltip: t('headerTooltip.Reload'), - }, - ]) - /** - * - * 顶部右边提示框操作栏 - */ - const rightTooltipIconOptions = computed(() => [ - { - name: 'search', - size: 18, - tooltip: t('headerTooltip.Search'), - eventKey: 'search', - }, - { - name: 'fullscreen', - size: 18, - tooltip: t('headerTooltip.FullScreen'), - eventKey: 'screen', - }, - { - name: 'github', - size: 18, - tooltip: t('headerTooltip.Github'), - eventKey: 'github', - }, - { - name: 'setting', - size: 18, - tooltip: t('headerTooltip.Setting'), - eventKey: 'setting', - }, - ]) - const iconEventMap: IconEventMapOptions = { - reload: () => { - changeSwitcher(false, 'reloadRouteSwitch') - - setTimeout(() => changeSwitcher(true, 'reloadRouteSwitch')) - }, - setting: () => { - showSettings.value = true - }, - github: () => { - window.open('https://github.com/XiaoDaiGua-Ray/ray-template') - }, - fullscreen: () => { - if (screenfull.isEnabled) { - screenfull.toggle() - } else { - window.$message.warning('您的浏览器不支持全屏~') - } - }, - search: () => { - globalSearchShown.value = true - }, - lock: () => { - changeSwitcher(true, 'lockScreenSwitch') - }, - } - - const handleIconClick = (key: IconEventMap) => { - iconEventMap[key]?.() - } - - return { - leftIconOptions, - rightTooltipIconOptions, - t, - handleIconClick, - showSettings, - updateLocale, - spaceItemStyle, - drawerPlacement, - breadcrumbSwitch, - globalSearchShown, - } - }, - render() { - return ( - - - - - {this.leftIconOptions.map((curr) => ( - - {{ - trigger: () => ( - - ), - default: () => curr.tooltip, - }} - - ))} - {this.breadcrumbSwitch ? : ''} - - - {this.rightTooltipIconOptions.map((curr) => ( - - ))} - - this.updateLocale(String(key)) - } - trigger="click" - > - - - - - - - - - - ) - }, -}) - -export default SiderBar diff --git a/src/layout/components/SiderBar/type.ts b/src/layout/components/SiderBar/type.ts deleted file mode 100644 index 4d690219..00000000 --- a/src/layout/components/SiderBar/type.ts +++ /dev/null @@ -1,22 +0,0 @@ -import type { DropdownOption } from 'naive-ui' - -export interface IconEventMapOptions { - [propName: string]: (...args: unknown[]) => unknown -} - -export type IconEventMap = keyof IconEventMapOptions - -export interface IconDropdownOptions extends UnknownObjectKey { - event?: string - switch: boolean - options: DropdownOption[] - eventKey?: string -} - -export interface IconOptions { - name: string - size?: number - tooltip?: string - eventKey?: string - dropdown?: IconDropdownOptions -} diff --git a/src/layout/default/ContentWrapper/index.scss b/src/layout/default/ContentWrapper/index.scss deleted file mode 100644 index a2c09a37..00000000 --- a/src/layout/default/ContentWrapper/index.scss +++ /dev/null @@ -1,3 +0,0 @@ -.content-wrapper { - box-sizing: border-box; -} diff --git a/src/layout/default/ContentWrapper/index.tsx b/src/layout/default/ContentWrapper/index.tsx deleted file mode 100644 index 2788d8bc..00000000 --- a/src/layout/default/ContentWrapper/index.tsx +++ /dev/null @@ -1,38 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-04-21 - * - * @workspace ray-template-mine - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import './index.scss' - -import RayTransitionComponent from '@/components/RayTransitionComponent/TransitionComponent.vue' - -import { useSetting } from '@/store' - -const ContentWrapper = defineComponent({ - name: 'ContentWrapper', - setup() { - const settingStore = useSetting() - - const { reloadRouteSwitch } = storeToRefs(settingStore) - - return { - reloadRouteSwitch, - } - }, - render() { - return this.reloadRouteSwitch ? ( - - ) : ( - <> - ) - }, -}) - -export default ContentWrapper diff --git a/src/layout/default/FooterWrapper/index.scss b/src/layout/default/FooterWrapper/index.scss deleted file mode 100644 index bd7d04cc..00000000 --- a/src/layout/default/FooterWrapper/index.scss +++ /dev/null @@ -1,4 +0,0 @@ -.layout-footer-wrapper { - padding: 24px; - text-align: center; -} diff --git a/src/layout/default/FooterWrapper/index.tsx b/src/layout/default/FooterWrapper/index.tsx deleted file mode 100644 index 96eef486..00000000 --- a/src/layout/default/FooterWrapper/index.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-04-21 - * - * @workspace ray-template-mine - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import './index.scss' - -const FooterWrapper = defineComponent({ - name: 'FooterWrapper', - setup() { - const { - layout: { copyright }, - } = __APP_CFG__ - - return { - copyright, - } - }, - render() { - return this.copyright ? ( - - ) : ( - '' - ) - }, -}) - -export default FooterWrapper diff --git a/src/layout/index.scss b/src/layout/index.scss deleted file mode 100644 index c8ffebc4..00000000 --- a/src/layout/index.scss +++ /dev/null @@ -1,24 +0,0 @@ -.layout { - box-sizing: border-box; - - > .layout-full { - height: 100%; - } - - & .layout__view-container__layout .n-layout-scroll-container { - overflow: hidden; - } - - & .layout-content__router-view { - height: var(--layout-content-height); - padding: calc($layoutRouterViewContainer / 2); - - & .n-scrollbar-container { - height: 100%; - - & .n-scrollbar-content { - height: 100%; - } - } - } -} diff --git a/src/layout/index.tsx b/src/layout/index.tsx deleted file mode 100644 index 38711671..00000000 --- a/src/layout/index.tsx +++ /dev/null @@ -1,86 +0,0 @@ -/** - * - * 页面布局入口文件 - * - * 说明: - * - rayLayoutContentWrapperScopeSelector: 页面切换时重置滚动条注入 id(弃用) - * - * 该组件入口不做逻辑相关的处理, 仅做功能、组件、方法注入 - * 提供页面内 Layout 的一些注入(css vars 为主) - */ - -import './index.scss' - -import { NLayout, NLayoutContent } from 'naive-ui' -import Menu from './components/Menu/index' -import SiderBar from './components/SiderBar/index' -import MenuTag from './components/MenuTag/index' -import ContentWrapper from '@/layout/default/ContentWrapper' -import FooterWrapper from '@/layout/default/FooterWrapper' - -import { useSetting } from '@/store' -import { LAYOUT_CONTENT_REF } from '@/appConfig/routerConfig' -import { layoutHeaderCssVars } from '@/layout/layoutResize' -import useAppLockScreen from '@/components/AppComponents/AppLockScreen/appLockVar' - -const Layout = defineComponent({ - name: 'RLayout', - setup() { - const layoutSiderBarRef = ref() - const layoutMenuTagRef = ref() - - const settingStore = useSetting() - - const { height: windowHeight } = useWindowSize() - const { menuTagSwitch: modelMenuTagSwitch } = storeToRefs(settingStore) - const { getLockAppScreen } = useAppLockScreen() - const cssVarsRef = layoutHeaderCssVars([ - layoutSiderBarRef, - layoutMenuTagRef, - ]) - - return { - windowHeight, - modelMenuTagSwitch, - cssVarsRef, - getLockAppScreen, - LAYOUT_CONTENT_REF, - layoutSiderBarRef, - layoutMenuTagRef, - } - }, - render() { - return ( -
- {!this.getLockAppScreen() ? ( - - - - - {this.modelMenuTagSwitch ? ( - - ) : ( - '' - )} - - - - - - - ) : ( - '' - )} -
- ) - }, -}) - -export default Layout diff --git a/src/layout/layoutResize.ts b/src/layout/layoutResize.ts deleted file mode 100644 index b62f9c93..00000000 --- a/src/layout/layoutResize.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import type { Ref } from 'vue' - -/** - * - * 动态获取 SiderBar 和 MenuTag 高度, 用于 LayoutConetent 高度实时获取与渲染 - * 可以动态更改 MenuTag 样式后, 使得 LayoutConetent 也可以准确的获取高度 - * - * 基于 vueuse useElementSize 方法实现 - * 不建议滥用该方法, 对页面渲染有一定的影响 - */ -export const layoutHeaderCssVars = ( - element: Ref[], -) => { - const siderBar = useElementSize(element[0]) - const menuTag = useElementSize(element[1]) - - return computed(() => { - return { - '--layout-content-height': `calc(100% - ${siderBar.height.value}px - ${menuTag.height.value}px)`, - '--layout-siderbar-height': `${siderBar.height.value}px`, - '--layout-menutag-height': `${menuTag.height.value}px`, - } - }) -} diff --git a/src/locales/README.md b/src/locales/README.md deleted file mode 100644 index e9d1227d..00000000 --- a/src/locales/README.md +++ /dev/null @@ -1,34 +0,0 @@ -## 国际化入口 - -### 说明 - -- 该文件入口为整个项目的入口文件 -- 二次封装 useI18n 方法、国际化文件入口、辅助方法等 -- 国际化配置文件格式都应该按照当前已约定格式进行拓展与使用 - -### lang 文件入口说明 - -> 项目默认包含英文包与中文包,如果需要拓展应该按照当前格式进行拓展。每个文件识别为一个国际包语言包(会自动导入所有 json 文件作为语言包)。 - -#### 注意 - -> 该项目语言包使用 json 格式作为语言包管理格式,为了配合 `@intlify/unplugin-vue-i18n/vite` 插件,故而采用 json。 - -#### 拓展方法 - -- 配置语言包文件(文件名为语言包名称) -- 配置文件入口(使用 `combineI18nMessages` 方法进行自动合并处理) -- 语言包名称应该全局唯一 - -### helper 文件说明 - -- `getAppLocalMessages` 获取系统所有语言包(该方法强制依赖 LOCAL_OPTIONS key 配置,意味着你在配置语言包的时候,key 必须与 `src/locales/lang/xxx.ts` 一一对应匹配) -- `naiveLocales` 获取 `naive-ui` 组件库对应语言包文件 -- `getAppDefaultLanguage` 获取系统当前默认语言包 - -### useI18n 文件说明 - -> 二次封装 `i18n`,应该避免使用自带 `useI18n` 方法,使用系统提供方法。 - -- 支持 setup 环境外使用 `t`、`value` 方法 -- 其行为与官方方法一致 diff --git a/src/locales/helper.ts b/src/locales/helper.ts deleted file mode 100644 index 66f722a3..00000000 --- a/src/locales/helper.ts +++ /dev/null @@ -1,136 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-05-19 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 国际化辅助方法: - * - combineI18nMessages: 合并对应文件下语言包 - * - getAppLocalMessages: 获取所有语言 - */ - -import { set } from 'lodash-es' -import { zhCN, dateZhCN } from 'naive-ui' // 导入 `naive ui` 中文包 -import { getStorage } from '@use-utils/cache' -import { SYSTEM_DEFAULT_LOCAL } from '@/appConfig/localConfig' -import { APP_CATCH_KEY } from '@/appConfig/appConfig' - -import type { Recordable } from '@/types/modules/helper' -import type { - AppLocalesModules, - AppLocalesDropdownMixedOption, - CurrentAppMessages, - I18nModules, -} from '@/locales/type' - -/** - * - * @param langs 语言包 - * @param prefix 语言包前缀 - * - * @remark 合并处理语言包内容, prefix 必填 - */ -export const combineI18nMessages = (langs: I18nModules, prefix: string) => { - if (typeof prefix !== 'string' || !prefix.trim()) { - throw new Error('Expected prefix to be a non-empty string') - } - - const langsGather: Record = {} - - Object.keys(langs).forEach((key) => { - const langFileModule = langs[key].default - - let fileName = key.replace(`./${prefix}/`, '').replace(/^\.\//, '') - const lastIndex = fileName.lastIndexOf('.') - - fileName = fileName.substring(0, lastIndex) - - const keyList = fileName.split('/') - const moduleName = keyList.shift() - const objKey = keyList.join('.') - - if (moduleName) { - if (objKey) { - set(langsGather, moduleName, langsGather[moduleName] || {}) - set(langsGather[moduleName], objKey, langFileModule) - } else { - set(langsGather, moduleName, langFileModule || {}) - } - } - }) - - return langsGather -} - -/** 获取所有语言 */ -export const getAppLocalMessages = async ( - LOCAL_OPTIONS: AppLocalesDropdownMixedOption[], -) => { - const message = {} as CurrentAppMessages - - for (const curr of LOCAL_OPTIONS) { - const msg: AppLocalesModules = await import(`./lang/${curr.key}.ts`) - const key = curr.key - - if (key) { - message[key] = msg?.default?.message ?? {} - } - } - - return message -} - -/** - * - * @param key 切换对应语言 - * @returns 组件库对应语言包 - * - * @remark 受打包体积影响. 如果有新的语言添加, 则需要手动引入对应语言包(https://www.naiveui.com/zh-CN/dark/docs/i18n) - * @remark naive ui 默认为英文 - * - * 该方法的比对 key 必须与 LOCAL_OPTIONS 一一对应 - */ -export const naiveLocales = (key: string) => { - switch (key) { - case 'zh-CN': - return { - locale: zhCN, - dateLocal: dateZhCN, - } - - case 'en-US': - return { - locale: null, - dateLocal: null, - } - - default: - return { - locale: zhCN, - dateLocal: dateZhCN, - } - } -} - -/** - * - * @returns 获取当前环境默认语言 - * - * @remak 未避免出现加载语言错误问题, 故而在 `main.ts` 注册时, 应优先加载 `i18n` 避免出现该问题 - */ -export const getAppDefaultLanguage = () => { - const language = getStorage( - APP_CATCH_KEY.localeLanguage, - 'localStorage', - SYSTEM_DEFAULT_LOCAL, - ) - - return language -} diff --git a/src/locales/index.ts b/src/locales/index.ts deleted file mode 100644 index 1901f192..00000000 --- a/src/locales/index.ts +++ /dev/null @@ -1,60 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-12-08 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 注册 `vue-i18n` - * - * 预设 `localeLanguage` 作为缓存 `key` - * - * 预设中文作为基础语言 - * - * `naive ui` 语言包切换 - * - * 注意: - * - 建议按照主流约定语言包命名 - */ - -import { createI18n } from 'vue-i18n' -import { LOCAL_OPTIONS } from '@/appConfig/localConfig' -import { getAppDefaultLanguage, getAppLocalMessages } from '@/locales/helper' - -import type { App } from 'vue' -import type { I18n, I18nOptions } from 'vue-i18n' - -/** i18n 实例 */ -export let i18n: I18n - -/** 创建 i18n 实例 */ -const createI18nOptions = async () => { - const locale = getAppDefaultLanguage() - const messages = await getAppLocalMessages(LOCAL_OPTIONS) - - const i18nInstance = createI18n({ - legacy: false, - locale, - messages: messages as unknown as I18nOptions['messages'], - sync: true, - missingWarn: false, - silentFallbackWarn: true, - }) - - return i18nInstance -} - -/** 注册 i18n */ -export const setupI18n = async (app: App) => { - const i18nInstance = await createI18nOptions() - - i18n = i18nInstance - - app.use(i18nInstance) -} diff --git a/src/locales/lang/en-US.ts b/src/locales/lang/en-US.ts deleted file mode 100644 index 01121baa..00000000 --- a/src/locales/lang/en-US.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { combineI18nMessages } from '@/locales/helper' - -import type { I18nModules } from '@/locales/type' - -const modules: I18nModules = import.meta.glob('./en-US/**/*.json', { - eager: true, -}) - -export default { - message: { - ...combineI18nMessages(modules, 'en-US'), - }, -} diff --git a/src/locales/lang/en-US/headerSettingOptions.json b/src/locales/lang/en-US/headerSettingOptions.json deleted file mode 100644 index bf66ab47..00000000 --- a/src/locales/lang/en-US/headerSettingOptions.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Title": "Configuration", - "ThemeOptions": { - "Title": "Theme", - "Dark": "Dark", - "Light": "Light", - "PrimaryColorConfig": "Primary Color" - }, - "InterfaceDisplay": "Display" -} diff --git a/src/locales/lang/en-US/headerTooltip.json b/src/locales/lang/en-US/headerTooltip.json deleted file mode 100644 index 819b1056..00000000 --- a/src/locales/lang/en-US/headerTooltip.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Reload": "Reload Current Page", - "Lock": "Lock", - "Setting": "Setting", - "Github": "Github", - "FullScreen": "Full Screen", - "CancelFullScreen": "Cancel Full Screen", - "Search": "Search" -} diff --git a/src/locales/lang/en-US/menu.json b/src/locales/lang/en-US/menu.json deleted file mode 100644 index 3fc2dfac..00000000 --- a/src/locales/lang/en-US/menu.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "Dashboard": "Home", - "Rely": "Rely", - "RelyAbout": "Rely About", - "Error": "Error Page", - "Echart": "Chart", - "scrollReveal": "Scroll Reveal", - "Axios": "Axios Request", - "Table": "Table", - "MultiMenu": "MultiMenu(catch)", - "Doc": "Doc", - "DocLocal": "Doc (China)", - "Office": "Office", - "Office_Document": "Document", - "Office_Presentation": "Presentation", - "Office_Spreadsheet": "Spreadsheet", - "CalculatePrecision": "Precision", - "Directive": "Directive", - "RouterDemo": "Same Level Router Demo" -} diff --git a/src/locales/lang/en-US/setting.json b/src/locales/lang/en-US/setting.json deleted file mode 100644 index e00157a4..00000000 --- a/src/locales/lang/en-US/setting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Title": "Configuration", - "ThemeOptions": { - "Title": "Theme", - "Dark": "Dark", - "Light": "Light", - "PrimaryColorConfig": "Primary Color" - }, - "InterfaceDisplay": "Interface Display" -} diff --git a/src/locales/lang/en-US/views/login/index.json b/src/locales/lang/en-US/views/login/index.json deleted file mode 100644 index efeece16..00000000 --- a/src/locales/lang/en-US/views/login/index.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Register": "Register", - "Signin": "Signin", - "QRCodeSignin": "QRCode Signin", - "NamePlaceholder": "please enter user name", - "PasswordPlaceholder": "please enter password", - "Login": "Login", - "Name": "User Name", - "Password": "User Password" -} diff --git a/src/locales/lang/zh-CN.ts b/src/locales/lang/zh-CN.ts deleted file mode 100644 index b1f4924b..00000000 --- a/src/locales/lang/zh-CN.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { combineI18nMessages } from '@/locales/helper' - -import type { I18nModules } from '@/locales/type' - -const modules: I18nModules = import.meta.glob('./zh-CN/**/*.json', { - eager: true, -}) - -export default { - message: { - ...combineI18nMessages(modules, 'zh-CN'), - }, -} diff --git a/src/locales/lang/zh-CN/headerSettingOptions.json b/src/locales/lang/zh-CN/headerSettingOptions.json deleted file mode 100644 index 1b8bd34c..00000000 --- a/src/locales/lang/zh-CN/headerSettingOptions.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Title": "项目配置", - "ThemeOptions": { - "Title": "主题", - "Dark": "暗色", - "Light": "明亮", - "PrimaryColorConfig": "主题色" - }, - "InterfaceDisplay": "界面显示" -} diff --git a/src/locales/lang/zh-CN/headerTooltip.json b/src/locales/lang/zh-CN/headerTooltip.json deleted file mode 100644 index 9cfd9a50..00000000 --- a/src/locales/lang/zh-CN/headerTooltip.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Reload": "刷新当前页面", - "Lock": "锁屏", - "Setting": "设置", - "Github": "Github", - "FullScreen": "全屏", - "CancelFullScreen": "退出全屏", - "Search": "搜索" -} diff --git a/src/locales/lang/zh-CN/menu.json b/src/locales/lang/zh-CN/menu.json deleted file mode 100644 index 6af1d92f..00000000 --- a/src/locales/lang/zh-CN/menu.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "Dashboard": "首页", - "Rely": "依赖项", - "RelyAbout": "关于", - "Error": "错误页", - "Echart": "可视化", - "scrollReveal": "滚动动画", - "Axios": "请求", - "Table": "表格", - "MultiMenu": "多级菜单(缓存)", - "Doc": "文档", - "DocLocal": "文档 (国内地址)", - "Office": "办公", - "Office_Document": "文档", - "Office_Presentation": "演示", - "Office_Spreadsheet": "表格", - "CalculatePrecision": "数字精度", - "Directive": "指令", - "RouterDemo": "页面详情模式" -} diff --git a/src/locales/lang/zh-CN/setting.json b/src/locales/lang/zh-CN/setting.json deleted file mode 100644 index 1b8bd34c..00000000 --- a/src/locales/lang/zh-CN/setting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Title": "项目配置", - "ThemeOptions": { - "Title": "主题", - "Dark": "暗色", - "Light": "明亮", - "PrimaryColorConfig": "主题色" - }, - "InterfaceDisplay": "界面显示" -} diff --git a/src/locales/lang/zh-CN/views/login/index.json b/src/locales/lang/zh-CN/views/login/index.json deleted file mode 100644 index a99252d3..00000000 --- a/src/locales/lang/zh-CN/views/login/index.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Register": "注册", - "Signin": "登陆", - "QRCodeSignin": "扫码登陆", - "NamePlaceholder": "请输入用户名", - "PasswordPlaceholder": "请输入密码", - "Login": "登 陆", - "Name": "用户名", - "Password": "密码" -} diff --git a/src/locales/type.ts b/src/locales/type.ts deleted file mode 100644 index 03492fa1..00000000 --- a/src/locales/type.ts +++ /dev/null @@ -1,26 +0,0 @@ -import type { - DropdownOption, - DropdownGroupOption, - DropdownDividerOption, - DropdownRenderOption, -} from 'naive-ui' -import type { Recordable } from '@/types/modules/helper' - -export interface CurrentAppMessages { - 'zh-CN': object - 'en-US': object -} - -export type AppLocalesDropdownMixedOption = - | DropdownOption - | DropdownGroupOption - | DropdownDividerOption - | DropdownRenderOption - -export interface AppLocalesModules { - default: { - message: UnknownObjectKey - } -} - -export type I18nModules = Record diff --git a/src/locales/useI18n.ts b/src/locales/useI18n.ts deleted file mode 100644 index 32da32a6..00000000 --- a/src/locales/useI18n.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { i18n } from './index' - -import type { WritableComputedRef } from 'vue' - -const getI18nKey = (namespace: string | undefined, key: string) => { - if (!namespace) { - return key - } - - if (key.startsWith(namespace)) { - return key - } - - return `${namespace}.${key}` -} - -export const useI18n = (namespace?: string) => { - const { t, locale, ...methods } = i18n.global - - const overridesTFunc = (key: string, ...args: any[]) => { - if (!key) { - return '' - } - - if (!key.includes('.') && !namespace) { - return key - } - - // eslint-disable-next-line @typescript-eslint/no-explicit-any - return (t as any)(getI18nKey(namespace, key), ...args) - } - - /** 重写 locale 方法 */ - const overrideLocaleFunc = (lang: string) => { - const localeRef = locale as WritableComputedRef - - localeRef.value = lang - } - - return { - ...methods, - t: overridesTFunc, - locale: overrideLocaleFunc, - } -} - -/** - * - * 该方法为纯函数, 无任何副作用 - * 单纯为了配合 i18n-ally 插件使用 - * - * 该插件识别 t 方法包裹 path 进行提示文案内容 - */ -export const t = (key: string) => key diff --git a/src/main.ts b/src/main.ts deleted file mode 100644 index 57fec277..00000000 --- a/src/main.ts +++ /dev/null @@ -1,73 +0,0 @@ -import App from './App' - -import '@/styles/base.scss' - -import 'virtual:svg-icons-register' // `vite-plugin-svg-icons` 脚本, 如果不使用此插件注释即可 - -import { setupRouter } from './router/index' -import { setupStore } from './store/index' -import { setupI18n } from './locales/index' -import { setupDayjs } from './dayjs/index' -import { setupDirective } from './directives/index' - -import type { App as AppType } from 'vue' - -/** - * - * 普通应用注册方法 - */ -const setupTemplate = async () => { - const app = createApp(App) - - await setupI18n(app) - await setupStore(app) - setupRouter(app) - setupDayjs() - setupDirective(app) - - app.mount('#app') -} - -/** - * - * 作为 `wujie-micro` 子应用注册应用方法 - * 注意: 此处的 `instance` 名称不可以写为 `app` - */ -const setupWujieTemplate = async () => { - let instance: AppType - - window.__WUJIE_MOUNT = async () => { - instance = createApp(App) - - await setupI18n(instance) - await setupStore(instance) - setupRouter(instance) - setupDayjs() - - instance.mount('#app') - } - - window.__WUJIE_UNMOUNT = () => { - instance.unmount() - } - - window.__WUJIE.mount() -} - -/** - * - * 如果此处需要作为微服务主应用使用, 则只需要执行 `setupTemplate` 方法即可 - * 如果项目启用无界微服务, 会自动识别并且启动以无界微服务方法启动该项目 - * - * 作为主应用 - * ---------------------------------------------------------------- - * # 示例 - * const setupTemplate = () => { - * const app = createApp(App) - * setupRouter(app) - * ... - * } - * setupTemplate() - * ---------------------------------------------------------------- - */ -window.__POWERED_BY_WUJIE__ ? setupWujieTemplate() : setupTemplate() diff --git a/src/office/index.ts b/src/office/index.ts deleted file mode 100644 index 2ddf5541..00000000 --- a/src/office/index.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-22 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * onlyoffice - * - * 该功能暂未实现, 后续应该会补上 - * 由于该方法需要后端进行相关配合, 因为目前还在考虑是否接上私有 onlyoffice 服务器, 所以该功能暂未实现 - * 望多多理解, 理解万岁 - */ - -import { getAppEnvironment } from '@use-utils/hook' -import request from '@/axios/instance' - -export const getOfficeDocumentApi = async (uuid: string) => { - const { VITE_APP_OFFICE_PROXY_URL } = getAppEnvironment() - const { get } = request -} diff --git a/src/router/README.md b/src/router/README.md deleted file mode 100644 index 201d5866..00000000 --- a/src/router/README.md +++ /dev/null @@ -1,119 +0,0 @@ -## router 拓展 - -## 类型 - -```ts -interface RouteMeta { - order?: number - i18nKey: string - icon?: string - windowOpen?: string - role?: string[] - hidden?: boolean - noLocalTitle?: string | number - ignoreAutoResetScroll?: boolean - keepAlive?: boolean - sameLevel?: boolean -} -``` - -## 说明 - -``` -order: 菜单顺序,值越大越靠后。仅对顶层有效,子菜单该值无效 -i18nKey: i18n 国际化 key, 会优先使用该字段 -icon: icon 图标, 用于 Menu 菜单(依赖 RayIcon 组件实现) -windowOpen: 超链接打开(新开窗口打开) -role: 权限表 -hidden: 是否显示 -noLocalTitle: 不使用国际化渲染 Menu Titile -ignoreAutoResetScroll: 该页面内容区域自动初始化滚动条位置 -keepAlive: 是否缓存该页面(需要配置 APP_KEEP_ALIVE setupKeepAlive 属性为 true 启用才有效) -sameLevel: 是否标记该路由为平级模式,如果标记为平级模式,会使路由菜单项隐藏。如果在含有子节点处,设置了该属性,会导致子节点全部被隐藏。并且该模块,在后续的使用 url 地址导航跳转时,如果在非当前路由层级层面跳转的该路由,会在当前的面包屑后面追加该模块的信息,触发跳转时,不会修改面包屑、标签页 -``` - -### routerCopilot - -> 该文件提供了一些辅助方法,让你更方便的做一些事情。系统其他地方引用了该方法,所以删除需谨慎。 - -### useVueRouter - -> 二次封装了一个 router hook 方法,让你能够在 setup 环境之外使用 router。建议都使用该方法(useVueRouter)而不是 useRouter。 - -## 路由添加规则 - -- modules 中每一个 ts 文件视为一个路由模块 -- path 以 `/` 开头则视为根路由 -- 如果 path 为根路由,且不没有子级,则直接返回该路由 -- 如果 path 为根路由,且不含有子级,则拼接完整 path 路径,然后返回最后一层路由 -- 子级中不会存在 `/` 开头的情况(模板约定约束),如果存在则不用管,按照前三条逻辑执行代码,如果有误,由开发人员手动更改配置 - -```ts -const demo = { - path: '/multi', - name: 'MultiMenu', - meta: { - i18nKey: 'MultiMenu', - icon: 'table', - }, - children: [ - { - path: 'multi-menu-one', - name: 'MultiMenuOne', - meta: { - noLocalTitle: '多级菜单-1', - }, - key: 'multi-menu-one', - breadcrumbLabel: '多级菜单-1', - show: true, - }, - { - path: 'multi-menu-two', - name: 'MultiMenuTwo', - meta: { - noLocalTitle: '多级菜单-2', - }, - children: [ - { - path: 'sub-menu', - name: 'SubMenu', - meta: { - noLocalTitle: '多级菜单-2-1', - }, - key: 'sub-menu', - breadcrumbLabel: '多级菜单-2-1', - show: true, - }, - ], - key: 'multi-menu-two', - breadcrumbLabel: '多级菜单-2', - show: true, - }, - ], -} - -// 转换后 - -const transform = [ - { - path: '/multi/multi-menu-one', - name: 'MultiMenuOne', - meta: { - noLocalTitle: '多级菜单-1', - }, - key: 'multi-menu-one', - breadcrumbLabel: '多级菜单-1', - show: true, - }, - { - path: '/multi/multi-menu-two/sub-menu', - name: 'SubMenu', - meta: { - noLocalTitle: '多级菜单-2-1', - }, - key: 'sub-menu', - breadcrumbLabel: '多级菜单-2-1', - show: true, - }, -] -``` diff --git a/src/router/constant/index.ts b/src/router/constant/index.ts deleted file mode 100644 index 25093f6b..00000000 --- a/src/router/constant/index.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * - * default layout - * - * 默认布局, 统一使用该组件管理右侧现实内容区域展示 - * - * @example - * 使用示例: - * ``` - * { - * path: '/axios', - * name: 'Axios', - * component: LAYOUT, - * meta: { ... }, - * children: [ { ... } ] - * } - * ``` - */ -export const LAYOUT = () => import('@/layout/default/ContentWrapper/index') diff --git a/src/router/helper/expandRoutes.ts b/src/router/helper/expandRoutes.ts deleted file mode 100644 index ed54cc95..00000000 --- a/src/router/helper/expandRoutes.ts +++ /dev/null @@ -1,78 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-01 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 该功能基于 代码改进实现 - * 自动展开所有路由 - */ - -import { cloneDeep } from 'lodash-es' - -import type { AppRouteRecordRaw } from '@/router/type' - -const isRootPath = (path: string) => path.startsWith('/') - -/** - * - * @param arr route modules - * @param result callback expand routes modules result - * @param path route path - * @returns callback expand routes modules result - * - * @remark 该方法会视 / 开头 path 为根路由 - */ -const routePromotion = ( - arr: AppRouteRecordRaw[], - result: AppRouteRecordRaw[] = [], - path = '', -) => { - // 如果没有小宝贝进来 则没有小宝贝出去 - if (!Array.isArray(arr)) { - return [] - } - - // 新来的小宝贝们先洗好澡澡哦 - const sourceArr = arr - - // 来开始我们的循环之旅吧 - sourceArr.forEach((curr) => { - // 获取可爱的小宝贝哦 - - if (curr.children?.length) { - // 如果小宝贝有小小宝贝 - - // 小宝贝们有孩子了,/(ㄒoㄒ)/~~ - routePromotion( - curr.children, - result, - path + (isRootPath(curr.path) ? curr.path : '/' + curr.path), - ) - } else { - // 小宝贝还是单身哦 - // 乖乖的小宝贝快快进入口袋 - curr.path = path + (isRootPath(curr.path) ? curr.path : '/' + curr.path) - - result.push(curr) - } - }) - - // 返回都是根节点的小宝贝们 - return result -} - -export const expandRoutes = (arr: AppRouteRecordRaw[]) => { - if (!Array.isArray(arr)) { - return [] - } - - return routePromotion(cloneDeep(arr)) -} diff --git a/src/router/helper/helper.ts b/src/router/helper/helper.ts deleted file mode 100644 index 7192d914..00000000 --- a/src/router/helper/helper.ts +++ /dev/null @@ -1,109 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-07-04 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * helper 包入口 - * - * 该包一般是用于该模块一些处理的辅助方法 - * 通常不会用于其他地方 - * 如果有需要查看 router 模块的全局通用辅助方法可以查看 routerCopilot 包 - */ - -import { LAYOUT_CONTENT_REF } from '@/appConfig/routerConfig' - -import type { RouteLocationNormalized } from 'vue-router' -import type { AppRouteRecordRaw, RouteModules } from '@/router/type' - -/** - * - * @returns 所有路由模块 - * - * @remark 自动合并所有路由模块, 每一个 ts 文件都视为一个 route module 与 views 一一对应 - * - * 请注意, 如果更改了 modules 的目录位置或者该方法的位置, 需要同步更改 import.meta.glob 方法的路径 - * 该方法会以本文件为起始位置去查找对应 URL 目录的资源 - * - * 会将 modules 中每一个 ts 文件当作一个路由模块, 即使你以分包的形式创建了路由模块 - */ -export const combineRawRouteModules = () => { - const modulesFiles: RouteModules = import.meta.glob('../modules/**/*.ts', { - eager: true, - }) - - const modules = Object.keys(modulesFiles).reduce((modules, modulePath) => { - const route = modulesFiles[modulePath].default - - if (route) { - modules.push(route) - } else { - throw new Error( - 'router helper combine: an exception occurred while parsing the routing file!', - ) - } - - return modules - }, [] as AppRouteRecordRaw[]) - - return modules -} - -/** - * - * @param routes 路由模块表(route 表) - * @returns 排序后的新路由表 - * - * @remark 必须配置 meta 属性, order 属性会影响页面菜单排序 - * - * 如果为配置 order 属性, 则会自动按照前合并路由的顺序前后排序 - * 如果 order 属性值相同, 则会按照路由名称进行排序 - */ -export const orderRoutes = (routes: AppRouteRecordRaw[]) => { - return routes.sort((curr, next) => { - const currOrder = curr.meta?.order ?? 1 - const nextOrder = next.meta?.order ?? 0 - - if (typeof currOrder !== 'number' || typeof nextOrder !== 'number') { - throw new Error('orderRoutes error: order must be a number!') - } - - if (currOrder === nextOrder) { - // 如果两个路由的 order 值相同,则按照路由名进行排序 - return curr.name - ? next.name - ? curr.name.localeCompare(next.name) - : -1 - : 1 - } - - return currOrder - nextOrder - }) -} - -/** - * - * 切换路由时, 手动将容器区域回归默认值 - * - * 由于官方不支持这个方法了, 所以自己手写了一个 - * 如果需要忽略恢复默认位置, 仅需要在 meta 中配置 ignoreAutoResetScroll 属性即可 - */ -export const scrollViewToTop = (route: RouteLocationNormalized) => { - const { meta } = route - - /** 这个 id 是注入在 layout 中 */ - if (!meta?.ignoreAutoResetScroll) { - LAYOUT_CONTENT_REF.value?.scrollTo({ - top: 0, - left: 0, - behavior: 'smooth', - }) - } -} diff --git a/src/router/helper/permission.ts b/src/router/helper/permission.ts deleted file mode 100644 index f608398b..00000000 --- a/src/router/helper/permission.ts +++ /dev/null @@ -1,96 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-01-28 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 路由守卫 - * 进行路由鉴权操作 - * - * 根据 meta role 与 BASIC_ROUTER 结合进行跳转路由鉴权操作 - * 如果 meta role 为空则会默认认为全局可用 - * 如果需要指定角色, 则添加该属性并且添加角色 - * 当然, 你可以指定一个超级管理员角色, 默认获取全部路由 - */ - -import { getStorage } from '@/utils/cache' -import { APP_CATCH_KEY, ROOT_ROUTE } from '@/appConfig/appConfig' -import { redirectRouterToDashboard } from '@/router/helper/routerCopilot' -import { WHITE_ROUTES } from '@/appConfig/routerConfig' -import { validRole } from '@/router/helper/routerCopilot' -import { isValueType } from '@/utils/hook' - -import type { - Router, - NavigationGuardNext, - RouteLocationNormalized, -} from 'vue-router' -import type { AppMenuOption } from '@/types/modules/app' -import type { AppRouteMeta } from '@/router/type' - -/** 路由守卫 */ -export const permissionRouter = (router: Router) => { - const { beforeEach } = router - - const isToLogin = ( - to: RouteLocationNormalized, - from: RouteLocationNormalized, - ) => to.path === '/' || from.path === '/login' - - beforeEach((to, from, next) => { - const token = getStorage(APP_CATCH_KEY.token) - const catchRoutePath = getStorage( - 'menuKey', - 'sessionStorage', - ROOT_ROUTE.path, - ) - const { meta, name } = to - - /** 是否含有 token */ - if (token !== null) { - /** 是否在有 token 时去到登陆页 */ - if (isToLogin(to, from)) { - redirectRouterToDashboard(true) - } else { - /** 是否为白名单 */ - if ( - !isValueType(name, 'Symbol') && - name && - WHITE_ROUTES.includes(name) - ) { - next() - } else { - /** 是否有权限 */ - if (validRole(meta as AppRouteMeta)) { - /** 是否在有权限时去到登陆页 */ - if (isToLogin(to, from)) { - /** 容错处理, 如果没有预设地址与获取到缓存地址, 则重定向到首页去 */ - if (catchRoutePath) { - next(catchRoutePath) - } else { - redirectRouterToDashboard(true) - } - } else { - next() - } - } else { - redirectRouterToDashboard(true) - } - } - } - } else { - if (isToLogin(to, from)) { - next() - } else { - next('/') - } - } - }) -} diff --git a/src/router/helper/routerCopilot.ts b/src/router/helper/routerCopilot.ts deleted file mode 100644 index 4caec228..00000000 --- a/src/router/helper/routerCopilot.ts +++ /dev/null @@ -1,132 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { permissionRouter } from './permission' - -import { - SETUP_ROUTER_LOADING_BAR, - SETUP_ROUTER_GUARD, - SUPER_ADMIN, -} from '@/appConfig/routerConfig' -import { useSignin } from '@/store' -import { useVueRouter } from '@/router/helper/useVueRouter' -import { ROOT_ROUTE } from '@/appConfig/appConfig' -import { setStorage } from '@/utils/cache' - -import type { Router } from 'vue-router' -import type { AppRouteMeta } from '@/router/type' -import type { AppMenuOption } from '@/types/modules/app' - -/** - * - * 校验当前菜单项是否与权限匹配 - * 仅做对于 Meta Role 配置是否匹配做校验, 不关心 Meta Hidden 属性 - * - * 如果为超级管理员, 则会默认获取所有权限 - */ -export const validRole = (meta: AppRouteMeta) => { - const { signinCallback } = storeToRefs(useSignin()) - const modelRole = computed(() => signinCallback.value.role) - const { role: metaRole } = meta - - if (SUPER_ADMIN?.length && SUPER_ADMIN.includes(modelRole.value)) { - return true - } else { - // 如果 role 为 undefind 或者空数组, 则认为该路由不做权限过滤 - if (!metaRole || !metaRole?.length) { - return true - } - - // 判断是否含有该权限 - if (metaRole) { - return metaRole.includes(modelRole.value) - } - - return true - } -} - -/** - * - * @remark 校验当前路由是否显示 - * - * 该方法进行校验时, 会将 hidden 与 sameLevel 一起进行校验 - * sameLevel 的优先级最高 - * - * 如果你仅仅是希望校验是否满足权限, 应该使用另一个方法 validRole - */ -export const validMenuItemShow = (option: AppMenuOption) => { - const { meta = {} } = option - const { hidden, sameLevel } = meta - - // 如果该路由被标记为平级模式, 则会强制不显示在菜单中 - if (sameLevel) { - return false - } - - if (hidden) { - return false - } - - return true -} - -/** - * - * @remark 路由切换启用顶部加载条 - * @remark 路由切换启用加载动画 - */ -export const setupRouterLoadingBar = (router: Router) => { - router.beforeEach(() => { - window?.$loadingBar?.start() - }) - - router.afterEach(() => { - window?.$loadingBar?.finish() - }) - - router.onError(() => { - window?.$loadingBar?.error() - }) -} - -/** - * - * @param router vue router instance - * - * @remark 统一的路由相关功能配置, 虽然该方法有点蠢... - */ -export const vueRouterRegister = (router: Router) => { - if (SETUP_ROUTER_LOADING_BAR) { - setupRouterLoadingBar(router) - } - - if (SETUP_ROUTER_GUARD) { - permissionRouter(router) - } -} - -/** - * - * @param replace 是否使用 - * - * @remark 重定向路由至首页, 默认采用替换方法重定向 - */ -export const redirectRouterToDashboard = (isReplace = true) => { - const { router } = useVueRouter() - - const { push, replace } = router - const { path } = ROOT_ROUTE - - setStorage('menuKey', path) - - isReplace ? push(path) : replace(path) -} diff --git a/src/router/helper/useVueRouter.ts b/src/router/helper/useVueRouter.ts deleted file mode 100644 index 5f8465c4..00000000 --- a/src/router/helper/useVueRouter.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { router } from '@/router/index' - -/** - * - * @returns vue router instance - * - * @remark 使用 vue router instance, 可以在 setup 环境外使用 - * - * 使用该方法时候, 可能会出现热更新错误的问题... 所以遇到的时候不要紧张, 刷新一下就好 - * 如果确定使用环境就在 setup 中, 还是建议使用官方的 useRouter useRoute 方法, 避免热更新报错的问题 - */ -export const useVueRouter = () => { - try { - if (router) { - return { - router, - } - } else { - throw new Error() - } - } catch (e) { - throw new Error('router is not defined') - } -} diff --git a/src/router/index.ts b/src/router/index.ts deleted file mode 100644 index 4d5a4259..00000000 --- a/src/router/index.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { createRouter, createWebHashHistory } from 'vue-router' -import { scrollViewToTop } from '@/router/helper/helper' -import { vueRouterRegister } from '@/router/helper/routerCopilot' -import { useVueRouter } from '@/router/helper/useVueRouter' - -import constantRoutes from './routes' - -import type { App } from 'vue' -import type { RouteRecordRaw, Router } from 'vue-router' - -export let router: Router - -const createVueRouter = () => { - return createRouter({ - history: createWebHashHistory(), - routes: constantRoutes() as unknown as RouteRecordRaw[], - scrollBehavior: (to) => { - scrollViewToTop(to) - - return { - top: 0, - left: 0, - } - }, - }) -} - -// setup router -export const setupRouter = (app: App) => { - router = createVueRouter() - - vueRouterRegister(router) - useVueRouter() - - app.use(router) -} diff --git a/src/router/modules/axios.ts b/src/router/modules/axios.ts deleted file mode 100644 index 79bd211b..00000000 --- a/src/router/modules/axios.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const axios: AppRouteRecordRaw = { - path: '/axios', - name: 'RAxios', - component: () => import('@/views/axios/index'), - meta: { - i18nKey: t('menu.Axios'), - icon: 'axios', - order: 3, - keepAlive: true, - }, -} - -export default axios diff --git a/src/router/modules/dashboard.ts b/src/router/modules/dashboard.ts deleted file mode 100644 index bba64493..00000000 --- a/src/router/modules/dashboard.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const dashboard: AppRouteRecordRaw = { - path: '/dashboard', - name: 'RDashboard', - component: () => import('@/views/dashboard/index'), - meta: { - i18nKey: t('menu.Dashboard'), - icon: 'dashboard', - order: 0, - }, -} - -export default dashboard diff --git a/src/router/modules/directive.ts b/src/router/modules/directive.ts deleted file mode 100644 index 45611ad1..00000000 --- a/src/router/modules/directive.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const directive: AppRouteRecordRaw = { - path: '/directive', - name: 'RDirective', - component: () => import('@/views/directive/index'), - meta: { - i18nKey: t('menu.Directive'), - icon: 'other', - order: 2, - }, -} - -export default directive diff --git a/src/router/modules/doc-local.ts b/src/router/modules/doc-local.ts deleted file mode 100644 index c65ba3c8..00000000 --- a/src/router/modules/doc-local.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const docLocal: AppRouteRecordRaw = { - path: '/doc', - name: 'RDocLocal', - component: () => import('@/views/doc/index'), - meta: { - i18nKey: t('menu.DocLocal'), - icon: 'doc', - windowOpen: 'https://ray-template.yunkuangao.com/ray-template-doc/', - order: 6, - }, -} - -export default docLocal diff --git a/src/router/modules/doc.ts b/src/router/modules/doc.ts deleted file mode 100644 index a4e65910..00000000 --- a/src/router/modules/doc.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const doc: AppRouteRecordRaw = { - path: '/doc', - name: 'RDoc', - component: () => import('@/views/doc/index'), - meta: { - i18nKey: t('menu.Doc'), - icon: 'doc', - windowOpen: 'https://xiaodaigua-ray.github.io/ray-template-doc/', - order: 5, - }, -} - -export default doc diff --git a/src/router/modules/echart.ts b/src/router/modules/echart.ts deleted file mode 100644 index c287115e..00000000 --- a/src/router/modules/echart.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const echart: AppRouteRecordRaw = { - path: '/echart', - name: 'REchart', - component: () => import('@/views/echart/index'), - meta: { - i18nKey: t('menu.Echart'), - icon: 'echart', - order: 1, - }, -} - -export default echart diff --git a/src/router/modules/error.ts b/src/router/modules/error.ts deleted file mode 100644 index 62e0c690..00000000 --- a/src/router/modules/error.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const error: AppRouteRecordRaw = { - path: '/error', - name: 'ErrorPage', - component: () => import('@/error/views/Error404/index'), - meta: { - i18nKey: t('menu.Error'), - icon: 'error', - hidden: true, - }, -} - -export default error diff --git a/src/router/modules/iframe.ts b/src/router/modules/iframe.ts deleted file mode 100644 index 6fdf5064..00000000 --- a/src/router/modules/iframe.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { t } from '@/locales/useI18n' - -import type { AppRouteRecordRaw } from '@/router/type' - -const iframe: AppRouteRecordRaw = { - path: '/iframe', - name: 'IframeDemo', - component: () => import('@/views/iframe/index'), - meta: { - icon: 'other', - order: 2, - noLocalTitle: 'iframe', - }, -} - -export default iframe diff --git a/src/router/modules/multi-menu.ts b/src/router/modules/multi-menu.ts deleted file mode 100644 index ab6149e7..00000000 --- a/src/router/modules/multi-menu.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const multiMenu: AppRouteRecordRaw = { - path: '/multi', - name: 'MultiMenu', - component: LAYOUT, - meta: { - i18nKey: t('menu.MultiMenu'), - icon: 'other', - order: 4, - }, - children: [ - { - path: 'multi-menu-one', - name: 'MultiMenuOne', - component: () => import('@/views/multi/views/multi-menu-one/index'), - meta: { - noLocalTitle: '多级菜单-1', - keepAlive: true, - }, - }, - { - path: 'multi-menu-two', - name: 'MultiMenuTwo', - component: LAYOUT, - meta: { - noLocalTitle: '多级菜单-2', - }, - children: [ - { - path: 'sub-menu-other', - name: 'SubMenuOther', - component: () => - import( - '@/views/multi/views/multi-menu-two/views/sub-menu-other/index' - ), - meta: { - noLocalTitle: '多级菜单-2-1', - keepAlive: true, - }, - }, - { - path: 'sub-menu', - name: 'SubMenu', - component: LAYOUT, - meta: { - noLocalTitle: '多级菜单-2-2', - keepAlive: true, - }, - children: [ - { - path: 'sub-menu-one', - name: 'MultiMenuTwoOne', - component: () => - import( - '@/views/multi/views/multi-menu-two/views/sub-menu/views/multi-menu-two-one/index' - ), - meta: { - noLocalTitle: '多级菜单-2-2-1', - keepAlive: true, - }, - }, - ], - }, - ], - }, - ], -} - -export default multiMenu diff --git a/src/router/modules/office.ts b/src/router/modules/office.ts deleted file mode 100644 index 55c2466f..00000000 --- a/src/router/modules/office.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const office: AppRouteRecordRaw = { - path: '/office', - name: 'ROffice', - component: () => import('@/views/office/index'), - meta: { - i18nKey: t('menu.Office'), - icon: 'office', - hidden: true, - }, - children: [ - { - path: 'document', - name: 'Document', - component: () => import('@/views/office/views/document/index'), - meta: { - i18nKey: 'Office_Document', - }, - }, - { - path: 'presentation', - name: 'Presentation', - component: () => import('@/views/office/views/presentation/index'), - meta: { - i18nKey: 'Office_Presentation', - }, - }, - { - path: 'spreadsheet', - name: 'Spreadsheet', - component: () => import('@/views/office/views/spreadsheet/index'), - meta: { - i18nKey: 'Office_Spreadsheet', - }, - }, - ], -} - -export default office diff --git a/src/router/modules/precision.ts b/src/router/modules/precision.ts deleted file mode 100644 index 0dba74df..00000000 --- a/src/router/modules/precision.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const precision: AppRouteRecordRaw = { - path: '/precision', - name: 'CalculatePrecision', - component: () => import('@/views/precision/index'), - meta: { - i18nKey: t('menu.CalculatePrecision'), - icon: 'other', - order: 2, - }, -} - -export default precision diff --git a/src/router/modules/rely.ts b/src/router/modules/rely.ts deleted file mode 100644 index 1cebef37..00000000 --- a/src/router/modules/rely.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const rely: AppRouteRecordRaw = { - path: '/rely', - name: 'RelyAbout', - component: LAYOUT, - meta: { - i18nKey: t('menu.Rely'), - icon: 'rely', - order: 7, - }, - children: [ - { - path: 'rely-about', - name: 'RelyAbout', - component: () => import('@/views/rely/views/rely-about/index'), - meta: { - i18nKey: 'RelyAbout', - }, - }, - ], -} - -export default rely diff --git a/src/router/modules/router-demo.ts b/src/router/modules/router-demo.ts deleted file mode 100644 index 192078c1..00000000 --- a/src/router/modules/router-demo.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const routerDemo: AppRouteRecordRaw = { - path: '/router-demo', - name: 'RouterDemoRoot', - component: LAYOUT, - meta: { - i18nKey: t('menu.RouterDemo'), - icon: 'other', - order: 3, - }, - children: [ - { - path: 'router-demo-home', - name: 'RouterDemoHome', - component: () => import('@/views/router-demo/router-demo-home/index'), - meta: { - noLocalTitle: '人员信息(平级模式)', - }, - }, - { - path: 'router-demo-detail', - name: 'RouterDemoDetail', - component: () => import('@/views/router-demo/router-demo-detail/index'), - meta: { - noLocalTitle: '信息详情', - hidden: true, - sameLevel: true, - }, - }, - ], -} - -export default routerDemo diff --git a/src/router/modules/scroll-reveal.ts b/src/router/modules/scroll-reveal.ts deleted file mode 100644 index ca53f267..00000000 --- a/src/router/modules/scroll-reveal.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * - * 由于还未找到如何解决 scrollReveal 插件问题 - * 所以暂时隐藏该页面 - */ - -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const scrollReveal: AppRouteRecordRaw = { - path: '/scroll-reveal', - name: 'ScrollReveal', - component: () => import('@/views/scroll-reveal/index'), - meta: { - i18nKey: t('menu.scrollReveal'), - icon: 'scroll_reveal', - hidden: true, - }, -} - -export default scrollReveal diff --git a/src/router/modules/table.ts b/src/router/modules/table.ts deleted file mode 100644 index a25e84b2..00000000 --- a/src/router/modules/table.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { t } from '@/locales/useI18n' -import { LAYOUT } from '@/router/constant/index' - -import type { AppRouteRecordRaw } from '@/router/type' - -const table: AppRouteRecordRaw = { - path: '/table', - name: 'TableView', - component: () => import('@/views/table/index'), - meta: { - i18nKey: t('menu.Table'), - icon: 'other', - order: 2, - }, -} - -export default table diff --git a/src/router/routeModules.ts b/src/router/routeModules.ts deleted file mode 100644 index 6dd7edfa..00000000 --- a/src/router/routeModules.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-01 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 描述: - * - 自动导入所有路由模块 - * - 平铺所有路由 - * - * modules 模块下每一个 ts 文件视为一个路由模块(route) - * 每个模块必须配置 meta 属性 - * 如果不设置 order 属性, 则会默认排在前面 - */ - -import { combineRawRouteModules } from '@/router/helper/helper' -import { orderRoutes } from '@/router/helper/helper' - -/** 获取所有被合并与排序的路由 */ -export const getAppRawRoutes = () => orderRoutes(combineRawRouteModules()) diff --git a/src/router/routes.ts b/src/router/routes.ts deleted file mode 100644 index 37bc076d..00000000 --- a/src/router/routes.ts +++ /dev/null @@ -1,27 +0,0 @@ -import Layout from '@/layout/index' -import { getAppRawRoutes } from './routeModules' -import { ROOT_ROUTE } from '@/appConfig/appConfig' -import { expandRoutes } from '@/router/helper/expandRoutes' - -const { path } = ROOT_ROUTE - -export default () => [ - { - path: '/', - name: 'login', - component: () => import('@/views/login/index'), - }, - { - path: '/', - name: 'layout', - redirect: path, - component: Layout, - children: expandRoutes(getAppRawRoutes()), - }, - { - path: '/:catchAll(.*)', - name: 'errorPage', - component: Layout, - redirect: '/error', - }, -] diff --git a/src/router/type.ts b/src/router/type.ts deleted file mode 100644 index 6625f92e..00000000 --- a/src/router/type.ts +++ /dev/null @@ -1,40 +0,0 @@ -/* eslint-disable @typescript-eslint/ban-ts-comment */ -/* eslint-disable @typescript-eslint/no-explicit-any */ -import type { RouteRecordRaw } from 'vue-router' -import type { Recordable } from '@/types/modules/helper' -import type { DefineComponent, VNode } from 'vue' - -export type Component = - | DefineComponent<{}, {}, any> - | (() => Promise) - | (() => Promise) - -export interface AppRouteMeta { - i18nKey?: string - icon?: string | VNode - windowOpen?: string - role?: (string | number)[] - hidden?: boolean - noLocalTitle?: string | number - ignoreAutoResetScroll?: boolean - order?: number - keepAlive?: boolean - sameLevel?: boolean -} - -// @ts-ignore -export interface AppRouteRecordRaw extends Omit { - name: string - meta: AppRouteMeta - component?: Component | string - components?: Component - children?: AppRouteRecordRaw[] - props?: Recordable - fullPath?: string -} - -export interface RouteModules { - [propName: string]: { - default: AppRouteRecordRaw - } -} diff --git a/src/spin/hook.ts b/src/spin/hook.ts deleted file mode 100644 index 73d89f25..00000000 --- a/src/spin/hook.ts +++ /dev/null @@ -1,9 +0,0 @@ -export const spinValue = ref(false) - -/** - * - * @param bool has spin - * - * @remark 使用 spin 全屏加载效果工具函数 - */ -export const setSpin = (bool: boolean) => (spinValue.value = bool) diff --git a/src/spin/index.tsx b/src/spin/index.tsx deleted file mode 100644 index 93abe313..00000000 --- a/src/spin/index.tsx +++ /dev/null @@ -1,64 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-01-18 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 全屏加载效果 - * - * 基于 Naive UI Spin 组件 - * - * 使用方法 - * 1. import { setSpin } from '@/spin' - * 2. setSpin(true) | setSpin(false) - * - * 仅需按照上述步骤实现全屏加载动画 - * - * 注意 - * 1. 该组件为全屏加载动画效果, 其遮罩会导致页面元素不可被命中 - * 2. 如果需要使用该组件请注意控制取消时机 - */ - -import { NSpin } from 'naive-ui' - -import { spinProps } from 'naive-ui' -import { spinValue } from './hook' - -export { setSpin } from './hook' - -const GlobalSpin = defineComponent({ - name: 'GlobalSpin', - props: { - ...spinProps, - }, - setup() { - const overrides = { - opacitySpinning: '0.3', - } - - return { - spinValue, - overrides, - } - }, - render() { - return ( - - {{ ...this.$slots }} - - ) - }, -}) - -export default GlobalSpin diff --git a/src/store/README.md b/src/store/README.md deleted file mode 100644 index c33b32a9..00000000 --- a/src/store/README.md +++ /dev/null @@ -1,29 +0,0 @@ -## 描述 - -> pinia store 仓库包。存放全局公共状态。 - -## 约束 - -- 状态管理器应该按照其用途进行分包(见名知意) -- 包名以用途名命名 - - 默认以 index.ts 作为入口,其余的辅助函数、类型,分别在该文件夹下进行补充(type.ts、helper.ts。。。) -- 仓库使用 `piniaPluginPersistedstate` 作为中间件,用于缓存仓库数据避免刷新丢失(但是该方法有缺陷,不能缓存函数) - - 默认不全部缓存参数,如果需要缓存参数,需要在 `defineStore` 第三个参数配置 `persist` 属性 - - `defineStore` 第一个参数必须全局唯一 - - 缓存插件 key 应该按照 `piniaXXXStore` 格式命名(XXX 表示该包名称) - -```ts -export const useDemoStore = defineStore('demo', () => {}, { - persist: { - key: 'piniaDemoStore', - paths: ['demoState'], - storage: sessionStorage | localStorage, - }, -}) -``` - -- 最后在 index.ts 中暴露使用 - -```ts -export { useDemo } from './modules/demo/index' -``` diff --git a/src/store/index.ts b/src/store/index.ts deleted file mode 100644 index 2028ee18..00000000 --- a/src/store/index.ts +++ /dev/null @@ -1,35 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-01-03 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 持久化存储 pinia 数据 - * 但是不能正常持久化 function 属性 - * - * 官网地址: https://prazdevs.github.io/pinia-plugin-persistedstate/zh/guide/ - */ -import piniaPluginPersistedstate from 'pinia-plugin-persistedstate' - -export { useSetting } from './modules/setting/index' // import { useSetting } from '@/store' 即可使用 -export { useMenu } from './modules/menu/index' -export { useSignin } from './modules/signin/index' -export { useKeepAlive } from './modules/keep-alive/index' - -import type { App } from 'vue' - -/** 设置并且注册 pinia */ -export const setupStore = async (app: App) => { - const store = createPinia() - - app.use(store) - - store.use(piniaPluginPersistedstate) -} diff --git a/src/store/modules/keep-alive/index.ts b/src/store/modules/keep-alive/index.ts deleted file mode 100644 index af699bfc..00000000 --- a/src/store/modules/keep-alive/index.ts +++ /dev/null @@ -1,80 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-01 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 缓存 - * - * 管理系统缓存 - * 基于 KeepAlive 组件实现 - * 依赖 APP_KEEP_ALIVE 配置 - */ - -import { APP_KEEP_ALIVE } from '@/appConfig/appConfig' - -import type { KeepAliveStoreState } from './type' -import type { AppMenuOption } from '@/types/modules/app' - -export const useKeepAlive = defineStore( - 'keepAlive', - () => { - const { maxKeepAliveLength } = APP_KEEP_ALIVE - - const state = reactive({ - keepAliveInclude: [], - }) - - const getCurrentKeepAliveLength = () => state.keepAliveInclude.length - - /** - * - * @param option current menu option - * - * @remark 判断当前页面是否配置需要缓存, 并且判断当前缓存数量是否超过最大缓存数设置数量 - * @remark 如果超过最大阈值, 则会按照尾插头删方式维护该队列 - */ - const setKeepAliveInclude = (option: AppMenuOption) => { - const length = getCurrentKeepAliveLength() - const { - name, - meta: { keepAlive }, - } = option - - if (keepAlive) { - if ( - length < maxKeepAliveLength && - !state.keepAliveInclude.includes(name) - ) { - state.keepAliveInclude.push(name) - - return - } - - if (length >= maxKeepAliveLength) { - state.keepAliveInclude.splice(0, 1) - state.keepAliveInclude.push(name) - } - } - } - - return { - ...toRefs(state), - setKeepAliveInclude, - } - }, - { - persist: { - key: 'piniaKeepAliveStore', - storage: window.sessionStorage, - paths: ['keepAliveInclude'], - }, - }, -) diff --git a/src/store/modules/keep-alive/type.ts b/src/store/modules/keep-alive/type.ts deleted file mode 100644 index 2c99f3ec..00000000 --- a/src/store/modules/keep-alive/type.ts +++ /dev/null @@ -1,3 +0,0 @@ -export interface KeepAliveStoreState { - keepAliveInclude: string[] -} diff --git a/src/store/modules/menu/helper.ts b/src/store/modules/menu/helper.ts deleted file mode 100644 index c5d400af..00000000 --- a/src/store/modules/menu/helper.ts +++ /dev/null @@ -1,184 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-03 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** 本方法感谢 的支持 */ - -import { APP_MENU_CONFIG, ROOT_ROUTE } from '@/appConfig/appConfig' -import RayIcon from '@/components/RayIcon/index' -import { isValueType } from '@/utils/hook' -import { getStorage, setStorage } from '@/utils/cache' - -import type { VNode } from 'vue' -import type { - AppMenuOption, - MenuTagOptions, - AppMenuKey, -} from '@/types/modules/app' - -/** - * - * @param node 当前节点 - * @param key 动态字段 - * @param value 匹配值 - * - * @remark 检查是否为所需项 - */ -const isMatch = ( - node: AppMenuOption, - key: string | number, - value: string | number, -) => { - if (!node || typeof node !== 'object') { - return false - } - - if (node[key] === value) { - return true - } - - return false -} - -/** - * - * @param options 节点数组 - * @param key 动态字段 - * @param value 匹配值 - * - * @remark 匹配所有节点 - */ -const findMatchingNodes = ( - options: AppMenuOption, - key: string | number, - value: string | number, -) => { - const temp: AppMenuOption[] = [] - - // 检查当前节点是否匹配值 - if (isMatch(options, key, value)) { - temp.push(options) - - return temp - } - - // 遍历子节点 - if (options.children && options.children.length > 0) { - for (const it of options.children) { - // 子节点递归调用 - const innerTemp = findMatchingNodes(it, key, value) - - // 如果子节点匹配到了,则将当前节点加入数组 - if (innerTemp.length > 0) { - temp.push(options, ...innerTemp) - } - } - } - - return temp -} - -/** - * - * @param options 节点数组 - * @param key 动态字段 - * @param value 匹配值 - */ -export const parseAndFindMatchingNodes = ( - options: AppMenuOption[], - key: string | number, - value: string | number, -) => { - const temp = [] - - for (const it of options) { - const innerTemp = findMatchingNodes(it, key, value) - - if (innerTemp.length > 0) { - temp.push(...innerTemp) - } - } - - return temp -} - -/** - * - * @param item menu options - * @param key current menu key - * @param menuTagOptions menu tag options - * - * @remark 查找当前菜单项 - */ -export const matchMenuOption = ( - item: AppMenuOption, - key: AppMenuKey, - menuTagOptions: MenuTagOptions[], -) => { - if (item.path !== key) { - const tag = menuTagOptions.find((curr) => curr.path === item.path) - - if (!tag) { - menuTagOptions.push(item) - } - } -} - -/** - * - * @param option menu option - * - * @remark 动态修改浏览器标题 - * @remark 会自动拼接 sideBarLogo.title - */ -export const updateDocumentTitle = (option: AppMenuOption) => { - const { breadcrumbLabel } = option - const { - layout: { sideBarLogo }, - } = __APP_CFG__ - const spliceTitle = sideBarLogo ? sideBarLogo.title : '' - - document.title = breadcrumbLabel + ' - ' + spliceTitle -} - -export const hasMenuIcon = (option: AppMenuOption) => { - const { meta } = option - - if (!meta.icon) { - return - } - - if (isValueType(meta.icon, 'Object')) { - return () => meta.icon - } - - const icon = h( - RayIcon, - { - name: meta!.icon as string, - size: APP_MENU_CONFIG.MENU_COLLAPSED_ICON_SIZE, - }, - {}, - ) - - return () => icon -} - -/** 获取缓存的 menu key, 如果未获取到则使用 ROOTROUTE path 当作默认激活路由菜单 */ -export const getCatchMenuKey = () => { - const { path: rootPath } = ROOT_ROUTE - const cacheMenuKey = getStorage( - 'menuKey', - 'sessionStorage', - rootPath, - ) - - return cacheMenuKey -} diff --git a/src/store/modules/menu/index.ts b/src/store/modules/menu/index.ts deleted file mode 100644 index 30b642d9..00000000 --- a/src/store/modules/menu/index.ts +++ /dev/null @@ -1,374 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-11-03 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 该文件为 menu 菜单 pinia store - * - * 说明: - * - BreadcrumbMenu、TagMenu、Menu 统一管理 - * - BreadcrumbMenu、TagMenu、Menu 属性值重度依赖 vue-router routers, 所以需要按照该项目约定方法进行配置 - * - * 缓存(sessionStorage): - * - breadcrumbOptions - * - menuKey - */ - -import { NEllipsis } from 'naive-ui' - -import { setStorage } from '@/utils/cache' -import { validRole, validMenuItemShow } from '@/router/helper/routerCopilot' -import { - parseAndFindMatchingNodes, - updateDocumentTitle, - hasMenuIcon, - getCatchMenuKey, -} from './helper' -import { useI18n } from '@/locales/useI18n' -import { getAppRawRoutes } from '@/router/routeModules' -import { expandRoutes } from '@/router/helper/expandRoutes' -import { useKeepAlive } from '@/store' -import { useVueRouter } from '@/router/helper/useVueRouter' - -import type { MenuOption } from 'naive-ui' -import type { AppRouteMeta, AppRouteRecordRaw } from '@/router/type' -import type { - AppMenuOption, - MenuTagOptions, - AppMenuKey, -} from '@/types/modules/app' -import type { MenuState } from '@/store/modules/menu/type' - -export const useMenu = defineStore( - 'menu', - () => { - const { router } = useVueRouter() - const route = useRoute() - const { t } = useI18n() - const { setKeepAliveInclude } = useKeepAlive() - - const menuState = reactive({ - menuKey: getCatchMenuKey(), // 当前菜单 `key` - options: [], // 菜单列表 - collapsed: false, // 是否折叠菜单 - menuTagOptions: [], // tag 标签菜单 - breadcrumbOptions: [], // 面包屑菜单 - }) - const isSetupAppMenuLock = ref(true) - - /** - * - * @param options menu options - * @param key target key - * - * @remark 获取完整菜单项 - */ - const getCompleteRoutePath = ( - options: AppMenuOption[], - key: string | number, - ) => { - const ops = parseAndFindMatchingNodes(options, 'key', key) - - return ops - } - - /** - * - * 设置面包屑 - * - * 如果识别到为平级模式, 则会自动追加一层面包屑 - */ - const setBreadcrumbOptions = ( - key: string | number, - option: AppMenuOption, - ) => { - const { meta } = option as unknown as AppRouteRecordRaw - - menuState.breadcrumbOptions = getCompleteRoutePath(menuState.options, key) - - if (meta.sameLevel) { - nextTick().then(() => { - const fd = menuState.breadcrumbOptions.find((curr) => { - return curr.path === option.path - }) - - if (!fd) { - menuState.breadcrumbOptions.push(option as unknown as AppMenuOption) - } - }) - } - } - - /** - * - * @param optins menu tag option(s) - * @param isAppend true: 追加操作(push), false: 覆盖操作 - */ - const setMenuTagOptions = ( - optins: MenuTagOptions | MenuTagOptions[], - isAppend = true, - ) => { - const isArray = Array.isArray(optins) - const arr = isArray ? [...optins] : [optins] - - isAppend - ? menuState.menuTagOptions.push(...arr) - : (menuState.menuTagOptions = arr) - } - - /** 当 url 地址发生变化触发 menuTagOptions 更新 */ - const setMenuTagOptionsWhenMenuValueChange = ( - key: string | number, - option: AppMenuOption, - ) => { - const tag = menuState.menuTagOptions.find((curr) => curr.path === key) - - if (!tag) { - menuState.menuTagOptions.push(option as MenuTagOptions) - } - } - - /** - * - * @param key 菜单更新后的 key - * @param option 菜单当前 option 项 - * - * @remark 修改 `menu key` 后的回调函数 - * @remark 修改后, 缓存当前选择 key 并且存储标签页与跳转页面(router push 操作) - */ - const changeMenuModelValue = ( - key: string | number, - option: AppMenuOption, - ) => { - const { meta, path } = option - - if (meta.windowOpen) { - window.open(meta.windowOpen) - } else { - /** - * - * key 以 `/` 开头, 则说明为根路由, 直接跳转 - * key 开头未匹配到 `/`, 则需要获取到完整路由后再进行跳转 - * - * 但是, 缓存 key 都以当前点击 key 为准 - */ - if (!String(key).startsWith('/')) { - /** 如果不是根路由, 则拼接完整路由并跳转 */ - const _path = getCompleteRoutePath(menuState.options, key) - .map((curr) => curr.key) - .join('/') - - router.push(_path) - } else { - /** 根路由直接跳转 */ - router.push(path) - } - - /** 检查是否为根路由 */ - const count = (path.match(new RegExp('/', 'g')) || []).length - - /** 更新缓存队列 */ - setKeepAliveInclude(option as unknown as AppMenuOption) - /** 更新浏览器标题 */ - updateDocumentTitle(option as unknown as AppMenuOption) - - if (!meta.sameLevel || (meta.sameLevel && count === 1)) { - /** 更新标签菜单 */ - setMenuTagOptionsWhenMenuValueChange(key, option) - /** 更新面包屑 */ - setBreadcrumbOptions(key, option) - - menuState.menuKey = key - /** 缓存菜单 key(sessionStorage) */ - setStorage('menuKey', key) - } else { - setBreadcrumbOptions(menuState.menuKey || '', option) - } - } - } - - /** - * - * @param path 路由地址 - * - * @remark 监听路由地址变化更新菜单状态 - * @remark 递归查找匹配项 - */ - const updateMenuKeyWhenRouteUpdate = async (path: string) => { - // 获取 `/` 出现次数(如果为 1 则表示该路径为根路由路径) - const count = (path.match(new RegExp('/', 'g')) || []).length - let combinePath = path - - if (count > 1) { - // 如果不是跟路径则取出最后一项字符 - const splitPath = path.split('/').filter((curr) => curr) - - combinePath = splitPath[splitPath.length - 1] - } - - const findMenuOption = (pathKey: string, options: AppMenuOption[]) => { - for (const curr of options) { - if (curr.children?.length) { - findMenuOption(pathKey, curr.children) - } - - if (pathKey === curr.key) { - changeMenuModelValue(pathKey, curr) - - break - } - } - } - - findMenuOption(combinePath, menuState.options) - } - - /** - * - * @remark 初始化菜单列表, 并且按照权限过滤 - * @remark 如果权限发生变动, 则会触发强制弹出页面并且重新登陆 - */ - const setupAppMenu = () => { - return new Promise((resolve) => { - const resolveOption = (option: AppMenuOption) => { - const { meta } = option - - /** 设置 label, i18nKey 优先级最高 */ - const label = computed(() => - meta?.i18nKey ? t(`${meta!.i18nKey}`) : meta?.noLocalTitle, - ) - /** 拼装菜单项 */ - const route = { - ...option, - key: option.path, - label: () => - h(NEllipsis, null, { - default: () => label.value, - }), - breadcrumbLabel: label.value, - /** 检查该菜单项是否展示 */ - } as AppMenuOption - /** 合并 icon */ - const attr: AppMenuOption = Object.assign({}, route, { - icon: hasMenuIcon(option), - }) - - if (option.path === getCatchMenuKey()) { - /** 设置标签页(初始化时执行设置一次, 避免含有平级路由模式情况时出现不能正确设置标签页的情况) */ - setMenuTagOptionsWhenMenuValueChange(option.path, attr) - } - - attr.show = validMenuItemShow(attr) - - return attr - } - - const resolveRoutes = (routes: AppMenuOption[], index: number) => { - const catchArr: AppMenuOption[] = [] - - for (const curr of routes) { - if (curr.children?.length) { - curr.children = resolveRoutes(curr.children, index++) - } else if (!validRole(curr.meta)) { - /** 如果校验失败, 则不会添加进 menu options */ - continue - } - - catchArr.push(resolveOption(curr)) - } - - return catchArr - } - - /** 缓存菜单列表 */ - menuState.options = resolveRoutes( - getAppRawRoutes() as AppMenuOption[], - 0, - ) - - resolve() - }) - } - - /** - * - * @param collapsed 折叠菜单开关 - */ - const collapsedMenu = (collapsed: boolean) => - (menuState.collapsed = collapsed) - - /** - * - * @param idx 当前关闭标签索引 - * @param length 裁剪标签页长度 - * - * @returns 被关闭标签项 - */ - const spliceMenTagOptions = (idx: number, length = 1) => - menuState.menuTagOptions.splice(idx, length) - - /** - * - * @remark 置空 menuTagOptions - * - * Q: 为什么不直接使用 spliceMenTagOptions 方法置空菜单标签? - * A: 因为直接将 menuTagOptions 指向新的地址会快一点 - */ - const emptyMenuTagOptions = () => { - menuState.menuTagOptions = [] - } - - /** - * - * 初始化系统菜单列表 - * 该方法仅执行一次 - */ - const setupPiniaMenuStore = async () => { - if (isSetupAppMenuLock.value) { - await setupAppMenu() - } - - isSetupAppMenuLock.value = false - } - - /** 监听路由变化并且更新路由菜单与菜单标签 */ - watch( - () => route.fullPath, - async (newData) => { - const reg = /^([^?]+)/ - const match = newData.match(reg)?.[1] - - await setupPiniaMenuStore() - await updateMenuKeyWhenRouteUpdate(match || '') - }, - { - immediate: true, - }, - ) - - return { - ...toRefs(menuState), - changeMenuModelValue, - setupAppMenu, - collapsedMenu, - spliceMenTagOptions, - emptyMenuTagOptions, - setMenuTagOptions, - } - }, - { - persist: { - key: 'piniaMenuStore', - storage: window.sessionStorage, - paths: ['breadcrumbOptions', 'menuKey'], - }, - }, -) diff --git a/src/store/modules/menu/type.ts b/src/store/modules/menu/type.ts deleted file mode 100644 index c1cc0cfc..00000000 --- a/src/store/modules/menu/type.ts +++ /dev/null @@ -1,13 +0,0 @@ -import type { - AppMenuOption, - MenuTagOptions, - AppMenuKey, -} from '@/types/modules/app' - -export interface MenuState { - menuKey: AppMenuKey - options: AppMenuOption[] - collapsed: boolean - menuTagOptions: MenuTagOptions[] - breadcrumbOptions: AppMenuOption[] -} diff --git a/src/store/modules/setting/index.ts b/src/store/modules/setting/index.ts deleted file mode 100644 index 9b362438..00000000 --- a/src/store/modules/setting/index.ts +++ /dev/null @@ -1,112 +0,0 @@ -import { getAppDefaultLanguage } from '@/locales/helper' -import { setStorage } from '@use-utils/cache' -import { set } from 'lodash-es' -import { addClass, removeClass, colorToRgba } from '@/utils/element' -import { useI18n } from '@/locales/useI18n' -import { APP_THEME } from '@/appConfig/designConfig' -import { useDayjs } from '@/dayjs/index' - -import type { ConditionalPick } from '@/types/modules/helper' -import type { SettingState } from '@/store/modules/setting/type' -import type { DayjsLocal } from '@/dayjs/type' - -export const useSetting = defineStore( - 'setting', - () => { - const { - appPrimaryColor: { primaryColor }, - } = __APP_CFG__ // 默认主题色 - const { locale } = useI18n() - const { locale: dayjsLocal } = useDayjs() - - const settingState = reactive({ - drawerPlacement: 'right', - primaryColorOverride: { - ...APP_THEME.APP_NAIVE_UI_THEME_OVERRIDES, - common: { - primaryColor: primaryColor, // 主题色 - primaryColorHover: primaryColor, - }, - }, - themeValue: false, // `true` 为黑夜主题, `false` 为白色主题 - reloadRouteSwitch: true, // 刷新路由开关 - menuTagSwitch: true, // 多标签页开关 - spinSwitch: false, // 全屏加载 - invertSwitch: false, // 反转色模式 - breadcrumbSwitch: true, // 面包屑开关 - localeLanguage: getAppDefaultLanguage(), - lockScreenSwitch: false, // 锁屏开关 - lockScreenInputSwitch: false, // 锁屏输入状态开关(预留该字段是为了方便拓展用, 但是舍弃了该字段, 改为使用 useAppLockScreen 方法) - }) - - /** 修改当前语言 */ - const updateLocale = (key: string) => { - locale(key) - dayjsLocal(key as DayjsLocal) - - settingState.localeLanguage = key - - setStorage('localeLanguage', key, 'localStorage') - } - - /** 切换主题色 */ - const changePrimaryColor = (value: string) => { - set( - settingState, - 'settingState.primaryColorOverride.common.primaryColorHover', - value, - ) - - const body = document.body - - /** 设置主题色变量 */ - body.style.setProperty('--ray-theme-primary-color', value) - body.style.setProperty( - '--ray-theme-primary-fade-color', - colorToRgba(value, 0.3), - ) - } - - /** - * - * @param bool 开关当前值 - * @param key `settingState` 对应开关属性值 - * - * @remark 仅适用于值为 `boolean` 的切换 - */ - const changeSwitcher = ( - bool: boolean, - key: keyof ConditionalPick, - ) => { - if ( - Object.hasOwn(settingState, key) && - typeof settingState[key] === 'boolean' - ) { - settingState[key] = bool - } - } - - /** 动态添加反转色 class name */ - watch( - () => settingState.invertSwitch, - (newData) => { - const body = document.body - const className = 'ray-template--invert' - - newData ? addClass(body, className) : removeClass(body, className) - }, - ) - - return { - ...toRefs(settingState), - updateLocale, - changePrimaryColor, - changeSwitcher, - } - }, - { - persist: { - key: 'piniaSettingStore', - }, - }, -) diff --git a/src/store/modules/setting/type.ts b/src/store/modules/setting/type.ts deleted file mode 100644 index c6130880..00000000 --- a/src/store/modules/setting/type.ts +++ /dev/null @@ -1,16 +0,0 @@ -import type { GlobalThemeOverrides } from 'naive-ui' -import type { Placement } from '@/types/modules/component' - -export interface SettingState { - drawerPlacement: Placement - primaryColorOverride: GlobalThemeOverrides - themeValue: boolean - reloadRouteSwitch: boolean - menuTagSwitch: boolean - spinSwitch: boolean - breadcrumbSwitch: boolean - localeLanguage: string - invertSwitch: boolean - lockScreenSwitch: boolean - lockScreenInputSwitch: boolean -} diff --git a/src/store/modules/signin/index.ts b/src/store/modules/signin/index.ts deleted file mode 100644 index 134646b9..00000000 --- a/src/store/modules/signin/index.ts +++ /dev/null @@ -1,100 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-01-28 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 出于便捷性考虑, 将用户部分信息存于 pinia 仓库 - * 可以存储: 头像, 权限, 以及基于你项目实际情况的一些附带信息 - * - * 使用 sessionStorage 缓存部分用户信息 - * - * 默认仅缓存 signinCallback 属性 - */ - -import { isEmpty } from 'lodash-es' -import { removeStorage } from '@/utils/cache' - -import type { - SigninForm, - SigninCallback, - SigninResponse, -} from '@/store/modules/signin/type' - -export const useSignin = defineStore( - 'signin', - () => { - const state = reactive({ - /** - * - * 登陆返回信息(可以存放用户名、权限、头像等一些信息) - * 路由鉴权依赖该属性中的 role 属性, 如果需要更改请同步更改: router/basic.ts、router/permission.ts - */ - signinCallback: {} as SigninCallback, - }) - - /** - * - * @param signinForm 用户登录信息 - * @returns 状态码 - * - * @remark 0: 登陆成功, 1: 登陆失败 - */ - const signin = (signinForm: SigninForm): Promise => { - return new Promise((resolve, reject) => { - if (!isEmpty(signinForm)) { - state.signinCallback = { - role: 'admin', - name: signinForm.name, - avatar: - 'https://usc1.contabostorage.com/c2e495d7890844d392e8ec0c6e5d77eb:image/longmao.jpeg', - } - - resolve({ - code: 0, - message: '登陆成功', - data: state.signinCallback, - }) - } else { - reject({ - code: 1, - message: '登陆失败', - data: null, - }) - } - }) - } - - /** - * - * 退出登陆并且清空缓存数据 - * 延迟 300ms 后强制刷新当前系统 - */ - const logout = () => { - window.$message.info('账号退出中...') - removeStorage('all-sessionStorage') - - setTimeout(() => window.location.reload()) - } - - return { - ...toRefs(state), - signin, - logout, - } - }, - { - persist: { - key: 'piniaSigninStore', - paths: ['signinCallback'], - storage: sessionStorage, - }, - }, -) diff --git a/src/store/modules/signin/type.ts b/src/store/modules/signin/type.ts deleted file mode 100644 index 08ccd33f..00000000 --- a/src/store/modules/signin/type.ts +++ /dev/null @@ -1,16 +0,0 @@ -export interface SigninForm extends UnknownObjectKey { - name: string - pwd: string -} - -export interface SigninCallback extends UnknownObjectKey { - role: string - name: string - avatar?: string -} - -export interface SigninResponse extends UnknownObjectKey { - code: number - data: SigninCallback - message: string -} diff --git a/src/styles/animate.scss b/src/styles/animate.scss deleted file mode 100644 index c4590c20..00000000 --- a/src/styles/animate.scss +++ /dev/null @@ -1,14 +0,0 @@ -.fade-enter-active, -.fade-leave-active { - transition: all 0.35s; -} - -.fade-enter-from { - opacity: 0; - transform: translateX(-30px); -} - -.fade-leave-to { - opacity: 0; - transform: translateX(30px); -} diff --git a/src/styles/base.scss b/src/styles/base.scss deleted file mode 100644 index 4c135db3..00000000 --- a/src/styles/base.scss +++ /dev/null @@ -1,62 +0,0 @@ -@import "@/styles/animate.scss"; -@import "@/styles/root.scss"; -@import "@/styles/naive.scss"; - -body, -h1, -h2, -h3, -h4, -h5, -h6, -hr, -p, -blockquote, -dl, -dt, -dd, -ul, -ol, -li, -pre, -form, -fieldset, -legend, -button, -input, -textarea, -th, -td { - margin: 0; - padding: 0; -} - -ul, -ol, -li { - list-style: none; -} - -fieldset, -img { - border: 0; - vertical-align: middle; -} - -body { - font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", - "Droid Sans", "Helvetica Neue", sans-serif; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -body.ray-template--invert { - filter: invert(1); -} - -body .ray-template__directive--disabled { - opacity: 0.3 !important; - pointer-events: none !important; - cursor: not-allowed !important; -} diff --git a/src/styles/mixins.scss b/src/styles/mixins.scss deleted file mode 100644 index 28aeffd1..00000000 --- a/src/styles/mixins.scss +++ /dev/null @@ -1,49 +0,0 @@ -// 弹性盒子垂直居中 -@mixin flexCenter { - display: flex; - justify-content: center; - align-items: center; -} - -// 文字溢出变为: ...... -@mixin overflowEllipsis { - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; -} - -// 滚动条样式 -@mixin scrollStyle { - ::-webkit-scrollbar { - // 改变纵向滚动条宽度 - width: 5px; - height: 5px; - transition: background-color 0.2s var(--r-scrollbar-bezier); - cursor: pointer; - } - - ::-webkit-scrollbar-track { - // 改变滚动条轨道颜色 - border-radius: 5px; - background-color: transparent; - } - - ::-webkit-scrollbar-thumb { - // 改变滚动条滑轨相关的样式 - border-radius: 5px; - background-color: rgba(255, 255, 255, 0.2); - } - ::-webkit-scrollbar-thumb:hover { - // 移入鼠标效果 - border-radius: 5px; - background-color: rgba(255, 255, 255, 0.3); - cursor: pointer; - } -} - -// 根据主题切换样式 -@mixin useAppTheme($theme) { - body[class="ray-template--#{$theme}"] & { - @content; - } -} diff --git a/src/styles/naive.scss b/src/styles/naive.scss deleted file mode 100644 index e3fcfd72..00000000 --- a/src/styles/naive.scss +++ /dev/null @@ -1,5 +0,0 @@ -.n-spin-container, -.n-spin-container .n-spin-content { - width: 100%; - height: 100%; -} diff --git a/src/styles/root.scss b/src/styles/root.scss deleted file mode 100644 index 9a93bae0..00000000 --- a/src/styles/root.scss +++ /dev/null @@ -1,3 +0,0 @@ -:root { - --r-bezier: cubic-bezier(0.4, 0, 0.2, 1); -} diff --git a/src/styles/setting.scss b/src/styles/setting.scss deleted file mode 100644 index e6146e3d..00000000 --- a/src/styles/setting.scss +++ /dev/null @@ -1,3 +0,0 @@ -$layoutRouterViewContainer: 18px; -$layoutHeaderHeight: 64px; -$layoutMenuHeight: 46px; diff --git a/src/types/app.d.ts b/src/types/app.d.ts deleted file mode 100644 index c1f5d456..00000000 --- a/src/types/app.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ - -import 'vue-router' - -import type { AppRouteMeta } from '@/router/type' - -declare module 'vue-router' { - interface RouteMeta extends AppRouteMeta {} -} - -declare module '*.vue' { - import type { DefineComponent } from 'vue' - - const Component: DefineComponent<{}, {}, any> - export default Component -} - -declare module 'virtual:*' { - const result: any - export default result -} - -declare module '*.json' { - const jsonContent: Record - export default jsonContent -} diff --git a/src/types/global.d.ts b/src/types/global.d.ts deleted file mode 100644 index 2ff174ea..00000000 --- a/src/types/global.d.ts +++ /dev/null @@ -1,52 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -import type { AppConfig } from './modules/cfg' -import type { - MessageApi, - DialogApi, - LoadingBarApi, - NotificationApi, -} from 'naive-ui' - -export declare global { - declare interface UnknownObjectKey { - [propName: string]: any - } - - declare const __APP_CFG__: AppConfig - - declare interface Window { - // 是否存在无界 - __POWERED_BY_WUJIE__?: boolean - // 子应用公共加载路径 - __WUJIE_PUBLIC_PATH__: string - // 原生的 `querySelector` - __WUJIE_RAW_DOCUMENT_QUERY_SELECTOR__: typeof Document.prototype.querySelector - // 原生的 `querySelectorAll` - __WUJIE_RAW_DOCUMENT_QUERY_SELECTOR_ALL__: typeof Document.prototype.querySelectorAll - // 原生的 `window` 对象 - __WUJIE_RAW_WINDOW__: Window - // 子应用沙盒实例 - __WUJIE: WuJie - // 子应用mount函数 - __WUJIE_MOUNT: () => void - // 子应用unmount函数 - __WUJIE_UNMOUNT: () => void - // 注入对象 - $wujie: { - bus: EventBus - shadowRoot?: ShadowRoot - props?: { [key: string]: unknown } - location?: Object - } - - $message: MessageApi - $dialog: DialogApi - $loadingBar: LoadingBarApi - $notification: NotificationApi - - DocsAPI?: any - DocEditor?: any - - msCrypto: Crypto - } -} diff --git a/src/types/modules/app.ts b/src/types/modules/app.ts deleted file mode 100644 index 7d2122c3..00000000 --- a/src/types/modules/app.ts +++ /dev/null @@ -1,21 +0,0 @@ -import type { VNode } from 'vue' -import type { AppRouteRecordRaw, AppRouteMeta } from '@/router/type' - -export type Key = string | number - -export interface AppMenuOption extends AppRouteRecordRaw { - name: string - key: Key - path: string - label: string | (() => VNode) - show?: boolean - children?: AppMenuOption[] - meta: AppRouteMeta - breadcrumbLabel?: string -} - -export interface MenuTagOptions extends AppMenuOption { - closeable?: boolean -} - -export type AppMenuKey = Key | null diff --git a/src/types/modules/appConfig.ts b/src/types/modules/appConfig.ts deleted file mode 100644 index d5226619..00000000 --- a/src/types/modules/appConfig.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { CreateAxiosDefaults } from 'axios' - -export type CollapsedMode = 'transform' | 'width' - -export interface AppMenuConfig { - MENU_COLLAPSED_WIDTH: number - MENU_COLLAPSED_MODE: CollapsedMode - MENU_COLLAPSED_ICON_SIZE: number - MENU_COLLAPSED_INDENT: number - MENU_ACCORDION: boolean -} - -export interface AppKeepAlive { - setupKeepAlive: boolean - keepAliveExclude?: string[] - maxKeepAliveLength: number -} - -export interface AxiosConfig extends Omit {} diff --git a/src/types/modules/axios.ts b/src/types/modules/axios.ts deleted file mode 100644 index ad25f258..00000000 --- a/src/types/modules/axios.ts +++ /dev/null @@ -1,5 +0,0 @@ -export interface AxiosResponseBody { - data: T - message: string - code: number -} diff --git a/src/types/modules/cfg.ts b/src/types/modules/cfg.ts deleted file mode 100644 index aadb2165..00000000 --- a/src/types/modules/cfg.ts +++ /dev/null @@ -1,82 +0,0 @@ -import type { VNodeChild } from 'vue' -import type { - ServerOptions, - BuildOptions, - AliasOptions, - UserConfigExport, -} from 'vite' -import type { Recordable } from '@/types/modules/helper' -import type { GlobalThemeOverrides } from 'naive-ui' - -export interface LayoutSideBarLogo { - icon?: string - title?: string - url?: string - jumpType?: 'station' | 'outsideStation' -} - -export type LayoutCopyright = string | number | VNodeChild - -export interface RootRoute { - name: string - path: string -} - -export interface HTMLTitle { - name: string - transformIndexHtml: (title: string) => string -} - -export interface PreloadingConfig { - title?: string - tagColor?: string - titleColor?: string -} - -export interface AppPrimaryColor { - primaryColor: string - primaryFadeColor: string -} - -export interface Config { - server: ServerOptions - buildOptions: (mode: string) => BuildOptions - alias: AliasOptions - title: HTMLTitle - copyright?: LayoutCopyright - sideBarLogo?: LayoutSideBarLogo - mixinCSS?: string - preloadingConfig?: PreloadingConfig - base?: string - appPrimaryColor?: AppPrimaryColor -} - -/** - * - * 全局注入配置 - * - * 使用示例: - * const { layout } = __APP_CFG__ - */ -export interface AppConfig { - pkg: { - name: string - version: string - dependencies: Recordable - devDependencies: Recordable - } - layout: { - copyright?: LayoutCopyright - sideBarLogo?: LayoutSideBarLogo - } - base?: string - appPrimaryColor: AppPrimaryColor -} - -export type AppConfigExport = Config & UserConfigExport - -export interface AppTheme { - APP_THEME_COLOR: string[] - APP_PRIMARY_COLOR: AppPrimaryColor - APP_NAIVE_UI_THEME_OVERRIDES: GlobalThemeOverrides -} diff --git a/src/types/modules/component.ts b/src/types/modules/component.ts deleted file mode 100644 index e9fc9b12..00000000 --- a/src/types/modules/component.ts +++ /dev/null @@ -1,10 +0,0 @@ -import type { ECharts } from 'echarts/core' -import type { MenuOption, MenuDividerOption, MenuGroupOption } from 'naive-ui' - -export type ComponentSize = 'small' | 'medium' | 'large' - -export type EChartsInstance = ECharts - -export type Placement = 'top' | 'right' | 'bottom' | 'left' - -export type NaiveMenuOptions = MenuOption | MenuDividerOption | MenuGroupOption diff --git a/src/types/modules/helper.ts b/src/types/modules/helper.ts deleted file mode 100644 index 144bd302..00000000 --- a/src/types/modules/helper.ts +++ /dev/null @@ -1,13 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -export type ConditionalKeys = NonNullable< - { - [Key in keyof Base]: Base[Key] extends Condition ? Key : never - }[keyof Base] -> - -export type ConditionalPick = Pick< - Base, - ConditionalKeys -> - -export type Recordable = Record diff --git a/src/types/modules/utils.ts b/src/types/modules/utils.ts deleted file mode 100644 index e2612915..00000000 --- a/src/types/modules/utils.ts +++ /dev/null @@ -1,50 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -import type CryptoJS from 'crypto-js' - -export type CacheType = 'sessionStorage' | 'localStorage' - -export type EventListenerOrEventListenerObject = - | EventListener - | EventListenerObject - -export type ValidteValueType = - | 'Object' - | 'Undefined' - | 'Null' - | 'Boolean' - | 'Number' - | 'String' - | 'Symbol' - | 'Function' - | 'Date' - | 'Array' - | 'RegExp' - | 'Map' - | 'Set' - | 'WeakMap' - | 'WeakSet' - | 'ArrayBuffer' - | 'DataView' - | 'Int8Array' - | 'Uint8Array' - | 'Uint8ClampedArray' - | 'Int16Array' - | 'Uint16Array' - | 'Int32Array' - | 'Uint32Array' - | 'Float32Array' - | 'Float64Array' - -export type WordArray = CryptoJS.lib.WordArray - -export type CipherParams = CryptoJS.lib.CipherParams - -export type AnyFunc = (...args: any[]) => any - -export type AnyVoidFunc = (...args: any[]) => void - -export type PartialCSSStyleDeclaration = Partial< - Record -> - -export type ElementSelector = string | `attr:${string}` diff --git a/src/utils/cache.ts b/src/utils/cache.ts deleted file mode 100644 index e929fcd7..00000000 --- a/src/utils/cache.ts +++ /dev/null @@ -1,126 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-05 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** vue3 项目里建议直接用 vueuse useStorage 方法 */ - -import type { CacheType } from '@/types/modules/utils' - -/** - * - * @param key 需要设置的key - * @param value 需要缓存的值 - */ -export function setStorage( - key: string, - value: T, - type: CacheType = 'sessionStorage', -) { - if (!key) { - console.error('Failed to set stored data: key is empty or undefined') - - return - } - - try { - const waitCacheValue = JSON.stringify(value) - - type === 'localStorage' - ? window.localStorage.setItem(key, waitCacheValue) - : window.sessionStorage.setItem(key, waitCacheValue) - } catch (error) { - console.error(`Failed to set stored data for key '${key}'`, error) - } -} - -/** 重载函数 getStorage */ -export function getStorage( - key: string, - storageType: CacheType, - defaultValue: T, -): T - -/** 重载函数 getStorage */ -export function getStorage( - key: string, - storageType?: CacheType, - defaultValue?: T, -): T | null - -/** - * - * @param key 需要获取目标缓存的key - * @returns 获取缓存值 - */ -export function getStorage( - key: string, - storageType: CacheType = 'sessionStorage', - defaultValue?: T, -): T | null { - try { - const data = - storageType === 'localStorage' - ? window.localStorage.getItem(key) - : window.sessionStorage.getItem(key) - - if (data === null) { - return defaultValue ?? null - } - - return JSON.parse(data) as T - } catch (error) { - console.error(`Failed to get stored data for key '${key}'`, error) - - return defaultValue ?? null - } -} - -/** - * - * @param key 需要删除的缓存值key - * - * key: - * - all: 删除所有缓存值 - * - all-sessionStorage: 删除所有 sessionStorage 缓存值 - * - all-localStorage: 删除所有 localStorage 缓存值 - */ -export function removeStorage( - key: string | 'all' | 'all-sessionStorage' | 'all-localStorage', - type: CacheType = 'sessionStorage', -) { - switch (key) { - case 'all': - window.window.localStorage.clear() - window.sessionStorage.clear() - - break - - case 'all-sessionStorage': - window.sessionStorage.clear() - - break - - case 'all-localStorage': - window.localStorage.clear() - - break - - default: - if (!key) { - console.error('Failed to remove stored data: key is empty or undefined') - - return - } - - type === 'localStorage' - ? window.localStorage.removeItem(key) - : window.sessionStorage.removeItem(key) - } -} diff --git a/src/utils/crypto.ts b/src/utils/crypto.ts deleted file mode 100644 index 3e1aa7e6..00000000 --- a/src/utils/crypto.ts +++ /dev/null @@ -1,15 +0,0 @@ -// import HmacSHA256 from 'crypto-js/hmac-sha256' -// import SHA256 from 'crypto-js/sha256' -// import AES from 'crypto-js/aes' -// import MD5 from 'crypto-js/md5' -// import BASE64 from 'crypto-js/enc-base64' - -// import type { WordArray, CipherParams } from '@/types/modules/utils' - -/** - * - * 这个玩意儿实际使用意义不大, 建议自己参考官网 demo 使用 - * 我又不想删除, 所以留在这儿了 - * - * 手动补上官网地址: http://github.com/brix/crypto-js - */ diff --git a/src/utils/element.ts b/src/utils/element.ts deleted file mode 100644 index 5cc73641..00000000 --- a/src/utils/element.ts +++ /dev/null @@ -1,291 +0,0 @@ -import { isValueType } from '@use-utils/hook' -import { APP_REGEX } from '@/appConfig/regexConfig' - -import type { - EventListenerOrEventListenerObject, - PartialCSSStyleDeclaration, - ElementSelector, -} from '@/types/modules/utils' - -/** - * - * @param element Target element dom - * @param event 绑定事件类型 - * @param handler 事件触发方法 - * @param useCapture 是否冒泡 - * - * @remark 给元素绑定某个事件柄方法 - */ -export const on = ( - element: HTMLElement | Document | Window, - event: string, - handler: EventListenerOrEventListenerObject, - useCapture: boolean | AddEventListenerOptions = false, -) => { - if (element && event && handler) { - element.addEventListener(event, handler, useCapture) - } -} - -/** - * - * @param element Target element dom - * @param event 卸载事件类型 - * @param handler 所需卸载方法 - * @param useCapture 是否冒泡 - * - * @remark 卸载元素上某个事件柄方法 - */ -export const off = ( - element: HTMLElement | Document | Window, - event: string, - handler: EventListenerOrEventListenerObject, - useCapture: boolean | AddEventListenerOptions = false, -) => { - if (element && event && handler) { - element.removeEventListener(event, handler, useCapture) - } -} - -/** - * - * @param element Target element dom - * @param className 所需添加className,可: 'xxx xxx' | 'xxx' 格式添加(参考向元素绑定 css 语法) - * - * @remark 添加元素className(可: 'xxx xxx' | 'xxx'格式添加) - */ -export const addClass = (element: HTMLElement, className: string) => { - if (element) { - const classes = className.trim().split(' ') - - classes.forEach((item) => { - if (item) { - element.classList.add(item) - } - }) - } -} - -/** - * - * @param element Target element dom - * @param className 所需删除className,可: 'xxx xxx' | 'xxx' 格式删除(参考向元素绑定 css 语法) - * - * @remark 删除元素className(可: 'xxx xxx' | 'xxx'格式删除) - * @remark 如果输入值为 removeAllClass 则会删除该元素所有 class name - */ -export const removeClass = ( - element: HTMLElement, - className: string | 'removeAllClass', -) => { - if (element) { - if (className === 'removeAllClass') { - const classList = element.classList - - classList.forEach((curr) => classList.remove(curr)) - } else { - const classes = className.trim().split(' ') - - classes.forEach((item) => { - if (item) { - element.classList.remove(item) - } - }) - } - } -} - -/** - * - * @param element Target element dom - * @param className 查询元素是否含有此className,可: 'xxx xxx' | 'xxx' 格式查询(参考向元素绑定 css 语法) - * - * @returns 返回boolean - * - * @remark 元素是否含有某个className(可: 'xxx xxx' | 'xxx' 格式查询) - */ -export const hasClass = (element: HTMLElement, className: string) => { - const elementClassName = element.className - - const classes = className - .trim() - .split(' ') - .filter((item: string) => item !== '') - - return elementClassName.includes(classes.join(' ')) -} - -/** - * - * @param el Target element dom - * @param styles 所需绑定样式(如果为字符串, 则必须以分号结尾每个行内样式描述) - * - * - * @example - * style of string - * ``` - * const styles = 'width: 100px; height: 100px; background: red;' - * - * addStyle(styles) - * ``` - * style of object - * ``` - * const styles = { - * width: '100px', - * height: '100px', - * } - * - * addStyle(styles) - * ``` - */ -export const addStyle = ( - el: HTMLElement, - styles: PartialCSSStyleDeclaration | string, -) => { - if (!el) { - return - } - - let styleObj: PartialCSSStyleDeclaration - - if (isValueType(styles, 'String')) { - styleObj = styles.split(';').reduce((pre, curr) => { - const [key, value] = curr.split(':').map((s) => s.trim()) - - if (key && value) { - pre[key] = value - } - - return pre - }, {} as PartialCSSStyleDeclaration) - } else { - styleObj = styles - } - - Object.keys(styleObj).forEach((key) => { - const value = styleObj[key] - - if (key in el.style) { - el.style[key] = value - } - }) -} - -/** - * - * @param el Target element dom - * @param styles 所需卸载样式 - */ -export const removeStyle = ( - el: HTMLElement, - styles: (keyof CSSStyleDeclaration & string)[], -) => { - if (!el) { - return - } - - styles.forEach((curr) => { - el.style.removeProperty(curr) - }) -} - -/** - * - * @param color 颜色格式 - * @param alpha 透明度 - * @returns 转换后的 rgba 颜色值 - * - * @remark 将任意颜色值转为 rgba - */ -export const colorToRgba = (color: string, alpha = 1) => { - const hexPattern = /^#([0-9a-f]{3}|[0-9a-f]{6}|[0-9a-f]{8})$/i - const rgbPattern = /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/i - const rgbaPattern = - /^rgba\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*(\d*(?:\.\d+)?)\)$/i - - let result: string - - if (hexPattern.test(color)) { - const hex = color.substring(1) - const rgb = [ - parseInt(hex.substring(0, 2), 16), - parseInt(hex.substring(2, 4), 16), - parseInt(hex.substring(4, 6), 16), - ] - - result = 'rgb(' + rgb.join(', ') + ')' - } else if (rgbPattern.test(color)) { - result = color - } else if (rgbaPattern.test(color)) { - result = color - } else { - result = color - } - - if (result && !result.startsWith('rgba')) { - result = result.replace('rgb', 'rgba').replace(')', `, ${alpha})`) - } - - return result -} - -/** - * - * @param element 需要匹配元素参数名称 - * @returns 匹配元素列表 - * - * @remark 使用 querySelectorAll 作为检索方法 - * @remark 如果希望按照 attribute 匹配, 仅需要 'attr:xxx'传递参数即可 - * - * 示例: - * - * class: - * const el = queryElements('.demo') - * id: - * const el = queryElements('#demo') - * attribute: - * const el = queryElements('attr:type=button') - * 或者可以这样写 - * const el = queryElements('attr:type') - */ -export const queryElements = ( - selector: ElementSelector, -) => { - if (!selector) { - return null - } - - const queryParam = selector.startsWith('attr:') - ? `[${selector.replace('attr:', '')}]` - : selector - - try { - const elements = Array.from(document.querySelectorAll(queryParam)) - - return elements - } catch (error) { - console.error(`Failed to get elements for selector '${selector}'`, error) - - return null - } -} - -/** - * - * @param size css size - * @param unit 自动填充 css 尺寸单位 - * - * @remark 自动补全尺寸 - */ -export const completeSize = (size: number | string, unit = 'px') => { - if (typeof size === 'number') { - return size.toString() + unit - } else if ( - isValueType(size, 'String') && - APP_REGEX.validerCSSUnit.test(size) - ) { - return size - } else { - return size + unit - } -} diff --git a/src/utils/hook.ts b/src/utils/hook.ts deleted file mode 100644 index 1cecf4ef..00000000 --- a/src/utils/hook.ts +++ /dev/null @@ -1,81 +0,0 @@ -import type { ValidteValueType } from '@/types/modules/utils' - -/** - * - * @returns 获取当前项目环境 - */ -export const getAppEnvironment = () => { - const env = import.meta.env - - return env -} - -/** - * - * @param data 二进制流数据 - * - * @returns formate binary to base64 of the image - */ -export const arrayBufferToBase64Image = (data: ArrayBuffer): string | null => { - if (!data || data.byteLength) { - return null - } - - const base64 = - 'data:image/png;base64,' + - window.btoa( - new Uint8Array(data).reduce( - (data, byte) => data + String.fromCharCode(byte), - '', - ), - ) - - return base64 -} - -/** - * - * @param value 目标值 - * @param type 类型 - */ -export const isValueType = ( - value: unknown, - type: ValidteValueType, -): value is T => { - const valid = Object.prototype.toString.call(value) - - return valid.includes(type) -} - -/** - * - * @param length `uuid` 长度 - * @param radix `uuid` 基数 - * @returns `uuid` - */ -export const uuid = (length = 16, radix = 62) => { - // 定义可用的字符集,即 0-9, A-Z, a-z - const availableChars = - '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split('') - // 定义存储随机字符串的数组 - const arr: string[] = [] - // 获取加密对象,兼容 IE11 - const cryptoObj = window.crypto || window.msCrypto - let i = 0 - - // 循环 length 次,生成随机字符,并添加到数组中 - for (i = 0; i < length; i++) { - // 生成一个随机数 - const randomValues = new Uint32Array(1) - - cryptoObj.getRandomValues(randomValues) - - // 根据随机数生成对应的字符,并添加到数组中 - const index = randomValues[0] % radix - - arr.push(availableChars[index]) - } - - // 将数组中的字符连接起来,返回最终的字符串 - return arr.join('') -} diff --git a/src/utils/precision.ts b/src/utils/precision.ts deleted file mode 100644 index 7162b67a..00000000 --- a/src/utils/precision.ts +++ /dev/null @@ -1,172 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-07 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * 文档地址: - * - * Options 默认值 - * - symbol default: `$`(货币符号) - * - separator default: `,`(数字分隔符, demo: 1234.56 => '1,234.56') - * - decimal default: `.`(十进制分隔符, demo: 1.23 => '1.23') - * - precision default: `2`(精度保留位数) - * - pattern default: `!#`(!: 货币符号代替, #: 货币金额代替) - * - negativePattern default: `!#`(!: 货币符号代替, #: 货币金额代替) - * - format default: `null`(默认格式化方法替代, 看文档) - * - fromCents default: `false` - * - fromCents default: `false`(尊重精度选项) - * - errorOnInvalid default: `false`(传入 null undefined 直接抛出错误) - * - increment default: `null`(四舍五入增量值) - * - useVedic default: `false`(分组格式化值, demo: currency(1234567.89, { useVedic: true }).format() => '12,34,567.89') - */ - -import currency from 'currency.js' -import { cloneDeep } from 'lodash-es' - -import type { Options } from 'currency.js' -import type { AnyFunc } from '@/types/modules/utils' - -export type CurrencyArguments = string | number | currency - -export type OriginalValueType = 'string' | 'number' - -/** - * - * @param valueOptions 待计算参数列表 - * @param dividend 初始值 - * @param cb 回调方法 - * - * @remark 计算基础方法, 仅限于该处使用 - */ -const basic = ( - valueOptions: CurrencyArguments[], - dividend: CurrencyArguments, - cb: AnyFunc, -) => { - if (!valueOptions?.length) { - return 0 - } - - if (valueOptions.length === 1) { - return currency(valueOptions[0]) - } - - const result = valueOptions.reduce((pre, curr, idx, arr) => { - pre = cb?.(pre, curr, idx, arr) - - return pre - }, dividend) - - return result -} - -/** - * - * 格式化一个数据值, 并且返回其原始值 - * 默认以 number 格式返回 - * - * 如果需要格式化为其他格式(如: 货币单位、分组、分隔符等), 请使用 currency format 方法格式 - */ -export const format = ( - value: CurrencyArguments, - options?: Options, - type: OriginalValueType = 'number', -) => { - return type === 'number' - ? currency(value, options).value - : currency(value, options).toString() -} - -/** 加法 */ -export const add = (...args: CurrencyArguments[]) => { - return basic(args, 0, (pre, curr) => { - return currency(pre).add(curr) - }) -} - -/** 减法 */ -export const subtract = (...args: CurrencyArguments[]) => { - if (args.length === 2) { - const [one, two] = args - - return currency(one).subtract(two) - } - - const cloneDeepArgs = cloneDeep(args) - const dividend = cloneDeepArgs.shift() as CurrencyArguments - - if (!cloneDeepArgs.length) { - return dividend - } - - return basic(cloneDeepArgs, dividend, (pre, curr) => { - return currency(pre).subtract(curr) - }) -} - -/** 乘法 */ -export const multiply = (...args: CurrencyArguments[]) => { - return basic(args, 1, (pre, curr) => { - return currency(pre).multiply(curr) - }) -} - -/** 除法 */ -export const divide = (...args: CurrencyArguments[]) => { - if (args.length === 2) { - const [one, two] = args - - return currency(one).divide(two) - } - - const cloneDeepArgs = cloneDeep(args) - const dividend = cloneDeepArgs.shift() as CurrencyArguments - - if (!cloneDeepArgs.length) { - return dividend - } - - return basic(cloneDeepArgs, dividend, (pre, curr) => { - return currency(pre).divide(curr) - }) -} - -/** - * - * 平分(将一个数值平均分配到一个数组中) - * 如果值为 undefind null 会自动转换为 0 - * - * ``` - * distribute(0, 1) => [0] - * distribute(0, 3) => [0, 0, 0] - * ``` - */ -export const distribute = ( - value: CurrencyArguments, - length: number, - options?: Options, -) => { - if (length <= 1) { - return [value ? value : 0] - } else { - if (!value) { - return new Array(length).fill(0) - } - } - - const result = currency(value, options) - .distribute(length) - .map((curr) => { - return format(curr, options) - }) - - return result -} diff --git a/src/utils/xlsx.ts b/src/utils/xlsx.ts deleted file mode 100644 index b7018e9a..00000000 --- a/src/utils/xlsx.ts +++ /dev/null @@ -1,104 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-01-15 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { utils, writeFileXLSX } from 'xlsx' -import dayjs from 'dayjs' - -import type { DataTableBaseColumn } from 'naive-ui' -import type { Range, WorkSheet } from 'xlsx' - -export interface ExportExcelHeader extends DataTableBaseColumn {} - -export type RowData = Record - -export interface ExportXLSXConfig { - filename?: string -} - -/** - * - * @param columns table columns - * @returns 处理后的表头 - */ -const setupSheetHeader = (columns: ExportExcelHeader[]) => { - const header = columns.reduce((pre, curr) => { - pre[curr.key] = curr.title - - return pre - }, {} as ExportExcelHeader) - - return header -} - -/** - * - * @param range table range - * @param sheetData sheet data - * @param sheetHeader table header - * - * @remark 替换表头 - * @remark 由于暂未想到更好的方法, 如果有好的想法可以戳我 - */ -const transformSheetHeader = ( - range: Range, - sheetData: WorkSheet, - sheetHeader: ExportExcelHeader, -) => { - for (let c = range.s.c; c <= range.e.c; c++) { - const header = utils.encode_col(c) + '1' - - sheetData[header].v = sheetHeader[sheetData[header].v] - } -} - -/** - * - * @param dataSource 表格数据源 - * @param columns 表头 - * @param config xlsx 输出配置 - * - * @remark 导出数据为 xlsx - * @remark 如果不设置表头, 则会使用 dataSource 第一行数据为默认表头 - */ -export const exportFileToXLSX = async ( - dataSource: RowData[], - columns?: ExportExcelHeader[], - config: ExportXLSXConfig = {}, -) => { - await new Promise((resolve, reject) => { - if (Array.isArray(dataSource)) { - if (dataSource.length) { - const sheetHeader = setupSheetHeader(columns ?? []) // 获取所有列(设置为 `excel` 表头) - const sheetData = utils.json_to_sheet(dataSource) // 将所有数据转换为表格数据类型 - const workBook = utils.book_new() - const filename = config.filename - ? config.filename + '.xlsx' - : dayjs().format('YYYY-MM-DD') + '导出表格.xlsx' - - utils.book_append_sheet(workBook, sheetData, 'Data') - - const range = utils.decode_range(sheetData['!ref'] as string) // 获取所有单元格 - - if (columns?.length) { - transformSheetHeader(range, sheetData, sheetHeader) - } - - writeFileXLSX(workBook, filename) // 输出表格 - - resolve() - } else { - resolve() - } - } else { - reject() - } - }) -} diff --git a/src/views/axios/index.scss b/src/views/axios/index.scss deleted file mode 100644 index 5cac4b4e..00000000 --- a/src/views/axios/index.scss +++ /dev/null @@ -1,3 +0,0 @@ -.axios-header__btn { - height: 64px; -} diff --git a/src/views/axios/index.tsx b/src/views/axios/index.tsx deleted file mode 100644 index cf313123..00000000 --- a/src/views/axios/index.tsx +++ /dev/null @@ -1,99 +0,0 @@ -import './index.scss' -import { - NCard, - NLayout, - NDataTable, - NLayoutContent, - NLayoutHeader, - NSpace, - NInput, - NButton, -} from 'naive-ui' -import { onAxiosTest } from '@use-api/test' -import { isArray } from 'lodash-es' - -const Axios = defineComponent({ - name: 'RAxios', - setup() { - const state = reactive({ - weatherData: [] as UnknownObjectKey[], - inputCityValue: '', - }) - const columns = [ - { - title: '空气指数', - key: 'air', - }, - { - title: '风速', - key: 'win_meter', - }, - { - title: '能见度', - key: 'visibility', - }, - { - title: '天气情况', - key: 'wea_day', - }, - { - title: '提示', - key: 'air_tips', - }, - ] - - const handleInputCityValue = async (value: string) => { - try { - const cb = await onAxiosTest(value) - - state.weatherData = cb.data - } catch (e) { - window.$message.error('请求已被取消') - } - } - - onBeforeMount(async () => { - const cb = await onAxiosTest('成都') - - state.weatherData = cb.data - }) - - return { - ...toRefs(state), - columns, - handleInputCityValue, - } - }, - render() { - return ( - - - - 基于 axios 封装,能够自动取消连续请求,避免重复渲染造成问题 -

- 打开控制台 => 网络 => 使用低速3g网络 => - 查看控制台被取消的请求 -

-
-
- - - - - 搜索 - - - - - - -
- ) - }, -}) - -export default Axios diff --git a/src/views/dashboard/index.scss b/src/views/dashboard/index.scss deleted file mode 100644 index 10428428..00000000 --- a/src/views/dashboard/index.scss +++ /dev/null @@ -1,13 +0,0 @@ -.dashboard-layout { - & .n-card { - margin-top: 18px; - - &:first-child { - margin-top: 0; - } - } - - & .dashboard-link { - text-decoration: none; - } -} diff --git a/src/views/dashboard/index.tsx b/src/views/dashboard/index.tsx deleted file mode 100644 index dc795760..00000000 --- a/src/views/dashboard/index.tsx +++ /dev/null @@ -1,141 +0,0 @@ -import './index.scss' -import { - NCard, - NLayout, - NDescriptions, - NDescriptionsItem, - NTag, - NSpace, - NP, - NH6, -} from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' -import RayLink from '@/components/RayLink/index' - -const Dashboard = defineComponent({ - name: 'RDashboard', - setup() { - const coverLetterOptions = [ - { - label: '掌握搬砖框架', - des: () => ( - - Vue3.x - React - - ), - }, - { - label: '从事搬砖时长', - des: () => ( - - 练习时长两年半的小白前端搬砖师 - - ), - }, - { - label: '个人', - des: () => ( - - - 努力搬砖、努力摸鱼, 建设美丽家园 - - ), - span: 2, - }, - { - label: '补充说明', - des: () => ( - - 如果有希望补充的功能可以在 - - GitHub - - 提一个 Issues - - ), - span: 2, - }, - ] - const technologyTagOptions = [ - { - label: 'Vue3.x', - value: 'Vue3.x', - }, - { - label: 'Vite4.0', - value: 'Vite4.0', - }, - { - label: 'Pinia', - value: 'Pinia', - }, - { - label: 'TSX', - value: 'TSX', - }, - ] - - return { - coverLetterOptions, - technologyTagOptions, - } - }, - render() { - return ( - - - {{ - header: () => - h( - RayIcon, - { - name: 'ray', - size: '64', - }, - {}, - ), - default: () => '当你看见这个页面后, 就说明项目已经启动成功了~', - }} - - - - {this.coverLetterOptions.map((curr) => ( - - {curr.des()} - - ))} - - - - 技术栈 - - - {this.technologyTagOptions.map((curr) => ( - - {curr.label} - - ))} - - - 项目介绍 - - 预设了最佳构建体验的配置与常用搬砖工具。意在提供一个简洁、快速上手的模板。 - - - - - - - ) - }, -}) - -export default Dashboard diff --git a/src/views/directive/index.tsx b/src/views/directive/index.tsx deleted file mode 100644 index 620bfc03..00000000 --- a/src/views/directive/index.tsx +++ /dev/null @@ -1,141 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-24 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { - NSpace, - NCard, - NInput, - NInputGroup, - NButton, - NSwitch, - NForm, - NFormItem, -} from 'naive-ui' - -import type { ConditionalPick } from '@/types/modules/helper' - -const RDirective = defineComponent({ - name: 'RDirective', - setup() { - const state = reactive({ - copyValueOne: '我是待复制内容区域一', - copyValueTwo: '我是待复制内容区域二', - throttleBtnClickCount: 0, - debounceBtnClickCount: 0, - disabledValue: false, - }) - - const updateDemoValue = ( - key: keyof ConditionalPick, - ) => { - state[key]++ - } - - return { - ...toRefs(state), - updateDemoValue, - } - }, - render() { - return ( - - 该页面展示如何使用已封装好的指令 - - - - 复制 - - - - - - 复制 - - - - - - 点击执行 - -

我执行了{this.throttleBtnClickCount}次

-

该方法 1s 内仅会执行一次

-
-
- - - - 点击执行 - -

我执行了{this.debounceBtnClickCount}次

-

该方法将延迟 1s 执行

-
-
- - - - {{ - checked: () => '取消', - unchecked: () => '禁用', - }} - - -

- 该指令会强制禁用(通过 css 层面)禁用元素交互。但是 naive ui - 组件提供了完整的 disabled - 属性,所以在组件库有禁用需求时,直接调用组件库 disabled - 属性即可。但是值得注意的是,该指令优先级最高,会覆盖组件 - disabled 属性。 -

-
- -
- - -
-
- - -

我是可以被禁用的文本内容

-
-
- - - - - - - - 按钮 - - - -
-
-
- ) - }, -}) - -export default RDirective diff --git a/src/views/doc/index.tsx b/src/views/doc/index.tsx deleted file mode 100644 index bfb8624b..00000000 --- a/src/views/doc/index.tsx +++ /dev/null @@ -1,20 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-12-29 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -const RayTemplateDoc = defineComponent({ - name: 'RayTemplateDoc', - // setup() {}, - render() { - return
- }, -}) - -export default RayTemplateDoc diff --git a/src/views/echart/index.scss b/src/views/echart/index.scss deleted file mode 100644 index 5b4631e9..00000000 --- a/src/views/echart/index.scss +++ /dev/null @@ -1,17 +0,0 @@ -.echart { - width: 100%; - height: 100%; - - & .n-card { - margin-top: 18px; - - &:first-child { - margin-top: 0; - } - } - - & .chart--container { - width: 100%; - height: 500px; - } -} diff --git a/src/views/echart/index.tsx b/src/views/echart/index.tsx deleted file mode 100644 index c41c67be..00000000 --- a/src/views/echart/index.tsx +++ /dev/null @@ -1,269 +0,0 @@ -import './index.scss' - -import { NCard, NSwitch, NSpace, NP, NH6, NH2, NH3 } from 'naive-ui' -import RayChart from '@/components/RayChart/index' - -import type { EChartsInstance } from '@/types/modules/component' - -const Echart = defineComponent({ - name: 'REchart', - setup() { - const baseChartRef = ref() - const chartLoading = ref(false) - const chartAria = ref(false) - const state = reactive({ - loading: false, - }) - - const baseOptions = { - legend: {}, - tooltip: {}, - xAxis: { - type: 'category', - data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], - }, - yAxis: { - type: 'value', - }, - series: [ - { - name: '日期', - data: [120, 200, 150, 80, 70, 110, 130], - type: 'bar', - showBackground: true, - backgroundStyle: { - color: 'rgba(180, 180, 180, 0.2)', - }, - }, - ], - } - const basePieOptions = { - title: { - text: 'Referer of a Website', - subtext: 'Fake Data', - left: 'center', - }, - tooltip: { - trigger: 'item', - }, - legend: { - orient: 'vertical', - left: 'left', - }, - series: [ - { - name: 'Access From', - type: 'pie', - radius: '50%', - data: [ - { value: 1048, name: 'Search Engine' }, - { value: 735, name: 'Direct' }, - { value: 580, name: 'Email' }, - { value: 484, name: 'Union Ads' }, - { value: 300, name: 'Video Ads' }, - ], - emphasis: { - itemStyle: { - shadowBlur: 10, - shadowOffsetX: 0, - shadowColor: 'rgba(0, 0, 0, 0.5)', - }, - }, - }, - ], - } - const baseLineOptions = { - title: { - text: 'Stacked Area Chart', - }, - tooltip: { - trigger: 'axis', - axisPointer: { - type: 'cross', - label: { - backgroundColor: '#6a7985', - }, - }, - }, - legend: { - data: ['Email', 'Union Ads', 'Video Ads', 'Direct', 'Search Engine'], - }, - toolbox: { - feature: { - saveAsImage: {}, - }, - }, - grid: { - left: '3%', - right: '4%', - bottom: '3%', - containLabel: true, - }, - xAxis: [ - { - type: 'category', - boundaryGap: false, - data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], - }, - ], - yAxis: [ - { - type: 'value', - }, - ], - series: [ - { - name: 'Email', - type: 'line', - stack: 'Total', - areaStyle: {}, - emphasis: { - focus: 'series', - }, - data: [120, 132, 101, 134, 90, 230, 210], - }, - { - name: 'Union Ads', - type: 'line', - stack: 'Total', - areaStyle: {}, - emphasis: { - focus: 'series', - }, - data: [220, 182, 191, 234, 290, 330, 310], - }, - { - name: 'Video Ads', - type: 'line', - stack: 'Total', - areaStyle: {}, - emphasis: { - focus: 'series', - }, - data: [150, 232, 201, 154, 190, 330, 410], - }, - { - name: 'Direct', - type: 'line', - stack: 'Total', - areaStyle: {}, - emphasis: { - focus: 'series', - }, - data: [320, 332, 301, 334, 390, 330, 320], - }, - { - name: 'Search Engine', - type: 'line', - stack: 'Total', - label: { - show: true, - position: 'top', - }, - areaStyle: {}, - emphasis: { - focus: 'series', - }, - data: [820, 932, 901, 934, 1290, 1330, 1320], - }, - ], - } - - const handleLoadingShow = (bool: boolean) => { - state.loading = bool - } - - const handleAriaShow = (bool: boolean) => { - chartAria.value = bool - } - - const handleChartRenderSuccess = (chart: EChartsInstance) => { - window.$notification.info({ - title: '可视化图渲染成功回调函数', - content: '可视化图渲染成功, 并且返回了当前可视化图实例', - duration: 5 * 1000, - }) - - console.log(baseChartRef.value, chart) - } - - return { - baseOptions, - baseChartRef, - chartLoading, - handleLoadingShow, - chartAria, - handleAriaShow, - handleChartRenderSuccess, - basePieOptions, - baseLineOptions, - ...toRefs(state), - } - }, - render() { - return ( -
- RayChart 组件使用 - - 该组件会默认以 200*200 - 宽高进行填充。预设了常用的图、方法组件,如果不满足需求,需要用 use - 方法进行手动拓展。该组件实现了自动跟随模板主题切换功能,但是动态切换损耗较大,所以默认不启用 - - 基础使用 -
- -
- 渲染成功后运行回调函数 -
- -
- 能跟随主题切换的可视化图 -
- -
- 不跟随主题切换的暗色主题可视化图 -
- -
- 加载动画 - - {{ - checked: () => '隐藏加载动画', - unchecked: () => '显示加载动画', - }} - -
- -
- 贴画可视化图 - - {{ - checked: () => '隐藏贴花', - unchecked: () => '显示贴花', - }} - -
- -
-
- ) - }, -}) - -export default Echart diff --git a/src/views/iframe/index.tsx b/src/views/iframe/index.tsx deleted file mode 100644 index f559044d..00000000 --- a/src/views/iframe/index.tsx +++ /dev/null @@ -1,50 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-09 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * RayIframe 组件使用示例 - * - * 具体使用参考 props 代码注释 - * 做了简单的一个组件封装, 希望有用 - */ - -import { NCard, NSpace } from 'naive-ui' -import RayIframe from '@/components/RayIframe/index' - -const IframeDemo = defineComponent({ - name: 'IframeDemo', - setup() { - return {} - }, - render() { - return ( - - - - - - - - - ) - }, -}) - -export default IframeDemo diff --git a/src/views/login/components/QRCodeSignin/index.scss b/src/views/login/components/QRCodeSignin/index.scss deleted file mode 100644 index 24e08824..00000000 --- a/src/views/login/components/QRCodeSignin/index.scss +++ /dev/null @@ -1,5 +0,0 @@ -.qrcode-signin { - width: 100%; - height: 220px; - @include flexCenter; -} diff --git a/src/views/login/components/QRCodeSignin/index.tsx b/src/views/login/components/QRCodeSignin/index.tsx deleted file mode 100644 index fa5025ab..00000000 --- a/src/views/login/components/QRCodeSignin/index.tsx +++ /dev/null @@ -1,43 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-04-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import './index.scss' - -import QRCode from 'qrcode.vue' - -/** - * - * 二维码登陆 - * - * 可以根据业务需求自行更改 - */ - -const QRCodeSignin = defineComponent({ - name: 'QRCodeSignin', - setup() { - const qrcodeState = reactive({ - qrcodeValue: 'https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io', - }) - - return { - ...toRefs(qrcodeState), - } - }, - render() { - return ( - - ) - }, -}) - -export default QRCodeSignin diff --git a/src/views/login/components/Register/index.tsx b/src/views/login/components/Register/index.tsx deleted file mode 100644 index f519e4c3..00000000 --- a/src/views/login/components/Register/index.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { NResult } from 'naive-ui' - -const Register = defineComponent({ - name: 'RRegister', - render() { - return ( - - ) - }, -}) - -export default Register diff --git a/src/views/login/components/SSOSignin/index.scss b/src/views/login/components/SSOSignin/index.scss deleted file mode 100644 index 5dbc4960..00000000 --- a/src/views/login/components/SSOSignin/index.scss +++ /dev/null @@ -1,5 +0,0 @@ -.ray-template--light { - & .sso-signin { - color: #878787; - } -} diff --git a/src/views/login/components/SSOSignin/index.tsx b/src/views/login/components/SSOSignin/index.tsx deleted file mode 100644 index 3eb73f0c..00000000 --- a/src/views/login/components/SSOSignin/index.tsx +++ /dev/null @@ -1,83 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-04-02 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -/** - * - * SSO 单点登录模块组件 - * - * 按照需求自行增减 - */ - -import './index.scss' - -import { NSpace, NPopover } from 'naive-ui' -import RayIcon from '@/components/RayIcon/index' - -interface SSOSigninOptions { - icon: string - key: string - tooltipLabel: string -} - -const SSOSignin = defineComponent({ - name: 'SSOSignin', - setup() { - const ssoSigninOptions = [ - { - icon: 'github', - key: 'github', - tooltipLabel: 'Github登陆', - }, - { - icon: 'google', - key: 'google', - tooltipLabel: 'Google登陆', - }, - { - icon: 'twitter', - key: 'twitter', - tooltipLabel: 'Twitter登陆', - }, - ] - - const handleSSOSigninClick = (option: SSOSigninOptions) => { - window.$message.info(`调用${option.tooltipLabel}`) - } - - return { - ssoSigninOptions, - handleSSOSigninClick, - } - }, - render() { - return ( - - ) - }, -}) - -export default SSOSignin diff --git a/src/views/login/components/Signin/index.tsx b/src/views/login/components/Signin/index.tsx deleted file mode 100644 index 8abc7615..00000000 --- a/src/views/login/components/Signin/index.tsx +++ /dev/null @@ -1,110 +0,0 @@ -import { NForm, NFormItem, NInput, NButton, NSpace, NDivider } from 'naive-ui' - -import { setStorage } from '@/utils/cache' -import { setSpin } from '@/spin' -import { useSignin } from '@/store' -import { useI18n } from '@/locales/useI18n' -import { APP_CATCH_KEY, ROOT_ROUTE } from '@/appConfig/appConfig' -import { useVueRouter } from '@/router/helper/useVueRouter' - -import type { FormInst } from 'naive-ui' - -const Signin = defineComponent({ - name: 'RSignin', - setup() { - const loginFormRef = ref() - - const { t } = useI18n() - const signinStore = useSignin() - - const { signin } = signinStore - const { path } = ROOT_ROUTE - - const useSigninForm = () => ({ - name: 'Ray Admin', - pwd: '123456', - }) - - const { router } = useVueRouter() - const signinForm = ref(useSigninForm()) - - const rules = { - name: { - required: true, - message: t('views.login.index.NamePlaceholder'), - trigger: ['blur', 'input'], - }, - pwd: { - required: true, - message: t('views.login.index.PasswordPlaceholder'), - trigger: ['blur', 'input'], - }, - } - - /** 普通登陆形式 */ - const handleLogin = () => { - loginFormRef.value?.validate((valid) => { - if (!valid) { - setSpin(true) - - signin(signinForm.value) - .then((res) => { - if (res.code === 0) { - setTimeout(() => { - setSpin(false) - - window.$message.success(`欢迎${signinForm.value.name}登陆~`) - - setStorage(APP_CATCH_KEY.token, 'tokenValue') - setStorage(APP_CATCH_KEY.signin, res.data) - - router.push(path) - }, 2 * 1000) - } - }) - .catch(() => { - window.$message.error('不可以这样哟, 不可以哟') - }) - } - }) - } - - return { - signinForm, - loginFormRef, - handleLogin, - rules, - t, - } - }, - render() { - const { t } = this - - return ( - - - - - - - - - {t('views.login.index.Login')} - - - ) - }, -}) - -export default Signin diff --git a/src/views/login/index.scss b/src/views/login/index.scss deleted file mode 100644 index de4ea10c..00000000 --- a/src/views/login/index.scss +++ /dev/null @@ -1,114 +0,0 @@ -$positionX: 24px; -$positionY: 24px; - -.login { - display: flex; - - & .login-wrapper { - position: relative; - flex: auto; - - &.login-wrapper--divider { - position: relative; - - &::before { - content: ""; - position: absolute; - width: var(--login-height); - height: 2px; - background: linear-gradient(135deg, transparent, transparent 75%, #2080f0, transparent 80%, transparent 100%), - linear-gradient(45deg, transparent, transparent 75%, #2080f0, transparent 80%, transparent 100%); - background-size: 1em 1em; - background-repeat: repeat-x, repeat-x; - transform: rotate(90deg); - transform-origin: 0; - left: 50%; - } - } - - & .login-title__wrapper { - position: absolute; - left: $positionX; - top: $positionY; - } - - & .login-action__wrapper { - position: absolute; - height: 54.4px; - right: $positionX; - top: $positionY; - } - - & .login-copyright__wrapper { - position: absolute; - width: 100%; - text-align: center; - bottom: $positionY; - font-size: 14px; - } - - & .login-wrapper__content { - width: 100%; - height: 100%; - - & .n-grid { - height: 100%; - } - - & .login__left-wrapper { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - transition: background-color 0.3s var(--r-bezier); - } - - & .login__right-wrapper { - @include flexCenter; - - & .login__right-wrapper__content { - width: 50%; - background-color: transparent; - } - } - } - } -} - -.ray-template--light { - & .login__left-wrapper { - background-color: rgba(32, 128, 240, 0.22); - } - - & .login__right-wrapper { - background-color: #ffffff; - } -} - -.ray-template--dark { - & .login__left-wrapper { - background-color: #2c354b; - } - - & .login__right-wrapper { - background-color: #2a3146; - } -} - -@media screen and (max-width: 1200px) { - .login__left-wrapper { - display: none !important; - } -} - -@media screen and (min-width: 768px) and (max-width: 992px) { - .login__right-wrapper .login__right-wrapper__content { - width: 55% !important; - } -} - -@media screen and (max-width: 768px) { - .login__right-wrapper .login__right-wrapper__content { - width: 100% !important; - } -} diff --git a/src/views/login/index.tsx b/src/views/login/index.tsx deleted file mode 100644 index f6bbd3a4..00000000 --- a/src/views/login/index.tsx +++ /dev/null @@ -1,169 +0,0 @@ -import './index.scss' - -import { - NSpace, - NCard, - NTabs, - NTabPane, - NGradientText, - NDropdown, - NDivider, - NGrid, - NGridItem, -} from 'naive-ui' -import Signin from './components/Signin/index' -import Register from './components/Register/index' -import QRCodeSignin from './components/QRCodeSignin/index' -import SSOSignin from './components/SSOSignin/index' -import RayIcon from '@/components/RayIcon' -import RayLink from '@/components/RayLink/index' -import ThemeSwitch from '@/layout/components/SiderBar/components/SettingDrawer/components/ThemeSwitch/index' - -import { useSetting } from '@/store' -import { LOCAL_OPTIONS } from '@/appConfig/localConfig' -import { useI18n } from '@/locales/useI18n' - -const Login = defineComponent({ - name: 'RLogin', - setup() { - const { t } = useI18n() - const { - layout: { copyright }, - } = __APP_CFG__ - - const state = reactive({ - tabsValue: 'signin', - }) - - const { height: windowHeight, width: windowWidth } = useWindowSize() - const settingStore = useSetting() - const { updateLocale } = settingStore - - return { - ...toRefs(state), - windowHeight, - updateLocale, - t, - copyright, - windowWidth, - } - }, - render() { - const { t } = this - - return ( -
-
= 1440 ? 'login-wrapper--divider' : '', - ]} - > -
- - - - - - - -
-
-
- ) - }, -}) - -export default Login diff --git a/src/views/multi/views/multi-menu-one/index.tsx b/src/views/multi/views/multi-menu-one/index.tsx deleted file mode 100644 index f4f6983d..00000000 --- a/src/views/multi/views/multi-menu-one/index.tsx +++ /dev/null @@ -1,33 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-01 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { NInput } from 'naive-ui' - -const MultiMenuOne = defineComponent({ - name: 'MultiMenuOne', - setup() { - const inputValue = ref(null) - - return { - inputValue, - } - }, - render() { - return ( -
- 多级菜单-1 - -
- ) - }, -}) - -export default MultiMenuOne diff --git a/src/views/multi/views/multi-menu-two/views/sub-menu-other/index.tsx b/src/views/multi/views/multi-menu-two/views/sub-menu-other/index.tsx deleted file mode 100644 index 7fdd09d6..00000000 --- a/src/views/multi/views/multi-menu-two/views/sub-menu-other/index.tsx +++ /dev/null @@ -1,33 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-01 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { NInput } from 'naive-ui' - -const SubMenuOther = defineComponent({ - name: 'SubMenuOther', - setup() { - const inputValue = ref(null) - - return { - inputValue, - } - }, - render() { - return ( -
- 多级菜单-2-1 - -
- ) - }, -}) - -export default SubMenuOther diff --git a/src/views/multi/views/multi-menu-two/views/sub-menu/views/multi-menu-two-one/index.tsx b/src/views/multi/views/multi-menu-two/views/sub-menu/views/multi-menu-two-one/index.tsx deleted file mode 100644 index d41f17ea..00000000 --- a/src/views/multi/views/multi-menu-two/views/sub-menu/views/multi-menu-two-one/index.tsx +++ /dev/null @@ -1,33 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-01 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { NInput } from 'naive-ui' - -const MultiMenuTwoOne = defineComponent({ - name: 'MultiMenuTwoOne', - setup() { - const inputValue = ref(null) - - return { - inputValue, - } - }, - render() { - return ( -
- 多级菜单2-2-1 - -
- ) - }, -}) - -export default MultiMenuTwoOne diff --git a/src/views/office/index.tsx b/src/views/office/index.tsx deleted file mode 100644 index c7df6024..00000000 --- a/src/views/office/index.tsx +++ /dev/null @@ -1,21 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-22 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { RouterView } from 'vue-router' - -const Office = defineComponent({ - name: 'ROffice', - render() { - return - }, -}) - -export default Office diff --git a/src/views/office/views/document/index.tsx b/src/views/office/views/document/index.tsx deleted file mode 100644 index f2907266..00000000 --- a/src/views/office/views/document/index.tsx +++ /dev/null @@ -1,47 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-22 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { uuid } from '@/utils/hook' - -import type { PropType } from 'vue' - -const Document = defineComponent({ - name: 'RDocument', - setup() { - const editorUUID = uuid(16) - const state = reactive({}) - const config = { - document: { - fileType: 'docx', - key: editorUUID, - title: 'Example Document Title.docx', - url: 'https://example.com/url-to-example-document.docx', - }, - documentType: 'word', - authorization: 'a2122252', - token: 'a2122252', - Authorization: 'a2122252', - editorConfig: { - lang: 'zh-cn', - }, - } - - return { - ...toRefs(state), - editorUUID, - } - }, - render() { - return
- }, -}) - -export default Document diff --git a/src/views/office/views/presentation/index.tsx b/src/views/office/views/presentation/index.tsx deleted file mode 100644 index 797a39dd..00000000 --- a/src/views/office/views/presentation/index.tsx +++ /dev/null @@ -1,24 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-22 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import type { PropType } from 'vue' - -const Presentation = defineComponent({ - name: 'RPresentation', - setup() { - return {} - }, - render() { - return
- }, -}) - -export default Presentation diff --git a/src/views/office/views/spreadsheet/index.tsx b/src/views/office/views/spreadsheet/index.tsx deleted file mode 100644 index 14bf9951..00000000 --- a/src/views/office/views/spreadsheet/index.tsx +++ /dev/null @@ -1,24 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-03-22 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import type { PropType } from 'vue' - -const Spreadsheet = defineComponent({ - name: 'RSpreadsheet', - setup() { - return {} - }, - render() { - return
- }, -}) - -export default Spreadsheet diff --git a/src/views/precision/index.tsx b/src/views/precision/index.tsx deleted file mode 100644 index 250a1cc5..00000000 --- a/src/views/precision/index.tsx +++ /dev/null @@ -1,166 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-07 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { NLayout, NCard, NDynamicTags, NSpace, NInputNumber } from 'naive-ui' - -import { - add, - subtract, - multiply, - divide, - distribute, - format, -} from '@use-utils/precision' - -const CalculatePrecision = defineComponent({ - name: 'CalculatePrecision', - setup() { - const state = reactive({ - addOptions: ['1', '0.2', '0.1', '1.1'], - subtractOptions: ['1', '0.2', '0.1', '1.1'], - multiplyOptions: ['1', '0.2', '0.1', '1.1'], - divideOptions: ['1', '0.2', '0.1', '1.1'], - distributeValue: 12, - distributeOutputValue: [] as unknown[], - distributeLength: 3, - }) - const actionMap = { - addOptions: add, - subtractOptions: subtract, - multiplyOptions: multiply, - divideOptions: divide, - } - - const copilotFunc = (value: string[], path: string) => { - const action = actionMap[path] - const result = action(...value) - - return '结果: ' + format(result) - } - - const updateDistributeValue = () => { - nextTick().then(() => { - state.distributeOutputValue = distribute( - state.distributeValue, - state.distributeLength, - ) - }) - } - updateDistributeValue() - - return { - ...toRefs(state), - copilotFunc, - updateDistributeValue, - } - }, - render() { - return ( - -

- 计算方法,默认都保留两位小数与四舍五入,可以根据 format 方法自行转换 -

-

- 示例方法都基于 currency.js - 封装,利用其精度处理能力封装了常用的一些计算方法,解决精度问题。如果需要其他的方法请阅读官方文档 - https://currency.js.org/#subtract -

- - - {{ - default: () => ( - { - this.copilotFunc(value, 'addOptions') - }} - /> - ), - footer: () => { - return this.copilotFunc(this.addOptions, 'addOptions') - }, - }} - - - {{ - default: () => ( - { - this.copilotFunc(value, 'subtractOptions') - }} - /> - ), - footer: () => { - return this.copilotFunc(this.subtractOptions, 'subtractOptions') - }, - }} - - - {{ - default: () => ( - { - this.copilotFunc(value, 'multiplyOptions') - }} - /> - ), - footer: () => { - return this.copilotFunc(this.multiplyOptions, 'multiplyOptions') - }, - }} - - - {{ - default: () => ( - { - this.copilotFunc(value, 'divideOptions') - }} - /> - ), - footer: () => { - return this.copilotFunc(this.divideOptions, 'divideOptions') - }, - }} - - - {{ - default: () => ( - - { - this.updateDistributeValue() - }} - /> - { - this.updateDistributeValue() - }} - /> - - ), - footer: () => { - return '结果: ' + this.distributeOutputValue.join(', ') - }, - }} - - -
- ) - }, -}) - -export default CalculatePrecision diff --git a/src/views/rely/views/rely-about/index.scss b/src/views/rely/views/rely-about/index.scss deleted file mode 100644 index cd64631a..00000000 --- a/src/views/rely/views/rely-about/index.scss +++ /dev/null @@ -1,9 +0,0 @@ -.rely-about { - & .n-card { - margin-top: 18px; - - &:first-child { - margin-top: 0; - } - } -} diff --git a/src/views/rely/views/rely-about/index.tsx b/src/views/rely/views/rely-about/index.tsx deleted file mode 100644 index c272d08b..00000000 --- a/src/views/rely/views/rely-about/index.tsx +++ /dev/null @@ -1,139 +0,0 @@ -import './index.scss' -import { NCard, NDescriptions, NDescriptionsItem, NTag } from 'naive-ui' - -interface RelyDataOptions { - name: string - relyVersion: string - relyAddress: string -} - -interface TemplateOptions { - name: string - label: string - url?: string -} - -const RelyAbout = defineComponent({ - name: 'RelyAbout', - setup() { - const { pkg } = __APP_CFG__ - const { dependencies, devDependencies, name, version } = pkg - - const columns = [ - { - title: '依赖名称', - key: 'name', - }, - { - title: '依赖版本', - key: 'relyVersion', - }, - { - title: '依赖地址', - key: 'relyAddress', - }, - ] - const dependenciesOptions = ref([]) - const devDependenciesOptions = ref([]) - - const templateOptions = [ - { - name: '项目名称', - label: name, - }, - { - name: '版本信息', - label: version, - }, - { - name: '项目地址', - label: 'GitHub', - url: 'https://github.com/XiaoDaiGua-Ray/ray-template', - }, - ] - - const handleGetRelyData = () => { - const _arrayFrom = (obj: object) => - Object.keys(obj).reduce((pre, curr) => { - pre.push({ - name: curr, - relyVersion: obj[curr], - relyAddress: '', - }) - - return pre - }, [] as RelyDataOptions[]) - - dependenciesOptions.value = _arrayFrom(dependencies) - devDependenciesOptions.value = _arrayFrom(devDependencies) - } - - const handleTagClick = (item: TemplateOptions) => { - if (item.url) { - window.open(item.url) - } - } - - onBeforeMount(() => { - handleGetRelyData() - }) - - return { - columns, - dependenciesOptions, - devDependenciesOptions, - templateOptions, - handleTagClick, - } - }, - render() { - return ( -
- - ray template 是一个基于: tsx pinia vue3.x vite sass 的中后台解决方案. - 项目干净与轻巧, - 已经集成了很多项目中可能需要的搬砖工具可以让你快速起一个相关项目, - 并且不需要剔除大量无用页面与组件. - - - - {this.templateOptions.map((curr) => ( - - - {curr.label} - - - ))} - - - - - {this.dependenciesOptions.map((curr) => ( - - {curr.relyVersion} - - ))} - - - - - {this.devDependenciesOptions.map((curr) => ( - - {curr.relyVersion} - - ))} - - -
- ) - }, -}) - -export default RelyAbout diff --git a/src/views/router-demo/router-demo-detail/index.tsx b/src/views/router-demo/router-demo-detail/index.tsx deleted file mode 100644 index 49e9005a..00000000 --- a/src/views/router-demo/router-demo-detail/index.tsx +++ /dev/null @@ -1,27 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-30 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { NCard, NSpace } from 'naive-ui' - -const RouterDemoDetail = defineComponent({ - name: 'RouterDemoDetail', - - render() { - return ( - - 我是平层路由详情页面 - 可以点击面包屑或者菜单返回到主页面 - - ) - }, -}) - -export default RouterDemoDetail diff --git a/src/views/router-demo/router-demo-home/index.tsx b/src/views/router-demo/router-demo-home/index.tsx deleted file mode 100644 index 80c20c1b..00000000 --- a/src/views/router-demo/router-demo-home/index.tsx +++ /dev/null @@ -1,94 +0,0 @@ -/** - * - * @author Ray - * - * @date 2023-06-30 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { NSpace, NDataTable, NButton } from 'naive-ui' - -import { useVueRouter } from '@/router/helper/useVueRouter' - -import type { DataTableColumns } from 'naive-ui' - -export interface RowData { - key: string | number - name: string - phone: string - address: string -} - -const RouterDemoHome = defineComponent({ - name: 'RouterDemoHome', - setup() { - const { router } = useVueRouter() - - const columns: DataTableColumns = [ - { - title: '姓名', - key: 'name', - }, - { - title: '地址', - key: 'address', - }, - { - title: '联系方式', - key: 'phone', - }, - { - title: '操作', - key: '', - render: (row) => { - return ( - - { - router.push({ - path: '/router-demo/router-demo-detail', - query: { - row: JSON.stringify(row), - }, - }) - }} - > - 详情 - - - ) - }, - }, - ] - const dataSource: RowData[] = [] - - for (let i = 0; i < 10; i++) { - dataSource.push({ - name: '张三', - address: 'New York No. 1 Lake Park', - phone: '010-121212', - key: i, - }) - } - - return { - dataSource, - columns, - } - }, - render() { - return ( - - - - ) - }, -}) - -export default RouterDemoHome diff --git a/src/views/scroll-reveal/index.scss b/src/views/scroll-reveal/index.scss deleted file mode 100644 index b5c1d796..00000000 --- a/src/views/scroll-reveal/index.scss +++ /dev/null @@ -1,4 +0,0 @@ -.scroll-reveal { - width: 100%; - height: 100%; -} diff --git a/src/views/scroll-reveal/index.tsx b/src/views/scroll-reveal/index.tsx deleted file mode 100644 index c3d96a00..00000000 --- a/src/views/scroll-reveal/index.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import './index.scss' -import { NCard } from 'naive-ui' - -const ScrollReveal = defineComponent({ - name: 'ScrollReveal', - render() { - return ( -
- - RayScrollReveal组件有点问题, 暂时移除. 不能正常的实现滚动动画. - 很是操蛋!!! - -
- ) - }, -}) - -export default ScrollReveal diff --git a/src/views/table/index.tsx b/src/views/table/index.tsx deleted file mode 100644 index 31a9bf20..00000000 --- a/src/views/table/index.tsx +++ /dev/null @@ -1,259 +0,0 @@ -/** - * - * @author Ray - * - * @date 2022-12-08 - * - * @workspace ray-template - * - * @remark 今天也是元气满满撸代码的一天 - */ - -import { - NLayout, - NTag, - NButton, - NGridItem, - NSelect, - NInput, - NDatePicker, - NSwitch, - NP, - NH2, - NUl, - NLi, -} from 'naive-ui' -import RayTable from '@/components/RayTable/index' -import RayCollapseGrid from '@/components/RayCollapseGrid/index' - -import type { DataTableColumns } from 'naive-ui' -import type { RayTableInst } from '@/components/RayTable/index' - -type RowData = { - key: number - name: string - age: number - address: string - tags: string[] -} - -const TableView = defineComponent({ - name: 'TableView', - setup() { - const tableRef = ref() - - const baseColumns = [ - { - title: 'Name', - key: 'name', - }, - { - title: 'Age', - key: 'age', - }, - { - title: 'Address', - key: 'address', - }, - { - title: 'Tags', - key: 'tags', - render: (row: RowData) => { - const tags = row.tags.map((tagKey) => { - return h( - NTag, - { - style: { - marginRight: '6px', - }, - type: 'info', - bordered: false, - }, - { - default: () => tagKey, - }, - ) - }) - - return tags - }, - }, - { - title: 'Remark', - key: 'remark', - width: 300, - }, - { - title: 'Action', - key: 'actions', - render: (row: RowData) => - h( - NButton, - { - size: 'small', - }, - { default: () => 'Send Email' }, - ), - }, - ] - const actionColumns = ref>( - [...baseColumns].map((curr) => ({ ...curr, width: 400 })), - ) - const tableData = ref([ - { - key: 0, - name: 'John Brown', - age: 32, - address: 'New York No. 1 Lake Park', - tags: ['nice', 'developer'], - remark: '我是一条很长很长的备注', - }, - { - key: 1, - name: 'Jim Green', - age: 42, - address: 'London No. 1 Lake Park', - tags: ['wow'], - remark: '我是一条很长很长的备注', - }, - { - key: 2, - name: 'Joe Black', - age: 32, - address: 'Sidney No. 1 Lake Park', - tags: ['cool', 'teacher'], - remark: '我是一条很长很长的备注', - }, - ]) - const tableMenuOptions = [ - { - label: '编辑', - key: 'edit', - }, - { - label: () => h('span', { style: { color: 'red' } }, '删除'), - key: 'delete', - }, - ] - const state = reactive({ - gridItemCount: 4, - gridCollapsedRows: 1, - tableLoading: false, - }) - - const handleMenuSelect = (key: string | number, idx: number) => { - if (key === 'delete') { - tableData.value.splice(idx, 1) - } - } - - onMounted(() => { - console.log(tableRef.value?.tableMethods) - }) - - return { - ...toRefs(state), - tableData, - actionColumns, - baseColumns, - tableMenuOptions, - handleMenuSelect, - tableRef, - } - }, - render() { - return ( - - RayTable 组件使用 - - - 该组件基于 Naive UI DataTable - 组件封装。实现右键菜单、表格标题、导出为 excel 操作栏等功能 - - RayTable 完全继承 DataTable 的所有属性与方法 - - 相关拓展 props 属性,可以在源码位置 - src/components/RayTable/src/props.ts 中查看相关代码与注释 - - 该组件可以配合 RayCollapseGird 组件使用实现可折叠搜索栏 - - 配合 RayCollapseGird 组件使用与 RayTable 拓展功能 - - 使用响应式方法代理 columns 并且打开 action - 则可以启用操作栏(v-model:columns) - - 拖拽操作栏动态切换表格列 - 点击左右固定按钮,即可动态固定列 - 点击修改列宽度,即可拖动列修改宽度 - 点击导出按钮即可导出 excel 表格,默认以列为表头输出 - 点击打印按钮即可打印该表格 - 右键菜单 - 全屏表格 - - window.$message.info( - `我是 RayCollapseGrid 组件${value ? '收起' : '展开'}的回调函数`, - ) - } - > - {{ - action: () => ( - <> - 搜索 - 重置 - - ), - default: () => ( - <> - - - - - - - - - - - - - - - - - ), - }} - - (this.tableLoading = value), - }, - {}, - )} - data={this.tableData} - v-model:columns={this.actionColumns} - pagination={{ - pageSize: 10, - }} - loading={this.tableLoading} - rightClickMenu={this.tableMenuOptions} - onMenuSelect={this.handleMenuSelect.bind(this)} - > - {{ - tableFooter: () => '表格的底部内容区域插槽,有时候你可能会用上', - }} - - - ) - }, -}) - -export default TableView diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts deleted file mode 100644 index bb2e02f1..00000000 --- a/src/vite-env.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -/// -/// -/// -/// - -declare module '*.vue' { - import type { DefineComponent } from 'vue' - const component: DefineComponent<{}, {}, any> - export default component -} diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index a7406f34..00000000 --- a/tsconfig.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "compilerOptions": { - "target": "ESNext", - "useDefineForClassFields": true, - "module": "ESNext", - "moduleResolution": "Node", - "strict": true, - "jsx": "preserve", - "sourceMap": true, - "resolveJsonModule": true, - "isolatedModules": true, - "esModuleInterop": true, - "lib": ["ESNext", "DOM", "es5", "es6", "dom.iterable", "es2022"], - "skipLibCheck": true, - "baseUrl": "./", - "rootDir": "./", - "paths": { - "@": ["src"], - "@/*": ["src/*"], - "@use-utils": ["src/utils"], - "@use-utils/*": ["src/utils/*"], - "@use-api": ["src/axios/api"], - "@use-api/*": ["src/axios/api/*"], - "@use-images": ["src/assets/images"], - "@use-images/*": ["src/assets/images"], - "@use-micro/*": ["src/micro/*"] - }, - "suppressImplicitAnyIndexErrors": true, - "types": [ - "@intlify/unplugin-vue-i18n/messages", - "naive-ui/volar", - "vite/client", - "./src/types/global.d.ts" - ], - "ignoreDeprecations": "5.0" - }, - "include": [ - "vite.config.ts", - "vite-plugin/index.ts", - "vite-plugin/type.ts", - "cfg.ts", - "package.json", - "vite-env.d.ts", - "components.d.ts", - "auto-imports.d.ts", - "src/**/*" - ] -} diff --git a/vite-plugin/index.ts b/vite-plugin/index.ts deleted file mode 100644 index 23376642..00000000 --- a/vite-plugin/index.ts +++ /dev/null @@ -1,155 +0,0 @@ -import path from 'node:path' - -import autoImport from 'unplugin-auto-import/vite' // 自动导入 -import unpluginViteComponents from 'unplugin-vue-components/vite' // 自动按需导入 -import vueI18nPlugin from '@intlify/unplugin-vue-i18n/vite' // i18n -import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // `svg icon` - -import type { ComponentResolver, TypeImport } from 'unplugin-vue-components' -import type { ImportsMap, PresetName } from 'unplugin-auto-import/types' -import type { BuildOptions } from 'vite' -import type { ViteSvgIconsPlugin } from 'vite-plugin-svg-icons' - -/** - * - * @param options `svg icon` 自定义配置 - * - * 使用 `svg` 作为图标 - */ -export const viteSVGIcon = (options?: ViteSvgIconsPlugin) => { - const defaultOptions = { - iconDirs: [path.resolve(process.cwd(), 'src/icons')], - symbolId: 'icon-[dir]-[name]', - inject: 'body-last', - customDomId: '__svg__icons__dom__', - } - - return createSvgIconsPlugin(Object.assign({}, defaultOptions, options)) -} - -/** - * - * @param imp 自动导入依赖 - * @returns auto import plugin - * - * 自动导入 - */ -export const viteAutoImport = async (imp: (ImportsMap | PresetName)[] = []) => - autoImport({ - include: [ - /\.[tj]sx?$/, // .ts, .tsx, .js, .jsx - /\.vue$/, - /\.vue\?vue/, // .vue - /\.md$/, // .md - ], - dts: true, - imports: ['vue', 'vue-router', 'pinia', '@vueuse/core', 'vue-i18n', ...imp], - }) - -/** - * - * @param resolvers 按需加载依赖项 - * @param types 按需加载依赖类型 - * - * 按需加载 - */ -export const viteComponents = async ( - resolvers: (ComponentResolver | ComponentResolver[])[] = [], - types: TypeImport[] = [], -) => - unpluginViteComponents({ - dts: true, - resolvers: [...resolvers], - types: [ - { - from: 'vue-router', - names: ['RouterLink', 'RouterView'], - }, - ...types, - ], - }) - -export const viteVueI18nPlugin = () => - vueI18nPlugin({ - runtimeOnly: true, - compositionOnly: true, - forceStringify: true, - defaultSFCLang: 'json', - include: [path.resolve(__dirname, '../locales/**')], - }) - -/** - * - * @param title 浏览器 title 名称 - */ -export const HTMLTitlePlugin = (title: string) => { - return { - name: 'html-transform', - transformIndexHtml: (html: string) => { - return html.replace(/(.*?)<\/title>/, `<title>${title}`) - }, - } -} - -/** - * - * @param mode 打包环境 - * - * @remark 打包输出文件配置 - */ -export const buildOptions = (mode: string): BuildOptions => { - const outDirMap = { - test: 'dist/test-dist', - development: 'dist/development-dist', - production: 'dist/production-dist', - report: 'dist/report-dist', - } - const dirPath = outDirMap[mode] || 'dist/test-dist' - - if (mode === 'production') { - return { - outDir: dirPath, - sourcemap: false, - terserOptions: { - compress: { - drop_console: true, - drop_debugger: true, - }, - }, - } - } else { - return { - outDir: dirPath, - sourcemap: true, - terserOptions: { - compress: { - drop_console: false, - drop_debugger: false, - }, - }, - } - } -} - -/** - * - * @param options 预处理 css 文件 - * @returns additionalData string - * - * @remark 辅助处理需要全局注入的 css 样式文件, 会在构建期间完成注入 - */ -export const mixinCSSPlugin = (options?: string[]) => { - const defaultOptions = [] - - if (Array.isArray(options)) { - defaultOptions.push(...options) - } - - const mixisString = defaultOptions.reduce((pre, curr) => { - const temp = `@import "${curr}";` - - return (pre += temp) - }, '') - - return mixisString as string -} diff --git a/vite-plugin/type.ts b/vite-plugin/type.ts deleted file mode 100644 index 04ce9c8e..00000000 --- a/vite-plugin/type.ts +++ /dev/null @@ -1,129 +0,0 @@ -export interface VitePluginCompression { - /** - * - * Log compressed files and their compression ratios. - * @default: true - */ - verbose?: boolean - /** - * - * Minimum file size before compression is used. - * @default 1025 - */ - threshold?: number - /** - * - * Filter files that do not need to be compressed - * @default /\.(js|mjs|json|css|html)$/i - */ - filter?: RegExp | ((file: string) => boolean) - /** - * - * Whether to enable compression - * @default: false - */ - disable?: boolean - /** - * - * Compression algorithm - * @default gzip - */ - algorithm?: Algorithm - /** - * - * File format after compression - * @default .gz - */ - ext?: string - /** - * - * Compression Options - */ - compressionOptions?: object - /** - * - * Delete the corresponding source file after compressing the file - * @default: false - */ - deleteOriginFile?: boolean - /** - * - * success callback after completed - */ - success?: () => void -} - -export interface ViteBuildPlugin { - outDir: string - assetsDir: string - assetsInlineLimit: number - cssCodeSplit: boolean // 拆分css代码 - minify: boolean | 'esbuild' | 'terser' - sourcemap: boolean -} - -export interface LibItem { - /** - * - * library name - */ - libName: string - /** - * - * component style file path - */ - style?: (name: string) => string | string[] | boolean - /** - * - * default `es` - */ - libDirectory?: string - /** - * - * whether convert component name from camel to dash, default `true` - */ - camel2DashComponentName?: boolean - /** - * - * whether replace old import statement, default `command === 'build'`, - * that means in vite serve default to `false`, in vite build default to `ture` - */ - replaceOldImport?: boolean - /** - * - * imported name formatter - */ - nameFormatter?: (name: string, importedName: string) => string -} - -export interface LibResolverObject extends LibItem {} - -export type LibResolver = LibResolverObject - -export interface ImpConfig { - optimize?: boolean - libList: LibResolver[] - /** - * - * exclude the library from defaultLibList - */ - exclude?: string[] - /** - * - * when a style path is not found, don’t show error and give a warning. - * Default: command === 'serve' - */ - ignoreStylePathNotFound?: boolean - /** - * - * By default `vite-plugin-imp` ignores all files inside node_modules. - * You can enable this option to avoid unexpected untranspiled code from third-party dependencies. - * - * Transpiling all the dependencies could slow down the build process, though. - * If build performance is a concern, you can explicitly transpile only some of the dependencies - * by passing an array of package names or name patterns to this option. - * - * Default: false - */ - transpileDependencies?: boolean | Array -} diff --git a/vite.config.ts b/vite.config.ts deleted file mode 100644 index 9fa84a54..00000000 --- a/vite.config.ts +++ /dev/null @@ -1,176 +0,0 @@ -import { defineConfig } from 'vite' -import vue from '@vitejs/plugin-vue' - -import { - viteAutoImport, - viteComponents, - viteVueI18nPlugin, - viteSVGIcon, -} from './vite-plugin/index' -import viteVueJSX from '@vitejs/plugin-vue-jsx' -import viteVeI18nPlugin from '@intlify/unplugin-vue-i18n/vite' -import viteInspect from 'vite-plugin-inspect' -import viteSvgLoader from 'vite-svg-loader' -import viteEslintPlugin from 'vite-plugin-eslint' -import vitePluginImp from 'vite-plugin-imp' // 按需打包工具 -import { visualizer } from 'rollup-plugin-visualizer' // 打包体积分析工具 -import viteCompression from 'vite-plugin-compression' // 压缩打包 -import { ViteEjsPlugin as viteEjsPlugin } from 'vite-plugin-ejs' - -import { NaiveUiResolver } from 'unplugin-vue-components/resolvers' // 模板自动导入组件并且按需打包 - -import config from './cfg' -import pkg from './package.json' - -const { dependencies, devDependencies, name, version } = pkg -const { - server, - buildOptions, - alias, - title, - copyright, - sideBarLogo, - mixinCSS, - appPrimaryColor, - preloadingConfig, - base, -} = config - -/** - * - * 全局注入 `__APP_CFG__` 变量 - * - * 可以在 `views` 页面使用 - * - * 使用方法 `const { pkg, layout } = __APP_CFG__` - * - * 如果有新的补充, 需要自己手动补充类型 `src/types/cfg.ts AppConfig` - */ -const __APP_CFG__ = { - pkg: { dependencies, devDependencies, name, version }, - layout: { - copyright, - sideBarLogo, - }, - appPrimaryColor, -} - -// https://vitejs.dev/config/ -export default defineConfig(async ({ mode }) => { - return { - base: base || '/', - define: { - __APP_CFG__: JSON.stringify(__APP_CFG__), - }, - resolve: { - alias: alias, - }, - plugins: [ - vue({ reactivityTransform: true }), - viteVueJSX(), - title, - viteInspect(), // 仅适用于开发模式(检查 `Vite` 插件的中间状态) - viteVeI18nPlugin(), - await viteAutoImport([ - { - 'naive-ui': [ - 'useDialog', - 'useMessage', - 'useNotification', - 'useLoadingBar', - ], - }, - ]), - await viteComponents([NaiveUiResolver()]), - viteCompression(), - viteVueI18nPlugin(), - viteSvgLoader({ - defaultImport: 'component', // 默认以 `componetn` 形式导入 `svg` - }), - viteSVGIcon(), - viteEslintPlugin({ - lintOnStart: true, // 构建时自动检查 - failOnWarning: true, // 如果含有警告则构建失败 - failOnError: true, // 如果有错误则构建失败 - cache: true, // 缓存, 减少构建时间 - exclude: ['**/node_modules/**', 'vite-env.d.ts'], - include: ['src/**/*.ts', 'src/**/*.vue', 'src/**/*.tsx'], - }), - vitePluginImp({ - libList: [ - { - libName: 'lodash-es', - libDirectory: '', - camel2DashComponentName: false, - }, - { - libName: '@vueuse', - libDirectory: '', - camel2DashComponentName: false, - }, - { - libName: 'lodash', - libDirectory: '', - camel2DashComponentName: false, - }, - ], - }), - { - include: [ - 'src/**/*.ts', - 'src/**/*.tsx', - 'src/**/*.vue', - 'src/*.ts', - 'src/*.tsx', - 'src/*.vue', - ], - }, - visualizer({ - gzipSize: true, // 搜集 `gzip` 压缩包 - brotliSize: true, // 搜集 `brotli` 压缩包 - emitFile: false, // 生成文件在根目录下 - filename: 'visualizer.html', - open: mode === 'report' ? true : false, // 以默认服务器代理打开文件 - }), - viteEjsPlugin({ - preloadingConfig, - appPrimaryColor, - }), - ], - optimizeDeps: { - include: ['vue', 'vue-router', 'pinia', 'vue-i18n', '@vueuse/core'], - }, - esbuild: { - pure: ['console.log'], - }, - build: { - ...buildOptions(mode), - rollupOptions: { - output: { - manualChunks: (id) => { - if (id.includes('node_modules')) { - return id - .toString() - .split('node_modules/')[1] - .split('/')[0] - .toString() - } - }, - }, - }, - }, - css: { - preprocessorOptions: { - scss: { - additionalData: mixinCSS, - }, - }, - modules: { - localsConvention: 'camelCaseOnly', - }, - }, - server: { - ...server, - }, - } -})