inertia-bootstrap-forms 2.1.6 → 2.1.8
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/dist/{index-KFAc3stx.js → index-CsHj65jU.js} +1 -1
- package/dist/{index-DOtMtP-v.js → index-NrWiSABD.js} +305 -305
- package/dist/inertia-bootstrap-forms.es.js +1 -1
- package/dist/inertia-bootstrap-forms.umd.js +6 -6
- package/package.json +1 -1
- package/src/FormContainer.vue +1 -1
- package/src/PersianDatePickerInput.vue +1 -1
package/package.json
CHANGED
package/src/FormContainer.vue
CHANGED
|
@@ -205,7 +205,7 @@ export default defineComponent({
|
|
|
205
205
|
<slot name="errors">
|
|
206
206
|
<Alert type="danger" v-if="form.hasErrors">
|
|
207
207
|
<ul class="list-unstyled p-0 m-0 fanum">
|
|
208
|
-
<li v-for="error in form.errors"
|
|
208
|
+
<li v-for="error in form.errors" v-html="error"></li>
|
|
209
209
|
</ul>
|
|
210
210
|
</Alert>
|
|
211
211
|
</slot>
|
|
@@ -107,7 +107,7 @@ export default defineComponent({
|
|
|
107
107
|
:showNowBtn="true"
|
|
108
108
|
:autoSubmit="true"
|
|
109
109
|
:inputFormat="(inputFormat ? inputFormat : format)"
|
|
110
|
-
input-class="form-control
|
|
110
|
+
input-class="form-control fanum"
|
|
111
111
|
v-bind="$props"/>
|
|
112
112
|
</template>
|
|
113
113
|
|