@panpanzhao/component-ui 1.25.827 → 1.25.828
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.
|
@@ -7358,6 +7358,8 @@ var upload_process_component = normalizeComponent(
|
|
|
7358
7358
|
props: {
|
|
7359
7359
|
control: String,
|
|
7360
7360
|
render: Function,
|
|
7361
|
+
inputClass: String,
|
|
7362
|
+
inputStyle: [String, Object],
|
|
7361
7363
|
slots: {
|
|
7362
7364
|
type: Object
|
|
7363
7365
|
}
|
|
@@ -7368,7 +7370,10 @@ var upload_process_component = normalizeComponent(
|
|
|
7368
7370
|
return this.render.call(this, h, this.$attrs);
|
|
7369
7371
|
}
|
|
7370
7372
|
var param = {
|
|
7371
|
-
attrs: Object.assign({
|
|
7373
|
+
attrs: Object.assign({
|
|
7374
|
+
class: this.inputClass,
|
|
7375
|
+
style: this.inputStyle
|
|
7376
|
+
}, this.$attrs),
|
|
7372
7377
|
on: this.$listeners,
|
|
7373
7378
|
slots: this.$slots,
|
|
7374
7379
|
scopedSlots: this.$scopedSlots
|
|
@@ -3869,6 +3869,8 @@ var upload_process_component = Object(componentNormalizer["a" /* default */])(
|
|
|
3869
3869
|
props: {
|
|
3870
3870
|
control: String,
|
|
3871
3871
|
render: Function,
|
|
3872
|
+
inputClass: String,
|
|
3873
|
+
inputStyle: [String, Object],
|
|
3872
3874
|
slots: {
|
|
3873
3875
|
type: Object
|
|
3874
3876
|
}
|
|
@@ -3879,7 +3881,10 @@ var upload_process_component = Object(componentNormalizer["a" /* default */])(
|
|
|
3879
3881
|
return this.render.call(this, h, this.$attrs);
|
|
3880
3882
|
}
|
|
3881
3883
|
var param = {
|
|
3882
|
-
attrs: Object.assign({
|
|
3884
|
+
attrs: Object.assign({
|
|
3885
|
+
class: this.inputClass,
|
|
3886
|
+
style: this.inputStyle
|
|
3887
|
+
}, this.$attrs),
|
|
3883
3888
|
on: this.$listeners,
|
|
3884
3889
|
slots: this.$slots,
|
|
3885
3890
|
scopedSlots: this.$scopedSlots
|