mapomodule 2.0.0-beta.1 → 2.0.0-beta.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.
- package/dist/index.d.cts +0 -1
- package/dist/index.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +9 -10
- package/dist/module.json +1 -1
- package/package.json +1 -2
package/dist/index.d.cts
CHANGED
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -15,13 +15,12 @@ const jiti = createJiti(import.meta.url, {
|
|
|
15
15
|
/** @type {import("/home/runner/work/mapo-new/mapo-new/packages/mapomodule/src/index.js")} */
|
|
16
16
|
const _module = await jiti.import("/home/runner/work/mapo-new/mapo-new/packages/mapomodule/src/index.ts");
|
|
17
17
|
|
|
18
|
-
export default _module?.default ?? _module;
|
|
19
|
-
export const MultipartPolicyEnum = _module.MultipartPolicyEnum;
|
|
20
18
|
export const CoreCookieEnum = _module.CoreCookieEnum;
|
|
19
|
+
export const MultipartPolicyEnum = _module.MultipartPolicyEnum;
|
|
21
20
|
export const useCanAccessRoute = _module.useCanAccessRoute;
|
|
22
21
|
export const useMapoFetch = _module.useMapoFetch;
|
|
23
|
-
export const SnackTypeEnum = _module.SnackTypeEnum;
|
|
24
22
|
export const SidebarCookieEnum = _module.SidebarCookieEnum;
|
|
23
|
+
export const SnackTypeEnum = _module.SnackTypeEnum;
|
|
25
24
|
export const useAuthStore = _module.useAuthStore;
|
|
26
25
|
export const useSnackStore = _module.useSnackStore;
|
|
27
26
|
export const useConfirmStore = _module.useConfirmStore;
|
|
@@ -31,17 +30,17 @@ export const useFormFromSchema = _module.useFormFromSchema;
|
|
|
31
30
|
export const useFormDraft = _module.useFormDraft;
|
|
32
31
|
export const useFocusMode = _module.useFocusMode;
|
|
33
32
|
export const useUnsavedChangesGuard = _module.useUnsavedChangesGuard;
|
|
34
|
-
export const
|
|
35
|
-
export const
|
|
36
|
-
export const whenNot = _module.whenNot;
|
|
37
|
-
export const matchesField = _module.matchesField;
|
|
38
|
-
export const isOneOf = _module.isOneOf;
|
|
33
|
+
export const greaterThan = _module.greaterThan;
|
|
34
|
+
export const isEmpty = _module.isEmpty;
|
|
39
35
|
export const isNoneOf = _module.isNoneOf;
|
|
40
36
|
export const isNotEmpty = _module.isNotEmpty;
|
|
41
|
-
export const
|
|
42
|
-
export const greaterThan = _module.greaterThan;
|
|
37
|
+
export const isOneOf = _module.isOneOf;
|
|
43
38
|
export const lessThan = _module.lessThan;
|
|
44
39
|
export const matches = _module.matches;
|
|
40
|
+
export const matchesField = _module.matchesField;
|
|
41
|
+
export const when = _module.when;
|
|
42
|
+
export const whenAny = _module.whenAny;
|
|
43
|
+
export const whenNot = _module.whenNot;
|
|
45
44
|
export const flattenFieldGroups = _module.flattenFieldGroups;
|
|
46
45
|
export const KnownFieldType = _module.KnownFieldType;
|
|
47
46
|
export const deepMerge = _module.deepMerge;
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mapomodule",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
4
|
"description": "Mapo meta-package: registers and re-exports all @mapomodule/* modules",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"@iconify-json/lucide": "^1.2.0",
|
|
47
47
|
"@mapomodule/core": "2.0.0-beta.1",
|
|
48
48
|
"@mapomodule/form": "2.0.0-beta.1",
|
|
49
|
-
"@mapomodule/i18n": "workspace:*",
|
|
50
49
|
"@mapomodule/store": "2.0.0-beta.1",
|
|
51
50
|
"@mapomodule/uikit": "2.0.0-beta.1",
|
|
52
51
|
"@mapomodule/utils": "2.0.0-beta.1",
|