Comparing version 1.3.3 to 1.3.4
@@ -93,2 +93,5 @@ "use strict"; | ||
} | ||
if (column.max) { | ||
params.maxLength = column.max; | ||
} | ||
//如果关联到其它字段,则设置联动事件 | ||
@@ -95,0 +98,0 @@ if (_.has(column, 'link')) { |
@@ -5,3 +5,3 @@ /// <reference types="react" /> | ||
/** | ||
* @public | ||
* @private | ||
*/ | ||
@@ -8,0 +8,0 @@ export declare enum MODE { |
@@ -27,3 +27,3 @@ "use strict"; | ||
/** | ||
* @public | ||
* @private | ||
*/ | ||
@@ -30,0 +30,0 @@ var MODE; |
declare const _default: {}; | ||
export default _default; | ||
export { default as MapChart } from './MapChart'; |
@@ -33,1 +33,3 @@ "use strict"; | ||
exports.default = {}; | ||
var MapChart_1 = require("./MapChart"); | ||
exports.MapChart = MapChart_1.default; |
@@ -38,2 +38,3 @@ /** | ||
export { Progress } from 'antd'; | ||
export { Radio } from 'antd'; | ||
export { Rate } from 'antd'; | ||
@@ -83,2 +84,1 @@ export { Select } from 'antd'; | ||
export { default as DropDownPanel } from './DropDown'; | ||
export { Radio } from 'antd'; |
@@ -75,37 +75,38 @@ "use strict"; | ||
exports.Progress = antd_34.Progress; | ||
// export { Radio } from 'antd'; | ||
var antd_35 = require("antd"); | ||
exports.Rate = antd_35.Rate; | ||
exports.Radio = antd_35.Radio; | ||
var antd_36 = require("antd"); | ||
exports.Select = antd_36.Select; | ||
exports.Rate = antd_36.Rate; | ||
var antd_37 = require("antd"); | ||
exports.Slider = antd_37.Slider; | ||
exports.Select = antd_37.Select; | ||
var antd_38 = require("antd"); | ||
exports.Spin = antd_38.Spin; | ||
exports.Slider = antd_38.Slider; | ||
var antd_39 = require("antd"); | ||
exports.Steps = antd_39.Steps; | ||
exports.Spin = antd_39.Spin; | ||
var antd_40 = require("antd"); | ||
exports.Switch = antd_40.Switch; | ||
exports.Steps = antd_40.Steps; | ||
var antd_41 = require("antd"); | ||
exports.Transfer = antd_41.Transfer; | ||
exports.Switch = antd_41.Switch; | ||
var antd_42 = require("antd"); | ||
exports.Tree = antd_42.Tree; | ||
exports.Transfer = antd_42.Transfer; | ||
var antd_43 = require("antd"); | ||
exports.TreeSelect = antd_43.TreeSelect; | ||
exports.Tree = antd_43.Tree; | ||
var antd_44 = require("antd"); | ||
exports.Tabs = antd_44.Tabs; | ||
exports.TreeSelect = antd_44.TreeSelect; | ||
var antd_45 = require("antd"); | ||
exports.Tag = antd_45.Tag; | ||
exports.Tabs = antd_45.Tabs; | ||
var antd_46 = require("antd"); | ||
exports.TimePicker = antd_46.TimePicker; | ||
exports.Tag = antd_46.Tag; | ||
var antd_47 = require("antd"); | ||
exports.Timeline = antd_47.Timeline; | ||
exports.TimePicker = antd_47.TimePicker; | ||
var antd_48 = require("antd"); | ||
exports.Tooltip = antd_48.Tooltip; | ||
exports.Timeline = antd_48.Timeline; | ||
var antd_49 = require("antd"); | ||
exports.Mention = antd_49.Mention; | ||
exports.Tooltip = antd_49.Tooltip; | ||
var antd_50 = require("antd"); | ||
exports.Upload = antd_50.Upload; | ||
exports.Mention = antd_50.Mention; | ||
var antd_51 = require("antd"); | ||
exports.version = antd_51.version; | ||
exports.Upload = antd_51.Upload; | ||
var antd_52 = require("antd"); | ||
exports.version = antd_52.version; | ||
/** | ||
@@ -155,3 +156,2 @@ * Row 被重写 | ||
// //Radio | ||
var antd_52 = require("antd"); | ||
exports.Radio = antd_52.Radio; | ||
// export { Radio } from 'antd'; |
/// <reference types="react" /> | ||
import * as React from 'react'; | ||
/** | ||
* @public | ||
*/ | ||
export interface ScrollListProps { | ||
@@ -23,3 +26,3 @@ /** | ||
*/ | ||
alaysScroll?: boolean; | ||
alwaysScroll?: boolean; | ||
} | ||
@@ -26,0 +29,0 @@ /** |
@@ -58,3 +58,3 @@ "use strict"; | ||
if (sh * root.children().length <= root.height()) { | ||
if (!this.props.alaysScroll) { | ||
if (!this.props.alwaysScroll) { | ||
window.clearInterval(interval); | ||
@@ -61,0 +61,0 @@ return; |
{ | ||
"name": "vap", | ||
"version": "1.3.3", | ||
"version": "1.3.4", | ||
"description": "vap", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -49,2 +49,3 @@ "use strict"; | ||
var _ = require("lodash"); | ||
var NProgress = require("nprogress"); | ||
/** | ||
@@ -122,2 +123,3 @@ * @private | ||
} | ||
NProgress.start(); | ||
// @ts-ignore | ||
@@ -127,2 +129,3 @@ return fetch(url, newOptions) | ||
.then(function (response) { | ||
NProgress.done(); | ||
return response.json(); | ||
@@ -129,0 +132,0 @@ }); |
export default abstract class { | ||
/** | ||
* 地图下钻,国级不用户传json ,省级或市级需要把上级的ID或者name传入 | ||
* ```javascript | ||
* import {Page} from 'vap/util'; | ||
* Page.mapPath('湖北省') | ||
* ``` | ||
*/ | ||
static mapPath(name: any, json?: any): string; | ||
@@ -3,0 +10,0 @@ /** |
@@ -43,2 +43,9 @@ "use strict"; | ||
} | ||
/** | ||
* 地图下钻,国级不用户传json ,省级或市级需要把上级的ID或者name传入 | ||
* ```javascript | ||
* import {Page} from 'vap/util'; | ||
* Page.mapPath('湖北省') | ||
* ``` | ||
*/ | ||
default_1.mapPath = function (name, json) { | ||
@@ -45,0 +52,0 @@ if (json === void 0) { json = null; } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
219825
97
5781
1