@layers-app/shared 0.0.40 → 0.0.41
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/{KanbanLayout-Cgno2syU.js → KanbanLayout-BUnjGOO7.js} +1 -1
- package/dist/components/FormViewer/hooks/useFormGlobalTheme.d.ts +1 -0
- package/dist/components/SearchFilters/components/{Date.d.ts → DateFilter.d.ts} +1 -1
- package/dist/helpers/dates.d.ts +1 -0
- package/dist/hooks/useMenu.d.ts +3 -3
- package/dist/{index-jQFbCQG3.js → index-Bo9kCsKS.js} +709 -276
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -2
- package/dist/index.umd.cjs +59 -59
- package/package.json +9 -9
- package/dist/components/OnBoarding/steps/AddMembers/AddMembers.d.ts +0 -2
|
@@ -11,7 +11,7 @@ import "@mantine/form";
|
|
|
11
11
|
import "@mantine/dropzone";
|
|
12
12
|
import "@mantine/notifications";
|
|
13
13
|
import "lodash-es";
|
|
14
|
-
import { u as useOnboardingState, S as StatusBadge } from "./index-
|
|
14
|
+
import { u as useOnboardingState, S as StatusBadge } from "./index-Bo9kCsKS.js";
|
|
15
15
|
import "react-dom";
|
|
16
16
|
import "draggable-ui";
|
|
17
17
|
import "@mantine/modals";
|
|
@@ -82,6 +82,7 @@ export declare const useFormGlobalTheme: ({ innerId }: {
|
|
|
82
82
|
} | undefined;
|
|
83
83
|
defaultRadius?: import('@mantine/core').MantineRadius | undefined;
|
|
84
84
|
spacing?: {
|
|
85
|
+
[x: number]: string | undefined;
|
|
85
86
|
[x: string & {}]: string | undefined;
|
|
86
87
|
sm?: string | undefined;
|
|
87
88
|
xs?: string | undefined;
|
|
@@ -3,5 +3,5 @@ interface IProps {
|
|
|
3
3
|
setSelectedFilter: (value: (prev: SelectedFilter) => SelectedFilter) => void;
|
|
4
4
|
selectedFilter?: SelectedFilter;
|
|
5
5
|
}
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const DateFilter: ({ setSelectedFilter, selectedFilter }: IProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const parseDate: (date: string | number | Date | null | undefined) => Date | null;
|
package/dist/hooks/useMenu.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ export declare const toggleAppMenu: () => void;
|
|
|
2
2
|
export declare const closeAppMenu: () => void;
|
|
3
3
|
export declare const setWithoutNavbar: (v: boolean) => unknown;
|
|
4
4
|
export declare const useMenu: () => {
|
|
5
|
-
isMobile: boolean
|
|
6
|
-
isTablet: boolean
|
|
7
|
-
isDesktop: boolean
|
|
5
|
+
isMobile: boolean;
|
|
6
|
+
isTablet: boolean;
|
|
7
|
+
isDesktop: boolean;
|
|
8
8
|
opened: boolean;
|
|
9
9
|
};
|