@prosperitainova/mirage-ui 1.0.41 → 1.0.42

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 "bootstrap/dist/css/bootstrap.min.css";
2
+ export type BalanceAlertProps = {
3
+ title: string;
4
+ message: string;
5
+ show?: boolean;
6
+ };
7
+ declare const BalanceAlert: (props: BalanceAlertProps) => JSX.Element;
8
+ export default BalanceAlert;
@@ -0,0 +1,8 @@
1
+ import { BalanceAlertProps } from "./BalanceAlert";
2
+ import { Story } from "@storybook/react";
3
+ declare const CheckStories: {
4
+ title: string;
5
+ component: (props: BalanceAlertProps) => JSX.Element;
6
+ };
7
+ export default CheckStories;
8
+ export declare const BalanceAlertStory: Story<BalanceAlertProps>;
@@ -0,0 +1 @@
1
+ export { default } from "./BalanceAlert";
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  declare const TesterLateralModal: () => JSX.Element;
2
3
  export default TesterLateralModal;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ export type ParcelSelectorProps = {
3
+ value: number;
4
+ onChange: (value: number) => void;
5
+ };
6
+ declare const ParcelSelector: React.FC<ParcelSelectorProps>;
7
+ export default ParcelSelector;
@@ -0,0 +1,8 @@
1
+ import { Story } from "@storybook/react";
2
+ import { ParcelSelectorProps } from "./ParcelSelector";
3
+ declare const ParcelSelectorStories: {
4
+ title: string;
5
+ component: import("react").FC<ParcelSelectorProps>;
6
+ };
7
+ export default ParcelSelectorStories;
8
+ export declare const Primary: Story<ParcelSelectorProps>;
@@ -0,0 +1 @@
1
+ export { default } from "./ParcelSelector";
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export type ProgressBarProps = {
3
2
  percent: number;
4
3
  color?: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TableProps } from "./Table";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const TableStories: {
@@ -24,3 +24,5 @@ export { default as Table } from "./Table";
24
24
  export { default as InputCurrency } from "./InputCurrency";
25
25
  export { default as SummaryPanel } from "./SummaryPanel";
26
26
  export { default as Pagination } from "./Pagination";
27
+ export { default as BalanceAlert } from "./BalanceAlert";
28
+ export { default as ParcelSelector } from "./ParcelSelector";