sep-yui 0.1.16 → 0.1.18

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.
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
6
6
  options: () => never[];
7
7
  selectedValues: () => never[];
8
8
  maxShowCount: number;
9
+ multiply: boolean;
9
10
  showClearButton: boolean;
10
11
  dataTestid: string;
11
12
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -15,6 +16,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
15
16
  options: () => never[];
16
17
  selectedValues: () => never[];
17
18
  maxShowCount: number;
19
+ multiply: boolean;
18
20
  showClearButton: boolean;
19
21
  dataTestid: string;
20
22
  }>>> & {
@@ -23,6 +25,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
23
25
  dataTestid: string;
24
26
  iconName: IconNameEnum;
25
27
  options: IFilterTagOption[];
28
+ multiply: boolean;
26
29
  selectedValues: string[];
27
30
  maxShowCount: number;
28
31
  showClearButton: boolean;
@@ -12,6 +12,7 @@ export interface IFilterTagProps extends IDataTestIdProp {
12
12
  iconName?: IconNameEnum;
13
13
  options: IFilterTagOption[];
14
14
  selectedValues?: string[];
15
+ multiply?: boolean;
15
16
  maxShowCount?: number;
16
17
  showClearButton?: boolean;
17
18
  }
@@ -1,9 +1,34 @@
1
+ import { IHeadTableRowProps } from './interface/interface';
2
+
1
3
  declare function __VLS_template(): {
2
4
  default?(_: {}): any;
3
5
  };
4
- declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
6
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IHeadTableRowProps>, {
7
+ dataTestid: string;
8
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IHeadTableRowProps>, {
9
+ dataTestid: string;
10
+ }>>>, {
11
+ dataTestid: string;
12
+ }, {}>;
5
13
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
6
14
  export default _default;
15
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
16
+ type __VLS_TypePropsToRuntimeProps<T> = {
17
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
18
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
19
+ } : {
20
+ type: import('vue').PropType<T[K]>;
21
+ required: true;
22
+ };
23
+ };
24
+ type __VLS_WithDefaults<P, D> = {
25
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
26
+ default: D[K];
27
+ }> : P[K];
28
+ };
29
+ type __VLS_Prettify<T> = {
30
+ [K in keyof T]: T[K];
31
+ } & {};
7
32
  type __VLS_WithTemplateSlots<T, S> = T & {
8
33
  new (): {
9
34
  $slots: S;
@@ -1,3 +1,5 @@
1
+ import { ITableProps } from './interface/interface';
2
+
1
3
  declare function __VLS_template(): {
2
4
  default?(_: {}): any;
3
5
  colspan?(_: {}): any;
@@ -6,21 +8,44 @@ declare function __VLS_template(): {
6
8
  "body-group"?(_: {}): any;
7
9
  body?(_: {}): any;
8
10
  };
9
- declare const __VLS_component: import('vue').DefineComponent<{}, {
11
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableProps>, {
12
+ dataTestid: string;
13
+ }>, {
10
14
  scrollToTop: () => void;
11
15
  setHeightSlot: (() => void) | undefined;
12
16
  tbodyRef: import('vue').Ref<HTMLElement | null>;
13
17
  tableRef: import('vue').Ref<HTMLElement | null>;
14
18
  theadRef: import('vue').Ref<HTMLElement | null>;
15
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
19
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
20
  "unmount-scroll": (event: Event) => void;
17
21
  "unmount-intersection": () => void;
18
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>> & {
22
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITableProps>, {
23
+ dataTestid: string;
24
+ }>>> & {
19
25
  "onUnmount-scroll"?: ((event: Event) => any) | undefined;
20
26
  "onUnmount-intersection"?: (() => any) | undefined;
21
- }, {}, {}>;
27
+ }, {
28
+ dataTestid: string;
29
+ }, {}>;
22
30
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
23
31
  export default _default;
32
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
33
+ type __VLS_TypePropsToRuntimeProps<T> = {
34
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
35
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
36
+ } : {
37
+ type: import('vue').PropType<T[K]>;
38
+ required: true;
39
+ };
40
+ };
41
+ type __VLS_WithDefaults<P, D> = {
42
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
43
+ default: D[K];
44
+ }> : P[K];
45
+ };
46
+ type __VLS_Prettify<T> = {
47
+ [K in keyof T]: T[K];
48
+ } & {};
24
49
  type __VLS_WithTemplateSlots<T, S> = T & {
25
50
  new (): {
26
51
  $slots: S;