@layers-app/shared 0.0.23 → 0.0.25
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/components/AnimationWrapper/index.d.ts +2 -1
- package/dist/components/AppContainer/components/DesktopNavbar.d.ts +1 -2
- package/dist/components/AppContainer/components/MenuUserDropdown.d.ts +2 -2
- package/dist/components/AppContainer/components/MobileNavbar.d.ts +1 -2
- package/dist/components/AppContainer/hooks/useAppContainer.d.ts +1 -1
- package/dist/components/AppContainer/types.d.ts +2 -0
- package/dist/components/AttachmentsGalleryModal/types.d.ts +5 -5
- package/dist/components/EmojiPicker/EmojiPanel.d.ts +2 -1
- package/dist/components/EmojiPicker/EmojiPicker.d.ts +2 -1
- package/dist/components/ErrorPage/components/Error403.d.ts +3 -0
- package/dist/components/ErrorPage/components/Error404.d.ts +2 -0
- package/dist/components/Logotype.d.ts +7 -0
- package/dist/components/NoData/NoData.d.ts +7 -3
- package/dist/components/PinModal/PinModal.d.ts +1 -0
- package/dist/components/PinModal/index.d.ts +2 -0
- package/dist/components/PinModal/slice.d.ts +20 -0
- package/dist/components/ProjectIcon/ProjectIcon.d.ts +7 -2
- package/dist/components/SearchFilters/types.d.ts +3 -5
- package/dist/components/SortableList/SortableList.d.ts +20 -0
- package/dist/components/SortableList/components/SortableItem/SortableItem.d.ts +11 -0
- package/dist/components/SortableList/components/SortableItem/index.d.ts +1 -0
- package/dist/components/SortableList/components/SortableOverlay/SortableOverlay.d.ts +5 -0
- package/dist/components/SortableList/components/SortableOverlay/index.d.ts +1 -0
- package/dist/components/SortableList/components/index.d.ts +2 -0
- package/dist/components/SortableList/index.d.ts +1 -0
- package/dist/components/ThemeIndicator/index.d.ts +4 -0
- package/dist/components/WorkspaceAvatar/WorkspaceAvatar.d.ts +3 -1
- package/dist/components/WorkspaceMenu/WorkspaceItem.d.ts +11 -0
- package/dist/components/WorkspaceMenu/WorkspaceMenu.d.ts +15 -3
- package/dist/helpers/generateLink.d.ts +6 -1
- package/dist/helpers/pickRandomIcon.d.ts +1 -0
- package/dist/hooks/useDateUtils.d.ts +9 -0
- package/dist/hooks/useMenu.d.ts +2 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +30517 -28085
- package/dist/index.umd.cjs +87 -86
- package/dist/store/aboutModal.d.ts +7 -0
- package/dist/store/timezoneStore.d.ts +16 -0
- package/dist/store/trashModal.d.ts +7 -0
- package/dist/store/workspacesOrder.d.ts +19 -0
- package/package.json +8 -8
|
@@ -3,6 +3,7 @@ import { MotionProps } from 'framer-motion';
|
|
|
3
3
|
interface AnimationWrapperProps extends MotionProps {
|
|
4
4
|
children: ReactNode;
|
|
5
5
|
animationProps?: MotionProps;
|
|
6
|
+
styles?: React.CSSProperties;
|
|
6
7
|
}
|
|
7
|
-
export declare const AnimationWrapper: ({ children, animationProps, }: AnimationWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const AnimationWrapper: ({ children, animationProps, styles, }: AnimationWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export {};
|
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
import { AppContainerProps } from '../types';
|
|
2
|
-
declare const DesktopNavbar: (props: Pick<AppContainerProps, 'navbar' | 'navbarTitle'>) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
export default DesktopNavbar;
|
|
2
|
+
export declare const DesktopNavbar: (props: Pick<AppContainerProps, 'navbar' | 'navbarTitle'>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -3,8 +3,8 @@ import { FloatingPosition } from '@mantine/core';
|
|
|
3
3
|
export type MenuUser = {
|
|
4
4
|
id: string;
|
|
5
5
|
avatar: string | null;
|
|
6
|
-
email
|
|
7
|
-
name: string;
|
|
6
|
+
email?: string | null;
|
|
7
|
+
name: string | null;
|
|
8
8
|
};
|
|
9
9
|
export type UserNotifications = {
|
|
10
10
|
createdAt: string;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
import { AppContainerProps } from '../types';
|
|
2
|
-
declare const MobileNavbar: (props: Pick<AppContainerProps, 'navbar'>) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
export default MobileNavbar;
|
|
2
|
+
export declare const MobileNavbar: (props: Pick<AppContainerProps, 'navbar'>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { AppContainerActionsStore, AppContainerDataStore } from '../types';
|
|
2
|
-
export declare const useAppContainer: ({ user, workspaceMenu, tools, userMenuItems, notifications, readNotificationsFunc, }: AppContainerDataStore & AppContainerActionsStore) => void;
|
|
2
|
+
export declare const useAppContainer: ({ user, workspaceMenu, tools, userMenuItems, notifications, isAnonym, readNotificationsFunc, publicMode, }: AppContainerDataStore & AppContainerActionsStore) => void;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export type IAttachment = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Url
|
|
2
|
+
id: string;
|
|
3
|
+
originalFileName?: string | null;
|
|
4
|
+
fileSize?: number;
|
|
5
|
+
contentType: string;
|
|
6
|
+
Url?: string;
|
|
7
7
|
};
|
|
8
8
|
export type AttachmentsGalleryModalProps = {
|
|
9
9
|
opened: boolean;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EmojiPickerProps } from './EmojiPicker';
|
|
2
|
-
export declare const EmojiPanel: ({ locales, onChange, onClose, }: Pick<EmojiPickerProps, 'locales' | 'value' | 'onChange'> & {
|
|
2
|
+
export declare const EmojiPanel: ({ locales, onChange, onClose, setRandomIcon, }: Pick<EmojiPickerProps, 'locales' | 'value' | 'onChange'> & {
|
|
3
3
|
onClose: () => void;
|
|
4
|
+
setRandomIcon: (icon: string) => void;
|
|
4
5
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -9,6 +9,7 @@ export type EmojiPickerProps = {
|
|
|
9
9
|
showIcons?: boolean;
|
|
10
10
|
showColors?: boolean;
|
|
11
11
|
showEmojis?: boolean;
|
|
12
|
+
defaultActiveTab?: string | null;
|
|
12
13
|
};
|
|
13
14
|
export type EmojiPickerLocales = {
|
|
14
15
|
emojis?: string;
|
|
@@ -19,4 +20,4 @@ export type EmojiPickerLocales = {
|
|
|
19
20
|
icons?: string;
|
|
20
21
|
emojiCategory?: Record<string, string>;
|
|
21
22
|
};
|
|
22
|
-
export declare const EmojiPicker: ({ value, children, onChange, position, popoverProps, showIcons, showColors, showEmojis, locales: _locales, }: PropsWithChildren<EmojiPickerProps>) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export declare const EmojiPicker: ({ value, children, onChange, position, popoverProps, showIcons, showColors, defaultActiveTab, showEmojis, locales: _locales, }: PropsWithChildren<EmojiPickerProps>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -12,6 +12,8 @@ export declare const Error404: ({ title, description, buttons, closeAction, ...p
|
|
|
12
12
|
})[] | undefined;
|
|
13
13
|
illustration?: string | undefined;
|
|
14
14
|
size?: number | undefined;
|
|
15
|
+
width?: number | undefined;
|
|
16
|
+
height?: number | undefined;
|
|
15
17
|
} & import('@mantine/core').StackProps & {
|
|
16
18
|
closeAction?: (() => void) | undefined;
|
|
17
19
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { FlexProps } from '@mantine/core';
|
|
2
|
+
import { default as LayersLogoIcon } from '../assets/layers-logo-icon.svg?react';
|
|
3
|
+
export declare const Logotype: ({ minified, isLink, ...props }: FlexProps & {
|
|
4
|
+
minified?: boolean;
|
|
5
|
+
isLink?: boolean;
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export { LayersLogoIcon };
|
|
@@ -9,11 +9,13 @@ export declare const illustrationMap: {
|
|
|
9
9
|
noTasks: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
10
10
|
noComments: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
11
11
|
noData: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
12
|
-
addDataR7: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
13
|
-
addDataLayers: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
14
12
|
emptyFolder: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
15
|
-
emptyBoard: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
16
13
|
noTaskResults: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
14
|
+
noSearchResults: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
15
|
+
noMembers: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
16
|
+
noGroups: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
17
|
+
noNotifications: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
18
|
+
noWorkspaces: FC<import('react').SVGProps<SVGSVGElement>>;
|
|
17
19
|
'404': FC<import('react').SVGProps<SVGSVGElement>>;
|
|
18
20
|
'500': FC<import('react').SVGProps<SVGSVGElement>>;
|
|
19
21
|
};
|
|
@@ -26,5 +28,7 @@ export type NoDataProps = {
|
|
|
26
28
|
buttons?: PolymorphicComponentProps<'button', ButtonProps>[];
|
|
27
29
|
illustration?: IllustrationType;
|
|
28
30
|
size?: number;
|
|
31
|
+
width?: number;
|
|
32
|
+
height?: number;
|
|
29
33
|
} & StackProps;
|
|
30
34
|
export declare const NoData: FC<NoDataProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const PinModal: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
interface PinModalState {
|
|
2
|
+
opened: boolean;
|
|
3
|
+
submitFunc: (pinCode: string, generatedCode: string, ...args: any) => void;
|
|
4
|
+
title: string;
|
|
5
|
+
description: string;
|
|
6
|
+
submitLabel: string;
|
|
7
|
+
hideGeneratedCode?: boolean;
|
|
8
|
+
pinLength?: number;
|
|
9
|
+
}
|
|
10
|
+
export declare const usePinModalStore: import('zustand').UseBoundStore<import('zustand').StoreApi<PinModalState>>;
|
|
11
|
+
export declare const openPinModal: (config: {
|
|
12
|
+
submitFunc: (pinCode: string, generatedCode: string, ...args: any) => void;
|
|
13
|
+
title: string;
|
|
14
|
+
description: string;
|
|
15
|
+
submitLabel: string;
|
|
16
|
+
hideGeneratedCode?: boolean;
|
|
17
|
+
pinLength?: number;
|
|
18
|
+
}) => void;
|
|
19
|
+
export declare const closePinModal: () => void;
|
|
20
|
+
export {};
|
|
@@ -13,6 +13,11 @@ export declare namespace IconEntity {
|
|
|
13
13
|
export declare const ProjectIcon: import('react').ForwardRefExoticComponent<{
|
|
14
14
|
icon?: string | null | undefined;
|
|
15
15
|
name?: string | null | undefined;
|
|
16
|
-
fallback?:
|
|
17
|
-
|
|
16
|
+
fallback?: ReactNode;
|
|
17
|
+
fallbackColorById?: string | undefined;
|
|
18
|
+
initials?: boolean | undefined;
|
|
19
|
+
} & Omit<AvatarProps, "name" | "color"> & {
|
|
20
|
+
size?: string | number | undefined;
|
|
21
|
+
textSize?: number | undefined;
|
|
22
|
+
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
18
23
|
export {};
|
|
@@ -6,14 +6,12 @@ export type SortFilter = {
|
|
|
6
6
|
};
|
|
7
7
|
};
|
|
8
8
|
export type RangeFilter = {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
lte?: number;
|
|
12
|
-
};
|
|
9
|
+
createdAtFrom: number;
|
|
10
|
+
createdAtTo: number;
|
|
13
11
|
};
|
|
14
12
|
export type SelectedFilter = {
|
|
15
13
|
sort: SortFilter[];
|
|
16
|
-
range: RangeFilter
|
|
14
|
+
range: RangeFilter | null;
|
|
17
15
|
type: FilterType;
|
|
18
16
|
};
|
|
19
17
|
export type setSelectedFilterType = (value: (prev: SelectedFilter) => SelectedFilter) => void;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { UniqueIdentifier } from '@dnd-kit/core';
|
|
3
|
+
import { SortableItem } from './components';
|
|
4
|
+
interface BaseItem {
|
|
5
|
+
id: UniqueIdentifier;
|
|
6
|
+
}
|
|
7
|
+
interface Props<T extends BaseItem> {
|
|
8
|
+
items: T[];
|
|
9
|
+
onChange(items: T[]): void;
|
|
10
|
+
renderItem(item: T, index: number): ReactNode;
|
|
11
|
+
onDragStart?(): void;
|
|
12
|
+
onDragEnd?(): void;
|
|
13
|
+
gap?: number;
|
|
14
|
+
}
|
|
15
|
+
export declare function SortableList<T extends BaseItem>({ items, onChange, renderItem, onDragStart, onDragEnd, gap, }: Props<T>): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export declare namespace SortableList {
|
|
17
|
+
var Item: typeof SortableItem;
|
|
18
|
+
var DragHandle: typeof import("./components").DragHandle;
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
import { UniqueIdentifier } from '@dnd-kit/core';
|
|
3
|
+
import { IconProps } from '@tabler/icons-react';
|
|
4
|
+
interface Props {
|
|
5
|
+
id: UniqueIdentifier;
|
|
6
|
+
}
|
|
7
|
+
export declare function SortableItem({ children, id }: PropsWithChildren<Props>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function DragHandle({ iconProps }: {
|
|
9
|
+
iconProps?: IconProps;
|
|
10
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DragHandle, SortableItem } from './SortableItem.tsx';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SortableOverlay } from './SortableOverlay';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SortableList } from './SortableList';
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { AvatarProps } from '@mantine/core';
|
|
2
|
+
import { AvatarProps, IndicatorProps } from '@mantine/core';
|
|
3
3
|
import { MenuWorkspace } from '../WorkspaceMenu/WorkspaceMenu';
|
|
4
4
|
interface UserAvatarProps extends AvatarProps, Omit<React.ComponentPropsWithoutRef<'div'>, keyof AvatarProps> {
|
|
5
5
|
workspace?: MenuWorkspace | null;
|
|
6
|
+
isActiveIndicator?: boolean;
|
|
7
|
+
indicatorProps?: IndicatorProps;
|
|
6
8
|
}
|
|
7
9
|
export declare const WorkspaceAvatar: React.ForwardRefExoticComponent<UserAvatarProps & React.RefAttributes<HTMLDivElement>>;
|
|
8
10
|
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { MenuWorkspace, RightSectionProps } from './WorkspaceMenu';
|
|
3
|
+
interface WorkspaceItemProps<W extends MenuWorkspace = MenuWorkspace> {
|
|
4
|
+
RightSection?: FC<RightSectionProps>;
|
|
5
|
+
onClick?: (w: W) => void;
|
|
6
|
+
workspace: W;
|
|
7
|
+
active?: W | null;
|
|
8
|
+
setOpenedWorkspacesList?: (o: boolean) => void;
|
|
9
|
+
}
|
|
10
|
+
export declare const WorkspaceItem: ({ workspace, onClick, active, RightSection, setOpenedWorkspacesList, }: WorkspaceItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -1,16 +1,28 @@
|
|
|
1
|
-
import { PropsWithChildren } from 'react';
|
|
1
|
+
import { FC, PropsWithChildren } from 'react';
|
|
2
2
|
export type MenuWorkspace = {
|
|
3
3
|
workspaceId: string;
|
|
4
4
|
workspaceName: string;
|
|
5
5
|
workspaceIcon: string;
|
|
6
|
+
invitation?: string | null;
|
|
7
|
+
};
|
|
8
|
+
export type RightSectionProps = {
|
|
9
|
+
isActive: boolean;
|
|
10
|
+
workspace: MenuWorkspace;
|
|
11
|
+
isHovered?: boolean;
|
|
12
|
+
setOpenedWorkspacesList?: (o: boolean) => void;
|
|
6
13
|
};
|
|
7
14
|
export type WorkspaceMenuProps<W extends MenuWorkspace = MenuWorkspace> = PropsWithChildren<{
|
|
8
15
|
onCreate?: () => void;
|
|
9
|
-
onClick?: (w:
|
|
16
|
+
onClick?: (w: MenuWorkspace) => void;
|
|
10
17
|
items: W[];
|
|
11
18
|
active?: W | null;
|
|
12
19
|
settingsLink?: string;
|
|
13
20
|
membersLink?: string;
|
|
14
21
|
workspaceLink?: string;
|
|
22
|
+
canInvite?: boolean;
|
|
23
|
+
canEditWorkspace?: boolean;
|
|
24
|
+
isAnonym?: boolean;
|
|
25
|
+
publicMode?: boolean;
|
|
26
|
+
RightSection?: FC<RightSectionProps>;
|
|
15
27
|
}>;
|
|
16
|
-
export declare const WorkspaceMenu: <W extends MenuWorkspace>({ children, onCreate, onClick, active, items, settingsLink, membersLink, workspaceLink, }: WorkspaceMenuProps<W>) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
export declare const WorkspaceMenu: <W extends MenuWorkspace>({ children, onCreate, onClick, active, items, settingsLink, membersLink, workspaceLink, canInvite, canEditWorkspace, RightSection, isAnonym, publicMode, }: WorkspaceMenuProps<W>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
declare global {
|
|
2
|
+
interface Window {
|
|
3
|
+
publicMode?: boolean;
|
|
4
|
+
}
|
|
5
|
+
}
|
|
1
6
|
type PathParam<Path extends string> = Path extends `${infer L}/${infer R}` ? PathParam<L> | PathParam<R> : Path extends `:${infer Param}` ? Param : never;
|
|
2
|
-
export declare const generateLink: <Path extends string>(originPath: Path, params?: { [key in PathParam<Path>]: string | number | null; } | undefined
|
|
7
|
+
export declare const generateLink: <Path extends string>(originPath: Path, params?: { [key in PathParam<Path>]: string | number | null; } | undefined) => string;
|
|
3
8
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const pickRandomIcon: (setRandomIcon?: (icon: string) => void, onChange?: (icon: string) => void) => any;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FormatDistanceOptions, FormatDistanceToNowOptions } from 'date-fns';
|
|
2
|
+
export declare const useDateUtils: () => {
|
|
3
|
+
timezone: string | null;
|
|
4
|
+
formatDate: (date: Date | string, formatStr?: string) => string;
|
|
5
|
+
formatDateInTimezone: (date: Date | string, formatStr?: string) => string;
|
|
6
|
+
formatRelativeTime: (date: Date | string, options?: FormatDistanceToNowOptions) => string;
|
|
7
|
+
isSameDayWithTimezone: (date1: Date | string, date2: Date | string) => boolean;
|
|
8
|
+
formatDistanceWithTimezone: (date1: Date | string, date2: Date | string, options?: FormatDistanceOptions) => string;
|
|
9
|
+
};
|
package/dist/hooks/useMenu.d.ts
CHANGED
|
@@ -3,5 +3,7 @@ export declare const closeAppMenu: () => void;
|
|
|
3
3
|
export declare const setWithoutNavbar: (v: boolean) => void;
|
|
4
4
|
export declare const useMenu: () => {
|
|
5
5
|
isMobile: boolean | undefined;
|
|
6
|
+
isTablet: boolean | undefined;
|
|
7
|
+
isDesktop: boolean | undefined;
|
|
6
8
|
opened: boolean;
|
|
7
9
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export * from './components/WorkspaceAvatar/WorkspaceAvatar';
|
|
|
11
11
|
export * from './components/NavbarResizer/NavbarResizer';
|
|
12
12
|
export * from './components/AppContainer/components/MenuUserDropdown';
|
|
13
13
|
export * from './helpers/showNotifications';
|
|
14
|
+
export * from './helpers/pickRandomIcon.ts';
|
|
14
15
|
export * from './helpers/themeUtils';
|
|
15
16
|
export * from './helpers/combineStatuses';
|
|
16
17
|
export * from './helpers/download';
|
|
@@ -34,6 +35,8 @@ export * from './hooks/useOAuthErrorParams';
|
|
|
34
35
|
export * from './components/AppTour/index';
|
|
35
36
|
export * from './components/OnBoarding/index';
|
|
36
37
|
export * from './store/onboarding';
|
|
38
|
+
export * from './store/aboutModal.ts';
|
|
39
|
+
export * from './store/trashModal.ts';
|
|
37
40
|
export * from './components/NotFound/NoFound';
|
|
38
41
|
export * from './components/ErrorPage/index';
|
|
39
42
|
export * from './components/ErrorAlert/index';
|
|
@@ -56,3 +59,10 @@ export * from './components/AttachmentsGalleryModal/types';
|
|
|
56
59
|
export * from './components/ColorPicker/ColorPickerPopover';
|
|
57
60
|
export * from './components/AnimationWrapper/index';
|
|
58
61
|
export * from './constants';
|
|
62
|
+
export * from './components/Logotype.tsx';
|
|
63
|
+
export * from './components/SortableList';
|
|
64
|
+
export * from './store/workspacesOrder.ts';
|
|
65
|
+
export * from './store/timezoneStore.ts';
|
|
66
|
+
export * from './hooks/useDateUtils';
|
|
67
|
+
export * from './components/ThemeIndicator';
|
|
68
|
+
export * from './components/PinModal';
|