Compare commits
No commits in common. '57a36b13aa7ac07a2ed2ed9c89797f4ce28c34d8' and '381b0c104904e621ac9676f7cbe8ff6ae34f60f4' have entirely different histories.
57a36b13aa
...
381b0c1049
379 changed files with 6788 additions and 8743 deletions
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@/utils' |
||||
import authority from './src/Authority.vue' |
||||
import { withInstall } from '@/utils' |
||||
|
||||
export const Authority = withInstall(authority) |
||||
|
@ -1,9 +1,9 @@
|
||||
import { withInstall } from '@/utils' |
||||
import basicArrow from './src/BasicArrow.vue' |
||||
import basicHelp from './src/BasicHelp.vue' |
||||
|
||||
import basicTitle from './src/BasicTitle.vue' |
||||
|
||||
import { withInstall } from '@/utils' |
||||
|
||||
export const BasicArrow = withInstall(basicArrow) |
||||
export const BasicHelp = withInstall(basicHelp) |
||||
export const BasicTitle = withInstall(basicTitle) |
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@/utils' |
||||
import cardList from './src/CardList.vue' |
||||
import { withInstall } from '@/utils' |
||||
|
||||
export const CardList = withInstall(cardList) |
||||
|
@ -1,6 +1,6 @@
|
||||
import { withInstall } from '@/utils' |
||||
import countButton from './src/CountButton.vue' |
||||
import countdownInput from './src/CountdownInput.vue' |
||||
import { withInstall } from '@/utils' |
||||
|
||||
export const CountdownInput = withInstall(countdownInput) |
||||
export const CountButton = withInstall(countButton) |
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@/utils' |
||||
import countTo from './src/CountTo.vue' |
||||
import { withInstall } from '@/utils' |
||||
|
||||
export const CountTo = withInstall(countTo) |
||||
|
@ -1,5 +1,5 @@
|
||||
import { withInstall } from '@/utils' |
||||
import dropdown from './src/Dropdown.vue' |
||||
import { withInstall } from '@/utils' |
||||
|
||||
export * from './src/typing' |
||||
export const Dropdown = withInstall(dropdown) |
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@/utils' |
||||
import ellipsisText from './src/EllipsisText.vue' |
||||
import { withInstall } from '@/utils' |
||||
|
||||
export const EllipsisText = withInstall(ellipsisText) |
||||
|
@ -1,8 +1,8 @@
|
||||
import { withInstall } from '@/utils' |
||||
import expExcelModal from './src/ExportExcelModal.vue' |
||||
import impExcel from './src/ImportExcel.vue' |
||||
import expExcelModal from './src/ExportExcelModal.vue' |
||||
import { withInstall } from '@/utils' |
||||
|
||||
export const ImpExcel = withInstall(impExcel) |
||||
export const ExpExcelModal = withInstall(expExcelModal) |
||||
export { aoaToSheetXlsx, jsonToSheetXlsx } from './src/Export2Excel' |
||||
export * from './src/typing' |
||||
export { jsonToSheetXlsx, aoaToSheetXlsx } from './src/Export2Excel' |
||||
|
@ -1,18 +1,18 @@
|
||||
import BasicForm from './src/BasicForm.vue' |
||||
|
||||
export { default as ApiCascader } from './src/components/ApiCascader.vue' |
||||
export { default as ApiRadioGroup } from './src/components/ApiRadioGroup.vue' |
||||
export * from './src/types/form' |
||||
export * from './src/types/formItem' |
||||
|
||||
export { default as ApiSelect } from './src/components/ApiSelect.vue' |
||||
export { default as ApiTransfer } from './src/components/ApiTransfer.vue' |
||||
export { useComponentRegister } from './src/hooks/useComponentRegister' |
||||
export { useForm } from './src/hooks/useForm' |
||||
|
||||
export { default as ApiTree } from './src/components/ApiTree.vue' |
||||
export { default as ApiSelect } from './src/components/ApiSelect.vue' |
||||
export { default as RadioButtonGroup } from './src/components/RadioButtonGroup.vue' |
||||
export { default as ApiTreeSelect } from './src/components/ApiTreeSelect.vue' |
||||
export { default as ApiTree } from './src/components/ApiTree.vue' |
||||
export { default as ApiRadioGroup } from './src/components/ApiRadioGroup.vue' |
||||
export { default as ApiCascader } from './src/components/ApiCascader.vue' |
||||
export { default as ApiTransfer } from './src/components/ApiTransfer.vue' |
||||
export { default as ImageUpload } from './src/components/ImageUpload.vue' |
||||
export { default as RadioButtonGroup } from './src/components/RadioButtonGroup.vue' |
||||
export { useComponentRegister } from './src/hooks/useComponentRegister' |
||||
export { useForm } from './src/hooks/useForm' |
||||
export * from './src/types/form' |
||||
export * from './src/types/formItem' |
||||
|
||||
export { BasicForm } |
||||
|
@ -1,4 +1,4 @@
|
||||
import { withInstall } from '@/utils' |
||||
import iFrame from './src/IFrame.vue' |
||||
import { withInstall } from '@/utils' |
||||
|
||||
export const IFrame = withInstall(iFrame) |
||||
|
@ -1,4 +1,4 @@
|
||||
import IconPicker from './src/IconPicker.vue' |
||||
import SvgIcon from './src/SvgIcon.vue' |
||||
import IconPicker from './src/IconPicker.vue' |
||||
|
||||
export { IconPicker, SvgIcon } |
||||
|
@ -1,5 +1,5 @@
|
||||
import Loading from './src/Loading.vue' |
||||
|
||||
export { Loading } |
||||
export { createLoading } from './src/createLoading' |
||||
export { useLoading } from './src/useLoading' |
||||
export { createLoading } from './src/createLoading' |
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue