lawgic-dev-kit 0.9.0 → 0.9.2

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,4 +1,4 @@
1
- var e = { exports: {} };
1
+ var p = { exports: {} };
2
2
  export {
3
- e as __module
3
+ p as __module
4
4
  };
@@ -1,4 +1,5 @@
1
- var p = { exports: {} };
1
+ import { __require as r } from "../node_modules/property-expr/index.js";
2
+ var e = r();
2
3
  export {
3
- p as __module
4
+ e as p
4
5
  };
@@ -1,5 +1,5 @@
1
- import { __require as r } from "../node_modules/property-expr/index.js";
2
- var e = r();
1
+ import { __require as r } from "../node_modules/tiny-case/index.js";
2
+ var a = r();
3
3
  export {
4
- e as p
4
+ a as t
5
5
  };
@@ -1,5 +1,7 @@
1
- import { __require as r } from "../node_modules/tiny-case/index.js";
2
- var a = r();
1
+ import { getDefaultExportFromCjs as o } from "./_commonjsHelpers.js";
2
+ import { __require as r } from "../node_modules/toposort/index.js";
3
+ var t = r();
4
+ const s = /* @__PURE__ */ o(t);
3
5
  export {
4
- a as t
6
+ s as default
5
7
  };
@@ -1,7 +1,4 @@
1
- import { getDefaultExportFromCjs as o } from "./_commonjsHelpers.js";
2
- import { __require as r } from "../node_modules/toposort/index.js";
3
- var t = r();
4
- const s = /* @__PURE__ */ o(t);
1
+ var e = { exports: {} };
5
2
  export {
6
- s as default
3
+ e as __module
7
4
  };
@@ -1,4 +1,4 @@
1
- import { __module as r } from "../../_virtual/index3.js";
1
+ import { __module as r } from "../../_virtual/index2.js";
2
2
  import { __require as s } from "./node_modules/react-is/index.js";
3
3
  import { __require as t } from "./factoryWithTypeCheckers.js";
4
4
  import { __require as p } from "./factoryWithThrowingShims.js";
@@ -1,4 +1,4 @@
1
- import { __module as e } from "../../_virtual/index2.js";
1
+ import { __module as e } from "../../_virtual/index6.js";
2
2
  import { __require as o } from "./cjs/scheduler.production.js";
3
3
  import { __require as u } from "./cjs/scheduler.development.js";
4
4
  var r;
@@ -1,6 +1,6 @@
1
- import { p as v } from "../../_virtual/index4.js";
2
- import { t as U } from "../../_virtual/index5.js";
3
- import oe from "../../_virtual/index6.js";
1
+ import { p as v } from "../../_virtual/index3.js";
2
+ import { t as U } from "../../_virtual/index4.js";
3
+ import oe from "../../_virtual/index5.js";
4
4
  const ce = Object.prototype.toString, he = Error.prototype.toString, fe = RegExp.prototype.toString, de = typeof Symbol < "u" ? Symbol.prototype.toString : () => "", pe = /^Symbol\((.*)\)(.*)$/;
5
5
  function me(n) {
6
6
  return n != +n ? "NaN" : n === 0 && 1 / n < 0 ? "-0" : "" + n;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lawgic-dev-kit",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "Componentes de UI para Lawgic",
5
5
  "type": "module",
6
6
  "private": false,
@@ -1,5 +0,0 @@
1
- import React from "react";
2
- import { TextInputProps } from "./TextInput.types";
3
- import { FieldValues } from "react-hook-form";
4
- declare const TextInput: <T extends FieldValues = FieldValues>({ label, control, name, placeholder, className, disabled, leftSide, rightSide, translateKey, ...props }: TextInputProps<T>) => React.ReactElement;
5
- export default TextInput;
@@ -1 +0,0 @@
1
- export * from './themeContext';
@@ -1,3 +0,0 @@
1
- import { LawgicTheme } from "../themes";
2
- declare const ThemeContext: import("react").Context<LawgicTheme>;
3
- export default ThemeContext;
@@ -1 +0,0 @@
1
- export * from './useTheme';
@@ -1 +0,0 @@
1
- export declare const useTheme: () => import("..").LawgicTheme;
@@ -1,8 +0,0 @@
1
- import "./index.css";
2
- export * from "./components/index";
3
- export * from "./types/index";
4
- export * from "./utils/index";
5
- export * from "./providers/index";
6
- export * from "./hooks/index";
7
- export * from "./contexts/index";
8
- export * from "./themes/index";
@@ -1,7 +0,0 @@
1
- import React from "react";
2
- import { LawgicTheme } from "../themes";
3
- export interface ThemeProviderProps {
4
- theme?: Partial<LawgicTheme>;
5
- children: React.ReactNode;
6
- }
7
- export declare const ThemeProvider: React.FC<ThemeProviderProps>;