Skip to content

Commit df45fec

Browse files
committed
fix(configprovider): change Locale path and remove sass_binary_site
1 parent 7ad2a55 commit df45fec

File tree

12 files changed

+12
-20
lines changed

12 files changed

+12
-20
lines changed

.yarnrc

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
registry "https://registry.yarnpkg.com"
22

3-
sass_binary_site "https://npm.taobao.org/mirrors/node-sass/"

src/components/chromeDownload/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import React from 'react';
22
import classNames from 'classnames';
33

44
import utils from '../utils';
5-
import useLocale from '../locale/useLocale';
6-
import { Locale } from '../configProvider';
5+
import useLocale, { Locale } from '../locale/useLocale';
6+
77
const prefixCls = 'dtc-chrome';
88

99
interface ChromeDownloadProps {

src/components/copyIcon/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import * as React from 'react';
22
import { Tooltip, message } from 'antd';
33
import { CopyOutlined } from '@ant-design/icons';
4-
import useLocale from '../locale/useLocale';
5-
import { Locale } from '../configProvider';
4+
import useLocale, { Locale } from '../locale/useLocale';
65

76
export interface CopyIconProps {
87
text: string;

src/components/editCell/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import React from 'react';
22
import { Input } from 'antd';
33
import EllipsisText from '../ellipsisText';
44
import classNames from 'classnames';
5-
import { Locale } from '../configProvider';
6-
import useLocale from '../locale/useLocale';
5+
import useLocale, { Locale } from '../locale/useLocale';
76

87
type EditType = string | number;
98
export interface EditCellProps {

src/components/editInput/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React from 'react';
22
import { Input, message } from 'antd';
3-
import { Locale } from '../configProvider';
4-
import useLocale from '../locale/useLocale';
3+
import useLocale, { Locale } from '../locale/useLocale';
54
export interface EditInputProps {
65
value?: string | number;
76
onChange?: (e) => void;

src/components/fullscreen/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import { Button } from 'antd';
33

44
import MyIcon from './icon';
55
import KeyEventListener from '../keyEventListener';
6-
import { Locale } from '../configProvider';
7-
import useLocale from '../locale/useLocale';
6+
import useLocale, { Locale } from '../locale/useLocale';
87

98
const { KeyCombiner } = KeyEventListener;
109
declare let document: any;

src/components/globalLoading/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import classNames from 'classnames';
22
import React from 'react';
3-
import { Locale } from '../configProvider';
4-
import useLocale from '../locale/useLocale';
3+
import useLocale, { Locale } from '../locale/useLocale';
54

65
export interface GlobalLoadingProps {
76
className?: string;

src/components/goBack/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Locale } from '../configProvider';
1+
import { Locale } from '../locale/useLocale';
22
import GoBack from './goBack';
33
import GoBackButton from './goBackButton';
44

src/components/locale/en-US.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Locale } from '../configProvider';
1+
import { Locale } from './useLocale';
22

33
const localeValues: Locale = {
44
locale: 'zh-CN',

src/components/locale/zh-CN.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Locale } from '../configProvider';
1+
import { Locale } from './useLocale';
22

33
const localeValues: Locale = {
44
locale: 'zh-CN',

src/components/searchModal/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import React from 'react';
22

33
import { Modal, AutoComplete, Input, Row, Col } from 'antd';
4-
import { Locale } from '../configProvider';
5-
import useLocale from '../locale/useLocale';
4+
import useLocale, { Locale } from '../locale/useLocale';
65

76
export interface SearchModalProps {
87
visible: boolean;

src/components/spreadSheet/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ import type { HotTableProps } from '@handsontable/react';
66
import classNames from 'classnames';
77
import 'handsontable/dist/handsontable.full.css';
88
import 'handsontable/languages/zh-CN.js';
9-
import useLocale from '../locale/useLocale';
10-
import { Locale } from '../configProvider';
9+
import useLocale, { Locale } from '../locale/useLocale';
1110

1211
type IOptions = HotTableProps & {
1312
/** 是否展示复制值以及列名 */

0 commit comments

Comments
 (0)