@prosperitainova/mirage-ui 1.1.25 → 1.1.27

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.
Files changed (39) hide show
  1. package/dist/cjs/index.js +1 -1
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/lib/CustomSelect/CustomSelect.d.ts +1 -0
  4. package/dist/cjs/types/lib/IconWithTooltip/IconWithTooltip.d.ts +1 -0
  5. package/dist/cjs/types/lib/IconWithTooltip/IconWithTooltip.stories.d.ts +1 -0
  6. package/dist/cjs/types/lib/Margin/Margin.d.ts +1 -0
  7. package/dist/cjs/types/lib/NotificationsBar/NotificationsBar.d.ts +1 -0
  8. package/dist/cjs/types/lib/Pagination/Pagination.d.ts +1 -1
  9. package/dist/cjs/types/lib/Pagination/Pagination.stories.d.ts +9 -0
  10. package/dist/cjs/types/lib/RadioGroup/Radio.d.ts +1 -0
  11. package/dist/cjs/types/lib/SideBar/SideBar.d.ts +1 -0
  12. package/dist/cjs/types/lib/SideBar/SideBar.stories.d.ts +1 -0
  13. package/dist/cjs/types/lib/Spacer/Spacer.d.ts +1 -0
  14. package/dist/cjs/types/lib/SummaryPanel/SummaryPanel.stories.d.ts +1 -0
  15. package/dist/cjs/types/lib/SummaryPanelLoader/SummaryPanelLoader.d.ts +1 -0
  16. package/dist/cjs/types/lib/Toggle/Toggle.d.ts +1 -0
  17. package/dist/cjs/types/lib/TooltTip/Tooltip.d.ts +1 -0
  18. package/dist/cjs/types/lib/TooltTip/Tooltip.stories.d.ts +1 -0
  19. package/dist/esm/index.js +1 -1
  20. package/dist/esm/index.js.map +1 -1
  21. package/dist/esm/types/lib/CustomSelect/CustomSelect.d.ts +1 -0
  22. package/dist/esm/types/lib/IconWithTooltip/IconWithTooltip.d.ts +1 -0
  23. package/dist/esm/types/lib/IconWithTooltip/IconWithTooltip.stories.d.ts +1 -0
  24. package/dist/esm/types/lib/Margin/Margin.d.ts +1 -0
  25. package/dist/esm/types/lib/NotificationsBar/NotificationsBar.d.ts +1 -0
  26. package/dist/esm/types/lib/Pagination/Pagination.d.ts +1 -1
  27. package/dist/esm/types/lib/Pagination/Pagination.stories.d.ts +9 -0
  28. package/dist/esm/types/lib/RadioGroup/Radio.d.ts +1 -0
  29. package/dist/esm/types/lib/SideBar/SideBar.d.ts +1 -0
  30. package/dist/esm/types/lib/SideBar/SideBar.stories.d.ts +1 -0
  31. package/dist/esm/types/lib/Spacer/Spacer.d.ts +1 -0
  32. package/dist/esm/types/lib/SummaryPanel/SummaryPanel.stories.d.ts +1 -0
  33. package/dist/esm/types/lib/SummaryPanelLoader/SummaryPanelLoader.d.ts +1 -0
  34. package/dist/esm/types/lib/Toggle/Toggle.d.ts +1 -0
  35. package/dist/esm/types/lib/TooltTip/Tooltip.d.ts +1 -0
  36. package/dist/esm/types/lib/TooltTip/Tooltip.stories.d.ts +1 -0
  37. package/package.json +1 -1
  38. package/dist/cjs/types/lib/InputCurrency/bolos.d.ts +0 -2
  39. package/dist/esm/types/lib/InputCurrency/bolos.d.ts +0 -2
@@ -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
  export type IconProps = {
2
3
  iconSize?: number;
3
4
  tooltipColor?: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IconProps } from "./IconWithTooltip";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const IconWithTooltipStories: {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  type SpacerProps = {
2
3
  top?: number;
3
4
  bottom?: number;
@@ -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,5 +1,5 @@
1
1
  import { LiHTMLAttributes } from "react";
2
- type PaginationProps = LiHTMLAttributes<HTMLLIElement> & {
2
+ export type PaginationProps = LiHTMLAttributes<HTMLLIElement> & {
3
3
  total: number;
4
4
  limit: number;
5
5
  offset?: number;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { Story } from "@storybook/react";
3
+ import { PaginationProps } from "./Pagination";
4
+ declare const PaginationStories: {
5
+ title: string;
6
+ component: (props: PaginationProps) => JSX.Element;
7
+ };
8
+ export default PaginationStories;
9
+ export declare const Lateral: Story<PaginationProps>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export type RadioProps = {
2
3
  label?: string;
3
4
  title?: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import "../../../src/theme/fonts/ProximaNova.css";
2
3
  export type MenuItem = {
3
4
  icon: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Story } from "@storybook/react";
2
3
  declare const SideBarStories: {
3
4
  title: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  type SpacerProps = {
2
3
  top?: number;
3
4
  bottom?: number;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Story } from "@storybook/react";
2
3
  import { SummaryPanelProps } from "./SummaryPanel";
3
4
  declare const TabMenuStories: {
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  declare const SummaryPanelLoader: (props: any) => JSX.Element;
2
3
  export default SummaryPanelLoader;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export type ToggleProps = {
2
3
  mode: "small" | "large";
3
4
  actived?: boolean;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export type IconProps = {
2
3
  tooltipColor?: string;
3
4
  tooltipLabel: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IconProps } from "./Tooltip";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const TooltipStories: {