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.
- package/dist/_virtual/index6.js +2 -2
- package/dist/_virtual/index7.js +2 -2
- package/dist/components/atoms/CenterModal/CenterModal.js +38 -31
- package/dist/components/atoms/FloatingCard/FloatingCard.d.ts +4 -0
- package/dist/components/atoms/FloatingCard/FloatingCard.types.d.ts +9 -0
- package/dist/components/atoms/FloatingCard/index.d.ts +1 -0
- package/dist/components/atoms/ThresholdCircleProgress/ThresholdCircleProgress.d.ts +4 -0
- package/dist/components/atoms/ThresholdCircleProgress/ThresholdCircleProgress.js +115 -0
- package/dist/components/atoms/ThresholdCircleProgress/ThresholdCircleProgress.types.d.ts +26 -0
- package/dist/components/atoms/ThresholdCircleProgress/index.d.ts +1 -0
- package/dist/components/atoms/TresholdProgressBar/TresholdProgressBar.d.ts +4 -0
- package/dist/components/atoms/TresholdProgressBar/TresholdProgressBar.js +72 -0
- package/dist/components/atoms/TresholdProgressBar/TresholdProgressBar.types.d.ts +22 -0
- package/dist/components/atoms/TresholdProgressBar/index.d.ts +1 -0
- package/dist/components/atoms/index.d.ts +2 -0
- package/dist/components/molecules/AlertModal/AlertModal.d.ts +1 -1
- package/dist/components/molecules/AlertModal/AlertModal.js +21 -20
- package/dist/components/molecules/AlertModal/AlertModal.types.d.ts +1 -0
- package/dist/components/molecules/DialogModal/DialogModal.d.ts +1 -1
- package/dist/components/molecules/DialogModal/DialogModal.js +23 -29
- package/dist/components/molecules/DialogModal/DialogModal.types.d.ts +1 -0
- package/dist/index.js +81 -77
- package/dist/lawgic-dev-kit.css +1 -1
- package/dist/lawgic-dev-kit.umd.js +50 -50
- package/dist/node_modules/prop-types/node_modules/react-is/index.js +1 -1
- package/dist/node_modules/toposort/index.js +1 -1
- package/dist/src/components/atoms/index.d.ts +37 -0
- package/dist/types/modal.d.ts +4 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as e } from "../../../../_virtual/
|
|
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;
|
|
@@ -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";
|
package/dist/types/modal.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import {
|
|
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 {
|
|
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;
|