sep-yui 0.1.104 → 0.1.109

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.
@@ -11,12 +11,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
11
11
  setHeightSlot: () => void;
12
12
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
13
  "unmount-scroll": (event: Event) => void;
14
+ "unmount-paginate": (isCanPagiante: boolean) => void;
14
15
  "on-mounted": () => void;
15
16
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollWrapperProps>, {
16
17
  isShowVerticalScroll: boolean;
17
18
  isShowHorizontalScroll: boolean;
18
19
  }>>> & Readonly<{
19
20
  "onUnmount-scroll"?: ((event: Event) => any) | undefined;
21
+ "onUnmount-paginate"?: ((isCanPagiante: boolean) => any) | undefined;
20
22
  "onOn-mounted"?: (() => any) | undefined;
21
23
  }>, {
22
24
  isShowVerticalScroll: boolean;
@@ -11,12 +11,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
11
11
  setHeightSlot: () => void;
12
12
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
13
  "unmount-scroll": (event: Event) => void;
14
+ "unmount-paginate": (isCanPagiante: boolean) => void;
14
15
  "on-mounted": () => void;
15
16
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IScrollWrapperProps>, {
16
17
  isShowVerticalScroll: boolean;
17
18
  isShowHorizontalScroll: boolean;
18
19
  }>>> & Readonly<{
19
20
  "onUnmount-scroll"?: ((event: Event) => any) | undefined;
21
+ "onUnmount-paginate"?: ((isCanPagiante: boolean) => any) | undefined;
20
22
  "onOn-mounted"?: (() => any) | undefined;
21
23
  }>, {
22
24
  isShowVerticalScroll: boolean;
@@ -5,5 +5,6 @@ export interface IScrollWrapperProps {
5
5
  }
6
6
  export interface IScrollWrapperEmit {
7
7
  (e: 'unmount-scroll', event: Event): void;
8
+ (e: 'unmount-paginate', isCanPagiante: boolean): void;
8
9
  (e: 'on-mounted'): void;
9
10
  }
@@ -20,14 +20,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
20
20
  theadRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
21
21
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
22
  "unmount-scroll": (event: Event) => void;
23
- "unmount-intersection": () => void;
23
+ "unmount-paginate": (isCanPaginate: boolean) => void;
24
24
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableProps>, {
25
25
  dataTestid: string;
26
26
  isShowHorizontalScroll: boolean;
27
27
  isShowVerticalScroll: boolean;
28
28
  }>>> & Readonly<{
29
29
  "onUnmount-scroll"?: ((event: Event) => any) | undefined;
30
- "onUnmount-intersection"?: (() => any) | undefined;
30
+ "onUnmount-paginate"?: ((isCanPaginate: boolean) => any) | undefined;
31
31
  }>, {
32
32
  dataTestid: string;
33
33
  isShowVerticalScroll: boolean;
@@ -20,14 +20,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
20
20
  theadRef: import('vue').Ref<HTMLElement | null, HTMLElement | null>;
21
21
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
22
  "unmount-scroll": (event: Event) => void;
23
- "unmount-intersection": () => void;
23
+ "unmount-paginate": (isCanPaginate: boolean) => void;
24
24
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableProps>, {
25
25
  dataTestid: string;
26
26
  isShowHorizontalScroll: boolean;
27
27
  isShowVerticalScroll: boolean;
28
28
  }>>> & Readonly<{
29
29
  "onUnmount-scroll"?: ((event: Event) => any) | undefined;
30
- "onUnmount-intersection"?: (() => any) | undefined;
30
+ "onUnmount-paginate"?: ((isCanPaginate: boolean) => any) | undefined;
31
31
  }>, {
32
32
  dataTestid: string;
33
33
  isShowVerticalScroll: boolean;
@@ -28,7 +28,7 @@ export interface ITableProps extends IDataTestIdProp, IScrollWrapperProps {
28
28
  }
29
29
  export interface ITableEmit {
30
30
  (e: 'unmount-scroll', event: Event): void;
31
- (e: 'unmount-intersection'): void;
31
+ (e: 'unmount-paginate', isCanPaginate: boolean): void;
32
32
  }
33
33
  export interface IHeadTableRowProps extends IDataTestIdProp {
34
34
  }