lawgic-dev-kit 0.13.6 → 0.13.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/index.js +22 -21
- package/dist/lawgic-dev-kit.umd.js +32 -32
- package/dist/src/types/modal.d.ts +33 -0
- package/dist/src/types/modalType.d.ts +1 -0
- package/dist/src/utils/modal.d.ts +13 -0
- package/dist/types/modal.d.ts +3 -1
- package/dist/types/modalType.d.ts +1 -1
- package/dist/utils/modal.d.ts +3 -0
- package/dist/utils/modal.js +63 -43
- package/package.json +1 -1
- package/dist/src/components/atoms/ProgressBar/ProgressBar.d.ts +0 -3
- package/dist/src/components/atoms/ProgressBar/ProgressBar.types.d.ts +0 -6
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { default as I } from "./components/atoms/Checkbox/Checkbox.js";
|
|
|
9
9
|
import { default as C } from "./components/atoms/CountryInput/CountryInput.js";
|
|
10
10
|
import { default as B } from "./components/atoms/CountryLabel/CountryLabel.js";
|
|
11
11
|
import { default as h } from "./components/atoms/CountrySelectInput/CountryDropdown.js";
|
|
12
|
-
import { default as
|
|
12
|
+
import { default as D } from "./components/atoms/Divider/Divider.js";
|
|
13
13
|
import { default as b } from "./components/atoms/IconButton/IconButton.js";
|
|
14
14
|
import { default as P } from "./components/atoms/ImageProfileInput/ImageProfileInput.js";
|
|
15
15
|
import { default as L } from "./components/atoms/ImageProfileInput/ImageProfileInput.validators.js";
|
|
@@ -35,7 +35,7 @@ import { default as co } from "./components/atoms/UploadContainer/UploadContaine
|
|
|
35
35
|
import { default as To } from "./components/molecules/AlertModal/AlertModal.js";
|
|
36
36
|
import { default as go } from "./components/molecules/CalendarSelector/CalendarSelector.js";
|
|
37
37
|
import { default as So } from "./components/molecules/DateInput/DateInput.js";
|
|
38
|
-
import { default as
|
|
38
|
+
import { default as Mo } from "./components/molecules/DialogModal/DialogModal.js";
|
|
39
39
|
import { default as yo } from "./components/molecules/Dropdown/Dropdown.js";
|
|
40
40
|
import { default as wo } from "./components/molecules/FileUpload/FileUpload.js";
|
|
41
41
|
import { default as Ao } from "./components/molecules/FloatingMenu/FloatingMenu.js";
|
|
@@ -46,14 +46,14 @@ import { Organism as Vo } from "./components/organisms/index.js";
|
|
|
46
46
|
import { formatLocalizedDate as qo } from "./utils/dates.js";
|
|
47
47
|
import { toBase64 as Go, translateBytes as Ho } from "./utils/files.js";
|
|
48
48
|
import { getImageUrl as Ko } from "./utils/images.js";
|
|
49
|
-
import { ModalContainer as Qo, closeModal as Ro,
|
|
50
|
-
import { renderTabContent as
|
|
51
|
-
import { capitalizeFirstLetter as
|
|
52
|
-
import { showToastAsync as
|
|
53
|
-
import { ThemeProvider as
|
|
54
|
-
import { useTheme as
|
|
49
|
+
import { ModalContainer as Qo, closeModal as Ro, openCustomModal as Wo, openModal as Xo } from "./utils/modal.js";
|
|
50
|
+
import { renderTabContent as Zo } from "./utils/renderContentOptions.js";
|
|
51
|
+
import { capitalizeFirstLetter as $o, stringToColor as ot } from "./utils/strings.js";
|
|
52
|
+
import { showToastAsync as et, showToastLoading as rt, toast as at } from "./utils/toast.js";
|
|
53
|
+
import { ThemeProvider as pt } from "./providers/ThemeProvider.js";
|
|
54
|
+
import { useTheme as dt } from "./hooks/useTheme.js";
|
|
55
55
|
import "./contexts/themeContext.js";
|
|
56
|
-
import { defaultTheme as
|
|
56
|
+
import { defaultTheme as st } from "./themes/default.js";
|
|
57
57
|
export {
|
|
58
58
|
a as ActionButton,
|
|
59
59
|
To as AlertModal,
|
|
@@ -68,8 +68,8 @@ export {
|
|
|
68
68
|
C as CountryInput,
|
|
69
69
|
B as CountryLabel,
|
|
70
70
|
So as DateInput,
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
Mo as DialogModal,
|
|
72
|
+
D as Divider,
|
|
73
73
|
yo as Dropdown,
|
|
74
74
|
wo as FileUpload,
|
|
75
75
|
Ao as FloatingMenu,
|
|
@@ -95,24 +95,25 @@ export {
|
|
|
95
95
|
eo as TextButton,
|
|
96
96
|
ao as TextInput,
|
|
97
97
|
po as TextStaticInput,
|
|
98
|
-
|
|
98
|
+
pt as ThemeProvider,
|
|
99
99
|
mo as Toast,
|
|
100
100
|
uo as UncontrolledSelector,
|
|
101
101
|
no as UncontrolledTextInput,
|
|
102
102
|
co as UploadContainer,
|
|
103
|
-
|
|
103
|
+
$o as capitalizeFirstLetter,
|
|
104
104
|
Ro as closeModal,
|
|
105
|
-
|
|
105
|
+
st as defaultTheme,
|
|
106
106
|
qo as formatLocalizedDate,
|
|
107
107
|
Ko as getImageUrl,
|
|
108
|
-
Wo as
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
et as
|
|
112
|
-
|
|
108
|
+
Wo as openCustomModal,
|
|
109
|
+
Xo as openModal,
|
|
110
|
+
Zo as renderTabContent,
|
|
111
|
+
et as showToastAsync,
|
|
112
|
+
rt as showToastLoading,
|
|
113
|
+
ot as stringToColor,
|
|
113
114
|
Go as toBase64,
|
|
114
|
-
|
|
115
|
+
at as toast,
|
|
115
116
|
Ho as translateBytes,
|
|
116
|
-
|
|
117
|
+
dt as useTheme,
|
|
117
118
|
L as yupImageProfileValidator
|
|
118
119
|
};
|