rayyy-vue-table-components 1.2.27 → 1.2.29
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/README.md +35 -1
- package/dist/index.es.js +2221 -2039
- package/dist/index.umd.js +14 -14
- package/dist/rayyy-vue-table-components.css +1 -1
- package/dist/src/index.d.ts +5 -1
- package/dist/src/types/components.d.ts +2 -0
- package/package.json +1 -1
- package/src/components/layout/MainPanel.vue +1 -1
- package/src/types/components.d.ts +2 -0
package/dist/src/index.d.ts
CHANGED
|
@@ -12,7 +12,11 @@ export * from './utils/tableStyles';
|
|
|
12
12
|
export { BaseTable, BaseBtn, BaseInput, FilterBtn, BaseDialog, SortTable, SearchBar };
|
|
13
13
|
export type { BaseTableProps, BaseTableEmits, BaseTableInstance, BaseBtnProps, BaseBtnEmits, BaseBtnInstance, BaseDialogProps, BaseDialogEmits, BaseDialogInstance, PluginOptions, VueTableComponentsPlugin, } from './types/components';
|
|
14
14
|
export * from './components';
|
|
15
|
-
export declare function install(app: App
|
|
15
|
+
export declare function install(app: App, options?: {
|
|
16
|
+
locale?: any;
|
|
17
|
+
autoImportStyles?: boolean;
|
|
18
|
+
prefix?: string;
|
|
19
|
+
}): void;
|
|
16
20
|
declare const _default: {
|
|
17
21
|
length: number;
|
|
18
22
|
toString(): string;
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@ const props = withDefaults(
|
|
|
20
20
|
<template>
|
|
21
21
|
<function-header :title="props.title" :showBack="props.showBack" :depth="props.depth" />
|
|
22
22
|
|
|
23
|
-
<el-scrollbar :max-height="maxHeight" class="max-w-screen-xl overflow-auto">
|
|
23
|
+
<el-scrollbar :max-height="maxHeight" class="max-h-fit max-w-screen-xl overflow-auto">
|
|
24
24
|
<div v-if="$slots.searchBar" class="px-4 pt-1.5">
|
|
25
25
|
<slot name="searchBar" />
|
|
26
26
|
</div>
|