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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inertia-bootstrap-forms",
3
- "version": "1.0.57",
3
+ "version": "1.0.59",
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,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
  }