ronds-metadata 1.3.60 → 1.3.61

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  interface ISourceConfigProps {
3
- configType?: string;
3
+ configType: string;
4
+ http: any[];
4
5
  }
5
6
  declare const SourceConfig: (props: ISourceConfigProps) => React.JSX.Element;
6
7
  export default SourceConfig;
@@ -11,12 +11,13 @@ import _Select from "antd/es/select";
11
11
  import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
12
12
  import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
13
13
  import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
14
- import { tr } from '@/framework/locale';
14
+ import { tr } from 'ronds-metadata/src/framework/locale/index';
15
15
  import { LinkOutlined, UploadOutlined, PlusOutlined } from '@ant-design/icons';
16
16
  import React from 'react';
17
- import Editable from '@/comps/Editable';
17
+ import Editable from 'ronds-metadata/src/comps/Editable';
18
18
  var SourceConfig = function SourceConfig(props) {
19
- var configType = props.configType;
19
+ var configType = props.configType,
20
+ http = props.http;
20
21
  var isTarget = configType === 'target';
21
22
  var isSource = configType === 'source';
22
23
  var sourceOpts = isTarget ? [{
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "public": true,
3
3
  "name": "ronds-metadata",
4
- "version": "1.3.60",
4
+ "version": "1.3.61",
5
5
  "scripts": {
6
6
  "start": "dumi dev",
7
7
  "docs:build": "dumi build",