@secondstaxorg/sscomp 1.4.7 → 1.4.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.4.7",
3
+ "version": "1.4.9",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { BidsProps } from "./type";
3
+ /**
4
+ * Displayed in the transaction details panel listing the offers that were available at the time of request and which provider the broker chose
5
+ */
6
+ declare const BidsCards: (props: BidsProps) => JSX.Element;
7
+ export default BidsCards;
@@ -61,3 +61,4 @@ export { default as UserRolesTable } from './UserRolesTable/UserRolesTable';
61
61
  export { default as UsersTable } from './UsersTable/UsersTable';
62
62
  export { default as WidgetTitle } from './WidgetTitle/WidgetTitle';
63
63
  export { default as SSXBar } from './SSXBar/SSXBar';
64
+ export { default as BidsCards } from './BidsCards/BidsCard';