@consumidor-positivo/aurora 0.0.180 → 0.0.182

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.
@@ -2,6 +2,7 @@
2
2
  export type TooltipProps = {
3
3
  text: string;
4
4
  position?: 'top' | 'bottom' | 'left' | 'right';
5
+ open?: boolean;
5
6
  children: React.ReactNode;
6
7
  };
7
- export declare const Tooltip: ({ text, position, children }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
8
+ export declare const Tooltip: ({ text, position, open, children, }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,19 @@
1
1
  import { jsxs, jsx } from "react/jsx-runtime";
2
- import './styles.css';const Tooltip = ({ text, position = "top", children }) => {
3
- return /* @__PURE__ */ jsxs("div", { className: `tooltip-container tooltip-${position}`, children: [
2
+ import { c as classNames } from "../../index-CweZ_OcN.js";
3
+ import './styles.css';const Tooltip = ({
4
+ text,
5
+ position = "top",
6
+ open,
7
+ children
8
+ }) => {
9
+ const tooltipClasses = classNames(
10
+ "tooltip-container",
11
+ `tooltip-${position}`,
12
+ {
13
+ "tooltip-open": open
14
+ }
15
+ );
16
+ return /* @__PURE__ */ jsxs("div", { className: tooltipClasses, children: [
4
17
  children,
5
18
  /* @__PURE__ */ jsx("div", { className: "tooltip", children: text })
6
19
  ] });
@@ -1 +1 @@
1
- {"version":3,"file":"index.es.js","sources":["../../../lib/components/Tooltip/index.tsx"],"sourcesContent":["import './styles.scss'\n\nexport type TooltipProps = {\n text: string\n position?: 'top' | 'bottom' | 'left' | 'right'\n children: React.ReactNode\n}\n\nexport const Tooltip = ({ text, position = 'top', children }: TooltipProps) => {\n return (\n <div className={`tooltip-container tooltip-${position}`}>\n {children}\n <div className=\"tooltip\">{text}</div>\n </div>\n )\n}\n"],"names":[],"mappings":";AAQO,MAAM,UAAU,CAAC,EAAE,MAAM,WAAW,OAAO,eAA6B;AAC7E,SACE,qBAAA,OAAA,EAAI,WAAW,6BAA6B,QAAQ,IACjD,UAAA;AAAA,IAAA;AAAA,IACA,oBAAA,OAAA,EAAI,WAAU,WAAW,UAAK,MAAA;AAAA,EACjC,EAAA,CAAA;AAEJ;"}
1
+ {"version":3,"file":"index.es.js","sources":["../../../lib/components/Tooltip/index.tsx"],"sourcesContent":["import classNames from 'classnames'\nimport './styles.scss'\n\nexport type TooltipProps = {\n text: string\n position?: 'top' | 'bottom' | 'left' | 'right'\n open?: boolean\n children: React.ReactNode\n}\n\nexport const Tooltip = ({\n text,\n position = 'top',\n open,\n children,\n}: TooltipProps) => {\n const tooltipClasses = classNames(\n 'tooltip-container',\n `tooltip-${position}`,\n {\n 'tooltip-open': open,\n },\n )\n\n return (\n <div className={tooltipClasses}>\n {children}\n <div className=\"tooltip\">{text}</div>\n </div>\n )\n}\n"],"names":[],"mappings":";;AAUO,MAAM,UAAU,CAAC;AAAA,EACtB;AAAA,EACA,WAAW;AAAA,EACX;AAAA,EACA;AACF,MAAoB;AAClB,QAAM,iBAAiB;AAAA,IACrB;AAAA,IACA,WAAW,QAAQ;AAAA,IACnB;AAAA,MACE,gBAAgB;AAAA,IAClB;AAAA,EAAA;AAIA,SAAA,qBAAC,OAAI,EAAA,WAAW,gBACb,UAAA;AAAA,IAAA;AAAA,IACA,oBAAA,OAAA,EAAI,WAAU,WAAW,UAAK,MAAA;AAAA,EACjC,EAAA,CAAA;AAEJ;"}
@@ -1 +1 @@
1
- .tooltip-container{cursor:pointer;position:relative;display:flex;justify-content:center;align-items:center;width:max-content}.tooltip-container .tooltip{visibility:hidden;background-color:#16181d;border-radius:8px;max-width:204px;width:max-content;padding:8px;position:absolute;z-index:1;opacity:0;transition:opacity .3s;color:#fff;font-family:"Source Sans 3",sans-serif;font-size:14px;text-align:center}.tooltip-container .tooltip:after{content:"";position:absolute;border-width:5px;border-style:solid}.tooltip-container:hover .tooltip{visibility:visible;opacity:1}.tooltip-container.tooltip-top .tooltip{bottom:125%}.tooltip-container.tooltip-top .tooltip:after{top:100%;left:50%;margin-left:-5px;border-color:#16181d transparent transparent transparent}.tooltip-container.tooltip-bottom .tooltip{top:125%}.tooltip-container.tooltip-bottom .tooltip:after{bottom:100%;left:50%;margin-left:-5px;border-color:transparent transparent #16181d transparent}.tooltip-container.tooltip-left .tooltip{right:125%}.tooltip-container.tooltip-left .tooltip:after{top:50%;left:100%;margin-top:-5px;border-color:transparent transparent transparent #16181d}.tooltip-container.tooltip-right .tooltip{left:125%}.tooltip-container.tooltip-right .tooltip:after{top:50%;right:100%;margin-top:-5px;border-color:transparent #16181d transparent transparent}
1
+ .tooltip-container{cursor:pointer;position:relative;display:flex;justify-content:center;align-items:center;width:max-content}.tooltip-container .tooltip{visibility:hidden;background-color:#16181d;border-radius:8px;max-width:204px;width:max-content;padding:8px;position:absolute;z-index:1;opacity:0;transition:opacity .3s;color:#fff;font-family:"Source Sans 3",sans-serif;font-size:14px;text-align:center}.tooltip-container .tooltip:after{content:"";position:absolute;border-width:5px;border-style:solid}.tooltip-container:hover .tooltip,.tooltip-container.tooltip-open .tooltip{visibility:visible;opacity:1}.tooltip-container.tooltip-top .tooltip{bottom:125%}.tooltip-container.tooltip-top .tooltip:after{top:100%;left:50%;margin-left:-5px;border-color:#16181d transparent transparent transparent}.tooltip-container.tooltip-bottom .tooltip{top:125%}.tooltip-container.tooltip-bottom .tooltip:after{bottom:100%;left:50%;margin-left:-5px;border-color:transparent transparent #16181d transparent}.tooltip-container.tooltip-left .tooltip{right:125%}.tooltip-container.tooltip-left .tooltip:after{top:50%;left:100%;margin-top:-5px;border-color:transparent transparent transparent #16181d}.tooltip-container.tooltip-right .tooltip{left:125%}.tooltip-container.tooltip-right .tooltip:after{top:50%;right:100%;margin-top:-5px;border-color:transparent #16181d transparent transparent}
@@ -198,6 +198,7 @@ import { IconPause } from "../icons/IconPause/index.es.js";
198
198
  import { IconPauseCircle } from "../icons/IconPauseCircle/index.es.js";
199
199
  import { IconPenTool } from "../icons/IconPenTool/index.es.js";
200
200
  import { IconPercent } from "../icons/IconPercent/index.es.js";
201
+ import { IconPercentBalloon } from "../icons/IconPercentBalloon/index.es.js";
201
202
  import { IconPhone } from "../icons/IconPhone/index.es.js";
202
203
  import { IconPhoneCall } from "../icons/IconPhoneCall/index.es.js";
203
204
  import { IconPhoneForwarded } from "../icons/IconPhoneForwarded/index.es.js";
@@ -516,6 +517,7 @@ export {
516
517
  IconPauseCircle,
517
518
  IconPenTool,
518
519
  IconPercent,
520
+ IconPercentBalloon,
519
521
  IconPhone,
520
522
  IconPhoneCall,
521
523
  IconPhoneForwarded,
@@ -1 +1 @@
1
- {"version":3,"file":"index.es.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.es.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,16 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import Icon from "../../Icon/index.es.js";
3
+ function IconPercentBalloon(props) {
4
+ return /* @__PURE__ */ jsx(
5
+ Icon,
6
+ {
7
+ markup: "<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(#clip0_16638_105970)'><path d='M8.77423 16C8.57602 16 8.37799 15.9243 8.2268 15.7733C7.9244 15.4709 7.9244 14.9807 8.2268 14.6783L14.6783 8.22674C14.9808 7.92442 15.4708 7.92442 15.7732 8.22674C16.0756 8.52906 16.0756 9.01928 15.7732 9.3216L9.32165 15.7733C9.17044 15.9243 8.9724 16 8.77423 16Z' fill='currentColor'/><path fill-rule='evenodd' clip-rule='evenodd' d='M9 8.14298C8.52661 8.14298 8.14286 8.52674 8.14286 9.00012C8.14286 9.47351 8.52661 9.85726 9 9.85726C9.47339 9.85726 9.85714 9.47351 9.85714 9.00012C9.85714 8.52674 9.47339 8.14298 9 8.14298ZM7 9.00012C7 7.89555 7.89543 7.00012 9 7.00012C10.1046 7.00012 11 7.89555 11 9.00012C11 10.1047 10.1046 11.0001 9 11.0001C7.89543 11.0001 7 10.1047 7 9.00012Z' fill='currentColor'/><path fill-rule='evenodd' clip-rule='evenodd' d='M15 14.1431C14.5266 14.1431 14.1429 14.5269 14.1429 15.0002C14.1429 15.4736 14.5266 15.8574 15 15.8574C15.4734 15.8574 15.8571 15.4736 15.8571 15.0002C15.8571 14.5269 15.4734 14.1431 15 14.1431ZM13 15.0002C13 13.8957 13.8954 13.0002 15 13.0002C16.1046 13.0002 17 13.8957 17 15.0002C17 16.1048 16.1046 17.0002 15 17.0002C13.8954 17.0002 13 16.1048 13 15.0002Z' fill='currentColor'/><path d='M11.4112 0.429366C11.7621 0.17361 12.2379 0.17361 12.5889 0.429366L14.8877 2.10612C15.0165 2.20006 15.1653 2.2612 15.3213 2.28581L15.4786 2.29851L18.3243 2.29265C18.7588 2.29193 19.1439 2.57247 19.2774 2.98601L20.1514 5.69304C20.2167 5.89516 20.3446 6.07141 20.5166 6.19597L22.8213 7.86394C23.1734 8.11874 23.3207 8.57193 23.1856 8.98503L22.3018 11.6891C22.2358 11.891 22.2358 12.1084 22.3018 12.3102L23.1856 15.0143C23.3207 15.4274 23.1734 15.8806 22.8213 16.1354L20.5166 17.8034C20.3446 17.9279 20.2167 18.1042 20.1514 18.3063L19.2774 21.0133C19.1439 21.4269 18.7588 21.7074 18.3243 21.7067L15.4786 21.7008C15.2662 21.7005 15.0593 21.7681 14.8877 21.8932L12.5889 23.57L12.4522 23.654C12.1684 23.798 11.8317 23.798 11.5479 23.654L11.4112 23.57L9.11234 21.8932C8.94081 21.7681 8.73383 21.7005 8.52152 21.7008L5.67582 21.7067L5.51566 21.694C5.20124 21.6437 4.92916 21.4453 4.78422 21.1618L4.72269 21.0133L3.84867 18.3063C3.79969 18.1546 3.71529 18.0175 3.60355 17.9059L3.48343 17.8034L1.17875 16.1354C0.826639 15.8806 0.679395 15.4274 0.81449 15.0143L1.69828 12.3102C1.74779 12.1587 1.76022 11.9984 1.73539 11.8425L1.69828 11.6891L0.81449 8.98503C0.679395 8.57193 0.826639 8.11874 1.17875 7.86394L3.48343 6.19597C3.61242 6.10258 3.71656 5.98011 3.78812 5.83952L3.84867 5.69304L4.72269 2.98601C4.85619 2.57247 5.24129 2.29193 5.67582 2.29265L8.52152 2.29851C8.68077 2.29873 8.83705 2.26084 8.97758 2.18913L9.11234 2.10612L11.4112 0.429366ZM10.0547 3.39909C9.60849 3.72446 9.06988 3.89917 8.51761 3.89812L6.11039 3.89323L5.37113 6.18425C5.20142 6.70997 4.86847 7.168 4.42093 7.49187L2.47074 8.903L3.21879 11.1911C3.3905 11.7162 3.3905 12.2832 3.21879 12.8083L2.47074 15.0954L4.42093 16.5075C4.81248 16.7908 5.11633 17.1766 5.29984 17.6208L5.37113 17.8151L6.11039 20.1051L8.51761 20.1012L8.72465 20.1091C9.20361 20.1463 9.66437 20.3156 10.0547 20.6003L12 22.0182L13.9453 20.6003L14.1162 20.486C14.5259 20.2343 14.9989 20.1003 15.4825 20.1012L17.8887 20.1051L18.6289 17.8151L18.7002 17.6208C18.8837 17.1766 19.1876 16.7908 19.5791 16.5075L21.5284 15.0954L20.7813 12.8083C20.6096 12.2832 20.6096 11.7162 20.7813 11.1911L21.5284 8.903L19.5791 7.49187C19.1316 7.168 18.7987 6.70997 18.6289 6.18425L17.8887 3.89323L15.4825 3.89812C14.9302 3.89917 14.3916 3.72446 13.9453 3.39909L12 1.98015L10.0547 3.39909Z' fill='currentColor'/></g><defs><clipPath id='clip0_16638_105970'><rect width='24' height='24' fill='currentColor'/></clipPath></defs></svg>",
8
+ name: "IconPercentBalloon",
9
+ ...props
10
+ }
11
+ );
12
+ }
13
+ export {
14
+ IconPercentBalloon
15
+ };
16
+ //# sourceMappingURL=index.es.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.es.js","sources":["../../../../lib/components/icons/default/IconPercentBalloon.tsx"],"sourcesContent":["\n// This file is generated automatically\n// To edit see the file lib/tasks/generateIcons.js\nimport Icon, { IconProps } from \"../Icon\";\n\nexport function IconPercentBalloon(props: IconProps) {\n return (\n <Icon\n markup={\"<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><g clip-path='url(#clip0_16638_105970)'><path d='M8.77423 16C8.57602 16 8.37799 15.9243 8.2268 15.7733C7.9244 15.4709 7.9244 14.9807 8.2268 14.6783L14.6783 8.22674C14.9808 7.92442 15.4708 7.92442 15.7732 8.22674C16.0756 8.52906 16.0756 9.01928 15.7732 9.3216L9.32165 15.7733C9.17044 15.9243 8.9724 16 8.77423 16Z' fill='currentColor'/><path fill-rule='evenodd' clip-rule='evenodd' d='M9 8.14298C8.52661 8.14298 8.14286 8.52674 8.14286 9.00012C8.14286 9.47351 8.52661 9.85726 9 9.85726C9.47339 9.85726 9.85714 9.47351 9.85714 9.00012C9.85714 8.52674 9.47339 8.14298 9 8.14298ZM7 9.00012C7 7.89555 7.89543 7.00012 9 7.00012C10.1046 7.00012 11 7.89555 11 9.00012C11 10.1047 10.1046 11.0001 9 11.0001C7.89543 11.0001 7 10.1047 7 9.00012Z' fill='currentColor'/><path fill-rule='evenodd' clip-rule='evenodd' d='M15 14.1431C14.5266 14.1431 14.1429 14.5269 14.1429 15.0002C14.1429 15.4736 14.5266 15.8574 15 15.8574C15.4734 15.8574 15.8571 15.4736 15.8571 15.0002C15.8571 14.5269 15.4734 14.1431 15 14.1431ZM13 15.0002C13 13.8957 13.8954 13.0002 15 13.0002C16.1046 13.0002 17 13.8957 17 15.0002C17 16.1048 16.1046 17.0002 15 17.0002C13.8954 17.0002 13 16.1048 13 15.0002Z' fill='currentColor'/><path d='M11.4112 0.429366C11.7621 0.17361 12.2379 0.17361 12.5889 0.429366L14.8877 2.10612C15.0165 2.20006 15.1653 2.2612 15.3213 2.28581L15.4786 2.29851L18.3243 2.29265C18.7588 2.29193 19.1439 2.57247 19.2774 2.98601L20.1514 5.69304C20.2167 5.89516 20.3446 6.07141 20.5166 6.19597L22.8213 7.86394C23.1734 8.11874 23.3207 8.57193 23.1856 8.98503L22.3018 11.6891C22.2358 11.891 22.2358 12.1084 22.3018 12.3102L23.1856 15.0143C23.3207 15.4274 23.1734 15.8806 22.8213 16.1354L20.5166 17.8034C20.3446 17.9279 20.2167 18.1042 20.1514 18.3063L19.2774 21.0133C19.1439 21.4269 18.7588 21.7074 18.3243 21.7067L15.4786 21.7008C15.2662 21.7005 15.0593 21.7681 14.8877 21.8932L12.5889 23.57L12.4522 23.654C12.1684 23.798 11.8317 23.798 11.5479 23.654L11.4112 23.57L9.11234 21.8932C8.94081 21.7681 8.73383 21.7005 8.52152 21.7008L5.67582 21.7067L5.51566 21.694C5.20124 21.6437 4.92916 21.4453 4.78422 21.1618L4.72269 21.0133L3.84867 18.3063C3.79969 18.1546 3.71529 18.0175 3.60355 17.9059L3.48343 17.8034L1.17875 16.1354C0.826639 15.8806 0.679395 15.4274 0.81449 15.0143L1.69828 12.3102C1.74779 12.1587 1.76022 11.9984 1.73539 11.8425L1.69828 11.6891L0.81449 8.98503C0.679395 8.57193 0.826639 8.11874 1.17875 7.86394L3.48343 6.19597C3.61242 6.10258 3.71656 5.98011 3.78812 5.83952L3.84867 5.69304L4.72269 2.98601C4.85619 2.57247 5.24129 2.29193 5.67582 2.29265L8.52152 2.29851C8.68077 2.29873 8.83705 2.26084 8.97758 2.18913L9.11234 2.10612L11.4112 0.429366ZM10.0547 3.39909C9.60849 3.72446 9.06988 3.89917 8.51761 3.89812L6.11039 3.89323L5.37113 6.18425C5.20142 6.70997 4.86847 7.168 4.42093 7.49187L2.47074 8.903L3.21879 11.1911C3.3905 11.7162 3.3905 12.2832 3.21879 12.8083L2.47074 15.0954L4.42093 16.5075C4.81248 16.7908 5.11633 17.1766 5.29984 17.6208L5.37113 17.8151L6.11039 20.1051L8.51761 20.1012L8.72465 20.1091C9.20361 20.1463 9.66437 20.3156 10.0547 20.6003L12 22.0182L13.9453 20.6003L14.1162 20.486C14.5259 20.2343 14.9989 20.1003 15.4825 20.1012L17.8887 20.1051L18.6289 17.8151L18.7002 17.6208C18.8837 17.1766 19.1876 16.7908 19.5791 16.5075L21.5284 15.0954L20.7813 12.8083C20.6096 12.2832 20.6096 11.7162 20.7813 11.1911L21.5284 8.903L19.5791 7.49187C19.1316 7.168 18.7987 6.70997 18.6289 6.18425L17.8887 3.89323L15.4825 3.89812C14.9302 3.89917 14.3916 3.72446 13.9453 3.39909L12 1.98015L10.0547 3.39909Z' fill='currentColor'/></g><defs><clipPath id='clip0_16638_105970'><rect width='24' height='24' fill='currentColor'/></clipPath></defs></svg>\"}\n name=\"IconPercentBalloon\"\n {...props}\n />\n );\n}\n\n"],"names":[],"mappings":";;AAKO,SAAS,mBAAmB,OAAkB;AAEjD,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,QAAQ;AAAA,MACR,MAAK;AAAA,MACJ,GAAG;AAAA,IAAA;AAAA,EAAA;AAGV;"}
@@ -0,0 +1,3 @@
1
+ import { IconProps } from '../Icon';
2
+
3
+ export declare function IconPercentBalloon(props: IconProps): import("react/jsx-runtime").JSX.Element;
@@ -198,6 +198,7 @@ export { IconPause } from './IconPause';
198
198
  export { IconPauseCircle } from './IconPauseCircle';
199
199
  export { IconPenTool } from './IconPenTool';
200
200
  export { IconPercent } from './IconPercent';
201
+ export { IconPercentBalloon } from './IconPercentBalloon';
201
202
  export { IconPhone } from './IconPhone';
202
203
  export { IconPhoneCall } from './IconPhoneCall';
203
204
  export { IconPhoneForwarded } from './IconPhoneForwarded';
@@ -198,6 +198,7 @@ import { IconPause } from "./IconPause/index.es.js";
198
198
  import { IconPauseCircle } from "./IconPauseCircle/index.es.js";
199
199
  import { IconPenTool } from "./IconPenTool/index.es.js";
200
200
  import { IconPercent } from "./IconPercent/index.es.js";
201
+ import { IconPercentBalloon } from "./IconPercentBalloon/index.es.js";
201
202
  import { IconPhone } from "./IconPhone/index.es.js";
202
203
  import { IconPhoneCall } from "./IconPhoneCall/index.es.js";
203
204
  import { IconPhoneForwarded } from "./IconPhoneForwarded/index.es.js";
@@ -517,6 +518,7 @@ export {
517
518
  IconPauseCircle,
518
519
  IconPenTool,
519
520
  IconPercent,
521
+ IconPercentBalloon,
520
522
  IconPhone,
521
523
  IconPhoneCall,
522
524
  IconPhoneForwarded,
@@ -1 +1 @@
1
- {"version":3,"file":"index.es.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.es.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/dist/main.es.js CHANGED
@@ -229,6 +229,7 @@ import { IconPause } from "./components/icons/IconPause/index.es.js";
229
229
  import { IconPauseCircle } from "./components/icons/IconPauseCircle/index.es.js";
230
230
  import { IconPenTool } from "./components/icons/IconPenTool/index.es.js";
231
231
  import { IconPercent } from "./components/icons/IconPercent/index.es.js";
232
+ import { IconPercentBalloon } from "./components/icons/IconPercentBalloon/index.es.js";
232
233
  import { IconPhone } from "./components/icons/IconPhone/index.es.js";
233
234
  import { IconPhoneCall } from "./components/icons/IconPhoneCall/index.es.js";
234
235
  import { IconPhoneForwarded } from "./components/icons/IconPhoneForwarded/index.es.js";
@@ -655,6 +656,7 @@ export {
655
656
  IconPauseCircle,
656
657
  IconPenTool,
657
658
  IconPercent,
659
+ IconPercentBalloon,
658
660
  IconPhone,
659
661
  IconPhoneCall,
660
662
  IconPhoneForwarded,
@@ -1 +1 @@
1
- {"version":3,"file":"main.es.js","sources":["../lib/components/Drawer/hooks.ts"],"sourcesContent":["import { useState } from 'react'\n\ntype UseDrawerProps = Record<string, boolean>\n\nexport function useDrawer(props: UseDrawerProps) {\n const [drawerOpen, setDrawerOpen] = useState<UseDrawerProps>(props)\n\n function handleOpenDrawer(name: string) {\n setDrawerOpen((prev) => {\n return {\n ...prev,\n [name]: !prev[name],\n }\n })\n }\n\n return {\n handleOpenDrawer,\n drawerOpen,\n }\n}\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIO,SAAS,UAAU,OAAuB;AAC/C,QAAM,CAAC,YAAY,aAAa,IAAI,SAAyB,KAAK;AAElE,WAAS,iBAAiB,MAAc;AACtC,kBAAc,CAAC,SAAS;AACf,aAAA;AAAA,QACL,GAAG;AAAA,QACH,CAAC,IAAI,GAAG,CAAC,KAAK,IAAI;AAAA,MAAA;AAAA,IACpB,CACD;AAAA,EACH;AAEO,SAAA;AAAA,IACL;AAAA,IACA;AAAA,EAAA;AAEJ;"}
1
+ {"version":3,"file":"main.es.js","sources":["../lib/components/Drawer/hooks.ts"],"sourcesContent":["import { useState } from 'react'\n\ntype UseDrawerProps = Record<string, boolean>\n\nexport function useDrawer(props: UseDrawerProps) {\n const [drawerOpen, setDrawerOpen] = useState<UseDrawerProps>(props)\n\n function handleOpenDrawer(name: string) {\n setDrawerOpen((prev) => {\n return {\n ...prev,\n [name]: !prev[name],\n }\n })\n }\n\n return {\n handleOpenDrawer,\n drawerOpen,\n }\n}\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIO,SAAS,UAAU,OAAuB;AAC/C,QAAM,CAAC,YAAY,aAAa,IAAI,SAAyB,KAAK;AAElE,WAAS,iBAAiB,MAAc;AACtC,kBAAc,CAAC,SAAS;AACf,aAAA;AAAA,QACL,GAAG;AAAA,QACH,CAAC,IAAI,GAAG,CAAC,KAAK,IAAI;AAAA,MAAA;AAAA,IACpB,CACD;AAAA,EACH;AAEO,SAAA;AAAA,IACL;AAAA,IACA;AAAA,EAAA;AAEJ;"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@consumidor-positivo/aurora",
3
3
  "private": false,
4
- "version": "0.0.180",
4
+ "version": "0.0.182",
5
5
  "type": "module",
6
6
  "main": "./dist/main.es.js",
7
7
  "modules": "./dist/main.es.js",