chore: @vben-core/iconify was renamed @vben-core/icons. Add readme.md for some packages

pull/48/MERGE
vince 2024-07-14 22:51:10 +08:00
parent 3a91a24e0d
commit 3eb7a8bc6f
68 changed files with 261 additions and 132 deletions

View File

@ -48,7 +48,7 @@
"**/node_modules/**", "**/node_modules/**",
"**/dist/**", "**/dist/**",
"**/*-dist/**", "**/*-dist/**",
"**/iconify/**", "**/icons/**",
"pnpm-lock.yaml", "pnpm-lock.yaml",
"**/*.log" "**/*.log"
] ]

View File

@ -28,7 +28,7 @@
} }
}, },
"dependencies": { "dependencies": {
"prettier": "^3.3.2", "prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5" "prettier-plugin-tailwindcss": "^0.6.5"
} }
} }

View File

@ -36,13 +36,13 @@
"postcss": "^8.4.39", "postcss": "^8.4.39",
"postcss-html": "^1.7.0", "postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9", "postcss-scss": "^4.0.9",
"prettier": "^3.3.2", "prettier": "^3.3.3",
"stylelint": "^16.7.0", "stylelint": "^16.7.0",
"stylelint-config-recommended": "^14.0.1", "stylelint-config-recommended": "^14.0.1",
"stylelint-config-recommended-scss": "^14.1.0", "stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0", "stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1", "stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4", "stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0" "stylelint-prettier": "^5.0.1"
} }
} }

View File

@ -35,7 +35,7 @@
"find-up": "^7.0.0", "find-up": "^7.0.0",
"nanoid": "^5.0.7", "nanoid": "^5.0.7",
"pkg-types": "^1.1.3", "pkg-types": "^1.1.3",
"prettier": "^3.3.2", "prettier": "^3.3.3",
"rimraf": "^6.0.1", "rimraf": "^6.0.1",
"zx": "^7.2.3" "zx": "^7.2.3"
} }

View File

@ -34,7 +34,7 @@
"resolve.exports": "^2.0.2", "resolve.exports": "^2.0.2",
"vite-plugin-lib-inject-css": "^2.1.1", "vite-plugin-lib-inject-css": "^2.1.1",
"vite-plugin-pwa": "^0.20.0", "vite-plugin-pwa": "^0.20.0",
"vite-plugin-vue-devtools": "^7.3.5" "vite-plugin-vue-devtools": "^7.3.6"
}, },
"devDependencies": { "devDependencies": {
"@types/html-minifier-terser": "^7.0.2", "@types/html-minifier-terser": "^7.0.2",
@ -46,7 +46,7 @@
"rollup": "^4.18.1", "rollup": "^4.18.1",
"rollup-plugin-visualizer": "^5.12.0", "rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.77.8", "sass": "^1.77.8",
"unplugin-turbo-console": "^1.9.3", "unplugin-turbo-console": "^1.9.5",
"vite": "^5.3.3", "vite": "^5.3.3",
"vite-plugin-compression": "^0.5.1", "vite-plugin-compression": "^0.5.1",
"vite-plugin-dts": "^3.9.1", "vite-plugin-dts": "^3.9.1",

View File

@ -1,12 +1,12 @@
{ {
"name": "@vben-core/iconify", "name": "@vben-core/icons",
"version": "5.0.0", "version": "5.0.0",
"homepage": "https://github.com/vbenjs/vue-vben-admin", "homepage": "https://github.com/vbenjs/vue-vben-admin",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues", "bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/vbenjs/vue-vben-admin.git", "url": "git+https://github.com/vbenjs/vue-vben-admin.git",
"directory": "packages/@vben-core/shared/iconify" "directory": "packages/@vben-core/shared/icons"
}, },
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",

View File

@ -37,7 +37,7 @@
} }
}, },
"dependencies": { "dependencies": {
"@vben-core/iconify": "workspace:*", "@vben-core/icons": "workspace:*",
"@vben-core/shadcn-ui": "workspace:*", "@vben-core/shadcn-ui": "workspace:*",
"@vben-core/toolkit": "workspace:*", "@vben-core/toolkit": "workspace:*",
"@vben-core/typings": "workspace:*", "@vben-core/typings": "workspace:*",

View File

@ -2,7 +2,7 @@
import type { CSSProperties } from 'vue'; import type { CSSProperties } from 'vue';
import { computed, useSlots } from 'vue'; import { computed, useSlots } from 'vue';
import { IcRoundMenu } from '@vben-core/iconify'; import { IcRoundMenu } from '@vben-core/icons';
import { VbenIconButton } from '@vben-core/shadcn-ui'; import { VbenIconButton } from '@vben-core/shadcn-ui';
interface Props { interface Props {

View File

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { MdiMenuClose, MdiMenuOpen } from '@vben-core/iconify'; import { MdiMenuClose, MdiMenuOpen } from '@vben-core/icons';
interface Props { interface Props {
theme: string; theme: string;

View File

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { MdiPin, MdiPinOff } from '@vben-core/iconify'; import { MdiPin, MdiPinOff } from '@vben-core/icons';
interface Props { interface Props {
theme: string; theme: string;

View File

@ -38,7 +38,7 @@
}, },
"dependencies": { "dependencies": {
"@vben-core/hooks": "workspace:*", "@vben-core/hooks": "workspace:*",
"@vben-core/iconify": "workspace:*", "@vben-core/icons": "workspace:*",
"@vben-core/shadcn-ui": "workspace:*", "@vben-core/shadcn-ui": "workspace:*",
"@vben-core/toolkit": "workspace:*", "@vben-core/toolkit": "workspace:*",
"@vben-core/typings": "workspace:*", "@vben-core/typings": "workspace:*",

View File

@ -19,7 +19,7 @@ import {
} from 'vue'; } from 'vue';
import { useNamespace } from '@vben-core/hooks'; import { useNamespace } from '@vben-core/hooks';
import { IcRoundMoreHoriz } from '@vben-core/iconify'; import { IcRoundMoreHoriz } from '@vben-core/icons';
import { isHttpUrl } from '@vben-core/toolkit'; import { isHttpUrl } from '@vben-core/toolkit';
import { UseResizeObserverReturn, useResizeObserver } from '@vueuse/core'; import { UseResizeObserverReturn, useResizeObserver } from '@vueuse/core';

View File

@ -7,7 +7,7 @@ import { useNamespace } from '@vben-core/hooks';
import { import {
IcRoundChevronRight, IcRoundChevronRight,
IcRoundKeyboardArrowDown, IcRoundKeyboardArrowDown,
} from '@vben-core/iconify'; } from '@vben-core/icons';
import { VbenIcon } from '@vben-core/shadcn-ui'; import { VbenIcon } from '@vben-core/shadcn-ui';
import { useMenuContext } from '../hooks'; import { useMenuContext } from '../hooks';

View File

@ -43,7 +43,7 @@
}, },
"dependencies": { "dependencies": {
"@radix-icons/vue": "^1.0.0", "@radix-icons/vue": "^1.0.0",
"@vben-core/iconify": "workspace:*", "@vben-core/icons": "workspace:*",
"@vben-core/toolkit": "workspace:*", "@vben-core/toolkit": "workspace:*",
"@vben-core/typings": "workspace:*", "@vben-core/typings": "workspace:*",
"@vueuse/core": "^10.11.0", "@vueuse/core": "^10.11.0",

View File

@ -3,7 +3,7 @@ import type { BacktopProps } from './backtop';
import { computed } from 'vue'; import { computed } from 'vue';
import { IcRoundArrowUpward } from '@vben-core/iconify'; import { IcRoundArrowUpward } from '@vben-core/icons';
import { VbenButton } from '../button'; import { VbenButton } from '../button';
import { useBackTop } from './use-backtop'; import { useBackTop } from './use-backtop';

View File

@ -1,7 +1,7 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { IBreadcrumb } from './interface'; import type { IBreadcrumb } from './interface';
import { IcRoundKeyboardArrowDown } from '@vben-core/iconify'; import { IcRoundKeyboardArrowDown } from '@vben-core/icons';
import { import {
Breadcrumb, Breadcrumb,
BreadcrumbItem, BreadcrumbItem,

View File

@ -2,7 +2,7 @@
import type { HTMLAttributes } from 'vue'; import type { HTMLAttributes } from 'vue';
import { computed } from 'vue'; import { computed } from 'vue';
import { MdiLoading } from '@vben-core/iconify'; import { MdiLoading } from '@vben-core/icons';
import { import {
type ButtonVariants, type ButtonVariants,
buttonVariants, buttonVariants,

View File

@ -1,5 +1,5 @@
<script lang="ts" setup> <script lang="ts" setup>
import { IcRoundFullscreen, IcRoundFullscreenExit } from '@vben-core/iconify'; import { IcRoundFullscreen, IcRoundFullscreenExit } from '@vben-core/icons';
import { useFullscreen } from '@vueuse/core'; import { useFullscreen } from '@vueuse/core';

View File

@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import { type Component, computed } from 'vue'; import { type Component, computed } from 'vue';
import { Icon, IconDefault } from '@vben-core/iconify'; import { Icon, IconDefault } from '@vben-core/icons';
import { isHttpUrl, isObject, isString } from '@vben-core/toolkit'; import { isHttpUrl, isObject, isString } from '@vben-core/toolkit';
const props = defineProps<{ const props = defineProps<{

View File

@ -1,10 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, useSlots } from 'vue'; import { ref, useSlots } from 'vue';
import { import { IcOutlineVisibility, IcOutlineVisibilityOff } from '@vben-core/icons';
IcOutlineVisibility,
IcOutlineVisibilityOff,
} from '@vben-core/iconify';
import { import {
type InputProps, type InputProps,
VbenInput, VbenInput,

View File

@ -44,7 +44,7 @@ function handleScroll(event: Event) {
:class="{ :class="{
'opacity-100': !isAtTop, 'opacity-100': !isAtTop,
}" }"
class="scrollbar-top-shadow pointer-events-none absolute top-0 z-10 h-16 w-full opacity-0 transition-opacity duration-1000 ease-in-out will-change-[opacity]" class="scrollbar-top-shadow pointer-events-none absolute top-0 z-10 h-12 w-full opacity-0 transition-opacity duration-300 ease-in-out will-change-[opacity]"
></div> ></div>
<slot></slot> <slot></slot>
<div <div
@ -52,7 +52,7 @@ function handleScroll(event: Event) {
:class="{ :class="{
'opacity-100': !isAtTop && !isAtBottom, 'opacity-100': !isAtTop && !isAtBottom,
}" }"
class="scrollbar-bottom-shadow pointer-events-none absolute bottom-0 z-10 h-16 w-full opacity-0 transition-opacity duration-1000 ease-in-out will-change-[opacity]" class="scrollbar-bottom-shadow pointer-events-none absolute bottom-0 z-10 h-12 w-full opacity-0 transition-opacity duration-300 ease-in-out will-change-[opacity]"
></div> ></div>
<ScrollBar v-if="horizontal" orientation="horizontal" /> <ScrollBar v-if="horizontal" orientation="horizontal" />
</ScrollArea> </ScrollArea>

View File

@ -38,7 +38,7 @@
}, },
"dependencies": { "dependencies": {
"@vben-core/hooks": "workspace:*", "@vben-core/hooks": "workspace:*",
"@vben-core/iconify": "workspace:*", "@vben-core/icons": "workspace:*",
"@vben-core/shadcn-ui": "workspace:*", "@vben-core/shadcn-ui": "workspace:*",
"@vben-core/typings": "workspace:*", "@vben-core/typings": "workspace:*",
"vue": "^3.4.31" "vue": "^3.4.31"

View File

@ -5,7 +5,7 @@ import type { TabConfig, TabsProps } from '../../types';
import { computed, nextTick, onMounted, ref, watch } from 'vue'; import { computed, nextTick, onMounted, ref, watch } from 'vue';
import { IcRoundClose, MdiPin } from '@vben-core/iconify'; import { IcRoundClose, MdiPin } from '@vben-core/icons';
import { VbenContextMenu, VbenIcon } from '@vben-core/shadcn-ui'; import { VbenContextMenu, VbenIcon } from '@vben-core/shadcn-ui';
interface Props extends TabsProps {} interface Props extends TabsProps {}
@ -174,7 +174,7 @@ function handleUnpinTab(tab: TabConfig) {
<!-- tab-item-main --> <!-- tab-item-main -->
<div <div
class="tabs-chrome__item-main absolute left-0 right-0 z-[2] mx-[calc(var(--gap)*2)] my-0 flex h-full items-center overflow-hidden rounded-tl-[5px] rounded-tr-[5px] duration-150 group-hover:pr-3" class="tabs-chrome__item-main group-[.is-active]:text-primary text-accent-foreground dark:group-[.is-active]:text-accent-foreground absolute left-0 right-0 z-[2] mx-[calc(var(--gap)*2)] my-0 flex h-full items-center overflow-hidden rounded-tl-[5px] rounded-tr-[5px] duration-150 group-hover:pr-3"
> >
<VbenIcon <VbenIcon
v-if="showIcon" v-if="showIcon"
@ -184,7 +184,7 @@ function handleUnpinTab(tab: TabConfig) {
/> />
<span <span
class="tabs-chrome__label text-accent-foreground ml-[var(--gap)] flex-1 overflow-hidden whitespace-nowrap" class="tabs-chrome__label ml-[var(--gap)] flex-1 overflow-hidden whitespace-nowrap"
> >
{{ tab.title }} {{ tab.title }}
</span> </span>

View File

@ -3,7 +3,7 @@ import type { TabConfig, TabsProps } from '../../types';
import { computed } from 'vue'; import { computed } from 'vue';
import { IcRoundClose, MdiPin } from '@vben-core/iconify'; import { IcRoundClose, MdiPin } from '@vben-core/icons';
import { VbenContextMenu, VbenIcon, VbenScrollbar } from '@vben-core/shadcn-ui'; import { VbenContextMenu, VbenIcon, VbenScrollbar } from '@vben-core/shadcn-ui';
import { TabDefinition } from '@vben-core/typings'; import { TabDefinition } from '@vben-core/typings';
@ -113,7 +113,7 @@ function handleUnpinTab(tab: TabConfig) {
<!-- tab-item-main --> <!-- tab-item-main -->
<div <div
class="mx-3 mr-3 flex h-full items-center overflow-hidden rounded-tl-[5px] rounded-tr-[5px] pr-3 transition-all duration-300" class="group-[.is-active]:text-primary dark:group-[.is-active]:text-accent-foreground text-accent-foreground mx-3 mr-3 flex h-full items-center overflow-hidden rounded-tl-[5px] rounded-tr-[5px] pr-3 transition-all duration-300"
> >
<!-- <div <!-- <div
class="mx-3 ml-3 mr-2 flex h-full items-center overflow-hidden rounded-tl-[5px] rounded-tr-[5px] transition-all duration-300 group-hover:mr-2 group-hover:pr-4 group-[.is-active]:pr-4" class="mx-3 ml-3 mr-2 flex h-full items-center overflow-hidden rounded-tl-[5px] rounded-tr-[5px] transition-all duration-300 group-hover:mr-2 group-hover:pr-4 group-[.is-active]:pr-4"
@ -125,9 +125,7 @@ function handleUnpinTab(tab: TabConfig) {
fallback fallback
/> />
<span <span class="flex-1 overflow-hidden whitespace-nowrap">
class="text-accent-foreground flex-1 overflow-hidden whitespace-nowrap"
>
{{ tab.title }} {{ tab.title }}
</span> </span>
</div> </div>

View File

@ -1,7 +1,7 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { DropdownMenuProps } from '@vben-core/shadcn-ui'; import type { DropdownMenuProps } from '@vben-core/shadcn-ui';
import { IcRoundKeyboardArrowDown } from '@vben-core/iconify'; import { IcRoundKeyboardArrowDown } from '@vben-core/icons';
import { VbenDropdownMenu } from '@vben-core/shadcn-ui'; import { VbenDropdownMenu } from '@vben-core/shadcn-ui';
defineProps<DropdownMenuProps>(); defineProps<DropdownMenuProps>();

View File

@ -1,5 +1,5 @@
<script lang="ts" setup> <script lang="ts" setup>
import { IcRoundFitScreen, IcTwotoneFitScreen } from '@vben-core/iconify'; import { IcRoundFitScreen, IcTwotoneFitScreen } from '@vben-core/icons';
const screen = defineModel<boolean>('screen'); const screen = defineModel<boolean>('screen');

View File

@ -1 +0,0 @@
# packages

View File

@ -0,0 +1,19 @@
# @vben/constants
用于多个 `app` 公用的常量,继承了 `@vben-core/constants` 的所有能力。业务上有通用常量可以放在这里。
## 用法
### 添加依赖
```bash
# 进入目标应用目录,例如 apps/xxxx-app
# cd apps/xxxx-app
pnpm add @vben/hooks --workspace
```
### 使用
```ts
import { useNamespace } from '@vben/hooks';
```

View File

@ -38,7 +38,7 @@
}, },
"dependencies": { "dependencies": {
"@vben-core/hooks": "workspace:*", "@vben-core/hooks": "workspace:*",
"@vben-core/iconify": "workspace:*", "@vben-core/icons": "workspace:*",
"@vben-core/locales": "workspace:*", "@vben-core/locales": "workspace:*",
"@vben-core/shadcn-ui": "workspace:*", "@vben-core/shadcn-ui": "workspace:*",
"@vben/constants": "workspace:*", "@vben/constants": "workspace:*",

View File

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { MdiGithub, MdiGoogle, MdiQqchat, MdiWechat } from '@vben-core/iconify'; import { MdiGithub, MdiGoogle, MdiQqchat, MdiWechat } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import { VbenIconButton } from '@vben-core/shadcn-ui'; import { VbenIconButton } from '@vben-core/shadcn-ui';

View File

@ -4,7 +4,7 @@ import type { FallbackProps } from './fallback';
import { computed, defineAsyncComponent } from 'vue'; import { computed, defineAsyncComponent } from 'vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { IcRoundArrowBackIosNew, IcRoundRefresh } from '@vben-core/iconify'; import { IcRoundArrowBackIosNew, IcRoundRefresh } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import { VbenButton } from '@vben-core/shadcn-ui'; import { VbenButton } from '@vben-core/shadcn-ui';

View File

@ -38,7 +38,7 @@
}, },
"dependencies": { "dependencies": {
"@vben-core/helpers": "workspace:*", "@vben-core/helpers": "workspace:*",
"@vben-core/iconify": "workspace:*", "@vben-core/icons": "workspace:*",
"@vben-core/layout-ui": "workspace:*", "@vben-core/layout-ui": "workspace:*",
"@vben-core/locales": "workspace:*", "@vben-core/locales": "workspace:*",
"@vben-core/menu-ui": "workspace:*", "@vben-core/menu-ui": "workspace:*",

View File

@ -20,7 +20,7 @@ import {
MdiFormatHorizontalAlignRight, MdiFormatHorizontalAlignRight,
MdiPin, MdiPin,
MdiPinOff, MdiPinOff,
} from '@vben-core/iconify'; } from '@vben-core/icons';
import { $t, useI18n } from '@vben-core/locales'; import { $t, useI18n } from '@vben-core/locales';
import { updatePreferences, usePreferences } from '@vben-core/preferences'; import { updatePreferences, usePreferences } from '@vben-core/preferences';
import { import {

View File

@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import type { BuiltinThemeType } from '@vben-core/typings'; import type { BuiltinThemeType } from '@vben-core/typings';
import { IcRoundColorLens } from '@vben-core/iconify'; import { IcRoundColorLens } from '@vben-core/icons';
import { import {
COLOR_PRESETS, COLOR_PRESETS,
preferences, preferences,

View File

@ -9,7 +9,7 @@ import {
IcRoundSearch, IcRoundSearch,
IcRoundSubdirectoryArrowLeft, IcRoundSubdirectoryArrowLeft,
MdiKeyboardEsc, MdiKeyboardEsc,
} from '@vben-core/iconify'; } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import { import {
Dialog, Dialog,

View File

@ -4,7 +4,7 @@ import type { MenuRecordRaw } from '@vben-core/typings';
import { nextTick, onMounted, ref, shallowRef, watch } from 'vue'; import { nextTick, onMounted, ref, shallowRef, watch } from 'vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { IcRoundClose, IcRoundSearchOff } from '@vben-core/iconify'; import { IcRoundClose, IcRoundSearchOff } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import { VbenIcon, VbenScrollbar } from '@vben-core/shadcn-ui'; import { VbenIcon, VbenScrollbar } from '@vben-core/shadcn-ui';
import { mapTree, traverseTreeValues, uniqueByField } from '@vben-core/toolkit'; import { mapTree, traverseTreeValues, uniqueByField } from '@vben-core/toolkit';

View File

@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import type { SupportedLanguagesType } from '@vben-core/typings'; import type { SupportedLanguagesType } from '@vben-core/typings';
import { IcBaselineLanguage } from '@vben-core/iconify'; import { IcBaselineLanguage } from '@vben-core/icons';
import { loadLocaleMessages } from '@vben-core/locales'; import { loadLocaleMessages } from '@vben-core/locales';
import { import {
SUPPORT_LANGUAGES, SUPPORT_LANGUAGES,

View File

@ -4,7 +4,7 @@ import type { AuthPageLayoutType } from '@vben-core/typings';
import { computed } from 'vue'; import { computed } from 'vue';
import { MdiDockBottom, MdiDockLeft, MdiDockRight } from '@vben-core/iconify'; import { MdiDockBottom, MdiDockLeft, MdiDockRight } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import { import {
preferences, preferences,

View File

@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, reactive, ref, watchEffect } from 'vue'; import { computed, reactive, ref, watchEffect } from 'vue';
import { IcRoundLock } from '@vben-core/iconify'; import { IcRoundLock } from '@vben-core/icons';
import { $t, useI18n } from '@vben-core/locales'; import { $t, useI18n } from '@vben-core/locales';
import { import {
VbenAvatar, VbenAvatar,

View File

@ -4,7 +4,7 @@ import type { NotificationItem } from './types';
import { import {
IcRoundMarkEmailRead, IcRoundMarkEmailRead,
IcRoundNotificationsNone, IcRoundNotificationsNone,
} from '@vben-core/iconify'; } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import { import {
VbenButton, VbenButton,

View File

@ -3,7 +3,7 @@ import type { SelectOption } from '@vben-core/typings';
import { useSlots } from 'vue'; import { useSlots } from 'vue';
import { MdiQuestionMarkCircleOutline } from '@vben-core/iconify'; import { MdiQuestionMarkCircleOutline } from '@vben-core/icons';
import { Input, VbenTooltip } from '@vben-core/shadcn-ui'; import { Input, VbenTooltip } from '@vben-core/shadcn-ui';
defineOptions({ defineOptions({

View File

@ -3,7 +3,7 @@ import type { LayoutType } from '@vben-core/typings';
import { type Component, computed } from 'vue'; import { type Component, computed } from 'vue';
import { MdiQuestionMarkCircleOutline } from '@vben-core/iconify'; import { MdiQuestionMarkCircleOutline } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import { VbenTooltip } from '@vben-core/shadcn-ui'; import { VbenTooltip } from '@vben-core/shadcn-ui';

View File

@ -3,7 +3,7 @@ import type { SelectOption } from '@vben-core/typings';
import { useSlots } from 'vue'; import { useSlots } from 'vue';
import { MdiQuestionMarkCircleOutline } from '@vben-core/iconify'; import { MdiQuestionMarkCircleOutline } from '@vben-core/icons';
import { import {
NumberField, NumberField,
NumberFieldContent, NumberFieldContent,

View File

@ -3,7 +3,7 @@ import type { SelectOption } from '@vben-core/typings';
import { useSlots } from 'vue'; import { useSlots } from 'vue';
import { MdiQuestionMarkCircleOutline } from '@vben-core/iconify'; import { MdiQuestionMarkCircleOutline } from '@vben-core/icons';
import { import {
Select, Select,
SelectContent, SelectContent,

View File

@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import { useSlots } from 'vue'; import { useSlots } from 'vue';
import { MdiQuestionMarkCircleOutline } from '@vben-core/iconify'; import { MdiQuestionMarkCircleOutline } from '@vben-core/icons';
import { Switch, VbenTooltip } from '@vben-core/shadcn-ui'; import { Switch, VbenTooltip } from '@vben-core/shadcn-ui';
defineOptions({ defineOptions({

View File

@ -3,7 +3,7 @@ import type { BuiltinThemeType } from '@vben-core/typings';
import { computed, ref } from 'vue'; import { computed, ref } from 'vue';
import { MdiEditBoxOutline } from '@vben-core/iconify'; import { MdiEditBoxOutline } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import { import {
BUILT_IN_THEME_PRESETS, BUILT_IN_THEME_PRESETS,

View File

@ -7,7 +7,7 @@ import {
IcRoundMotionPhotosAuto, IcRoundMotionPhotosAuto,
IcRoundWbSunny, IcRoundWbSunny,
MdiMoonAndStars, MdiMoonAndStars,
} from '@vben-core/iconify'; } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import SwitchItem from '../switch-item.vue'; import SwitchItem from '../switch-item.vue';

View File

@ -13,7 +13,7 @@ import type {
import { computed, ref } from 'vue'; import { computed, ref } from 'vue';
import { IcRoundFolderCopy, IcRoundRestartAlt } from '@vben-core/iconify'; import { IcRoundFolderCopy, IcRoundRestartAlt } from '@vben-core/icons';
import { $t, loadLocaleMessages } from '@vben-core/locales'; import { $t, loadLocaleMessages } from '@vben-core/locales';
import { import {
clearPreferencesCache, clearPreferencesCache,

View File

@ -5,7 +5,7 @@ import {
IcRoundMotionPhotosAuto, IcRoundMotionPhotosAuto,
IcRoundWbSunny, IcRoundWbSunny,
MdiMoonAndStars, MdiMoonAndStars,
} from '@vben-core/iconify'; } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import { import {
preferences, preferences,

View File

@ -8,7 +8,7 @@ import {
IcRoundLock, IcRoundLock,
IcRoundLogout, IcRoundLogout,
IcRoundSettingsSuggest, IcRoundSettingsSuggest,
} from '@vben-core/iconify'; } from '@vben-core/icons';
import { $t } from '@vben-core/locales'; import { $t } from '@vben-core/locales';
import { preferences, usePreferences } from '@vben-core/preferences'; import { preferences, usePreferences } from '@vben-core/preferences';
import { import {

19
packages/hooks/README.md Normal file
View File

@ -0,0 +1,19 @@
# @vben/hooks
用于多个 `app` 公用的 hook继承了 `@vben-core/hooks` 的所有能力。业务上有通用 hooks 可以放在这里。
## 用法
### 添加依赖
```bash
# 进入目标应用目录,例如 apps/xxxx-app
# cd apps/xxxx-app
pnpm add @vben/hooks --workspace
```
### 使用
```ts
import { useNamespace } from '@vben/hooks';
```

19
packages/icons/README.md Normal file
View File

@ -0,0 +1,19 @@
# @vben/icons
用于多个 `app` 公用的图标文件,继承了 `@vben-core/icons` 的所有能力。业务上有通用图标可以放在这里。
## 用法
### 添加依赖
```bash
# 进入目标应用目录,例如 apps/xxxx-app
# cd apps/xxxx-app
pnpm add @vben/icons --workspace
```
### 使用
```ts
import { IcRoundClose } from '@vben/icons';
```

View File

@ -35,6 +35,6 @@
} }
}, },
"dependencies": { "dependencies": {
"@vben-core/iconify": "workspace:*" "@vben-core/icons": "workspace:*"
} }
} }

View File

@ -1 +1 @@
export * from '@vben-core/iconify'; export * from '@vben-core/icons';

View File

@ -1,4 +1,4 @@
import { createIconifyIcon } from '@vben-core/iconify'; import { createIconifyIcon } from '@vben-core/icons';
import { loadSvgIcons } from './load'; import { loadSvgIcons } from './load';

View File

@ -1,7 +1,7 @@
import { import {
addIcon, addIcon,
// addCollection // addCollection
} from '@vben-core/iconify'; } from '@vben-core/icons';
// addCollection({ // addCollection({
// prefix: 'mdi', // prefix: 'mdi',

19
packages/styles/README.md Normal file
View File

@ -0,0 +1,19 @@
# @vben/styles
用于多个 `app` 公用的样式文件,继承了 `@vben-core/design` 的所有能力。业务上有通用的样式文件可以放在这里。
## 用法
### 添加依赖
```bash
# 进入目标应用目录,例如 apps/xxxx-app
# cd apps/xxxx-app
pnpm add @vben/styles --workspace
```
### 使用
```ts
import '@vben/styles';
```

20
packages/types/README.md Normal file
View File

@ -0,0 +1,20 @@
# @vben/types
用于多个 `app` 公用的工具类型,继承了 `@vben-core/typings` 的所有能力。业务上有通用的类型定义可以放在这里。
## 用法
### 添加依赖
```bash
# 进入目标应用目录,例如 apps/xxxx-app
# cd apps/xxxx-app
pnpm add @vben/types --workspace
```
### 使用
```ts
// 推荐加上 type
import type { SelectOption } from '@vben/types';
```

19
packages/utils/README.md Normal file
View File

@ -0,0 +1,19 @@
# @vben/utils
用于多个 `app` 公用的工具包,继承了 `@vben-core/toolkit` 的所有能力。业务上有通用的工具函数可以放在这里。
## 用法
### 添加依赖
```bash
# 进入目标应用目录,例如 apps/xxxx-app
# cd apps/xxxx-app
pnpm add @vben/utils --workspace
```
### 使用
```ts
import { isString } from '@vben/utils';
```

View File

@ -318,7 +318,7 @@ importers:
version: 2.11.0(eslint@8.57.0)(typescript@5.5.3)(vue-eslint-parser@9.4.3(eslint@8.57.0)) version: 2.11.0(eslint@8.57.0)(typescript@5.5.3)(vue-eslint-parser@9.4.3(eslint@8.57.0))
eslint-plugin-prettier: eslint-plugin-prettier:
specifier: ^5.1.3 specifier: ^5.1.3
version: 5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.2) version: 5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.3)
eslint-plugin-regexp: eslint-plugin-regexp:
specifier: ^2.6.0 specifier: ^2.6.0
version: 2.6.0(eslint@8.57.0) version: 2.6.0(eslint@8.57.0)
@ -353,11 +353,11 @@ importers:
internal/lint-configs/prettier-config: internal/lint-configs/prettier-config:
dependencies: dependencies:
prettier: prettier:
specifier: ^3.3.2 specifier: ^3.3.3
version: 3.3.2 version: 3.3.3
prettier-plugin-tailwindcss: prettier-plugin-tailwindcss:
specifier: ^0.6.5 specifier: ^0.6.5
version: 0.6.5(prettier@3.3.2) version: 0.6.5(prettier@3.3.3)
internal/lint-configs/stylelint-config: internal/lint-configs/stylelint-config:
dependencies: dependencies:
@ -381,8 +381,8 @@ importers:
specifier: ^4.0.9 specifier: ^4.0.9
version: 4.0.9(postcss@8.4.39) version: 4.0.9(postcss@8.4.39)
prettier: prettier:
specifier: ^3.3.2 specifier: ^3.3.3
version: 3.3.2 version: 3.3.3
stylelint: stylelint:
specifier: ^16.7.0 specifier: ^16.7.0
version: 16.7.0(typescript@5.5.3) version: 16.7.0(typescript@5.5.3)
@ -402,8 +402,8 @@ importers:
specifier: ^6.0.4 specifier: ^6.0.4
version: 6.0.4(stylelint@16.7.0(typescript@5.5.3)) version: 6.0.4(stylelint@16.7.0(typescript@5.5.3))
stylelint-prettier: stylelint-prettier:
specifier: ^5.0.0 specifier: ^5.0.1
version: 5.0.0(prettier@3.3.2)(stylelint@16.7.0(typescript@5.5.3)) version: 5.0.1(prettier@3.3.3)(stylelint@16.7.0(typescript@5.5.3))
internal/node-utils: internal/node-utils:
dependencies: dependencies:
@ -429,8 +429,8 @@ importers:
specifier: ^1.1.3 specifier: ^1.1.3
version: 1.1.3 version: 1.1.3
prettier: prettier:
specifier: ^3.3.2 specifier: ^3.3.3
version: 3.3.2 version: 3.3.3
rimraf: rimraf:
specifier: ^6.0.1 specifier: ^6.0.1
version: 6.0.1 version: 6.0.1
@ -520,8 +520,8 @@ importers:
specifier: ^0.20.0 specifier: ^0.20.0
version: 0.20.0(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(workbox-build@7.1.1)(workbox-window@7.1.0) version: 0.20.0(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(workbox-build@7.1.1)(workbox-window@7.1.0)
vite-plugin-vue-devtools: vite-plugin-vue-devtools:
specifier: ^7.3.5 specifier: ^7.3.6
version: 7.3.5(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3)) version: 7.3.6(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3))
devDependencies: devDependencies:
'@types/html-minifier-terser': '@types/html-minifier-terser':
specifier: ^7.0.2 specifier: ^7.0.2
@ -551,8 +551,8 @@ importers:
specifier: ^1.77.8 specifier: ^1.77.8
version: 1.77.8 version: 1.77.8
unplugin-turbo-console: unplugin-turbo-console:
specifier: ^1.9.3 specifier: ^1.9.5
version: 1.9.3(esbuild@0.23.0)(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3))(webpack@5.93.0(esbuild@0.23.0)) version: 1.9.5(esbuild@0.23.0)(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3))(webpack@5.93.0(esbuild@0.23.0))
vite: vite:
specifier: ^5.3.3 specifier: ^5.3.3
version: 5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2) version: 5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2)
@ -669,7 +669,7 @@ importers:
specifier: ^1.15.8 specifier: ^1.15.8
version: 1.15.8 version: 1.15.8
packages/@core/shared/iconify: packages/@core/shared/icons:
dependencies: dependencies:
'@iconify/vue': '@iconify/vue':
specifier: ^4.1.2 specifier: ^4.1.2
@ -723,9 +723,9 @@ importers:
packages/@core/ui-kit/layout-ui: packages/@core/ui-kit/layout-ui:
dependencies: dependencies:
'@vben-core/iconify': '@vben-core/icons':
specifier: workspace:* specifier: workspace:*
version: link:../../shared/iconify version: link:../../shared/icons
'@vben-core/shadcn-ui': '@vben-core/shadcn-ui':
specifier: workspace:* specifier: workspace:*
version: link:../shadcn-ui version: link:../shadcn-ui
@ -747,9 +747,9 @@ importers:
'@vben-core/hooks': '@vben-core/hooks':
specifier: workspace:* specifier: workspace:*
version: link:../../shared/hooks version: link:../../shared/hooks
'@vben-core/iconify': '@vben-core/icons':
specifier: workspace:* specifier: workspace:*
version: link:../../shared/iconify version: link:../../shared/icons
'@vben-core/shadcn-ui': '@vben-core/shadcn-ui':
specifier: workspace:* specifier: workspace:*
version: link:../shadcn-ui version: link:../shadcn-ui
@ -771,9 +771,9 @@ importers:
'@radix-icons/vue': '@radix-icons/vue':
specifier: ^1.0.0 specifier: ^1.0.0
version: 1.0.0(vue@3.4.31(typescript@5.5.3)) version: 1.0.0(vue@3.4.31(typescript@5.5.3))
'@vben-core/iconify': '@vben-core/icons':
specifier: workspace:* specifier: workspace:*
version: link:../../shared/iconify version: link:../../shared/icons
'@vben-core/toolkit': '@vben-core/toolkit':
specifier: workspace:* specifier: workspace:*
version: link:../../shared/toolkit version: link:../../shared/toolkit
@ -801,9 +801,9 @@ importers:
'@vben-core/hooks': '@vben-core/hooks':
specifier: workspace:* specifier: workspace:*
version: link:../../shared/hooks version: link:../../shared/hooks
'@vben-core/iconify': '@vben-core/icons':
specifier: workspace:* specifier: workspace:*
version: link:../../shared/iconify version: link:../../shared/icons
'@vben-core/shadcn-ui': '@vben-core/shadcn-ui':
specifier: workspace:* specifier: workspace:*
version: link:../shadcn-ui version: link:../shadcn-ui
@ -861,9 +861,9 @@ importers:
'@vben-core/hooks': '@vben-core/hooks':
specifier: workspace:* specifier: workspace:*
version: link:../../@core/shared/hooks version: link:../../@core/shared/hooks
'@vben-core/iconify': '@vben-core/icons':
specifier: workspace:* specifier: workspace:*
version: link:../../@core/shared/iconify version: link:../../@core/shared/icons
'@vben-core/locales': '@vben-core/locales':
specifier: workspace:* specifier: workspace:*
version: link:../../@core/locales version: link:../../@core/locales
@ -898,9 +898,9 @@ importers:
'@vben-core/helpers': '@vben-core/helpers':
specifier: workspace:* specifier: workspace:*
version: link:../../@core/forward/helpers version: link:../../@core/forward/helpers
'@vben-core/iconify': '@vben-core/icons':
specifier: workspace:* specifier: workspace:*
version: link:../../@core/shared/iconify version: link:../../@core/shared/icons
'@vben-core/layout-ui': '@vben-core/layout-ui':
specifier: workspace:* specifier: workspace:*
version: link:../../@core/ui-kit/layout-ui version: link:../../@core/ui-kit/layout-ui
@ -946,9 +946,9 @@ importers:
packages/icons: packages/icons:
dependencies: dependencies:
'@vben-core/iconify': '@vben-core/icons':
specifier: workspace:* specifier: workspace:*
version: link:../@core/shared/iconify version: link:../@core/shared/icons
packages/styles: packages/styles:
dependencies: dependencies:
@ -995,8 +995,8 @@ importers:
website: website:
devDependencies: devDependencies:
vitepress: vitepress:
specifier: ^1.3.0 specifier: ^1.3.1
version: 1.3.0(@algolia/client-search@4.24.0)(@types/node@20.14.10)(async-validator@4.2.5)(axios@1.7.2)(nprogress@0.2.0)(postcss@8.4.39)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.2)(typescript@5.5.3) version: 1.3.1(@algolia/client-search@4.24.0)(@types/node@20.14.10)(async-validator@4.2.5)(axios@1.7.2)(nprogress@0.2.0)(postcss@8.4.39)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.2)(typescript@5.5.3)
vue: vue:
specifier: ^3.4.31 specifier: ^3.4.31
version: 3.4.31(typescript@5.5.3) version: 3.4.31(typescript@5.5.3)
@ -3770,17 +3770,23 @@ packages:
'@vue/devtools-api@7.3.5': '@vue/devtools-api@7.3.5':
resolution: {integrity: sha512-BSdBBu5hOIv+gBJC9jzYMh5bC27FQwjWLSb8fVAniqlL9gvsqvK27xTgczMf+hgctlszMYQnRm3bpY/j8vhPqw==} resolution: {integrity: sha512-BSdBBu5hOIv+gBJC9jzYMh5bC27FQwjWLSb8fVAniqlL9gvsqvK27xTgczMf+hgctlszMYQnRm3bpY/j8vhPqw==}
'@vue/devtools-core@7.3.5': '@vue/devtools-core@7.3.6':
resolution: {integrity: sha512-uSC3IkIp6MtyJYSh5xzY99sgqlAXLq+peE2KKXTi6JeRHOtMngFWFWENXi70IJ1EVGYztiFQoHhI9WZcgKBz8g==} resolution: {integrity: sha512-XqFYVkyS3eySHF4bgLt+KF6yL6nYzVY/JTJHnK6KIJXIE4GIAxmn5Gxfsb4cUG9sl0FGiMqRCnM37Q+P08wr8A==}
peerDependencies: peerDependencies:
vue: ^3.4.31 vue: ^3.4.31
'@vue/devtools-kit@7.3.5': '@vue/devtools-kit@7.3.5':
resolution: {integrity: sha512-wwfi10gJ1HMtjzcd8aIOnzBHlIRqsYDgcDyrKvkeyc0Gbcoe7UrkXRVHZUOtcxxoplHA0PwpT6wFg0uUCmi8Ww==} resolution: {integrity: sha512-wwfi10gJ1HMtjzcd8aIOnzBHlIRqsYDgcDyrKvkeyc0Gbcoe7UrkXRVHZUOtcxxoplHA0PwpT6wFg0uUCmi8Ww==}
'@vue/devtools-kit@7.3.6':
resolution: {integrity: sha512-5Ym9V3fkJenEoptqKoo+cgY5RTVwrSssFdzRsuyIgaeiskCT+rRJeQdwoo81tyrQ1mfS7Er1rYZlSzr3Y3L/ew==}
'@vue/devtools-shared@7.3.5': '@vue/devtools-shared@7.3.5':
resolution: {integrity: sha512-Rqii3VazmWTi67a86rYopi61n5Ved05EybJCwyrfoO9Ok3MaS/4yRFl706ouoISMlyrASJFEzM0/AiDA6w4f9A==} resolution: {integrity: sha512-Rqii3VazmWTi67a86rYopi61n5Ved05EybJCwyrfoO9Ok3MaS/4yRFl706ouoISMlyrASJFEzM0/AiDA6w4f9A==}
'@vue/devtools-shared@7.3.6':
resolution: {integrity: sha512-R/FOmdJV+hhuwcNoxp6e87RRkEeDMVhWH+nOsnHUrwjjsyeXJ2W1475Ozmw+cbZhejWQzftkHVKO28Fuo1yqCw==}
'@vue/language-core@1.8.27': '@vue/language-core@1.8.27':
resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==} resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==}
peerDependencies: peerDependencies:
@ -6705,8 +6711,8 @@ packages:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'} engines: {node: '>=16 || 14 >=14.17'}
minisearch@6.3.0: minisearch@7.0.0:
resolution: {integrity: sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==} resolution: {integrity: sha512-0OIJ3hUE+YBJNruDCqbTMFmk/IoB1CpZzuGfl11khFIel66ew9UoLF/+gfq3bdyrneqr3P7BTjFZApUbmk+9Dg==}
minizlib@2.1.2: minizlib@2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
@ -7685,8 +7691,8 @@ packages:
engines: {node: '>=10.13.0'} engines: {node: '>=10.13.0'}
hasBin: true hasBin: true
prettier@3.3.2: prettier@3.3.3:
resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==} resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
engines: {node: '>=14'} engines: {node: '>=14'}
hasBin: true hasBin: true
@ -8420,8 +8426,8 @@ packages:
peerDependencies: peerDependencies:
stylelint: ^14.0.0 || ^15.0.0 || ^16.0.1 stylelint: ^14.0.0 || ^15.0.0 || ^16.0.1
stylelint-prettier@5.0.0: stylelint-prettier@5.0.1:
resolution: {integrity: sha512-RHfSlRJIsaVg5Br94gZVdWlz/rBTyQzZflNE6dXvSxt/GthWMY3gEHsWZEBaVGg7GM+XrtVSp4RznFlB7i0oyw==} resolution: {integrity: sha512-blsBcSiCv7ZNmUadZPo9tv/ZHxTDRUbByn/NUp3irH5AozPFnAE7SHM/md/2DMdQizUwfuD9/3kOKB5+4a1/4Q==}
engines: {node: '>=18.12.0'} engines: {node: '>=18.12.0'}
peerDependencies: peerDependencies:
prettier: '>=3.0.0' prettier: '>=3.0.0'
@ -8864,8 +8870,8 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'} engines: {node: '>= 0.8'}
unplugin-turbo-console@1.9.3: unplugin-turbo-console@1.9.5:
resolution: {integrity: sha512-oVsn3JybwYXJWSjYyI7a3YYAeKv+bQzzQzU0Q80PrnHTP/2qaUcqvXyM6lc/6/stpKZQ6eFSrTjd9sVQy0sb0w==} resolution: {integrity: sha512-7tAeQ4wYdGKm67qFiNUsSdnNsRRbhQc9zd6OPltjXNNNLE+Suw+2I7SA0eK4prs+YY34pRzUs0OmC5EmJKUMrw==}
peerDependencies: peerDependencies:
'@nuxt/kit': '>=3' '@nuxt/kit': '>=3'
'@nuxt/schema': '>=3' '@nuxt/schema': '>=3'
@ -8999,8 +9005,8 @@ packages:
'@vite-pwa/assets-generator': '@vite-pwa/assets-generator':
optional: true optional: true
vite-plugin-vue-devtools@7.3.5: vite-plugin-vue-devtools@7.3.6:
resolution: {integrity: sha512-6omLXTfYu0bmSmncPSbj4mdMPB3t5dAZkUyriJikahGEnvv5gynHlydDsJShHT6l/5dCkvmSesSji/2a6FfutQ==} resolution: {integrity: sha512-j4Cssv6DVBtMZfyVBEm/4MZy7BiL6RedEn+f9jT3zFyGZKG1vNuEpTO86XvPPbHbYdITFyrkWb7VQuWyhfSgqA==}
engines: {node: '>=v14.21.3'} engines: {node: '>=v14.21.3'}
peerDependencies: peerDependencies:
vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0
@ -9038,8 +9044,8 @@ packages:
terser: terser:
optional: true optional: true
vitepress@1.3.0: vitepress@1.3.1:
resolution: {integrity: sha512-Cbm2AgXcCrukUeV+/24g1ZDSvw8blamh/1uf2pz3ApFpaYb9T7mo4imWDZ6APn2uPo4bJ6sgOzvsJ4aH+oLbBA==} resolution: {integrity: sha512-soZDpg2rRVJNIM/IYMNDPPr+zTHDA5RbLDHAxacRu+Q9iZ2GwSR0QSUlLs+aEZTkG0SOX1dc8RmUYwyuxK8dfQ==}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
markdown-it-mathjax3: ^4 markdown-it-mathjax3: ^4
@ -12575,10 +12581,10 @@ snapshots:
dependencies: dependencies:
'@vue/devtools-kit': 7.3.5 '@vue/devtools-kit': 7.3.5
'@vue/devtools-core@7.3.5(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3))': '@vue/devtools-core@7.3.6(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3))':
dependencies: dependencies:
'@vue/devtools-kit': 7.3.5 '@vue/devtools-kit': 7.3.6
'@vue/devtools-shared': 7.3.5 '@vue/devtools-shared': 7.3.6
mitt: 3.0.1 mitt: 3.0.1
nanoid: 3.3.7 nanoid: 3.3.7
pathe: 1.1.2 pathe: 1.1.2
@ -12597,10 +12603,24 @@ snapshots:
speakingurl: 14.0.1 speakingurl: 14.0.1
superjson: 2.2.1 superjson: 2.2.1
'@vue/devtools-kit@7.3.6':
dependencies:
'@vue/devtools-shared': 7.3.6
birpc: 0.2.17
hookable: 5.5.3
mitt: 3.0.1
perfect-debounce: 1.0.0
speakingurl: 14.0.1
superjson: 2.2.1
'@vue/devtools-shared@7.3.5': '@vue/devtools-shared@7.3.5':
dependencies: dependencies:
rfdc: 1.4.1 rfdc: 1.4.1
'@vue/devtools-shared@7.3.6':
dependencies:
rfdc: 1.4.1
'@vue/language-core@1.8.27(typescript@5.5.3)': '@vue/language-core@1.8.27(typescript@5.5.3)':
dependencies: dependencies:
'@volar/language-core': 1.11.1 '@volar/language-core': 1.11.1
@ -14349,10 +14369,10 @@ snapshots:
- supports-color - supports-color
- typescript - typescript
eslint-plugin-prettier@5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.2): eslint-plugin-prettier@5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.3.3):
dependencies: dependencies:
eslint: 8.57.0 eslint: 8.57.0
prettier: 3.3.2 prettier: 3.3.3
prettier-linter-helpers: 1.0.0 prettier-linter-helpers: 1.0.0
synckit: 0.8.8 synckit: 0.8.8
optionalDependencies: optionalDependencies:
@ -15922,7 +15942,7 @@ snapshots:
minipass@7.1.2: {} minipass@7.1.2: {}
minisearch@6.3.0: {} minisearch@7.0.0: {}
minizlib@2.1.2: minizlib@2.1.2:
dependencies: dependencies:
@ -16849,13 +16869,13 @@ snapshots:
dependencies: dependencies:
fast-diff: 1.3.0 fast-diff: 1.3.0
prettier-plugin-tailwindcss@0.6.5(prettier@3.3.2): prettier-plugin-tailwindcss@0.6.5(prettier@3.3.3):
dependencies: dependencies:
prettier: 3.3.2 prettier: 3.3.3
prettier@2.8.8: {} prettier@2.8.8: {}
prettier@3.3.2: {} prettier@3.3.3: {}
pretty-bytes@5.6.0: {} pretty-bytes@5.6.0: {}
@ -17617,9 +17637,9 @@ snapshots:
postcss-sorting: 8.0.2(postcss@8.4.39) postcss-sorting: 8.0.2(postcss@8.4.39)
stylelint: 16.7.0(typescript@5.5.3) stylelint: 16.7.0(typescript@5.5.3)
stylelint-prettier@5.0.0(prettier@3.3.2)(stylelint@16.7.0(typescript@5.5.3)): stylelint-prettier@5.0.1(prettier@3.3.3)(stylelint@16.7.0(typescript@5.5.3)):
dependencies: dependencies:
prettier: 3.3.2 prettier: 3.3.3
prettier-linter-helpers: 1.0.0 prettier-linter-helpers: 1.0.0
stylelint: 16.7.0(typescript@5.5.3) stylelint: 16.7.0(typescript@5.5.3)
@ -18129,7 +18149,7 @@ snapshots:
unpipe@1.0.0: {} unpipe@1.0.0: {}
unplugin-turbo-console@1.9.3(esbuild@0.23.0)(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3))(webpack@5.93.0(esbuild@0.23.0)): unplugin-turbo-console@1.9.5(esbuild@0.23.0)(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3))(webpack@5.93.0(esbuild@0.23.0)):
dependencies: dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.18.1) '@rollup/pluginutils': 5.1.0(rollup@4.18.1)
ast-kit: 1.0.0 ast-kit: 1.0.0
@ -18311,11 +18331,11 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
vite-plugin-vue-devtools@7.3.5(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3)): vite-plugin-vue-devtools@7.3.6(rollup@4.18.1)(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3)):
dependencies: dependencies:
'@vue/devtools-core': 7.3.5(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3)) '@vue/devtools-core': 7.3.6(vite@5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2))(vue@3.4.31(typescript@5.5.3))
'@vue/devtools-kit': 7.3.5 '@vue/devtools-kit': 7.3.6
'@vue/devtools-shared': 7.3.5 '@vue/devtools-shared': 7.3.6
execa: 8.0.1 execa: 8.0.1
sirv: 2.0.4 sirv: 2.0.4
vite: 5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2) vite: 5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2)
@ -18353,7 +18373,7 @@ snapshots:
sass: 1.77.8 sass: 1.77.8
terser: 5.31.2 terser: 5.31.2
vitepress@1.3.0(@algolia/client-search@4.24.0)(@types/node@20.14.10)(async-validator@4.2.5)(axios@1.7.2)(nprogress@0.2.0)(postcss@8.4.39)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.2)(typescript@5.5.3): vitepress@1.3.1(@algolia/client-search@4.24.0)(@types/node@20.14.10)(async-validator@4.2.5)(axios@1.7.2)(nprogress@0.2.0)(postcss@8.4.39)(qrcode@1.5.3)(sass@1.77.8)(search-insights@2.15.0)(sortablejs@1.15.2)(terser@5.31.2)(typescript@5.5.3):
dependencies: dependencies:
'@docsearch/css': 3.6.0 '@docsearch/css': 3.6.0
'@docsearch/js': 3.6.0(@algolia/client-search@4.24.0)(search-insights@2.15.0) '@docsearch/js': 3.6.0(@algolia/client-search@4.24.0)(search-insights@2.15.0)
@ -18367,7 +18387,7 @@ snapshots:
'@vueuse/integrations': 10.11.0(async-validator@4.2.5)(axios@1.7.2)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.4.31(typescript@5.5.3)) '@vueuse/integrations': 10.11.0(async-validator@4.2.5)(axios@1.7.2)(focus-trap@7.5.4)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(vue@3.4.31(typescript@5.5.3))
focus-trap: 7.5.4 focus-trap: 7.5.4
mark.js: 8.11.1 mark.js: 8.11.1
minisearch: 6.3.0 minisearch: 7.0.0
shiki: 1.10.3 shiki: 1.10.3
vite: 5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2) vite: 5.3.3(@types/node@20.14.10)(sass@1.77.8)(terser@5.31.2)
vue: 3.4.31(typescript@5.5.3) vue: 3.4.31(typescript@5.5.3)

View File

@ -77,8 +77,8 @@
"path": "packages/@core/shared/hooks", "path": "packages/@core/shared/hooks",
}, },
{ {
"name": "@vben-core/iconify", "name": "@vben-core/icons",
"path": "packages/@core/shared/iconify", "path": "packages/@core/shared/icons",
}, },
{ {
"name": "@vben-core/toolkit", "name": "@vben-core/toolkit",

View File

@ -8,7 +8,7 @@
"docs:preview": "vitepress preview" "docs:preview": "vitepress preview"
}, },
"devDependencies": { "devDependencies": {
"vitepress": "^1.3.0", "vitepress": "^1.3.1",
"vue": "^3.4.31" "vue": "^3.4.31"
} }
} }