inertia-bootstrap-forms 1.0.51 → 1.0.53
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.
|
@@ -2725,6 +2725,14 @@ const Mm = /* @__PURE__ */ Q(Fd, [["render", Rd]]), Bd = x({
|
|
|
2725
2725
|
type: String,
|
|
2726
2726
|
required: !0
|
|
2727
2727
|
},
|
|
2728
|
+
placeholder: {
|
|
2729
|
+
type: String,
|
|
2730
|
+
default: ""
|
|
2731
|
+
},
|
|
2732
|
+
disabled: {
|
|
2733
|
+
type: Boolean,
|
|
2734
|
+
default: !1
|
|
2735
|
+
},
|
|
2728
2736
|
modelValue: String,
|
|
2729
2737
|
options: {
|
|
2730
2738
|
type: Object,
|
|
@@ -2758,7 +2766,11 @@ function Kd(t, e, i, n, r, s) {
|
|
|
2758
2766
|
modelValue: t.modelValue,
|
|
2759
2767
|
"onUpdate:modelValue": e[0] || (e[0] = (a) => t.modelValue = a),
|
|
2760
2768
|
class: "tiny-editor-input-el",
|
|
2761
|
-
init:
|
|
2769
|
+
init: {
|
|
2770
|
+
disabled: this.disabled,
|
|
2771
|
+
placeholder: this.placeholder,
|
|
2772
|
+
...t.options
|
|
2773
|
+
}
|
|
2762
2774
|
}, null, 8, ["modelValue", "init"]);
|
|
2763
2775
|
}
|
|
2764
2776
|
const Pm = /* @__PURE__ */ Q(Bd, [["render", Kd]]), qd = x({
|