@panpanzhao/component-ui 1.25.828 → 1.25.829
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,8 +7358,6 @@ var upload_process_component = normalizeComponent(
|
|
|
7358
7358
|
props: {
|
|
7359
7359
|
control: String,
|
|
7360
7360
|
render: Function,
|
|
7361
|
-
inputClass: String,
|
|
7362
|
-
inputStyle: [String, Object],
|
|
7363
7361
|
slots: {
|
|
7364
7362
|
type: Object
|
|
7365
7363
|
}
|
|
@@ -7370,10 +7368,7 @@ var upload_process_component = normalizeComponent(
|
|
|
7370
7368
|
return this.render.call(this, h, this.$attrs);
|
|
7371
7369
|
}
|
|
7372
7370
|
var param = {
|
|
7373
|
-
attrs: Object.assign({
|
|
7374
|
-
class: this.inputClass,
|
|
7375
|
-
style: this.inputStyle
|
|
7376
|
-
}, this.$attrs),
|
|
7371
|
+
attrs: Object.assign({}, this.$attrs),
|
|
7377
7372
|
on: this.$listeners,
|
|
7378
7373
|
slots: this.$slots,
|
|
7379
7374
|
scopedSlots: this.$scopedSlots
|
|
@@ -7435,6 +7430,8 @@ var form_input_default = /*#__PURE__*/__webpack_require__.n(form_input_);
|
|
|
7435
7430
|
size: String,
|
|
7436
7431
|
slots: Object,
|
|
7437
7432
|
rules: [Object, Array],
|
|
7433
|
+
inputClass: String,
|
|
7434
|
+
inputStyle: [String, Object],
|
|
7438
7435
|
required: Boolean,
|
|
7439
7436
|
actions: Array,
|
|
7440
7437
|
on: Object,
|
|
@@ -7629,7 +7626,8 @@ var form_input_default = /*#__PURE__*/__webpack_require__.n(form_input_);
|
|
|
7629
7626
|
"size": this.size
|
|
7630
7627
|
}
|
|
7631
7628
|
}, [h("div", {
|
|
7632
|
-
"class": "form-input_wrap"
|
|
7629
|
+
"class": ["form-input_wrap", this.inputClass],
|
|
7630
|
+
"style": this.inputStyle
|
|
7633
7631
|
}, [typeof ((_this$slots = this.slots) == null ? void 0 : _this$slots.prependItem) === "function" ? (_this$slots2 = this.slots) == null || (_this$slots2 = _this$slots2.prependItem) == null ? void 0 : _this$slots2.call(this, h, {
|
|
7634
7632
|
form: this.form,
|
|
7635
7633
|
formModel: this.form.formModel,
|
|
@@ -3869,8 +3869,6 @@ 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],
|
|
3874
3872
|
slots: {
|
|
3875
3873
|
type: Object
|
|
3876
3874
|
}
|
|
@@ -3881,10 +3879,7 @@ var upload_process_component = Object(componentNormalizer["a" /* default */])(
|
|
|
3881
3879
|
return this.render.call(this, h, this.$attrs);
|
|
3882
3880
|
}
|
|
3883
3881
|
var param = {
|
|
3884
|
-
attrs: Object.assign({
|
|
3885
|
-
class: this.inputClass,
|
|
3886
|
-
style: this.inputStyle
|
|
3887
|
-
}, this.$attrs),
|
|
3882
|
+
attrs: Object.assign({}, this.$attrs),
|
|
3888
3883
|
on: this.$listeners,
|
|
3889
3884
|
slots: this.$slots,
|
|
3890
3885
|
scopedSlots: this.$scopedSlots
|
|
@@ -160,6 +160,8 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
160
160
|
size: String,
|
|
161
161
|
slots: Object,
|
|
162
162
|
rules: [Object, Array],
|
|
163
|
+
inputClass: String,
|
|
164
|
+
inputStyle: [String, Object],
|
|
163
165
|
required: Boolean,
|
|
164
166
|
actions: Array,
|
|
165
167
|
on: Object,
|
|
@@ -354,7 +356,8 @@ var external_lodash_ = __webpack_require__(2);
|
|
|
354
356
|
"size": this.size
|
|
355
357
|
}
|
|
356
358
|
}, [h("div", {
|
|
357
|
-
"class": "form-input_wrap"
|
|
359
|
+
"class": ["form-input_wrap", this.inputClass],
|
|
360
|
+
"style": this.inputStyle
|
|
358
361
|
}, [typeof ((_this$slots = this.slots) == null ? void 0 : _this$slots.prependItem) === "function" ? (_this$slots2 = this.slots) == null || (_this$slots2 = _this$slots2.prependItem) == null ? void 0 : _this$slots2.call(this, h, {
|
|
359
362
|
form: this.form,
|
|
360
363
|
formModel: this.form.formModel,
|