zzz-pc-view 0.0.63 → 0.0.65

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.
@@ -2,6 +2,7 @@ import { CurdFormOperatorViewProps } from './CurdFormOperatorView.vue';
2
2
  import { BaseCurdViewProps } from './CurdViewType';
3
3
  export interface DialogEditorViewProps<M extends object = object> extends BaseCurdViewProps<M> {
4
4
  formHeight: string;
5
+ showSaveAndContinueBtn?: boolean;
5
6
  saveBtnOption?: CurdFormOperatorViewProps<M>['saveBtnOption'];
6
7
  }
7
8
  declare const _default: <M extends object = object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
@@ -1,6 +1,7 @@
1
1
  import { CurdFormOperatorViewProps } from './CurdFormOperatorView.vue';
2
2
  import { BaseCurdViewProps } from './CurdViewType';
3
3
  export interface DrawerEditorViewProps<M extends object> extends BaseCurdViewProps<M> {
4
+ showSaveAndContinueBtn?: boolean;
4
5
  saveBtnOption?: CurdFormOperatorViewProps<M>['saveBtnOption'];
5
6
  }
6
7
  declare const _default: <M extends object = object>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
@@ -1,4 +1,14 @@
1
+ /**
2
+ * 用于计算骨架屏行数的组合式函数
3
+ * @param {number} skeletonHeight - 每个骨架屏行的高度
4
+ * @param {number} gap - 骨架屏行之间的间距
5
+ * @returns {Object} - 包含设置骨架屏容器和获取行数的对象
6
+ */
1
7
  export declare const useSkeletonRow: (skeletonHeight: number, gap: number) => {
2
8
  setSkeletonContainer: (ref: Element | import('vue').ComponentPublicInstance | null, refs: Record<string, any>) => void;
9
+ /**
10
+ * 获取计算得到的行数
11
+ * @returns {number} - 行数
12
+ */
3
13
  readonly rows: number;
4
14
  };