inertia-bootstrap-forms 1.0.57 → 1.0.59
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/style.css +1 -1
- package/package.json +1 -1
- package/src/UppyInput.vue +2 -3
package/package.json
CHANGED
package/src/UppyInput.vue
CHANGED
|
@@ -18,9 +18,6 @@ import {
|
|
|
18
18
|
} from '@uppy/vue';
|
|
19
19
|
import Uppy from '@uppy/core';
|
|
20
20
|
|
|
21
|
-
import '@uppy/vue/css/style.css';
|
|
22
|
-
import '@uppy/audio/css/style.min.css';
|
|
23
|
-
|
|
24
21
|
const props = defineProps({
|
|
25
22
|
name: {type: String, required: true},
|
|
26
23
|
multiple: {type: Boolean, default: false},
|
|
@@ -161,6 +158,8 @@ function showError(message) {
|
|
|
161
158
|
</script>
|
|
162
159
|
|
|
163
160
|
<style>
|
|
161
|
+
@import "@uppy/vue/css/style.css" layer(uppy);
|
|
162
|
+
|
|
164
163
|
.uppy-reset p {
|
|
165
164
|
margin-bottom: 0;
|
|
166
165
|
}
|