lawgic-dev-kit 0.16.4 → 0.16.8

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 (29) hide show
  1. package/dist/_virtual/index6.js +2 -2
  2. package/dist/_virtual/index7.js +2 -2
  3. package/dist/components/atoms/CenterModal/CenterModal.js +38 -31
  4. package/dist/components/atoms/FloatingCard/FloatingCard.d.ts +4 -0
  5. package/dist/components/atoms/FloatingCard/FloatingCard.types.d.ts +9 -0
  6. package/dist/components/atoms/FloatingCard/index.d.ts +1 -0
  7. package/dist/components/atoms/ThresholdCircleProgress/ThresholdCircleProgress.d.ts +4 -0
  8. package/dist/components/atoms/ThresholdCircleProgress/ThresholdCircleProgress.js +115 -0
  9. package/dist/components/atoms/ThresholdCircleProgress/ThresholdCircleProgress.types.d.ts +26 -0
  10. package/dist/components/atoms/ThresholdCircleProgress/index.d.ts +1 -0
  11. package/dist/components/atoms/TresholdProgressBar/TresholdProgressBar.d.ts +4 -0
  12. package/dist/components/atoms/TresholdProgressBar/TresholdProgressBar.js +72 -0
  13. package/dist/components/atoms/TresholdProgressBar/TresholdProgressBar.types.d.ts +22 -0
  14. package/dist/components/atoms/TresholdProgressBar/index.d.ts +1 -0
  15. package/dist/components/atoms/index.d.ts +2 -0
  16. package/dist/components/molecules/AlertModal/AlertModal.d.ts +1 -1
  17. package/dist/components/molecules/AlertModal/AlertModal.js +21 -20
  18. package/dist/components/molecules/AlertModal/AlertModal.types.d.ts +1 -0
  19. package/dist/components/molecules/DialogModal/DialogModal.d.ts +1 -1
  20. package/dist/components/molecules/DialogModal/DialogModal.js +23 -29
  21. package/dist/components/molecules/DialogModal/DialogModal.types.d.ts +1 -0
  22. package/dist/index.js +81 -77
  23. package/dist/lawgic-dev-kit.css +1 -1
  24. package/dist/lawgic-dev-kit.umd.js +50 -50
  25. package/dist/node_modules/prop-types/node_modules/react-is/index.js +1 -1
  26. package/dist/node_modules/toposort/index.js +1 -1
  27. package/dist/src/components/atoms/index.d.ts +37 -0
  28. package/dist/types/modal.d.ts +4 -3
  29. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { __module as e } from "../../../../_virtual/index6.js";
1
+ import { __module as e } from "../../../../_virtual/index7.js";
2
2
  import { __require as o } from "./cjs/react-is.production.min.js";
3
3
  import { __require as t } from "./cjs/react-is.development.js";
4
4
  var r;
@@ -1,4 +1,4 @@
1
- import { __module as w } from "../../_virtual/index7.js";
1
+ import { __module as w } from "../../_virtual/index6.js";
2
2
  var p;
3
3
  function x() {
4
4
  if (p) return w.exports;
@@ -0,0 +1,37 @@
1
+ export * from "./ActionButton/index";
2
+ export * from "./ActionButton/index";
3
+ export * from "./AsyncToast/index";
4
+ export * from "./Avatar/index";
5
+ export * from "./BoxContainer/index";
6
+ export * from "./Button/index";
7
+ export * from "./CenterModal/index";
8
+ export * from "./Checkbox/index";
9
+ export * from "./CountryInput/index";
10
+ export * from "./CountryLabel/index";
11
+ export * from "./CountrySelectInput/index";
12
+ export * from "./Divider/index";
13
+ export * from "./IconButton/index";
14
+ export * from "./ImageProfileInput/index";
15
+ export * from "./IndexedStep/index";
16
+ export * from "./InfoCard/index";
17
+ export * from "./InformationDisclaimer/index";
18
+ export * from "./LoadingSpinner/index";
19
+ export * from "./PasswordInput/index";
20
+ export * from "./PhoneInput/index";
21
+ export * from "./ProgressBar/index";
22
+ export * from "./SearchBar/index";
23
+ export * from "./SectionButton/index";
24
+ export * from "./SelectInput/index";
25
+ export * from "./SidebarButton/index";
26
+ export * from "./Tab/index";
27
+ export * from "./TextButton/index";
28
+ export * from "./TextInput/index";
29
+ export * from "./TextStaticInput/index";
30
+ export * from "./Toast/index";
31
+ export * from "./UncontrolledSelector/index";
32
+ export * from "./UncontrolledTextInput/index";
33
+ export * from "./UploadContainer/index";
34
+ export * from "./Tooltip/index";
35
+ export * from "./LoadingProgress/index";
36
+ export * from "./ThresholdCircleProgress/index";
37
+ export * from "./TresholdProgressBar/index";
@@ -1,11 +1,12 @@
1
- import { ModalType } from './modalType';
1
+ import { ReactElement } from 'react';
2
2
  import { CenterModalProps } from '../components/atoms/CenterModal/CenterModal.types';
3
- import { DialogModalProps } from '../components/molecules/DialogModal/DialogModal.types';
4
3
  import { AlertModalProps } from '../components/molecules';
5
- import { ReactElement } from 'react';
4
+ import { DialogModalProps } from '../components/molecules/DialogModal/DialogModal.types';
5
+ import { ModalType } from './modalType';
6
6
  export interface ModalProps {
7
7
  open: boolean;
8
8
  onClose: () => void;
9
+ showCloseButton?: boolean;
9
10
  }
10
11
  export interface ModalOptionsBase {
11
12
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lawgic-dev-kit",
3
- "version": "0.16.4",
3
+ "version": "0.16.8",
4
4
  "description": "Componentes de UI para Lawgic",
5
5
  "type": "module",
6
6
  "private": false,