Browse Source

Revert "fix: more types"

This reverts commit e063e1916d.
pull/12488/head
Wei Zhu 6 years ago
parent
commit
40001d8220
  1. 6
      components/layout/Sider.tsx
  2. 6
      site/theme/template/IconDisplay/index.tsx

6
components/layout/Sider.tsx

@ -134,8 +134,7 @@ class Sider extends React.Component<SiderProps, SiderState> {
componentDidMount() {
if (this.mql) {
const self = this;
this.mql.addListener(function() { self.responsiveHandler(this) });
this.mql.addListener(this.responsiveHandler);
this.responsiveHandler(this.mql);
}
@ -146,8 +145,7 @@ class Sider extends React.Component<SiderProps, SiderState> {
componentWillUnmount() {
if (this.mql) {
const self = this;
this.mql.removeListener(function() { self.responsiveHandler(this) });
this.mql.removeListener(this.responsiveHandler);
}
if (this.context.siderHook) {

6
site/theme/template/IconDisplay/index.tsx

@ -1,14 +1,16 @@
import * as React from 'react';
import { ThemeType } from '../../../../components/icon';
import { ThemeType, IconType } from '../../../../components/icon';
import manifest from '@ant-design/icons/lib/manifest';
import { ThemeType as ThemeFolderType } from '@ant-design/icons/lib/types';
import Category from './Category';
import { Radio, Icon } from 'antd';
import { Radio, Icon as AntdIcon } from 'antd';
import { RadioChangeEvent } from 'antd/lib/radio/interface';
import { FilledIcon, OutlinedIcon, TwoToneIcon } from './themeIcons';
import { categories, Categories, CategoriesKeys } from './fields';
import { injectIntl, InjectedIntlProps } from 'react-intl';
const Icon: IconType = AntdIcon as any;
interface IconDisplayProps extends InjectedIntlProps {
}

Loading…
Cancel
Save