hrsass-components 1.7.17 → 1.7.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/hrsass-components.js +10 -4
- package/lib/hrsass-components.min.js +1 -1
- package/package.json +1 -1
- package/rollup.build.css +5064 -0
package/lib/hrsass-components.js
CHANGED
|
@@ -65,7 +65,7 @@ var contentStyle = _interopDefault(require('!!raw-loader!tinymce/skins/content/d
|
|
|
65
65
|
var SvgPanZoom = _interopDefault(require('svg-pan-zoom'));
|
|
66
66
|
var saveSvgAsPng = require('save-svg-as-png');
|
|
67
67
|
|
|
68
|
-
var version = "1.7.
|
|
68
|
+
var version = "1.7.18";
|
|
69
69
|
|
|
70
70
|
/**
|
|
71
71
|
* 版本号
|
|
@@ -4396,7 +4396,8 @@ var HrDynamic = {
|
|
|
4396
4396
|
onlyLeafSelectable: VuePropTypes.bool,
|
|
4397
4397
|
isEncrypt: VuePropTypes.bool,
|
|
4398
4398
|
fileSizeLimit: VuePropTypes.number,
|
|
4399
|
-
fileTypes: VuePropTypes.string
|
|
4399
|
+
fileTypes: VuePropTypes.string,
|
|
4400
|
+
customBeforeUpload: VuePropTypes.func
|
|
4400
4401
|
}, {
|
|
4401
4402
|
prefixCls: 'hr-dynamic'
|
|
4402
4403
|
}),
|
|
@@ -4436,7 +4437,8 @@ var HrDynamic = {
|
|
|
4436
4437
|
isEncrypt = _getOptionProps$isEnc === void 0 ? false : _getOptionProps$isEnc,
|
|
4437
4438
|
onlyLeafSelectable = _getOptionProps.onlyLeafSelectable,
|
|
4438
4439
|
fileSizeLimit = _getOptionProps.fileSizeLimit,
|
|
4439
|
-
fileTypes = _getOptionProps.fileTypes
|
|
4440
|
+
fileTypes = _getOptionProps.fileTypes,
|
|
4441
|
+
customBeforeUpload = _getOptionProps.customBeforeUpload;
|
|
4440
4442
|
|
|
4441
4443
|
var hrDynamicProps = {
|
|
4442
4444
|
"class": classNames(prefixCls, cls, _defineProperty({}, "".concat(prefixCls, "-read-only"), !isEncrypt && readOnly)),
|
|
@@ -4732,6 +4734,7 @@ var HrDynamic = {
|
|
|
4732
4734
|
fileTypes: fileTypes,
|
|
4733
4735
|
readOnly: readOnly,
|
|
4734
4736
|
disabled: disabled,
|
|
4737
|
+
customBeforeUpload: customBeforeUpload,
|
|
4735
4738
|
queryData: queryData
|
|
4736
4739
|
},
|
|
4737
4740
|
on: {
|
|
@@ -4747,7 +4750,8 @@ var HrDynamic = {
|
|
|
4747
4750
|
multiple: true,
|
|
4748
4751
|
queryData: queryData,
|
|
4749
4752
|
readOnly: readOnly,
|
|
4750
|
-
disabled: disabled
|
|
4753
|
+
disabled: disabled,
|
|
4754
|
+
customBeforeUpload: customBeforeUpload
|
|
4751
4755
|
},
|
|
4752
4756
|
on: {
|
|
4753
4757
|
"change": function change(val) {
|
|
@@ -4762,6 +4766,7 @@ var HrDynamic = {
|
|
|
4762
4766
|
listType: "picture-card",
|
|
4763
4767
|
queryData: queryData,
|
|
4764
4768
|
disabled: disabled,
|
|
4769
|
+
customBeforeUpload: customBeforeUpload,
|
|
4765
4770
|
readOnly: readOnly
|
|
4766
4771
|
},
|
|
4767
4772
|
on: {
|
|
@@ -4778,6 +4783,7 @@ var HrDynamic = {
|
|
|
4778
4783
|
listType: "picture-card",
|
|
4779
4784
|
queryData: queryData,
|
|
4780
4785
|
disabled: disabled,
|
|
4786
|
+
customBeforeUpload: customBeforeUpload,
|
|
4781
4787
|
readOnly: readOnly
|
|
4782
4788
|
},
|
|
4783
4789
|
on: {
|