mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 20:49:53 +08:00
Merge branch 'next' into v5-site-upgrade
This commit is contained in:
commit
0d1b7019a5
7
components/menu/demo/menu-v4.md
Normal file
7
components/menu/demo/menu-v4.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
## zh-CN
|
||||||
|
|
||||||
|
V4 样式的 Menu 组件。
|
||||||
|
|
||||||
|
## en-US
|
||||||
|
|
||||||
|
Menu with v4 style.
|
91
components/menu/demo/menu-v4.tsx
Normal file
91
components/menu/demo/menu-v4.tsx
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
import React, { useState } from 'react';
|
||||||
|
import {
|
||||||
|
AppstoreOutlined,
|
||||||
|
CalendarOutlined,
|
||||||
|
LinkOutlined,
|
||||||
|
MailOutlined,
|
||||||
|
SettingOutlined,
|
||||||
|
} from '@ant-design/icons';
|
||||||
|
import { Menu, Switch, ConfigProvider } from 'antd';
|
||||||
|
import type { MenuProps } from 'antd/es/menu';
|
||||||
|
|
||||||
|
type MenuItem = Required<MenuProps>['items'][number];
|
||||||
|
|
||||||
|
function getItem(
|
||||||
|
label: React.ReactNode,
|
||||||
|
key?: React.Key | null,
|
||||||
|
icon?: React.ReactNode,
|
||||||
|
children?: MenuItem[],
|
||||||
|
): MenuItem {
|
||||||
|
return {
|
||||||
|
key,
|
||||||
|
icon,
|
||||||
|
children,
|
||||||
|
label,
|
||||||
|
} as MenuItem;
|
||||||
|
}
|
||||||
|
|
||||||
|
const items: MenuItem[] = [
|
||||||
|
getItem('Navigation One', '1', <MailOutlined />),
|
||||||
|
getItem('Navigation Two', '2', <CalendarOutlined />),
|
||||||
|
getItem('Navigation Two', 'sub1', <AppstoreOutlined />, [
|
||||||
|
getItem('Option 3', '3'),
|
||||||
|
getItem('Option 4', '4'),
|
||||||
|
getItem('Submenu', 'sub1-2', null, [getItem('Option 5', '5'), getItem('Option 6', '6')]),
|
||||||
|
]),
|
||||||
|
getItem('Navigation Three', 'sub2', <SettingOutlined />, [
|
||||||
|
getItem('Option 7', '7'),
|
||||||
|
getItem('Option 8', '8'),
|
||||||
|
getItem('Option 9', '9'),
|
||||||
|
getItem('Option 10', '10'),
|
||||||
|
]),
|
||||||
|
getItem(
|
||||||
|
<a href="https://ant.design" target="_blank" rel="noopener noreferrer">
|
||||||
|
Ant Design
|
||||||
|
</a>,
|
||||||
|
'link',
|
||||||
|
<LinkOutlined />,
|
||||||
|
),
|
||||||
|
];
|
||||||
|
|
||||||
|
const App: React.FC = () => {
|
||||||
|
const [mode, setMode] = useState<'vertical' | 'inline'>('inline');
|
||||||
|
|
||||||
|
const changeMode = (value: boolean) => {
|
||||||
|
setMode(value ? 'vertical' : 'inline');
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Switch onChange={changeMode} /> Change Mode
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
<ConfigProvider
|
||||||
|
theme={{
|
||||||
|
components: {
|
||||||
|
Menu: {
|
||||||
|
radiusItem: 0,
|
||||||
|
radiusSubMenuItem: 0,
|
||||||
|
colorItemTextHover: '#1890ff',
|
||||||
|
colorItemTextSelected: '#1890ff',
|
||||||
|
colorItemBgSelected: '#e6f7ff',
|
||||||
|
colorActiveBarWidth: 3,
|
||||||
|
itemMarginInline: 0,
|
||||||
|
colorItemBgHover: 'transparent',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Menu
|
||||||
|
style={{ width: 256 }}
|
||||||
|
defaultSelectedKeys={['1']}
|
||||||
|
defaultOpenKeys={['sub1']}
|
||||||
|
mode={mode}
|
||||||
|
items={items}
|
||||||
|
/>
|
||||||
|
</ConfigProvider>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default App;
|
@ -58,7 +58,7 @@ const App: React.FC = () => {
|
|||||||
<Menu
|
<Menu
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
style={{ width: 256 }}
|
style={{ width: 256 }}
|
||||||
defaultOpenKeys={['sub1']}
|
openKeys={['sub1']}
|
||||||
selectedKeys={[current]}
|
selectedKeys={[current]}
|
||||||
mode="vertical"
|
mode="vertical"
|
||||||
theme="dark"
|
theme="dark"
|
||||||
|
@ -62,6 +62,7 @@ The legacy demo code for version `<4.20.0` could be found at [https://github.com
|
|||||||
<code src="./demo/submenu-theme.tsx">Sub-menu theme</code>
|
<code src="./demo/submenu-theme.tsx">Sub-menu theme</code>
|
||||||
<code src="./demo/switch-mode.tsx">Switch the menu type</code>
|
<code src="./demo/switch-mode.tsx">Switch the menu type</code>
|
||||||
<code src="./demo/style-debug.tsx">Style debug</code>
|
<code src="./demo/style-debug.tsx">Style debug</code>
|
||||||
|
<code src="./demo/menu-v4.tsx">V4 Menu</code>
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
|
@ -63,6 +63,7 @@ return <Menu items={items} />;
|
|||||||
<code src="./demo/submenu-theme.tsx">子菜单主题</code>
|
<code src="./demo/submenu-theme.tsx">子菜单主题</code>
|
||||||
<code src="./demo/switch-mode.tsx">切换菜单类型</code>
|
<code src="./demo/switch-mode.tsx">切换菜单类型</code>
|
||||||
<code src="./demo/style-debug.tsx">Style debug</code>
|
<code src="./demo/style-debug.tsx">Style debug</code>
|
||||||
|
<code src="./demo/menu-v4.tsx">V4 Menu</code>
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
|
@ -18,12 +18,15 @@ export interface ComponentToken {
|
|||||||
|
|
||||||
// radius
|
// radius
|
||||||
radiusItem: number;
|
radiusItem: number;
|
||||||
|
radiusSubMenuItem: number;
|
||||||
|
|
||||||
// Item Text
|
// Item Text
|
||||||
// > Default
|
// > Default
|
||||||
colorItemText: string;
|
colorItemText: string;
|
||||||
colorItemTextHover: string;
|
colorItemTextHover: string;
|
||||||
|
colorItemTextHoverHorizontal: string;
|
||||||
colorItemTextSelected: string;
|
colorItemTextSelected: string;
|
||||||
|
colorItemTextSelectedHorizontal: string;
|
||||||
|
|
||||||
// > Disabled
|
// > Disabled
|
||||||
colorItemTextDisabled: string;
|
colorItemTextDisabled: string;
|
||||||
@ -37,6 +40,7 @@ export interface ComponentToken {
|
|||||||
|
|
||||||
// Item Bg
|
// Item Bg
|
||||||
colorItemBg: string;
|
colorItemBg: string;
|
||||||
|
colorItemBgHover: string;
|
||||||
colorSubItemBg: string;
|
colorSubItemBg: string;
|
||||||
|
|
||||||
// > Default
|
// > Default
|
||||||
@ -48,6 +52,8 @@ export interface ComponentToken {
|
|||||||
colorActiveBarWidth: number;
|
colorActiveBarWidth: number;
|
||||||
colorActiveBarHeight: number;
|
colorActiveBarHeight: number;
|
||||||
colorActiveBarBorderSize: number;
|
colorActiveBarBorderSize: number;
|
||||||
|
|
||||||
|
itemMarginInline: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface MenuToken extends FullToken<'Menu'> {
|
export interface MenuToken extends FullToken<'Menu'> {
|
||||||
@ -78,6 +84,8 @@ const getBaseStyle: GenerateStyle<MenuToken> = token => {
|
|||||||
iconCls,
|
iconCls,
|
||||||
zIndexPopup,
|
zIndexPopup,
|
||||||
radiusBase,
|
radiusBase,
|
||||||
|
radiusLG,
|
||||||
|
radiusSubMenuItem,
|
||||||
menuArrowSize,
|
menuArrowSize,
|
||||||
controlHeightSM,
|
controlHeightSM,
|
||||||
menuArrowOffset,
|
menuArrowOffset,
|
||||||
@ -132,7 +140,7 @@ const getBaseStyle: GenerateStyle<MenuToken> = token => {
|
|||||||
flex: 'none',
|
flex: 'none',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[`${componentCls}-item,${componentCls}-submenu,`]: {
|
[`${componentCls}-item, ${componentCls}-submenu`]: {
|
||||||
borderRadius: token.radiusItem,
|
borderRadius: token.radiusItem,
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -279,7 +287,7 @@ const getBaseStyle: GenerateStyle<MenuToken> = token => {
|
|||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
zIndex: zIndexPopup,
|
zIndex: zIndexPopup,
|
||||||
background: 'transparent',
|
background: 'transparent',
|
||||||
borderRadius: radiusBase,
|
borderRadius: radiusLG,
|
||||||
boxShadow: 'none',
|
boxShadow: 'none',
|
||||||
transformOrigin: '0 0',
|
transformOrigin: '0 0',
|
||||||
|
|
||||||
@ -302,7 +310,11 @@ const getBaseStyle: GenerateStyle<MenuToken> = token => {
|
|||||||
},
|
},
|
||||||
|
|
||||||
[`> ${componentCls}`]: {
|
[`> ${componentCls}`]: {
|
||||||
borderRadius: radiusBase,
|
borderRadius: radiusLG,
|
||||||
|
|
||||||
|
[`> ${componentCls}-item`]: {
|
||||||
|
borderRadius: radiusSubMenuItem,
|
||||||
|
},
|
||||||
|
|
||||||
[`${componentCls}-submenu-title::after`]: {
|
[`${componentCls}-submenu-title::after`]: {
|
||||||
transition: `transform ${motionDurationSlow} ${motionEaseInOut}`,
|
transition: `transform ${motionDurationSlow} ${motionEaseInOut}`,
|
||||||
@ -480,25 +492,31 @@ export default (prefixCls: string, injectStyle: boolean): UseComponentStyleResul
|
|||||||
colorTextDescription,
|
colorTextDescription,
|
||||||
colorBgContainer,
|
colorBgContainer,
|
||||||
colorFillAlter,
|
colorFillAlter,
|
||||||
controlItemBgActive,
|
colorFillContent,
|
||||||
lineWidth,
|
lineWidth,
|
||||||
lineWidthBold,
|
lineWidthBold,
|
||||||
|
controlItemBgActiveHover,
|
||||||
|
colorBgTextHover,
|
||||||
} = token;
|
} = token;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
dropdownWidth: 160,
|
dropdownWidth: 160,
|
||||||
zIndexPopup: token.zIndexPopupBase + 50,
|
zIndexPopup: token.zIndexPopupBase + 50,
|
||||||
radiusItem: 0,
|
radiusItem: token.radiusLG,
|
||||||
|
radiusSubMenuItem: token.radiusSM,
|
||||||
colorItemText: colorText,
|
colorItemText: colorText,
|
||||||
colorItemTextHover: colorPrimary,
|
colorItemTextHover: colorText,
|
||||||
|
colorItemTextHoverHorizontal: colorPrimary,
|
||||||
colorGroupTitle: colorTextDescription,
|
colorGroupTitle: colorTextDescription,
|
||||||
colorItemTextSelected: colorPrimary,
|
colorItemTextSelected: colorText,
|
||||||
|
colorItemTextSelectedHorizontal: colorPrimary,
|
||||||
colorItemBg: colorBgContainer,
|
colorItemBg: colorBgContainer,
|
||||||
|
colorItemBgHover: colorBgTextHover,
|
||||||
|
colorItemBgActive: colorFillContent,
|
||||||
colorSubItemBg: colorFillAlter,
|
colorSubItemBg: colorFillAlter,
|
||||||
colorItemBgActive: controlItemBgActive,
|
colorItemBgSelected: controlItemBgActiveHover,
|
||||||
colorItemBgSelected: controlItemBgActive,
|
|
||||||
colorItemBgSelectedHorizontal: 'transparent',
|
colorItemBgSelectedHorizontal: 'transparent',
|
||||||
colorActiveBarWidth: lineWidthBold + lineWidth,
|
colorActiveBarWidth: 0,
|
||||||
colorActiveBarHeight: lineWidthBold,
|
colorActiveBarHeight: lineWidthBold,
|
||||||
colorActiveBarBorderSize: lineWidth,
|
colorActiveBarBorderSize: lineWidth,
|
||||||
|
|
||||||
@ -511,6 +529,8 @@ export default (prefixCls: string, injectStyle: boolean): UseComponentStyleResul
|
|||||||
colorDangerItemTextSelected: colorError,
|
colorDangerItemTextSelected: colorError,
|
||||||
colorDangerItemBgActive: colorErrorBg,
|
colorDangerItemBgActive: colorErrorBg,
|
||||||
colorDangerItemBgSelected: colorErrorBg,
|
colorDangerItemBgSelected: colorErrorBg,
|
||||||
|
|
||||||
|
itemMarginInline: token.marginXXS,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
@ -11,10 +11,10 @@ const getThemeStyle = (token: MenuToken, themeSuffix: string): CSSInterpolation
|
|||||||
componentCls,
|
componentCls,
|
||||||
colorItemText,
|
colorItemText,
|
||||||
colorItemTextSelected,
|
colorItemTextSelected,
|
||||||
|
colorItemTextSelectedHorizontal,
|
||||||
colorGroupTitle,
|
colorGroupTitle,
|
||||||
colorItemBg,
|
colorItemBg,
|
||||||
colorSubItemBg,
|
colorSubItemBg,
|
||||||
colorItemBgActive,
|
|
||||||
colorItemBgSelectedHorizontal,
|
colorItemBgSelectedHorizontal,
|
||||||
colorItemBgSelected,
|
colorItemBgSelected,
|
||||||
colorActiveBarHeight,
|
colorActiveBarHeight,
|
||||||
@ -24,10 +24,12 @@ const getThemeStyle = (token: MenuToken, themeSuffix: string): CSSInterpolation
|
|||||||
motionEaseInOut,
|
motionEaseInOut,
|
||||||
motionEaseOut,
|
motionEaseOut,
|
||||||
menuItemPaddingInline,
|
menuItemPaddingInline,
|
||||||
|
itemMarginInline,
|
||||||
motionDurationFast,
|
motionDurationFast,
|
||||||
colorItemTextHover,
|
colorItemTextHover,
|
||||||
lineType,
|
lineType,
|
||||||
colorSplit,
|
colorSplit,
|
||||||
|
colorItemBgActive,
|
||||||
|
|
||||||
// Disabled
|
// Disabled
|
||||||
colorItemTextDisabled,
|
colorItemTextDisabled,
|
||||||
@ -38,6 +40,10 @@ const getThemeStyle = (token: MenuToken, themeSuffix: string): CSSInterpolation
|
|||||||
colorDangerItemTextSelected,
|
colorDangerItemTextSelected,
|
||||||
colorDangerItemBgActive,
|
colorDangerItemBgActive,
|
||||||
colorDangerItemBgSelected,
|
colorDangerItemBgSelected,
|
||||||
|
|
||||||
|
radiusItem,
|
||||||
|
|
||||||
|
colorItemBgHover,
|
||||||
} = token;
|
} = token;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@ -72,9 +78,54 @@ const getThemeStyle = (token: MenuToken, themeSuffix: string): CSSInterpolation
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Active
|
[`&:not(${componentCls}-horizontal)`]: {
|
||||||
[`${componentCls}-item:active, ${componentCls}-submenu-title:active`]: {
|
[`${componentCls}-item:not(${componentCls}-item-selected)`]: {
|
||||||
background: colorItemBgActive,
|
'&:hover': {
|
||||||
|
backgroundColor: colorItemBgHover,
|
||||||
|
},
|
||||||
|
|
||||||
|
'&:active::before': {
|
||||||
|
content: '""',
|
||||||
|
position: 'absolute',
|
||||||
|
insetInlineStart: 0,
|
||||||
|
top: 0,
|
||||||
|
width: `100%`,
|
||||||
|
height: '100%',
|
||||||
|
flex: 1,
|
||||||
|
borderRadius: radiusItem,
|
||||||
|
backgroundColor: colorItemBgActive,
|
||||||
|
transition: `background-color ${motionDurationFast}`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[`${componentCls}-submenu-title`]: {
|
||||||
|
'&::before': {
|
||||||
|
content: '""',
|
||||||
|
position: 'absolute',
|
||||||
|
insetInlineStart: itemMarginInline,
|
||||||
|
top: 0,
|
||||||
|
width: `calc(100% - ${itemMarginInline * 2}px)`,
|
||||||
|
height: '100%',
|
||||||
|
borderRadius: radiusItem,
|
||||||
|
backgroundColor: 'transparent',
|
||||||
|
transition: `background-color ${motionDurationFast}`,
|
||||||
|
},
|
||||||
|
|
||||||
|
'&:hover::before': {
|
||||||
|
backgroundColor: colorItemBgHover,
|
||||||
|
},
|
||||||
|
|
||||||
|
'&:active::after': {
|
||||||
|
content: '""',
|
||||||
|
position: 'absolute',
|
||||||
|
insetInlineStart: itemMarginInline,
|
||||||
|
top: 0,
|
||||||
|
width: `calc(100% - ${itemMarginInline * 2}px)`,
|
||||||
|
height: '100%',
|
||||||
|
borderRadius: radiusItem,
|
||||||
|
backgroundColor: colorItemBgActive,
|
||||||
|
transition: `background-color ${motionDurationFast}`,
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Danger - only Item has
|
// Danger - only Item has
|
||||||
@ -152,18 +203,18 @@ const getThemeStyle = (token: MenuToken, themeSuffix: string): CSSInterpolation
|
|||||||
},
|
},
|
||||||
|
|
||||||
[`&:hover, &-active, &-open`]: {
|
[`&:hover, &-active, &-open`]: {
|
||||||
color: colorItemTextSelected,
|
color: colorItemTextSelectedHorizontal,
|
||||||
'&::after': {
|
'&::after': {
|
||||||
borderWidth: `${colorActiveBarHeight}px`,
|
borderWidth: `${colorActiveBarHeight}px`,
|
||||||
borderBottomColor: colorItemTextSelected,
|
borderBottomColor: colorItemTextSelectedHorizontal,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[`&-selected`]: {
|
[`&-selected`]: {
|
||||||
color: colorItemTextSelected,
|
color: colorItemTextSelectedHorizontal,
|
||||||
backgroundColor: colorItemBgSelectedHorizontal,
|
backgroundColor: colorItemBgSelectedHorizontal,
|
||||||
'&::after': {
|
'&::after': {
|
||||||
borderWidth: `${colorActiveBarHeight}px`,
|
borderWidth: `${colorActiveBarHeight}px`,
|
||||||
borderBottomColor: colorItemTextSelected,
|
borderBottomColor: colorItemTextSelectedHorizontal,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -185,11 +236,12 @@ const getThemeStyle = (token: MenuToken, themeSuffix: string): CSSInterpolation
|
|||||||
},
|
},
|
||||||
|
|
||||||
// Item
|
// Item
|
||||||
[`${componentCls}-item, ${componentCls}-submenu-title`]: colorActiveBarBorderSize
|
[`${componentCls}-item, ${componentCls}-submenu-title`]:
|
||||||
? {
|
colorActiveBarBorderSize && colorActiveBarWidth
|
||||||
width: `calc(100% + ${colorActiveBarBorderSize}px)`,
|
? {
|
||||||
}
|
width: `calc(100% + ${colorActiveBarBorderSize}px)`,
|
||||||
: {},
|
}
|
||||||
|
: {},
|
||||||
|
|
||||||
[`${componentCls}-item`]: {
|
[`${componentCls}-item`]: {
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
|
@ -3,8 +3,15 @@ import type { MenuToken } from '.';
|
|||||||
import type { GenerateStyle } from '../../theme';
|
import type { GenerateStyle } from '../../theme';
|
||||||
|
|
||||||
const getVerticalInlineStyle: GenerateStyle<MenuToken, CSSObject> = token => {
|
const getVerticalInlineStyle: GenerateStyle<MenuToken, CSSObject> = token => {
|
||||||
const { componentCls, menuItemHeight, menuItemMarginInline, padding, menuArrowSize, fontSize } =
|
const {
|
||||||
token;
|
componentCls,
|
||||||
|
menuItemHeight,
|
||||||
|
menuItemMarginInline,
|
||||||
|
itemMarginInline,
|
||||||
|
padding,
|
||||||
|
menuArrowSize,
|
||||||
|
fontSize,
|
||||||
|
} = token;
|
||||||
|
|
||||||
const paddingWithArrow = menuArrowSize + fontSize;
|
const paddingWithArrow = menuArrowSize + fontSize;
|
||||||
|
|
||||||
@ -16,12 +23,21 @@ const getVerticalInlineStyle: GenerateStyle<MenuToken, CSSObject> = token => {
|
|||||||
[`${componentCls}-item, ${componentCls}-submenu-title`]: {
|
[`${componentCls}-item, ${componentCls}-submenu-title`]: {
|
||||||
height: menuItemHeight,
|
height: menuItemHeight,
|
||||||
lineHeight: `${menuItemHeight}px`,
|
lineHeight: `${menuItemHeight}px`,
|
||||||
marginBlock: menuItemMarginInline,
|
|
||||||
paddingInline: padding,
|
paddingInline: padding,
|
||||||
overflow: 'hidden',
|
overflow: 'hidden',
|
||||||
textOverflow: 'ellipsis',
|
textOverflow: 'ellipsis',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
[`${componentCls}-item`]: {
|
||||||
|
marginInline: itemMarginInline,
|
||||||
|
marginBlock: menuItemMarginInline,
|
||||||
|
width: `calc(100% - ${itemMarginInline * 2}px)`,
|
||||||
|
},
|
||||||
|
|
||||||
|
[`${componentCls}-submenu-title`]: {
|
||||||
|
marginBlock: menuItemMarginInline,
|
||||||
|
},
|
||||||
|
|
||||||
// disable margin collapsed
|
// disable margin collapsed
|
||||||
[`${componentCls}-submenu`]: {
|
[`${componentCls}-submenu`]: {
|
||||||
paddingBottom: 0.02,
|
paddingBottom: 0.02,
|
||||||
|
@ -9,8 +9,7 @@ const path = require('path');
|
|||||||
|
|
||||||
const tmpFolder = `~demo`;
|
const tmpFolder = `~demo`;
|
||||||
|
|
||||||
glob('components/*/demo/*', (er, files) => {
|
glob('components/**/*.md', (er, files) => {
|
||||||
// console.log(files);
|
|
||||||
fs.ensureDirSync(tmpFolder);
|
fs.ensureDirSync(tmpFolder);
|
||||||
fs.emptyDirSync(tmpFolder);
|
fs.emptyDirSync(tmpFolder);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user