onchain-uikit 3.9.4-alpha6 → 3.9.4-alpha60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +320085 -26768
- package/dist/onchain-uikit.css +2 -2
- package/dist/vue.runtime.esm-bundler-C8GpP1mJ.mjs +4693 -0
- package/dist/{xlsx-C9f7-NIf.mjs → xlsx-C5C5EQYJ.mjs} +14 -8
- package/lib/src/app/main/model/context.d.ts +11 -7
- package/lib/src/client.d.ts +3 -0
- package/lib/src/components/OnChainAdvancedSearch/index.d.ts +22 -3
- package/lib/src/components/OnChainAdvancedSearch/index.stories.d.ts +1 -1
- package/lib/src/components/OnChainDatepicker/index.d.ts +7 -0
- package/lib/src/components/OnChainExcelTemplate/XlsxSheetManager.d.ts +5 -0
- package/lib/src/components/OnChainExcelTemplate/core.d.ts +14 -0
- package/lib/src/components/OnChainExcelTemplate/index.d.ts +5 -0
- package/lib/src/components/OnChainFormItem/index.d.ts +5 -5
- package/lib/src/components/OnChainGenAntImage/index.d.ts +1 -0
- package/lib/src/components/OnChainGlobalLoading/index.d.ts +3 -3
- package/lib/src/components/OnChainGlobalLoading/index.stories.d.ts +1 -1
- package/lib/src/components/OnChainIcon/index.d.ts +7 -3
- package/lib/src/components/OnChainModal/index.d.ts +1 -0
- package/lib/src/components/OnChainPopoverTransfer/index.d.ts +4 -4
- package/lib/src/components/OnChainPopoverTransfer/select/index.d.ts +5 -5
- package/lib/src/components/OnChainPopupSelect/index.d.ts +4 -1
- package/lib/src/components/OnChainProvider/index.d.ts +2 -1
- package/lib/src/components/OnChainPublicTree/index.d.ts +2 -2
- package/lib/src/components/OnChainPublicTree/index.stories.d.ts +1 -1
- package/lib/src/components/OnChainQueryBuilder/index.d.ts +14 -13
- package/lib/src/components/OnChainResourceTree/index.d.ts +2 -3
- package/lib/src/components/{PlmSearchSelect → OnChainSearchSelect}/index.d.ts +6 -4
- package/lib/src/components/OnChainSelectPopupForm/index.d.ts +2 -2
- package/lib/src/components/OnChainSelectPopupForm/select/index.d.ts +3 -3
- package/lib/src/components/OnChainTable/ContextMenu.d.ts +2 -2
- package/lib/src/components/OnChainTable/EditableCell.d.ts +6 -1
- package/lib/src/components/OnChainTable/OnChainTableFormItem/index.d.ts +5 -4
- package/lib/src/components/OnChainTable/TableFooter.d.ts +2 -2
- package/lib/src/components/OnChainTable/TableUtils.d.ts +4 -4
- package/lib/src/components/OnChainTable/index.d.ts +27 -32
- package/lib/src/components/OnChainTable/index.stories.d.ts +4 -1
- package/lib/src/components/OnChainTable/useClipboard.d.ts +2 -2
- package/lib/src/components/OnChainTable/useColumn.d.ts +2 -2
- package/lib/src/components/OnChainTable/useDynamicHeight.d.ts +2 -2
- package/lib/src/components/OnChainTable/useFiltered.d.ts +2 -2
- package/lib/src/components/OnChainTableSelection/index.d.ts +8 -5
- package/lib/src/components/OnChainTableSelection/index.stories.d.ts +1 -1
- package/lib/src/components/OnChainUniverExcel/config.d.ts +9 -0
- package/lib/src/components/OnChainUniverExcel/data.d.ts +2 -0
- package/lib/src/components/OnChainUniverExcel/event.d.ts +1 -0
- package/lib/src/components/OnChainUniverExcel/index.d.ts +10 -0
- package/lib/src/components/OnChainUniverExcel/plugin.d.ts +5 -0
- package/lib/src/components/OnChainUniverExcel/plugins/controllers/controller.d.ts +11 -0
- package/lib/src/components/OnChainUniverExcel/plugins/controllers/menu/export.d.ts +14 -0
- package/lib/src/components/OnChainUniverExcel/plugins/controllers/menu/generate.d.ts +13 -0
- package/lib/src/components/OnChainUniverExcel/plugins/controllers/menu/import.d.ts +20 -0
- package/lib/src/components/OnChainUniverExcel/plugins/controllers/menu/save.d.ts +3 -0
- package/lib/src/components/OnChainUniverExcel/plugins/controllers/menu/saveDatabase.d.ts +13 -0
- package/lib/src/components/OnChainUniverExcel/plugins/index.d.ts +42 -0
- package/lib/src/components/OnChainUniverExcel/plugins/locale/en-US.d.ts +15 -0
- package/lib/src/components/OnChainUniverExcel/plugins/locale/zh-CN.d.ts +15 -0
- package/lib/src/components/OnChainVTable/ListTable.d.ts +32 -0
- package/lib/src/components/OnChainVTable/components/cell.d.ts +4 -0
- package/lib/src/components/OnChainVTable/components/index.d.ts +1 -0
- package/lib/src/components/OnChainVTable/components/link.d.ts +3 -0
- package/lib/src/components/OnChainVTable/components/tooltip.d.ts +11 -0
- package/lib/src/components/OnChainVTable/components/types.d.ts +20 -0
- package/lib/src/components/OnChainVTable/const.d.ts +30 -0
- package/lib/src/components/OnChainVTable/demo.d.ts +5 -0
- package/lib/src/components/OnChainVTable/feature/customMergeCell.d.ts +33 -0
- package/lib/src/components/OnChainVTable/feature/event.d.ts +1 -0
- package/lib/src/components/OnChainVTable/feature/fill-handle.d.ts +6 -0
- package/lib/src/components/OnChainVTable/feature/history-edit.d.ts +435 -0
- package/lib/src/components/OnChainVTable/feature/index.d.ts +6 -0
- package/lib/src/components/OnChainVTable/feature/right-click-menu.d.ts +24 -0
- package/lib/src/components/OnChainVTable/feature/style.d.ts +17 -0
- package/lib/src/components/OnChainVTable/feature/tooltip.d.ts +9 -0
- package/lib/src/components/OnChainVTable/feature/types.d.ts +34 -0
- package/lib/src/components/OnChainVTable/feature/utils.d.ts +147 -0
- package/lib/src/components/OnChainVTable/index.d.ts +10 -0
- package/lib/src/components/OnChainVTable/index.stories.d.ts +89 -0
- package/lib/src/components/OnChainVTable/type.d.ts +128 -0
- package/lib/src/extend/ButtonAuth.d.ts +11 -0
- package/lib/src/extend/Ti5ButtonAuth.d.ts +6 -0
- package/lib/src/index.d.ts +51 -2
- package/lib/src/language/translate.d.ts +3 -4
- package/lib/src/types/gantt.d.ts +1 -1
- package/lib/src/typings.d.ts +3 -3
- package/lib/src/utils/utility.d.ts +3 -1
- package/lib/typings.d.ts +5 -1
- package/package.json +24 -2
- package/dist/index.cjs.js +0 -529
- package/dist/index.umd.js +0 -633
- package/dist/xlsx-DtQJwEPb.js +0 -105
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.