svelte-json-schema-form 0.0.4-alpha2 → 0.0.4-alpha3
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.
|
@@ -7,9 +7,9 @@ declare namespace _default {
|
|
|
7
7
|
export { FormActionButton as actionButton };
|
|
8
8
|
}
|
|
9
9
|
export default _default;
|
|
10
|
-
import FormInputWrapper from "./
|
|
11
|
-
import FormArrayInput from "./
|
|
12
|
-
import FormObjectInput from "./
|
|
13
|
-
import FormTextInput from "./
|
|
14
|
-
import FormCheckboxInput from "./
|
|
15
|
-
import FormActionButton from "./
|
|
10
|
+
import FormInputWrapper from "./inputs/FormInputWrapper.svelte";
|
|
11
|
+
import FormArrayInput from "./inputs/FormArrayInput.svelte";
|
|
12
|
+
import FormObjectInput from "./inputs/FormObjectInput.svelte";
|
|
13
|
+
import FormTextInput from "./inputs/FormTextInput.svelte";
|
|
14
|
+
import FormCheckboxInput from "./inputs/FormCheckboxInput.svelte";
|
|
15
|
+
import FormActionButton from "./inputs/FormActionButton.svelte";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import FormInputWrapper from "./
|
|
2
|
-
import FormArrayInput from "./
|
|
3
|
-
import FormObjectInput from "./
|
|
4
|
-
import FormTextInput from "./
|
|
5
|
-
import FormCheckboxInput from "./
|
|
6
|
-
import FormActionButton from "./
|
|
1
|
+
import FormInputWrapper from "./inputs/FormInputWrapper.svelte";
|
|
2
|
+
import FormArrayInput from "./inputs/FormArrayInput.svelte";
|
|
3
|
+
import FormObjectInput from "./inputs/FormObjectInput.svelte";
|
|
4
|
+
import FormTextInput from "./inputs/FormTextInput.svelte";
|
|
5
|
+
import FormCheckboxInput from "./inputs/FormCheckboxInput.svelte";
|
|
6
|
+
import FormActionButton from "./inputs/FormActionButton.svelte";
|
|
7
7
|
|
|
8
8
|
export default {
|
|
9
9
|
wrapper: FormInputWrapper,
|