inertia-bootstrap-forms 1.0.52 → 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inertia-bootstrap-forms",
3
- "version": "1.0.52",
3
+ "version": "1.0.53",
4
4
  "description": "Create bootstrap forms with inertia and twitter bootstrap",
5
5
  "main": "dist/inertia-bootstrap-forms.cjs.js",
6
6
  "module": "dist/inertia-bootstrap-forms.es.js",
@@ -12,7 +12,10 @@ export default defineComponent({
12
12
  placeholder: {
13
13
  type: String,
14
14
  default: '',
15
- required: false,
15
+ },
16
+ disabled: {
17
+ type: Boolean,
18
+ default: false,
16
19
  },
17
20
  modelValue: String,
18
21
  options: {
@@ -54,6 +57,7 @@ export default defineComponent({
54
57
  v-model="modelValue"
55
58
  class="tiny-editor-input-el"
56
59
  :init="{
60
+ disabled: this.disabled,
57
61
  placeholder: this.placeholder,
58
62
  ...options
59
63
  }"
@@ -70,4 +74,8 @@ textarea.tiny-editor-input-el {
70
74
  background-repeat: no-repeat;
71
75
  background-position: center center;
72
76
  }
77
+
78
+ .tox .tox-edit-area::before{
79
+ display: none;
80
+ }
73
81
  </style>
Binary file