@prosperitainova/mirage-ui 1.1.87 → 1.1.89

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.
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import "bootstrap/dist/css/bootstrap.min.css";
2
3
  export type BalanceAlertProps = {
3
4
  title: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { BalanceAlertProps } from "./BalanceAlert";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const CheckStories: {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import "../../../src/theme/fonts/ProximaNova.css";
2
3
  type ItemsProps = {
3
4
  label: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Props as ReactSelectProps } from "react-select";
2
3
  import "../../../src/theme/fonts/ProximaNova.css";
3
4
  export type SelectProps = Omit<ReactSelectProps, "onChange"> & {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { DropzoneProps as DropzoneRootProps } from "react-dropzone";
2
3
  import "../../../src/theme/fonts/ProximaNova.css";
3
4
  interface DropzoneRootPropsLite extends Omit<DropzoneRootProps, "onDrop"> {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import "../../../src/theme/fonts/ProximaNova.css";
2
3
  export type NotificationsProps = {
3
4
  img?: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Story } from "@storybook/react";
2
3
  import { PaginationProps } from "./Pagination";
3
4
  declare const PaginationStories: {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export type ProgressBarProps = {
2
3
  percent: number;
3
4
  color?: string;
@@ -57,4 +57,15 @@ export type colortype = {
57
57
  dark300: string;
58
58
  dark400: string;
59
59
  dark500: string;
60
+ mainFilter: string;
61
+ light100Filter: string;
62
+ light200Filter: string;
63
+ light300Filter: string;
64
+ light400Filter: string;
65
+ light500Filter: string;
66
+ dark100Filter: string;
67
+ dark200Filter: string;
68
+ dark300Filter: string;
69
+ dark400Filter: string;
70
+ dark500Filter: string;
60
71
  };