beca-ui 2.0.21 → 2.1.0-beta.2

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.
@@ -0,0 +1,8 @@
1
+ import { ApplicationsCardItem } from "../../ApplicationsCard";
2
+ interface AppMenuProps {
3
+ logoUrl: string;
4
+ applicationsCardData: ApplicationsCardItem[];
5
+ currentApp: string;
6
+ }
7
+ export declare const AppMenu: (props: AppMenuProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./AppMenu";
@@ -1,3 +1,4 @@
1
- import { Table as AntTable } from "antd";
1
+ import React from "react";
2
+ import { TableProps, TableRef } from ".";
3
+ export declare const Table: React.ForwardRefExoticComponent<TableProps<unknown> & React.RefAttributes<TableRef>>;
2
4
  export declare const TableSummary: typeof import("rc-table/lib/Footer/Summary").default;
3
- export default AntTable;
@@ -1,3 +1,3 @@
1
1
  import { TableProps, ColumnsType, TableRef, TableRowSelection, ColumnType, ColumnTitle } from "./Table.types";
2
- export { default as Table, TableSummary } from "./Table";
2
+ export { Table, TableSummary } from "./Table";
3
3
  export type { TableProps, ColumnsType, TableRef, TableRowSelection, ColumnType, ColumnTitle, };