@prosperitainova/mirage-ui 1.0.30 → 1.0.31

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 @@
1
+ export { default } from "./SummaryPanel";
@@ -22,3 +22,4 @@ export { default as ProgressBar } from "./ProgressBar";
22
22
  export { default as InputToken } from "./InputToken";
23
23
  export { default as Table } from "./Table";
24
24
  export { default as InputCurrency } from "./InputCurrency";
25
+ export { default as SummaryPanel } from "./SummaryPanel";
package/dist/index.d.ts CHANGED
@@ -266,4 +266,18 @@ type InputCurrencyProps = {
266
266
  };
267
267
  declare const InputCurrency: (props: InputCurrencyProps) => JSX.Element;
268
268
 
269
- export { Breadcrumb, Button, ButtonDropdown, Checkbox, CustomSelect, Dropzone, Input, InputCurrency, InputToken, InteractiveModal, lateralModal as LateralModal, MenuDropdown as Menudropdown, NotificationBar as NotificationsBar, ProgressBar, Radio, RadioGroup, ReturnButton, Search, SideBar, Spacer, TabMenu, Table, Toast, Toggle };
269
+ type panelProps = {
270
+ label?: string;
271
+ balance?: string;
272
+ currency?: string;
273
+ value?: string;
274
+ toggleBalance?: boolean;
275
+ render?: () => JSX.Element;
276
+ secondaryRender?: () => JSX.Element;
277
+ };
278
+ type SummaryPanelProps = {
279
+ panel: panelProps[];
280
+ };
281
+ declare const SummaryPanel: (props: SummaryPanelProps) => JSX.Element;
282
+
283
+ export { Breadcrumb, Button, ButtonDropdown, Checkbox, CustomSelect, Dropzone, Input, InputCurrency, InputToken, InteractiveModal, lateralModal as LateralModal, MenuDropdown as Menudropdown, NotificationBar as NotificationsBar, ProgressBar, Radio, RadioGroup, ReturnButton, Search, SideBar, Spacer, SummaryPanel, TabMenu, Table, Toast, Toggle };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosperitainova/mirage-ui",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "publishConfig": {