svelte-schema-form icon indicating copy to clipboard operation
svelte-schema-form copied to clipboard

JSON Schema based form generator in Svelte

Results 17 svelte-schema-form issues
Sort by recently updated
recently updated
newest added

Error that i get: Internal server error: Failed to load url ./editors/Hidden.svelte (resolved id: ./editors/Hidden.svelte) in /home/pongki/sveltekit/admin-panel/node_modules/@restspace/svelte-schema-form/SchemaForm.svelte. Does the file exist? After a while of checking, i found out that...

Hello I'm trying to work with `svelte-schema-form ` in sveltekit, but am getting the below error: ``` require is not defined ReferenceError: require is not defined at eval (/home/anton/git/yestech/legalease/node_modules/.pnpm/@[email protected]/node_modules/@exodus/schemasafe/src/pointer.js:5:27) at...

let schema={ type: 'object', properties: { name: { type: 'string' }, age: { type: 'number' }, address: { anyOf: [ { type: 'string' }, { type: 'object', properties: { street:...

```svelte let value = {} { console.log('new value', e.detail.value) // prints the new value console.log('original value', value) // prints the new value, should print the old value }} /> ```...

The import of the styling at Github and NPM is different. Which one is correct? ```js import '@restspace/svelte-schema-form/css/layout.scss'; import '@restspace/svelte-schema-form/css/basic-skin.scss'; ``` This screenshot is from Github: This screenshot is from...

```json { "type": "object", "properties": { "asdf": { "type": "string" } }, "additionalProperties": { "type": "string" } } ``` it could look something like this: ![image](https://user-images.githubusercontent.com/57028336/220537321-0d189365-ed4e-4dc6-a55b-ebd35db0969b.png)

```json { "type": "object" } ``` > Uncaught (in promise) TypeError: can't convert undefined to object it's valid to have no `properties` key on `object` types, for example when using...

imo an error of some sort should be displayed (either to the user or in the console) if the json schema contains an invalid type. ![image](https://user-images.githubusercontent.com/57028336/220288272-59a4f7d0-4e44-42fa-9a80-a7d96c9b95c8.png)