diff --git a/examples/sites/demos/pc/webdoc/import-components-en.md b/examples/sites/demos/pc/webdoc/import-components-en.md index 9f1f2cad65..8081888938 100644 --- a/examples/sites/demos/pc/webdoc/import-components-en.md +++ b/examples/sites/demos/pc/webdoc/import-components-en.md @@ -45,9 +45,7 @@ For more information about automatic on-demand imports, please refer to [unplugi ## Multi-component introduction
-
-Warm reminder: Exporting components with Tiny prefix is ​​supported since 3.17.0. If using previous versions, you need to use aliases. -
+

Warm reminder: Exporting components with Tiny prefix is ​​supported since 3.17.0. If using previous versions, you need to use aliases.

For example:import { Button as TinyButton } from '@opentiny/vue'

diff --git a/examples/sites/demos/pc/webdoc/import-components.md b/examples/sites/demos/pc/webdoc/import-components.md index aafd101984..996e788a62 100644 --- a/examples/sites/demos/pc/webdoc/import-components.md +++ b/examples/sites/demos/pc/webdoc/import-components.md @@ -133,9 +133,7 @@ module.exports = defineConfig({ ## 多组件引入
-
-温馨提示:带有 Tiny 前缀的组件导出自 3.17.0 开始支持。若使用之前版本,需使用别名。 -
+

温馨提示:带有 Tiny 前缀的组件导出自 3.17.0 开始支持。若使用之前版本,需使用别名。

例如:import { Button as TinyButton } from '@opentiny/vue'

diff --git a/packages/renderless/types/pager.type.ts b/packages/renderless/types/pager.type.ts index 4b438968e2..831f4e571b 100644 --- a/packages/renderless/types/pager.type.ts +++ b/packages/renderless/types/pager.type.ts @@ -29,12 +29,12 @@ import type { setTotal, clickSizes, watchInternalCurrentPage, - watchPageSizes, watchCurrentPage, watchInternalPageCount, - watchPageSize, watchTotal, - watchShowSizes + watchShowSizes, + watchInternalPageSize, + getInternalPageSize } from '../src/pager' export type IPagerProps = ExtractPropTypes @@ -89,12 +89,12 @@ export interface IPagerApi { setTotal: ReturnType clickSizes: ReturnType watchInternalCurrentPage: ReturnType - watchPageSizes: ReturnType watchCurrentPage: ReturnType watchInternalPageCount: ReturnType - watchPageSize: ReturnType watchTotal: ReturnType watchShowSizes: ReturnType + watchInternalPageSize: ReturnType + getInternalPageSize: ReturnType } export type IPagerRenderlessParams = ISharedRenderlessFunctionParams & { api: IPagerApi