@gustavo-valsechi/client 1.3.6 → 1.3.7

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,7 +1,7 @@
1
1
  "use client";
2
2
  import { jsx as _jsx } from "react/jsx-runtime";
3
3
  import { Container } from "./styles";
4
- import { useTheme } from "@contexts";
4
+ import { useTheme } from "../../../contexts";
5
5
  import _ from "lodash";
6
6
  export function Badge(props) {
7
7
  const { content } = useTheme();
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import { jsx as _jsx } from "react/jsx-runtime";
3
3
  import { Container } from "./styles";
4
- import { useTheme } from "@contexts";
4
+ import { useTheme } from "../../../contexts";
5
5
  import dynamic from "next/dynamic";
6
6
  import _ from "lodash";
7
7
  const ApexChart = dynamic(() => import("react-apexcharts").then((mod) => mod.default), { ssr: false });
@@ -4,7 +4,7 @@ import { useEffect } from "react";
4
4
  import { Container } from "./styles";
5
5
  import { LoadingBar } from "../loading/bar";
6
6
  import { Paginate } from "./paginate";
7
- import { useModal, useTheme } from "@contexts";
7
+ import { useModal, useTheme } from "../../../contexts";
8
8
  import _ from "lodash";
9
9
  import Modal from "./modal";
10
10
  export * from "./paginate";
@@ -1,4 +1,4 @@
1
- import { CommonTheme } from "@contexts/theme/content";
1
+ import { CommonTheme } from "../../../../contexts/theme/content";
2
2
  const actionConfig = {
3
3
  "fa-solid fa-pen-to-square": { label: "editar" },
4
4
  "fa-solid fa-trash-can": { label: "remover", color: CommonTheme.negative },
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import { Content } from "./styles";
4
4
  import { Container } from "../styles";
5
5
  import { Component } from "../../..";
6
- import { useModal } from "@contexts";
6
+ import { useModal } from "../../../../contexts";
7
7
  import _ from "lodash";
8
8
  import actionConfig from "./actions";
9
9
  export default function Modal(props) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gustavo-valsechi/client",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": ["dist"],