prlg-ui 1.8.183 → 1.8.185

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
@@ -1670,7 +1670,7 @@ declare interface ITablePaginator {
1670
1670
 
1671
1671
  declare interface ITableProps {
1672
1672
  data: Array<any>;
1673
- columns: ColumnDef<IData<Array<any>>, any>[];
1673
+ columns: ColumnDef<IData<unknown>, any>[];
1674
1674
  size?: "small" | "medium" | "large";
1675
1675
  paginator?: ITablePaginator;
1676
1676
  loading?: boolean;
@@ -1930,7 +1930,15 @@ onChange?: (() => any) | undefined;
1930
1930
 
1931
1931
  export declare const Tab: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
1932
1932
 
1933
- export declare const Table: DefineComponent<ITableProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ITableEmits>;
1933
+ export declare const Table: DefineComponent<ITableProps,
1934
+ {},
1935
+ {},
1936
+ {},
1937
+ {},
1938
+ ComponentOptionsMixin,
1939
+ ComponentOptionsMixin,
1940
+ ITableEmits
1941
+ >;
1934
1942
 
1935
1943
  declare interface TableBodyProps {
1936
1944
  columns: Column_2[];