From 54fd34aab06f53f25d232788058f8882d7cd0ace Mon Sep 17 00:00:00 2001 From: pipipi-pikachu Date: Tue, 7 Jun 2022 22:13:34 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=E5=9B=BE=E6=A0=87?= =?UTF-8?q?=E5=85=A8=E5=B1=80=E7=BB=84=E4=BB=B6=E7=B1=BB=E5=9E=8B=E5=A3=B0?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components.d.ts | 216 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 216 insertions(+) diff --git a/src/components.d.ts b/src/components.d.ts index 7d444d58..10d9bd75 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -4,8 +4,117 @@ import CheckboxButtonGroup from '@/components/CheckboxButtonGroup.vue' import ColorPicker from '@/components/ColorPicker/index.vue' import FullscreenSpin from '@/components/FullscreenSpin.vue' +import { + PlayOne, + FullScreenPlay, + Lock, + Unlock, + Ppt, + Format, + Picture, + FullScreen, + List, + OrderedList, + Helpcenter, + FlipVertically, + FlipHorizontally, + FontSize, + Code, + TextBold, + TextItalic, + TextUnderline, + Strikethrough, + Edit, + Quote, + BackgroundColor, + Group, + Ungroup, + Back, + Next, + Fullwidth, + AlignTop, + AlignLeft, + AlignRight, + AlignBottom, + AlignVertically, + AlignHorizontally, + BringToFront, + SendToBack, + AlignTextLeft, + AlignTextRight, + AlignTextCenter, + RowHeight, + Write, + InsertTable, + AddText, + Fill, + Tailoring, + Effects, + ColorFilter, + Down, + Plus, + Minus, + Connection, + BringToFrontOne, + SentToBack, + Github, + ChartProportion, + ChartHistogram, + ChartHistogramOne, + ChartLineArea, + ChartRing, + ChartScatter, + ChartLine, + ChartPie, + Text, + Rotate, + LeftTwo, + RightTwo, + Platte, + UpOne, + DownOne, + Close, + CloseSmall, + Undo, + Transform, + Click, + Theme, + ArrowCircleLeft, + GraphicDesign, + Logout, + Erase, + Clear, + FolderClose, + AlignTextTopOne, + AlignTextBottomOne, + AlignTextMiddleOne, + Pause, + VolumeMute, + VolumeNotice, + VolumeSmall, + VideoTwo, + Formula, + LinkOne, + FullScreenOne, + OffScreenOne, + Power, + ListView, + Magic, + HighLight, + Share, + IndentLeft, + IndentRight, + VerticalSpacingBetweenItems, + Copy, + Delete, + Square, + Round, +} from '@icon-park/vue-next' + declare module 'vue' { export interface GlobalComponents { + + // antd 组件 InputNumber: typeof import('ant-design-vue')['InputNumber']; Divider: typeof import('ant-design-vue')['Divider']; Button: typeof import('ant-design-vue')['Button']; @@ -31,11 +140,118 @@ declare module 'vue' { Drawer: typeof import('ant-design-vue')['Drawer']; Spin: typeof import('ant-design-vue')['Spin']; + // 自定义组件 FileInput: typeof FileInput; CheckboxButton: typeof CheckboxButton; CheckboxButtonGroup: typeof CheckboxButtonGroup; ColorPicker: typeof ColorPicker; FullscreenSpin: typeof FullscreenSpin; + + // IconPark 图标组件 + IconPlayOne: typeof PlayOne; + IconFullScreenPlay: typeof FullScreenPlay; + IconLock: typeof Lock; + IconUnlock: typeof Unlock; + IconPpt: typeof Ppt; + IconFormat: typeof Format; + IconPicture: typeof Picture; + IconFullScreen: typeof FullScreen; + IconList: typeof List; + IconOrderedList: typeof OrderedList; + IconHelpcenter: typeof Helpcenter; + IconFlipVertically: typeof FlipVertically; + IconFlipHorizontally: typeof FlipHorizontally; + IconFontSize: typeof FontSize; + IconCode: typeof Code; + IconTextBold: typeof TextBold; + IconTextItalic: typeof TextItalic; + IconTextUnderline: typeof TextUnderline; + IconStrikethrough: typeof Strikethrough; + IconEdit: typeof Edit; + IconQuote: typeof Quote; + IconBackgroundColor: typeof BackgroundColor; + IconGroup: typeof Group; + IconUngroup: typeof Ungroup; + IconBack: typeof Back; + IconNext: typeof Next; + IconFullwidth: typeof Fullwidth; + IconAlignTop: typeof AlignTop; + IconAlignLeft: typeof AlignLeft; + IconAlignRight: typeof AlignRight; + IconAlignBottom: typeof AlignBottom; + IconAlignVertically: typeof AlignVertically; + IconAlignHorizontally: typeof AlignHorizontally; + IconBringToFront: typeof BringToFront; + IconSendToBack: typeof SendToBack; + IconAlignTextLeft: typeof AlignTextLeft; + IconAlignTextRight: typeof AlignTextRight; + IconAlignTextCenter: typeof AlignTextCenter; + IconRowHeight: typeof RowHeight; + IconWrite: typeof Write; + IconInsertTable: typeof InsertTable; + IconAddText: typeof AddText; + IconFill: typeof Fill; + IconTailoring: typeof Tailoring; + IconEffects: typeof Effects; + IconColorFilter: typeof ColorFilter; + IconDown: typeof Down; + IconPlus: typeof Plus; + IconMinus: typeof Minus; + IconConnection: typeof Connection; + IconBringToFrontOne: typeof BringToFrontOne; + IconSentToBack: typeof SentToBack; + IconGithub: typeof Github; + IconChartProportion: typeof ChartProportion; + IconChartHistogram: typeof ChartHistogram; + IconChartHistogramOne: typeof ChartHistogramOne; + IconChartLineArea: typeof ChartLineArea; + IconChartRing: typeof ChartRing; + IconChartScatter: typeof ChartScatter; + IconChartLine: typeof ChartLine; + IconChartPie: typeof ChartPie; + IconText: typeof Text; + IconRotate: typeof Rotate; + IconLeftTwo: typeof LeftTwo; + IconRightTwo: typeof RightTwo; + IconPlatte: typeof Platte; + IconUpOne: typeof UpOne; + IconDownOne: typeof DownOne; + IconClose: typeof Close; + IconCloseSmall: typeof CloseSmall; + IconUndo: typeof Undo; + IconTransform: typeof Transform; + IconClick: typeof Click; + IconTheme: typeof Theme; + IconArrowCircleLeft: typeof ArrowCircleLeft; + IconGraphicDesign: typeof GraphicDesign; + IconLogout: typeof Logout; + IconErase: typeof Erase; + IconClear: typeof Clear; + IconFolderClose: typeof FolderClose; + IconAlignTextTopOne: typeof AlignTextTopOne; + IconAlignTextBottomOne: typeof AlignTextBottomOne; + IconAlignTextMiddleOne: typeof AlignTextMiddleOne; + IconPause: typeof Pause; + IconVolumeMute: typeof VolumeMute; + IconVolumeNotice: typeof VolumeNotice; + IconVolumeSmall: typeof VolumeSmall; + IconVideoTwo: typeof VideoTwo; + IconFormula: typeof Formula; + IconLinkOne: typeof LinkOne; + IconFullScreenOne: typeof FullScreenOne; + IconOffScreenOne: typeof OffScreenOne; + IconPower: typeof Power; + IconListView: typeof ListView; + IconMagic: typeof Magic; + IconHighLight: typeof HighLight; + IconShare: typeof Share; + IconIndentLeft: typeof IndentLeft; + IconIndentRight: typeof IndentRight; + IconVerticalSpacingBetweenItems: typeof VerticalSpacingBetweenItems; + IconCopy: typeof Copy; + IconDelete: typeof Delete; + IconSquare: typeof Square; + IconRound: typeof Round; } }