@dosgato/dialog 0.0.16 → 0.0.17

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.
@@ -12,7 +12,7 @@ export let choices;
12
12
  export let defaultValue = notNull ? choices[0].value : undefined;
13
13
  export let conditional = undefined;
14
14
  export let required = false;
15
- export let inputelement;
15
+ export let inputelement = undefined;
16
16
  </script>
17
17
 
18
18
  <FieldStandard bind:id {label} {path} {required} {defaultValue} {conditional} serialize={!notNull && nullableSerialize} deserialize={!notNull && nullableDeserialize} let:value let:valid let:invalid let:id let:onBlur let:onChange let:messagesid>
@@ -16,7 +16,7 @@ declare const __propDef: {
16
16
  defaultValue?: any;
17
17
  conditional?: boolean | undefined;
18
18
  required?: boolean;
19
- inputelement: HTMLSelectElement;
19
+ inputelement?: HTMLSelectElement;
20
20
  };
21
21
  events: {
22
22
  [evt: string]: CustomEvent<any>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dosgato/dialog",
3
3
  "description": "A component library for building forms that edit a JSON document.",
4
- "version": "0.0.16",
4
+ "version": "0.0.17",
5
5
  "dependencies": {
6
6
  "@txstate-mws/svelte-components": "^1.3.0",
7
7
  "@txstate-mws/svelte-forms": "^0.0.21",