Browse Source

fix: file path error

pull/3067/head
tanjinzhou 4 years ago
parent
commit
016c711cf1
  1. 2
      antdv-demo
  2. 2
      components/form/Form.tsx
  3. 3
      components/form/FormItem.tsx

2
antdv-demo

@ -1 +1 @@
Subproject commit 68644e7953c739fe64bfbe458f158fcd1d924872
Subproject commit 281b50130fbf7eeff96985567952d2b1d7730da0

2
components/form/Form.tsx

@ -13,7 +13,7 @@ import isEqual from 'lodash-es/isEqual';
import scrollIntoView from 'scroll-into-view-if-needed';
import initDefaultProps from '../_util/props-util/initDefaultProps';
import { tuple, VueNode } from '../_util/type';
import { ColProps } from '../grid/col';
import { ColProps } from '../grid/Col';
import { InternalNamePath, NamePath, ValidateOptions } from './interface';
export type ValidationRule = {

3
components/form/FormItem.tsx

@ -4,7 +4,7 @@ import PropTypes from '../_util/vue-types';
import classNames from '../_util/classNames';
import { getTransitionProps, Transition } from '../_util/transition';
import Row from '../grid/Row';
import Col from '../grid/Col';
import Col, { ColProps } from '../grid/Col';
import hasProp, {
findDOMNode,
getComponent,
@ -25,7 +25,6 @@ import { getNamePath } from './utils/valueUtil';
import { toArray } from './utils/typeUtil';
import { warning } from '../vc-util/warning';
import find from 'lodash-es/find';
import { ColProps } from '../grid/col';
import { tuple, VueNode } from '../_util/type';
import { ValidateOptions } from './interface';

Loading…
Cancel
Save