frst-components 0.31.9 → 0.32.0

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.
package/dist/index.js CHANGED
@@ -2387,6 +2387,14 @@ function AvatarWithInfo(props) {
2387
2387
  return (jsxRuntime.jsx(jsxRuntime.Fragment, { children: jsxRuntime.jsxs("div", { className: style$e.container, style: { ...props.style }, onClick: () => props?.onClick ? props.onClick() : {}, children: [jsxRuntime.jsx(Avatar, { size: '40px', src: props.fotoAvatar, isActiveClick: !!props?.onClick }), jsxRuntime.jsx("span", { style: { fontWeight: 600, marginLeft: 8, marginRight: 4 }, children: props.nomeCompleto }), " ", props.cargo ? jsxRuntime.jsx(Vector, {}) : '', " ", jsxRuntime.jsx("span", { style: { fontWeight: 400, marginLeft: 4, marginRight: 8, textAlign: 'center' }, children: props.cargo })] }) }));
2388
2388
  }
2389
2389
 
2390
+ const colorVariants = {
2391
+ '#F26818': { hover: '#ee4c15', pressed: '#d14211' },
2392
+ '#E7AD00': { hover: '#D49F00', pressed: '#C79500' },
2393
+ '#2457E3': { hover: '#2652CC', pressed: '#2A4DAC' },
2394
+ '#27AA3D': { hover: '#1F9B33', pressed: '#238D35' },
2395
+ '#9A37E1': { hover: '#8E29D6', pressed: '#7F28BE' },
2396
+ '#E64040': { hover: '#D13A3A', pressed: '#C23636' } //vermelho
2397
+ };
2390
2398
  const LinkButton$1 = styled__default["default"].a `
2391
2399
  border: none;
2392
2400
  text-decoration: none;
@@ -2498,31 +2506,41 @@ const LinkButtonEndIcon = styled__default["default"].a `
2498
2506
  color: ${({ theme }) => theme.colors.linkDisabled};
2499
2507
  `}
2500
2508
  `;
2501
- const variantStyles$1 = (variant = 'contained') => ({
2502
- primary: styled.css `
2503
- background-color: #f26818;
2504
- color: ${({ theme }) => theme.colors.shadeWhite};
2509
+ const variantStyles$1 = (variant = 'contained', backgroundColor) => ({
2510
+ primary: ({ theme }) => {
2511
+ const isDefault = !backgroundColor || backgroundColor === '#F26818';
2512
+ const baseColor = isDefault ? '#F26818' : backgroundColor;
2513
+ const hoverColor = isDefault
2514
+ ? colorVariants['#F26818'].hover
2515
+ : colorVariants[backgroundColor]?.hover || baseColor;
2516
+ const pressedColor = isDefault
2517
+ ? colorVariants['#F26818'].pressed
2518
+ : colorVariants[backgroundColor]?.pressed || baseColor;
2519
+ return styled.css `
2520
+ background-color: ${baseColor};
2521
+ color: ${theme.colors.shadeWhite};
2505
2522
 
2506
- &:hover {
2507
- background-color: ${({ theme }) => theme.colors.primary2};
2508
- }
2523
+ &:hover {
2524
+ background-color: ${hoverColor};
2525
+ }
2509
2526
 
2510
- &:active {
2511
- background-color: ${({ theme }) => theme.colorsprimary3};
2512
- }
2527
+ &:active {
2528
+ background-color: ${pressedColor};
2529
+ }
2513
2530
 
2514
- &:focus {
2515
- border: 2px solid #f26818 4d;
2516
- -webkit-background-clip: padding-box;
2517
- background-clip: padding-box;
2518
- }
2531
+ &:focus {
2532
+ border: 2px solid ${baseColor}4D;
2533
+ -webkit-background-clip: padding-box;
2534
+ background-clip: padding-box;
2535
+ }
2519
2536
 
2520
- &:disabled {
2521
- background-color: ${({ theme }) => theme.colors.neutralsGrey5};
2522
- cursor: not-allowed;
2523
- pointer-events: none;
2524
- }
2525
- `,
2537
+ &:disabled {
2538
+ background-color: ${theme.colors.neutralsGrey5};
2539
+ cursor: not-allowed;
2540
+ pointer-events: none;
2541
+ }
2542
+ `;
2543
+ },
2526
2544
  secondary: styled.css `
2527
2545
  background-color: transparent;
2528
2546
  color: ${({ theme }) => theme.colors.primary1};
@@ -2551,30 +2569,41 @@ const variantStyles$1 = (variant = 'contained') => ({
2551
2569
  pointer-events: none;
2552
2570
  }
2553
2571
  `,
2554
- expandedPrimary: styled.css `
2555
- background-color: #f26818;
2556
- color: ${({ theme }) => theme.colors.shadeWhite};
2557
- width: 100%;
2558
- &:hover {
2559
- background-color: ${({ theme }) => theme.colors.primary2};
2560
- }
2572
+ expandedPrimary: ({ theme }) => {
2573
+ const isDefault = !backgroundColor || backgroundColor === '#F26818';
2574
+ const baseColor = isDefault ? '#F26818' : backgroundColor;
2575
+ const hoverColor = isDefault
2576
+ ? colorVariants['#F26818'].hover
2577
+ : colorVariants[backgroundColor]?.hover || baseColor;
2578
+ const pressedColor = isDefault
2579
+ ? colorVariants['#F26818'].pressed
2580
+ : colorVariants[backgroundColor]?.pressed || baseColor;
2581
+ return styled.css `
2582
+ background-color: ${baseColor};
2583
+ color: ${theme.colors.shadeWhite};
2584
+ width: 100%;
2561
2585
 
2562
- &:active {
2563
- background-color: ${({ theme }) => theme.colorsprimary3};
2564
- }
2586
+ &:hover {
2587
+ background-color: ${hoverColor};
2588
+ }
2565
2589
 
2566
- &:focus {
2567
- border: 2px solid #f26818 4D;
2568
- -webkit-background-clip: padding-box;
2569
- background-clip: padding-box;
2570
- }
2590
+ &:active {
2591
+ background-color: ${pressedColor};
2592
+ }
2571
2593
 
2572
- &:disabled {
2573
- background-color: ${({ theme }) => theme.colors.neutralsGrey5};
2574
- cursor: not-allowed;
2575
- pointer-events: none;
2576
- }
2577
- `,
2594
+ &:focus {
2595
+ border: 2px solid ${baseColor}4D;
2596
+ -webkit-background-clip: padding-box;
2597
+ background-clip: padding-box;
2598
+ }
2599
+
2600
+ &:disabled {
2601
+ background-color: ${theme.colors.neutralsGrey5};
2602
+ cursor: not-allowed;
2603
+ pointer-events: none;
2604
+ }
2605
+ `;
2606
+ },
2578
2607
  expandedSecondary: styled.css `
2579
2608
  background-color: transparent;
2580
2609
  color: ${({ theme }) => theme.colors.primary1};
@@ -2624,7 +2653,7 @@ const Button$6 = styled__default["default"].button `
2624
2653
  line-height: 19px;
2625
2654
  box-shadow: none;
2626
2655
 
2627
- ${({ variant }) => variantStyles$1(variant)}
2656
+ ${({ variant, backgroundColor }) => variantStyles$1(variant, backgroundColor)}
2628
2657
 
2629
2658
  ${({ theme, length }) => theme.type === 'group' &&
2630
2659
  length === 2 &&
@@ -2641,7 +2670,7 @@ const Button$6 = styled__default["default"].button `
2641
2670
  }
2642
2671
  `}
2643
2672
 
2644
- ${({ theme, length }) => theme.type === 'group' &&
2673
+ ${({ theme, length }) => theme.type === 'group' &&
2645
2674
  length > 2 &&
2646
2675
  `
2647
2676
  border-radius: 0px;
@@ -2666,10 +2695,26 @@ const Button$6 = styled__default["default"].button `
2666
2695
  }
2667
2696
  `}
2668
2697
 
2669
- ${({ active }) => active === true &&
2698
+ ${({ active }) => active === true &&
2670
2699
  styled.css `
2671
2700
  background: #d14211;
2672
2701
  `}
2702
+
2703
+ /* AQUI COMEÇA A ADIÇÃO NOVA: */
2704
+
2705
+ ${({ backgroundColor }) => backgroundColor &&
2706
+ backgroundColor !== '#F26818' &&
2707
+ styled.css `
2708
+ background-color: ${backgroundColor};
2709
+
2710
+ &:hover {
2711
+ background-color: ${colorVariants[backgroundColor]?.hover || backgroundColor};
2712
+ }
2713
+
2714
+ &:active {
2715
+ background-color: ${colorVariants[backgroundColor]?.pressed || backgroundColor};
2716
+ }
2717
+ `}
2673
2718
  `;
2674
2719
  const ButtonStartIcon$1 = styled__default["default"].button `
2675
2720
  display: flex;
@@ -2697,7 +2742,7 @@ const ButtonStartIcon$1 = styled__default["default"].button `
2697
2742
  width: auto;
2698
2743
  }
2699
2744
 
2700
- ${({ variant }) => variantStyles$1(variant)}
2745
+ ${({ variant, backgroundColor }) => variantStyles$1(variant, backgroundColor)}
2701
2746
  `;
2702
2747
  const ButtonEndIcon = styled__default["default"].button `
2703
2748
  display: flex;
@@ -2725,10 +2770,10 @@ const ButtonEndIcon = styled__default["default"].button `
2725
2770
  width: auto;
2726
2771
  }
2727
2772
 
2728
- ${({ variant }) => variantStyles$1(variant)}
2773
+ ${({ variant, backgroundColor }) => variantStyles$1(variant, backgroundColor)}
2729
2774
  `;
2730
2775
 
2731
- function Button$5({ variant, label, sizeIcon, disabled, startIcon, endIcon, handleClick, type, active, style, value, length, id, ref, handleMount, buttonProps }) {
2776
+ function Button$5({ variant, label, sizeIcon, disabled, startIcon, endIcon, handleClick, type, active, style, value, length, id, ref, handleMount, buttonProps, backgroundColor, }) {
2732
2777
  React.useEffect(() => {
2733
2778
  if (handleMount && id) {
2734
2779
  handleMount(id);
@@ -2738,17 +2783,17 @@ function Button$5({ variant, label, sizeIcon, disabled, startIcon, endIcon, hand
2738
2783
  (variant === 'link') ?
2739
2784
  jsxRuntime.jsxs(LinkButtonStartIcon, { ref: ref, style: { ...style }, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [startIcon, label] })
2740
2785
  :
2741
- jsxRuntime.jsxs(ButtonStartIcon$1, { ...buttonProps, ref: ref, style: { ...style }, variant: variant, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [startIcon, label] })
2786
+ jsxRuntime.jsxs(ButtonStartIcon$1, { backgroundColor: backgroundColor, ...buttonProps, ref: ref, style: { ...style }, variant: variant, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [startIcon, label] })
2742
2787
  : endIcon ?
2743
2788
  (variant === 'link') ?
2744
2789
  jsxRuntime.jsxs(LinkButtonEndIcon, { ref: ref, style: { ...style }, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [label, endIcon] })
2745
2790
  :
2746
- jsxRuntime.jsxs(ButtonEndIcon, { ...buttonProps, ref: ref, style: { ...style }, variant: variant, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [label, endIcon] })
2791
+ jsxRuntime.jsxs(ButtonEndIcon, { backgroundColor: backgroundColor, ...buttonProps, ref: ref, style: { ...style }, variant: variant, disabled: disabled, onClick: handleClick, sizeIcon: sizeIcon, id: id, children: [label, endIcon] })
2747
2792
  :
2748
2793
  (variant === 'link') ?
2749
2794
  jsxRuntime.jsx(LinkButton$1, { ref: ref, style: { ...style }, disabled: disabled, onClick: handleClick, id: id, children: label })
2750
2795
  :
2751
- jsxRuntime.jsx(Button$6, { ...buttonProps, ref: ref, style: { ...style }, length: length, active: active, value: value, variant: variant, disabled: disabled, onClick: handleClick, id: id, children: label }) }));
2796
+ jsxRuntime.jsx(Button$6, { ...buttonProps, backgroundColor: backgroundColor, ref: ref, style: { ...style }, length: length, active: active, value: value, variant: variant, disabled: disabled, onClick: handleClick, id: id, children: label }) }));
2752
2797
  }
2753
2798
 
2754
2799
  var css_248z$k = ".BannerProblem-module_container__iitVU {\n padding: 50px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n position: relative;\n flex-direction: row;\n flex-wrap: wrap;\n background-color: white;\n font-family: 'Work Sans';\n font-style: normal;\n\n}\n\n@media (max-width:570px) {\n\n .BannerProblem-module_container__iitVU {\n padding: 10px !important;\n display: flex;\n justify-content: space-between;\n align-items: center;\n position: relative;\n flex-direction: row;\n flex-wrap: wrap;\n background-color: white;\n font-family: 'Work Sans';\n font-style: normal;\n \n }\n }\n\n.BannerProblem-module_titleProblem__BeJIN{\n font-weight: 700;\n font-size: 18px;\n word-wrap: break-word;\n display: flex;\n justify-content: center;\n align-items: center;\n gap: 4px;\n}\n\n.BannerProblem-module_created__OrSsa{\n font-size: 12px;\n\n font-family: 'Work Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 12px;\n line-height: 14px;\n /* identical to box height, or 117% */\n\n display: flex;\n align-items: center;\n letter-spacing: -0.02em;\n\n color: #757575;\n}\n\n.BannerProblem-module_description__olZ05{\n font-style: normal;\n font-weight: 600;\n font-size: 32px;\n text-align: left;\n display: flex;\n margin-top: 8px;\n width: 100%;\n color: #FF4D0D;\n margin-bottom: 0px;\n}\n\n@media(max-width: 880px){\n .BannerProblem-module_description__olZ05{\n word-wrap: break-word;\n }\n}\n\n.BannerProblem-module_missaoTitle__300kZ{\n font-style: normal;\n font-weight: 600;\n font-size: 16px;\n display: flex;\n align-items: center;\n width: 100%;\n \n color: #0645AD;\n}\n\nh2{\n font-family: 'Work Sans';\n font-style: normal;\n font-weight: 700;\n font-size: 16px;\n display: flex;\n align-items: center;\n width: 100%;\n margin-top: 16;\n margin-bottom: 0;\n}\n\nh3{\n font-family: 'Work Sans';\n font-style: normal;\n font-weight: 400;\n font-size: 14px;\n line-height: 21px;\n margin: 0;\n word-wrap: break-word;\n}\n\n.BannerProblem-module_contentInput__YXpxk {\n background-color: #F2F2F2; \n border-width: 1px; \n border-radius: 4px;\n padding: 24px 16px 24px 16px;\n border: 1px solid #BDBDBD;\n}\n\n.BannerProblem-module_contentInput__YXpxk input {\n width: 100% !important;\n margin: 4px;\n padding: 16px;\n border-radius: 8px;\n border: 1px solid #BDBDBD;\n background-color: white;\n}\n\n.BannerProblem-module_goal_invite__B0T5N svg {\n max-width: none;\n max-height: none !important;\n}\n";
@@ -13,13 +13,16 @@ export declare const Button: import("styled-components").StyledComponent<"button
13
13
  variant: string;
14
14
  active: boolean;
15
15
  length: number;
16
+ backgroundColor?: string;
16
17
  }, never>;
17
18
  export declare const ButtonStartIcon: import("styled-components").StyledComponent<"button", any, {
18
19
  variant: string;
19
20
  sizeIcon: string;
21
+ backgroundColor: string;
20
22
  }, never>;
21
23
  export declare const ButtonEndIcon: import("styled-components").StyledComponent<"button", any, {
22
24
  variant: string;
23
25
  sizeIcon: string;
26
+ backgroundColor: string;
24
27
  }, never>;
25
28
  //# sourceMappingURL=buttonStyle.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"buttonStyle.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/buttonStyle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU;cAAwB,OAAO;SAqCrD,CAAA;AACD,eAAO,MAAM,mBAAmB;cAAwB,OAAO;cAAY,MAAM;SAqChF,CAAA;AACD,eAAO,MAAM,iBAAiB;cAAwB,OAAO;cAAY,MAAM;SAqC9E,CAAA;AA+GD,eAAO,MAAM,MAAM;aAA4B,MAAM;YAAU,OAAO;YAAU,MAAM;SAoErF,CAAA;AACD,eAAO,MAAM,eAAe;aAA4B,MAAM;cAAY,MAAM;SA2B/E,CAAA;AACD,eAAO,MAAM,aAAa;aAA4B,MAAM;cAAY,MAAM;SA2B7E,CAAA"}
1
+ {"version":3,"file":"buttonStyle.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/buttonStyle.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,UAAU;cAAwB,OAAO;SAqCrD,CAAA;AACD,eAAO,MAAM,mBAAmB;cAAwB,OAAO;cAAY,MAAM;SAqChF,CAAA;AACD,eAAO,MAAM,iBAAiB;cAAwB,OAAO;cAAY,MAAM;SAqC9E,CAAA;AAuID,eAAO,MAAM,MAAM;aACR,MAAM;YACP,OAAO;YACP,MAAM;sBACI,MAAM;SAsFzB,CAAA;AACD,eAAO,MAAM,eAAe;aAA4B,MAAM;cAAY,MAAM;qBAAmB,MAAM;SA2BxG,CAAA;AACD,eAAO,MAAM,aAAa;aAA4B,MAAM;cAAY,MAAM;qBAAmB,MAAM;SA2BtG,CAAA"}
@@ -19,7 +19,8 @@ interface ButtonProps {
19
19
  ref?: any;
20
20
  handleMount?: (e: any) => void;
21
21
  buttonProps?: ButtonHTMLAttributes<HTMLButtonElement>;
22
+ backgroundColor?: string;
22
23
  }
23
- export default function Button({ variant, label, sizeIcon, disabled, startIcon, endIcon, handleClick, type, active, style, value, length, id, ref, handleMount, buttonProps }: ButtonProps): import("react/jsx-runtime").JSX.Element;
24
+ export default function Button({ variant, label, sizeIcon, disabled, startIcon, endIcon, handleClick, type, active, style, value, length, id, ref, handleMount, buttonProps, backgroundColor, }: ButtonProps): import("react/jsx-runtime").JSX.Element;
24
25
  export {};
25
26
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,oBAAoB,EAAuB,MAAM,OAAO,CAAA;AACxE,OAAO,yBAAyB,CAAA;AAKhC,KAAK,WAAW,GAAG,SAAS,GAAG,WAAW,GAAG,MAAM,GAAG,iBAAiB,GAAG,mBAAmB,CAAA;AAC7F,KAAK,QAAQ,GAAG,OAAO,GAAG,IAAI,CAAA;AAE9B,UAAU,WAAW;IACjB,OAAO,CAAC,EAAE,WAAW,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAC/B,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,WAAW,CAAC,EAAE,CAAC,CAAC,EAAC,GAAG,KAAK,IAAI,CAAA;IAC7B,WAAW,CAAC,EAAE,oBAAoB,CAAC,iBAAiB,CAAC,CAAA;CACxD;AAED,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,EAC3B,OAAO,EACP,KAAK,EACL,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,OAAO,EACP,WAAW,EACX,IAAI,EACJ,MAAM,EACN,KAAK,EACL,KAAK,EACL,MAAM,EACN,EAAE,EACF,GAAG,EACH,WAAW,EACX,WAAW,EACd,EAAE,WAAW,2CA8Cb"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/buttons/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,oBAAoB,EAAuB,MAAM,OAAO,CAAA;AACxE,OAAO,yBAAyB,CAAA;AAKhC,KAAK,WAAW,GAAG,SAAS,GAAG,WAAW,GAAG,MAAM,GAAG,iBAAiB,GAAG,mBAAmB,CAAA;AAC7F,KAAK,QAAQ,GAAG,OAAO,GAAG,IAAI,CAAA;AAE9B,UAAU,WAAW;IACjB,OAAO,CAAC,EAAE,WAAW,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,KAAK,IAAI,CAAC;IAC/B,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,WAAW,CAAC,EAAE,CAAC,CAAC,EAAC,GAAG,KAAK,IAAI,CAAA;IAC7B,WAAW,CAAC,EAAE,oBAAoB,CAAC,iBAAiB,CAAC,CAAA;IACrD,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,CAAC,OAAO,UAAU,MAAM,CAAC,EAC3B,OAAO,EACP,KAAK,EACL,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,OAAO,EACP,WAAW,EACX,IAAI,EACJ,MAAM,EACN,KAAK,EACL,KAAK,EACL,MAAM,EACN,EAAE,EACF,GAAG,EACH,WAAW,EACX,WAAW,EACX,eAAe,GAClB,EAAE,WAAW,2CA8Cb"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "frst-components",
3
3
  "homepage": "http://FRST-Falconi.github.io/storybook.frstfalconi.com",
4
- "version": "0.31.9",
4
+ "version": "0.32.0",
5
5
  "private": false,
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",