@prosperitainova/mirage-ui 1.1.18 → 1.1.19

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 { 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 { Story } from "@storybook/react";
2
3
  import { RadioGroupProps } from "./RadioGroup";
3
4
  declare const RadioGroupStories: {
@@ -1,8 +1,14 @@
1
+ import React from "react";
1
2
  type SpacerProps = {
2
3
  top?: number;
3
4
  bottom?: number;
4
5
  left?: number;
5
6
  right?: number;
6
7
  };
8
+ type PaddingProps = SpacerProps & {
9
+ children: React.ReactNode;
10
+ };
7
11
  declare const Spacer: (props: SpacerProps) => JSX.Element;
12
+ export declare const Margin: (props: SpacerProps) => JSX.Element;
13
+ export declare const Padding: (props: PaddingProps) => JSX.Element;
8
14
  export default Spacer;
@@ -1 +1 @@
1
- export { default } from "./Spacer";
1
+ export { default, Margin, Padding } from "./Spacer";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosperitainova/mirage-ui",
3
- "version": "1.1.18",
3
+ "version": "1.1.19",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "publishConfig": {