@namba_one/ui-kit-2 1.0.102 → 1.0.103

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/dist/index.d.ts CHANGED
@@ -2100,14 +2100,7 @@ export declare type StepsProps = {
2100
2100
  };
2101
2101
 
2102
2102
  export declare const Table: <T>(__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<{
2103
- props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & {
2104
- headers: string[];
2105
- gridTemplateColumns: string;
2106
- list: T[];
2107
- isLoading?: boolean;
2108
- extractKey?: (item: T) => string;
2109
- reRenderKey?: string;
2110
- } & Partial<{}>> & PublicProps;
2103
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & TableProps<T> & Partial<{}>> & PublicProps;
2111
2104
  expose(exposed: ShallowUnwrapRef< {}>): void;
2112
2105
  attrs: any;
2113
2106
  slots: {
@@ -2127,7 +2120,14 @@ export declare const Table: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_se
2127
2120
  __ctx?: Awaited<typeof __VLS_setup>;
2128
2121
  };
2129
2122
 
2130
- export declare type TableProps = {};
2123
+ export declare type TableProps<T> = {
2124
+ headers: string[];
2125
+ gridTemplateColumns: string;
2126
+ list: T[];
2127
+ isLoading?: boolean;
2128
+ extractKey?: (item: T) => string;
2129
+ reRenderKey?: string;
2130
+ };
2131
2131
 
2132
2132
  export declare const TableRow: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
2133
2133