inertia-bootstrap-forms 1.0.60 → 1.0.61

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.60",
3
+ "version": "1.0.61",
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",
package/src/UppyInput.vue CHANGED
@@ -18,6 +18,8 @@ import {
18
18
  } from '@uppy/vue';
19
19
  import Uppy from '@uppy/core';
20
20
 
21
+ import '@uppy/vue/css/style.css';
22
+
21
23
  const props = defineProps({
22
24
  name: {type: String, required: true},
23
25
  multiple: {type: Boolean, default: false},
@@ -158,5 +160,24 @@ function showError(message) {
158
160
  </script>
159
161
 
160
162
  <style>
161
- @import "css/uppy-input.css";
163
+ .uppy-reset p {
164
+ margin-bottom: 0;
165
+ }
166
+
167
+ .uppy-file-lists > ul {
168
+ list-style: none;
169
+ padding: 0;
170
+ margin: 0;
171
+ }
172
+
173
+ .uppy-input-area .uppy-error {
174
+ display: block;
175
+ padding: 5px;
176
+ background-color: #f8d7da;
177
+ border: 1px solid #f5c2c7;
178
+ color: #842029;
179
+ text-align: center;
180
+ border-radius: 0.5rem;
181
+ margin-bottom: 5px;
182
+ }
162
183
  </style>