@dosgato/dialog 0.0.78 → 0.0.79

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.
@@ -117,7 +117,7 @@ $: describedby = [title ? labelid : undefined, descid].filter(isNotBlank).join('
117
117
  min-height: 5em;
118
118
  overflow: auto;
119
119
  background-color: var(--dg-dialog-content-bg, #f4f4f4);
120
- max-height: calc(100vh - 7em);
120
+ max-height: calc(100vh - 7.5em);
121
121
  }
122
122
 
123
123
  section.tiny .dialog-content, section.small .dialog-content {
@@ -14,7 +14,7 @@ declare const __propDef: {
14
14
  boolean?: boolean | undefined;
15
15
  serialize?: ((value: any) => string) | undefined;
16
16
  deserialize?: ((value: string) => any) | undefined;
17
- /** If you need to do some processing just before submit or validate define that processing here. */ finalize?: ((value: any) => any) | undefined;
17
+ /** If you need to do some processing just before submit or validate define that processing here. */ finalize?: ((value: any, isSubmit: boolean) => any) | undefined;
18
18
  /** If you specified a finalize, you probably need an initialize to invert it. */ initialize?: ((value: any) => any) | undefined;
19
19
  conditional?: boolean | undefined;
20
20
  required?: boolean | undefined;
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.78",
4
+ "version": "0.0.79",
5
5
  "scripts": {
6
6
  "prepublishOnly": "svelte-package",
7
7
  "dev": "vite dev --force",
@@ -27,7 +27,7 @@
27
27
  "@iconify-icons/mdi": "^1.2.22",
28
28
  "@iconify-icons/ph": "^1.2.2",
29
29
  "@txstate-mws/svelte-components": "^1.5.3",
30
- "@txstate-mws/svelte-forms": "^1.3.7",
30
+ "@txstate-mws/svelte-forms": "^1.3.13",
31
31
  "codemirror": "^6.0.1",
32
32
  "txstate-utils": "^1.8.0"
33
33
  },