@max-ts/components 0.4.0 → 0.5.0
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/lib/components/Alert/Alert.d.ts +31 -0
- package/lib/components/Alert/index.d.ts +2 -0
- package/lib/components/Alert/styles.d.ts +13 -0
- package/lib/components/Alert/types.d.ts +1 -0
- package/lib/components/Avatar/Avatar.d.ts +3 -0
- package/lib/components/Avatar/index.d.ts +1 -0
- package/lib/components/Avatar/styles.d.ts +1 -0
- package/lib/components/ConfigProvider/ConfigProvider.d.ts +0 -2
- package/lib/components/Layout/Header/Header.d.ts +8 -0
- package/lib/components/Layout/Header/index.d.ts +1 -0
- package/lib/components/{DataGridOld/Head → Layout/Header}/styles.d.ts +2 -3
- package/lib/components/Layout/Layout.d.ts +13 -0
- package/lib/components/Layout/LayoutContext/LayoutContext.d.ts +6 -0
- package/lib/components/Layout/LayoutContext/index.d.ts +1 -0
- package/lib/components/Layout/Main/Main.d.ts +10 -0
- package/lib/components/Layout/Main/index.d.ts +1 -0
- package/lib/components/Layout/Main/styles.d.ts +1 -0
- package/lib/components/Layout/Sidebar/Sidebar.d.ts +26 -0
- package/lib/components/Layout/Sidebar/SidebarNav/SidebarNav.d.ts +5 -0
- package/lib/components/Layout/Sidebar/SidebarNav/index.d.ts +1 -0
- package/lib/components/Layout/Sidebar/SidebarNav/styles.d.ts +1 -0
- package/lib/components/Layout/Sidebar/Toggler/ToggleButton/ToggleButton.d.ts +5 -0
- package/lib/components/Layout/Sidebar/Toggler/ToggleButton/index.d.ts +1 -0
- package/lib/components/Layout/Sidebar/Toggler/ToggleButton/styles.d.ts +10 -0
- package/lib/components/Layout/Sidebar/Toggler/Toggler.d.ts +5 -0
- package/lib/components/Layout/Sidebar/Toggler/index.d.ts +1 -0
- package/lib/components/Layout/Sidebar/Toggler/styles.d.ts +12 -0
- package/lib/components/Layout/Sidebar/constants.d.ts +1 -0
- package/lib/components/Layout/Sidebar/index.d.ts +1 -0
- package/lib/components/Layout/Sidebar/styles.d.ts +6 -0
- package/lib/components/Layout/constants.d.ts +3 -0
- package/lib/components/Layout/hooks/index.d.ts +1 -0
- package/lib/components/Layout/hooks/useSidebar/index.d.ts +1 -0
- package/lib/components/Layout/hooks/useSidebar/useSidebar.d.ts +7 -0
- package/lib/components/Layout/index.d.ts +3 -0
- package/lib/components/Layout/styles.d.ts +5 -0
- package/lib/components/ListItemButton/ListItemButton.d.ts +1 -2
- package/lib/components/NavMenu/Item/ItemButton/styles.d.ts +0 -1
- package/lib/components/NavMenu/NavMenu.d.ts +2 -2
- package/lib/components/PageLayout/Aside/Aside.d.ts +6 -0
- package/lib/components/PageLayout/Aside/index.d.ts +1 -0
- package/lib/components/PageLayout/Aside/styles.d.ts +1 -0
- package/lib/components/PageLayout/Content/Content.d.ts +13 -0
- package/lib/components/PageLayout/Content/index.d.ts +1 -0
- package/lib/components/PageLayout/Content/styles.d.ts +5 -0
- package/lib/components/PageLayout/Footer/Footer.d.ts +6 -0
- package/lib/components/PageLayout/Footer/index.d.ts +1 -0
- package/lib/components/PageLayout/Footer/styles.d.ts +1 -0
- package/lib/components/PageLayout/Header/Header.d.ts +66 -0
- package/lib/components/PageLayout/Header/index.d.ts +1 -0
- package/lib/components/PageLayout/Header/styles.d.ts +45 -0
- package/lib/components/PageLayout/PageLayout.d.ts +12 -0
- package/lib/components/PageLayout/constants.d.ts +5 -0
- package/lib/components/PageLayout/index.d.ts +1 -0
- package/lib/components/PageLayout/styles.d.ts +1 -0
- package/lib/components/Product/Product.d.ts +6 -0
- package/lib/components/Product/index.d.ts +1 -0
- package/lib/components/Product/styles.d.ts +9 -0
- package/lib/components/Profile/MenuList/MenuList.d.ts +13 -0
- package/lib/components/Profile/MenuList/index.d.ts +1 -0
- package/lib/components/Profile/MenuList/styles.d.ts +12 -0
- package/lib/components/Profile/Profile.d.ts +50 -0
- package/lib/components/Profile/index.d.ts +1 -0
- package/lib/components/Profile/styles.d.ts +703 -0
- package/lib/components/SidebarButton/SidebarButton.d.ts +2 -0
- package/lib/components/SidebarButton/index.d.ts +1 -0
- package/lib/components/SidebarButton/styles.d.ts +11 -0
- package/lib/components/index.d.ts +7 -0
- package/lib/form/Form/Form.d.ts +45 -0
- package/lib/form/Form/index.d.ts +1 -0
- package/lib/form/FormAutocomplete/FormAutocomplete.d.ts +4 -0
- package/lib/form/FormAutocomplete/index.d.ts +1 -0
- package/lib/form/FormCheckbox/FormCheckbox.d.ts +7 -0
- package/lib/form/FormCheckbox/index.d.ts +2 -0
- package/lib/form/FormCheckbox/types.d.ts +4 -0
- package/lib/form/FormMaskField/FormMaskField.d.ts +4 -0
- package/lib/form/FormMaskField/index.d.ts +2 -0
- package/lib/form/FormMaskField/types.d.ts +4 -0
- package/lib/form/FormSelect/FormSelect.d.ts +7 -0
- package/lib/form/FormSelect/index.d.ts +1 -0
- package/lib/form/FormSubmitButton/FormSubmitButton.d.ts +6 -0
- package/lib/form/FormSubmitButton/index.d.ts +1 -0
- package/lib/form/FormTextField/FormTextField.d.ts +7 -0
- package/lib/form/FormTextField/index.d.ts +2 -0
- package/lib/form/FormTextField/types.d.ts +4 -0
- package/lib/form/external.d.ts +1 -0
- package/lib/form/hooks/index.d.ts +2 -0
- package/lib/form/hooks/useForm/index.d.ts +1 -0
- package/lib/form/hooks/useForm/useForm.d.ts +4 -0
- package/lib/form/hooks/useFormContext/index.d.ts +1 -0
- package/lib/form/index.d.ts +10 -0
- package/lib/form/types.d.ts +7 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.mjs +5538 -3423
- package/package.json +2 -1
- package/src/index.ts +1 -0
- package/lib/components/DataGridOld/Body/Body.d.ts +0 -13
- package/lib/components/DataGridOld/Body/index.d.ts +0 -1
- package/lib/components/DataGridOld/Body/styles.d.ts +0 -1
- package/lib/components/DataGridOld/Cell/Cell.d.ts +0 -7
- package/lib/components/DataGridOld/Cell/index.d.ts +0 -1
- package/lib/components/DataGridOld/Cell/styles.d.ts +0 -4
- package/lib/components/DataGridOld/DataGridOld.d.ts +0 -20
- package/lib/components/DataGridOld/Head/Head.d.ts +0 -7
- package/lib/components/DataGridOld/Head/index.d.ts +0 -1
- package/lib/components/DataGridOld/HeadCell/HeadCell.d.ts +0 -5
- package/lib/components/DataGridOld/HeadCell/index.d.ts +0 -1
- package/lib/components/DataGridOld/HeadCell/styles.d.ts +0 -3
- package/lib/components/DataGridOld/Row/Row.d.ts +0 -11
- package/lib/components/DataGridOld/Row/index.d.ts +0 -1
- package/lib/components/DataGridOld/Row/styles.d.ts +0 -5
- package/lib/components/DataGridOld/State/State.d.ts +0 -6
- package/lib/components/DataGridOld/State/index.d.ts +0 -1
- package/lib/components/DataGridOld/State/styles.d.ts +0 -1
- package/lib/components/DataGridOld/constants.d.ts +0 -1
- package/lib/components/DataGridOld/index.d.ts +0 -2
- package/lib/components/DataGridOld/styles.d.ts +0 -7
- package/lib/components/DataGridOld/types.d.ts +0 -15
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { AvatarProps, MenuProps } from '@mui/material';
|
|
2
|
+
import { FunctionComponent, PropsWithChildren, ReactElement, ReactNode } from 'react';
|
|
3
|
+
import { WithoutEmotionSpecific } from '../types';
|
|
4
|
+
export type ProfileMenuItemData = {
|
|
5
|
+
icon: ReactNode;
|
|
6
|
+
title: ReactNode;
|
|
7
|
+
onClick?: () => void;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* const renderItem: ProfileMenuItemData['render'] = ({ title, icon }) => (
|
|
11
|
+
* <MenuItem>
|
|
12
|
+
* <Typography variant="caption" color="primary">
|
|
13
|
+
* {title}
|
|
14
|
+
* </Typography>
|
|
15
|
+
* <IconButton variant="text">{icon}</IconButton>
|
|
16
|
+
* </MenuItem>
|
|
17
|
+
* );
|
|
18
|
+
*/
|
|
19
|
+
render?: FunctionComponent<Omit<ProfileMenuItemData, 'render'>>;
|
|
20
|
+
};
|
|
21
|
+
export type ProfileProps = {
|
|
22
|
+
/**
|
|
23
|
+
* Имя профиля
|
|
24
|
+
*/
|
|
25
|
+
displayName: string;
|
|
26
|
+
/**
|
|
27
|
+
* Дополнительная информация (например email или username)
|
|
28
|
+
*/
|
|
29
|
+
annotation?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Аватарка профиля
|
|
32
|
+
*/
|
|
33
|
+
avatar?: AvatarProps;
|
|
34
|
+
/**
|
|
35
|
+
* Кастомный рендер menu. Перекрывает menuList и exitButton
|
|
36
|
+
*/
|
|
37
|
+
menu?: (props: PropsWithChildren<WithoutEmotionSpecific<MenuProps>>) => ReactElement;
|
|
38
|
+
/**
|
|
39
|
+
* Рендер menu через массив данных. Перекрывает menu и может использоваться с exitButton
|
|
40
|
+
*/
|
|
41
|
+
menuList?: Array<ProfileMenuItemData>;
|
|
42
|
+
/**
|
|
43
|
+
* Отображение кнопки выхода и действие на нее
|
|
44
|
+
*/
|
|
45
|
+
exitButton?: {
|
|
46
|
+
onClick: () => void;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
export declare const Profile: (props: ProfileProps) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
+
export default Profile;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Profile';
|