@prosperitainova/mirage-ui 1.1.83 → 1.1.86

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,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import "../../../src/theme/fonts/ProximaNova.css";
3
2
  type ItemsProps = {
4
3
  label: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { Props as ReactSelectProps } from "react-select";
3
2
  import "../../../src/theme/fonts/ProximaNova.css";
4
3
  export type SelectProps = Omit<ReactSelectProps, "onChange"> & {
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { DropzoneProps as DropzoneRootProps } from "react-dropzone";
3
2
  import "../../../src/theme/fonts/ProximaNova.css";
4
3
  interface DropzoneRootPropsLite extends Omit<DropzoneRootProps, "onDrop"> {
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import "../../../src/theme/fonts/ProximaNova.css";
3
2
  export type NotificationsProps = {
4
3
  img?: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export type ProgressBarProps = {
3
2
  percent: number;
4
3
  color?: string;
@@ -0,0 +1,3 @@
1
+ import { AppTheme } from "./types";
2
+ declare const theme: AppTheme;
3
+ export default theme;
@@ -0,0 +1,4 @@
1
+ import { AppTheme } from "./types";
2
+ import "./fonts/ProximaNova.css";
3
+ declare const defaultTheme: AppTheme;
4
+ export default defaultTheme;
@@ -0,0 +1,3 @@
1
+ import { AppTheme } from "./types";
2
+ declare const theme: AppTheme;
3
+ export default theme;
@@ -0,0 +1,3 @@
1
+ import { AppTheme } from "./types";
2
+ declare const theme: AppTheme;
3
+ export default theme;