@uides/stepwise 2.0.0-32ae417f → 2.0.0-385c7994

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.
Files changed (209) hide show
  1. package/LICENSE +0 -0
  2. package/generators/componentExtractor.d.mts +1 -0
  3. package/generators/componentReducer.d.mts +1 -0
  4. package/generators/templateGenerator.d.mts +1 -0
  5. package/index.d.ts +2 -0
  6. package/index.js +7 -0
  7. package/package.json +6 -21
  8. package/schemas/action.d.ts +2366 -0
  9. package/schemas/action.js +196 -0
  10. package/schemas/application.d.ts +19 -0
  11. package/schemas/application.js +14 -0
  12. package/schemas/attributes.d.ts +16 -0
  13. package/schemas/attributes.js +14 -0
  14. package/schemas/common.d.ts +25 -0
  15. package/schemas/common.js +41 -0
  16. package/schemas/document.d.ts +395 -0
  17. package/schemas/document.js +79 -0
  18. package/schemas/edupass-healthstate.d.ts +77 -0
  19. package/schemas/edupass-healthstate.js +76 -0
  20. package/schemas/field/afm/index.d.ts +52 -0
  21. package/schemas/field/afm/index.js +20 -0
  22. package/schemas/field/amka/index.d.ts +60 -0
  23. package/schemas/field/amka/index.js +21 -0
  24. package/schemas/field/attachment/index.d.ts +68 -0
  25. package/schemas/field/attachment/index.js +38 -0
  26. package/schemas/field/captcha/index.d.ts +48 -0
  27. package/schemas/field/captcha/index.js +15 -0
  28. package/schemas/field/choice/index.d.ts +73 -0
  29. package/schemas/field/choice/index.js +32 -0
  30. package/schemas/field/common.d.ts +82 -0
  31. package/schemas/field/common.js +63 -0
  32. package/schemas/field/consent-content/index.d.ts +68 -0
  33. package/schemas/field/consent-content/index.js +19 -0
  34. package/schemas/field/date/index.d.ts +90 -0
  35. package/schemas/field/date/index.js +42 -0
  36. package/schemas/field/doc_subtitle/index.d.ts +51 -0
  37. package/schemas/field/doc_subtitle/index.js +14 -0
  38. package/schemas/field/doc_title/index.d.ts +60 -0
  39. package/schemas/field/doc_title/index.js +21 -0
  40. package/schemas/field/dynamically-filled-text/index.d.ts +85 -0
  41. package/schemas/field/dynamically-filled-text/index.js +36 -0
  42. package/schemas/field/email/index.d.ts +60 -0
  43. package/schemas/field/email/index.js +21 -0
  44. package/schemas/field/fillable-string/index.d.ts +64 -0
  45. package/schemas/field/fillable-string/index.js +25 -0
  46. package/schemas/field/five-block-date/index.d.ts +48 -0
  47. package/schemas/field/five-block-date/index.js +15 -0
  48. package/schemas/field/hidden/index.d.ts +59 -0
  49. package/schemas/field/hidden/index.js +25 -0
  50. package/schemas/field/hierarchical-selector/index.d.ts +89 -0
  51. package/schemas/field/hierarchical-selector/index.js +35 -0
  52. package/schemas/field/iban/index.d.ts +58 -0
  53. package/schemas/field/iban/index.js +19 -0
  54. package/schemas/field/image/index.d.ts +68 -0
  55. package/schemas/field/image/index.js +36 -0
  56. package/schemas/field/image-crop/index.d.ts +59 -0
  57. package/schemas/field/image-crop/index.js +19 -0
  58. package/schemas/field/index.d.ts +48 -0
  59. package/schemas/field/index.js +167 -0
  60. package/schemas/field/int/index.d.ts +60 -0
  61. package/schemas/field/int/index.js +21 -0
  62. package/schemas/field/intl_mobile_phone/index.d.ts +49 -0
  63. package/schemas/field/intl_mobile_phone/index.js +15 -0
  64. package/schemas/field/lab-results/index.d.ts +49 -0
  65. package/schemas/field/lab-results/index.js +12 -0
  66. package/schemas/field/landline_phone/index.d.ts +48 -0
  67. package/schemas/field/landline_phone/index.js +14 -0
  68. package/schemas/field/link/index.d.ts +50 -0
  69. package/schemas/field/link/index.js +16 -0
  70. package/schemas/field/mobile_phone/index.d.ts +51 -0
  71. package/schemas/field/mobile_phone/index.js +18 -0
  72. package/schemas/field/multiple-choice/index.d.ts +70 -0
  73. package/schemas/field/multiple-choice/index.js +31 -0
  74. package/schemas/field/password/index.d.ts +48 -0
  75. package/schemas/field/password/index.js +15 -0
  76. package/schemas/field/pdf-image/index.d.ts +66 -0
  77. package/schemas/field/pdf-image/index.js +27 -0
  78. package/schemas/field/phone/index.d.ts +48 -0
  79. package/schemas/field/phone/index.js +14 -0
  80. package/schemas/field/postal_code/index.d.ts +50 -0
  81. package/schemas/field/postal_code/index.js +17 -0
  82. package/schemas/field/preference-multiple-choice/index.d.ts +90 -0
  83. package/schemas/field/preference-multiple-choice/index.js +31 -0
  84. package/schemas/field/qrcode/index.d.ts +71 -0
  85. package/schemas/field/qrcode/index.js +30 -0
  86. package/schemas/field/quote/index.d.ts +63 -0
  87. package/schemas/field/quote/index.js +30 -0
  88. package/schemas/field/radio-choice/index.d.ts +67 -0
  89. package/schemas/field/radio-choice/index.js +31 -0
  90. package/schemas/field/rate/index.d.ts +60 -0
  91. package/schemas/field/rate/index.js +18 -0
  92. package/schemas/field/recipient/index.d.ts +51 -0
  93. package/schemas/field/recipient/index.js +20 -0
  94. package/schemas/field/redirect/index.d.ts +52 -0
  95. package/schemas/field/redirect/index.js +15 -0
  96. package/schemas/field/refcode/index.d.ts +68 -0
  97. package/schemas/field/refcode/index.js +29 -0
  98. package/schemas/field/string/index.d.ts +135 -0
  99. package/schemas/field/string/index.js +80 -0
  100. package/schemas/field/text/index.d.ts +85 -0
  101. package/schemas/field/text/index.js +45 -0
  102. package/schemas/field/three-block-date/index.d.ts +64 -0
  103. package/schemas/field/three-block-date/index.js +26 -0
  104. package/schemas/field/url-param/index.d.ts +57 -0
  105. package/schemas/field/url-param/index.js +14 -0
  106. package/schemas/fieldset/component-params.d.ts +102 -0
  107. package/schemas/fieldset/component-params.js +63 -0
  108. package/schemas/fieldset/display-components.d.ts +353 -0
  109. package/schemas/fieldset/display-components.js +36 -0
  110. package/schemas/fieldset/enums.d.ts +32 -0
  111. package/schemas/fieldset/enums.js +21 -0
  112. package/schemas/fieldset/index.d.ts +180 -0
  113. package/schemas/fieldset/index.js +11 -0
  114. package/schemas/index.d.ts +15 -0
  115. package/schemas/index.js +15 -0
  116. package/schemas/layout.d.ts +91 -0
  117. package/schemas/layout.js +43 -0
  118. package/schemas/outputs.d.ts +44 -0
  119. package/schemas/outputs.js +15 -0
  120. package/schemas/resolve.d.ts +5 -0
  121. package/schemas/resolve.js +13 -0
  122. package/schemas/resource/enums.d.ts +58 -0
  123. package/schemas/resource/enums.js +41 -0
  124. package/schemas/resource/field.d.ts +15 -0
  125. package/schemas/resource/field.js +12 -0
  126. package/schemas/resource/index.d.ts +5 -0
  127. package/schemas/resource/index.js +5 -0
  128. package/schemas/resource/object-action.d.ts +30 -0
  129. package/schemas/resource/object-action.js +24 -0
  130. package/schemas/resource/resource-action.d.ts +35 -0
  131. package/schemas/resource/resource-action.js +29 -0
  132. package/schemas/resource/resource.d.ts +133 -0
  133. package/schemas/resource/resource.js +31 -0
  134. package/schemas/step.d.ts +592 -0
  135. package/schemas/step.js +115 -0
  136. package/schemas/template/index.d.ts +2 -0
  137. package/schemas/template/index.js +2 -0
  138. package/schemas/template/template-base.d.ts +53 -0
  139. package/schemas/template/template-base.js +15 -0
  140. package/schemas/template/template-source.d.ts +50 -0
  141. package/schemas/template/template-source.js +14 -0
  142. package/schemas/template/template.d.ts +54 -0
  143. package/schemas/template/template.js +22 -0
  144. package/schemas/validation-context/enums.d.ts +10 -0
  145. package/schemas/validation-context/enums.js +7 -0
  146. package/schemas/validation-context/index.d.ts +2 -0
  147. package/schemas/validation-context/index.js +2 -0
  148. package/schemas/validation-context/validation-context.d.ts +131 -0
  149. package/schemas/validation-context/validation-context.js +55 -0
  150. package/src/schemas/action.ts +15 -0
  151. package/src/schemas/common.ts +16 -0
  152. package/src/schemas/field/afm/index.ts +2 -18
  153. package/src/schemas/field/amka/index.ts +7 -2
  154. package/src/schemas/field/attachment/index.ts +12 -24
  155. package/src/schemas/field/choice/index.ts +2 -13
  156. package/src/schemas/field/common.ts +75 -51
  157. package/src/schemas/field/consent-content/index.ts +28 -0
  158. package/src/schemas/field/date/index.ts +5 -32
  159. package/src/schemas/field/doc_subtitle/index.ts +1 -0
  160. package/src/schemas/field/doc_title/index.ts +9 -16
  161. package/src/schemas/field/dynamically-filled-text/index.ts +4 -5
  162. package/src/schemas/field/email/index.ts +6 -9
  163. package/src/schemas/field/fillable-string/index.ts +1 -1
  164. package/src/schemas/field/hidden/index.ts +4 -43
  165. package/src/schemas/field/hierarchical-selector/index.ts +3 -9
  166. package/src/schemas/field/image/index.ts +5 -24
  167. package/src/schemas/field/image-crop/index.ts +25 -0
  168. package/src/schemas/field/index.spec.ts +0 -42
  169. package/src/schemas/field/index.ts +64 -12
  170. package/src/schemas/field/int/index.ts +2 -0
  171. package/src/schemas/field/intl_mobile_phone/index.ts +19 -0
  172. package/src/schemas/field/lab-results/index.ts +1 -2
  173. package/src/schemas/field/link/index.ts +20 -0
  174. package/src/schemas/field/mobile_phone/index.ts +1 -12
  175. package/src/schemas/field/multiple-choice/index.ts +4 -3
  176. package/src/schemas/field/password/index.ts +18 -0
  177. package/src/schemas/field/pdf-image/index.ts +3 -15
  178. package/src/schemas/field/phone/index.ts +18 -0
  179. package/src/schemas/field/postal_code/index.ts +1 -1
  180. package/src/schemas/field/preference-multiple-choice/index.ts +41 -0
  181. package/src/schemas/field/qrcode/index.ts +1 -0
  182. package/src/schemas/field/quote/index.ts +2 -19
  183. package/src/schemas/field/radio-choice/index.ts +1 -7
  184. package/src/schemas/field/rate/index.ts +1 -9
  185. package/src/schemas/field/recipient/index.ts +2 -2
  186. package/src/schemas/field/redirect/index.ts +4 -13
  187. package/src/schemas/field/refcode/index.ts +10 -15
  188. package/src/schemas/field/string/index.ts +13 -0
  189. package/src/schemas/field/text/index.ts +4 -18
  190. package/src/schemas/field/url-param/index.ts +23 -0
  191. package/src/schemas/resolve.ts +3 -0
  192. package/src/schemas/step.ts +2 -0
  193. package/src/schemas/template/index.ts +0 -1
  194. package/src/schemas/template/template-base.ts +0 -10
  195. package/src/schemas/template/template.ts +1 -2
  196. package/src/schemas/validation-context/enums.ts +0 -16
  197. package/src/schemas/validation-context/validation-context.ts +2 -4
  198. package/src/utils/index.ts +10 -1
  199. package/utils/index.d.ts +6 -0
  200. package/utils/index.js +55 -0
  201. package/.prettierrc.js +0 -1
  202. package/.rush/temp/chunked-rush-logs/stepwise.build.chunks.jsonl +0 -6
  203. package/.rush/temp/package-deps_build.json +0 -185
  204. package/.rush/temp/shrinkwrap-deps.json +0 -303
  205. package/eslint.config.mjs +0 -3
  206. package/rush-logs/stepwise.build.log +0 -6
  207. package/src/schemas/field/green-pass-qrcode/index.ts +0 -27
  208. package/src/schemas/template/enums.ts +0 -22
  209. package/tsconfig.json +0 -25
@@ -0,0 +1,135 @@
1
+ import * as v from 'valibot';
2
+ declare const StringSchema: v.StrictObjectSchema<{
3
+ readonly display: v.NullishSchema<v.SchemaWithPipe<readonly [v.RecordSchema<v.StringSchema<undefined>, v.AnySchema, undefined>, v.RawCheckAction<import("../common.js").DisplayType<v.ObjectSchema<{
4
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
5
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
6
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
7
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
8
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
9
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
10
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
11
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
12
+ readonly md: v.StringSchema<undefined>;
13
+ }, undefined>, undefined>;
14
+ } & {
15
+ readonly component: v.NullishSchema<v.LiteralSchema<"string", undefined>, undefined>;
16
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
17
+ readonly position: v.NullishSchema<v.PicklistSchema<["center", "justify", "left", "right"], undefined>, undefined>;
18
+ readonly enforceUppercase: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
19
+ readonly multiplicity: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
20
+ readonly multiplicityLabels: v.NullishSchema<v.StrictObjectSchema<{
21
+ readonly empty: v.NullishSchema<v.StringSchema<undefined>, undefined>;
22
+ readonly addItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
23
+ readonly addTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
24
+ readonly submitAdd: v.NullishSchema<v.StringSchema<undefined>, undefined>;
25
+ readonly emptyValueDisplay: v.NullishSchema<v.StringSchema<undefined>, undefined>;
26
+ }, undefined>, undefined>;
27
+ readonly format: v.NullishSchema<v.LiteralSchema<"plaintext", undefined>, undefined>;
28
+ readonly textColor: v.NullishSchema<v.StringSchema<undefined>, undefined>;
29
+ readonly 'format-title': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
30
+ readonly emph: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
31
+ readonly bold: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
32
+ readonly cell_valign: v.NullishSchema<v.PicklistSchema<["BOTTOM", "MIDDLE", "TOP"], undefined>, undefined>;
33
+ readonly coordinates: v.NullishSchema<v.ArraySchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
34
+ readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
35
+ readonly leading: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
36
+ readonly fontName: v.NullishSchema<v.StringSchema<undefined>, undefined>;
37
+ readonly ignore_emph: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
38
+ readonly 'later-pages': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
39
+ readonly attachment_retrieval: v.NullishSchema<v.LiteralSchema<"no-content", undefined>, undefined>;
40
+ readonly backColor: v.NullishSchema<v.StringSchema<undefined>, undefined>;
41
+ }, undefined>, undefined>;
42
+ }, undefined>, v.ObjectSchema<{
43
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
44
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
45
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
46
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
47
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
48
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
49
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
50
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
51
+ readonly md: v.StringSchema<undefined>;
52
+ }, undefined>, undefined>;
53
+ } & {
54
+ readonly component: v.NullishSchema<v.LiteralSchema<"string", undefined>, undefined>;
55
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
56
+ readonly position: v.NullishSchema<v.PicklistSchema<["center", "justify", "left", "right"], undefined>, undefined>;
57
+ readonly enforceUppercase: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
58
+ readonly multiplicity: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
59
+ readonly multiplicityLabels: v.NullishSchema<v.StrictObjectSchema<{
60
+ readonly empty: v.NullishSchema<v.StringSchema<undefined>, undefined>;
61
+ readonly addItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
62
+ readonly addTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
63
+ readonly submitAdd: v.NullishSchema<v.StringSchema<undefined>, undefined>;
64
+ readonly emptyValueDisplay: v.NullishSchema<v.StringSchema<undefined>, undefined>;
65
+ }, undefined>, undefined>;
66
+ readonly format: v.NullishSchema<v.LiteralSchema<"plaintext", undefined>, undefined>;
67
+ readonly textColor: v.NullishSchema<v.StringSchema<undefined>, undefined>;
68
+ readonly 'format-title': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
69
+ readonly emph: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
70
+ readonly bold: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
71
+ readonly cell_valign: v.NullishSchema<v.PicklistSchema<["BOTTOM", "MIDDLE", "TOP"], undefined>, undefined>;
72
+ readonly coordinates: v.NullishSchema<v.ArraySchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
73
+ readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
74
+ readonly leading: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
75
+ readonly fontName: v.NullishSchema<v.StringSchema<undefined>, undefined>;
76
+ readonly ignore_emph: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
77
+ readonly 'later-pages': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
78
+ readonly attachment_retrieval: v.NullishSchema<v.LiteralSchema<"no-content", undefined>, undefined>;
79
+ readonly backColor: v.NullishSchema<v.StringSchema<undefined>, undefined>;
80
+ }, undefined>, undefined>;
81
+ }, undefined>, v.ObjectSchema<{
82
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
83
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
84
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
85
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
86
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
87
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
88
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
89
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
90
+ readonly md: v.StringSchema<undefined>;
91
+ }, undefined>, undefined>;
92
+ } & {
93
+ readonly component: v.NullishSchema<v.LiteralSchema<"string", undefined>, undefined>;
94
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
95
+ readonly position: v.NullishSchema<v.PicklistSchema<["center", "justify", "left", "right"], undefined>, undefined>;
96
+ readonly enforceUppercase: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
97
+ readonly multiplicity: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
98
+ readonly multiplicityLabels: v.NullishSchema<v.StrictObjectSchema<{
99
+ readonly empty: v.NullishSchema<v.StringSchema<undefined>, undefined>;
100
+ readonly addItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
101
+ readonly addTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
102
+ readonly submitAdd: v.NullishSchema<v.StringSchema<undefined>, undefined>;
103
+ readonly emptyValueDisplay: v.NullishSchema<v.StringSchema<undefined>, undefined>;
104
+ }, undefined>, undefined>;
105
+ readonly format: v.NullishSchema<v.LiteralSchema<"plaintext", undefined>, undefined>;
106
+ readonly textColor: v.NullishSchema<v.StringSchema<undefined>, undefined>;
107
+ readonly 'format-title': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
108
+ readonly emph: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
109
+ readonly bold: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
110
+ readonly cell_valign: v.NullishSchema<v.PicklistSchema<["BOTTOM", "MIDDLE", "TOP"], undefined>, undefined>;
111
+ readonly coordinates: v.NullishSchema<v.ArraySchema<v.NullableSchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
112
+ readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
113
+ readonly leading: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
114
+ readonly fontName: v.NullishSchema<v.StringSchema<undefined>, undefined>;
115
+ readonly ignore_emph: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
116
+ readonly 'later-pages': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
117
+ readonly attachment_retrieval: v.NullishSchema<v.LiteralSchema<"no-content", undefined>, undefined>;
118
+ readonly backColor: v.NullishSchema<v.StringSchema<undefined>, undefined>;
119
+ }, undefined>, undefined>;
120
+ }, undefined>>>]>, undefined>;
121
+ readonly 'user-input-mode': v.NullishSchema<v.PicklistSchema<["display", "noinput", "optional", "required"], undefined>, undefined>;
122
+ readonly attribute: v.NullishSchema<v.StringSchema<undefined>, undefined>;
123
+ readonly value: v.NullishSchema<v.StringSchema<undefined>, undefined>;
124
+ readonly 'default-value': v.NullishSchema<v.StringSchema<undefined>, undefined>;
125
+ readonly sources: v.NullishSchema<v.StringSchema<undefined>, undefined>;
126
+ readonly 'value-constructor': v.NullishSchema<v.StringSchema<undefined>, undefined>;
127
+ readonly 'is-display-field': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
128
+ readonly datatype: v.NullishSchema<v.PicklistSchema<["amka", "attachment", "blood_group", "document_id", "idnumber", "string", "date"], undefined>, undefined>;
129
+ readonly 'default-on-empty': v.NullishSchema<v.StringSchema<undefined>, undefined>;
130
+ readonly safe: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
131
+ }, undefined>;
132
+ export type StringType = v.InferOutput<typeof StringSchema>;
133
+ export type StringSchemaType = v.GenericSchema<StringType>;
134
+ declare const _default: StringSchemaType;
135
+ export default _default;
@@ -0,0 +1,80 @@
1
+ import { array, boolean as external_valibot_boolean, literal, nullable, nullish, number, picklist, strictObject, string } from "valibot";
2
+ import { createFieldDisplay } from "../common.js";
3
+ const StringFieldDisplaySchema = createFieldDisplay(strictObject({
4
+ component: nullish(literal('string')),
5
+ 'component-params': nullish(strictObject({
6
+ position: nullish(picklist([
7
+ 'center',
8
+ 'justify',
9
+ 'left',
10
+ 'right'
11
+ ])),
12
+ enforceUppercase: nullish(external_valibot_boolean()),
13
+ multiplicity: nullish(number()),
14
+ multiplicityLabels: nullish(strictObject({
15
+ empty: nullish(string()),
16
+ addItem: nullish(string()),
17
+ addTitle: nullish(string()),
18
+ submitAdd: nullish(string()),
19
+ emptyValueDisplay: nullish(string())
20
+ })),
21
+ format: nullish(literal('plaintext')),
22
+ textColor: nullish(string()),
23
+ 'format-title': nullish(external_valibot_boolean()),
24
+ emph: nullish(external_valibot_boolean()),
25
+ bold: nullish(external_valibot_boolean()),
26
+ cell_valign: nullish(picklist([
27
+ 'BOTTOM',
28
+ 'MIDDLE',
29
+ 'TOP'
30
+ ])),
31
+ coordinates: nullish(array(nullable(number()))),
32
+ fontSize: nullish(number()),
33
+ leading: nullish(number()),
34
+ fontName: nullish(string()),
35
+ ignore_emph: nullish(external_valibot_boolean()),
36
+ 'later-pages': nullish(external_valibot_boolean()),
37
+ attachment_retrieval: nullish(literal('no-content')),
38
+ backColor: nullish(string())
39
+ }))
40
+ }), strictObject({
41
+ component: nullish(literal('string')),
42
+ emph: nullish(external_valibot_boolean()),
43
+ bold: nullish(external_valibot_boolean()),
44
+ fontSize: nullish(number()),
45
+ position: nullish(picklist([
46
+ 'center',
47
+ 'justify',
48
+ 'left',
49
+ 'right'
50
+ ]))
51
+ }));
52
+ const StringDatatypeSchema = nullish(picklist([
53
+ 'amka',
54
+ 'attachment',
55
+ 'blood_group',
56
+ 'document_id',
57
+ 'idnumber',
58
+ 'string',
59
+ 'date'
60
+ ]));
61
+ const StringSchema = strictObject({
62
+ display: nullish(StringFieldDisplaySchema),
63
+ 'user-input-mode': nullish(picklist([
64
+ 'display',
65
+ 'noinput',
66
+ 'optional',
67
+ 'required'
68
+ ])),
69
+ attribute: nullish(string()),
70
+ value: nullish(string()),
71
+ 'default-value': nullish(string()),
72
+ sources: nullish(string()),
73
+ 'value-constructor': nullish(string()),
74
+ 'is-display-field': nullish(external_valibot_boolean()),
75
+ datatype: StringDatatypeSchema,
76
+ 'default-on-empty': nullish(string()),
77
+ safe: nullish(external_valibot_boolean())
78
+ });
79
+ const field_string = StringSchema;
80
+ export { field_string as default };
@@ -0,0 +1,85 @@
1
+ import * as v from 'valibot';
2
+ declare const TextSchema: v.StrictObjectSchema<{
3
+ readonly 'user-input-mode': v.PicklistSchema<["display", "noinput", "optional", "required"], undefined>;
4
+ readonly display: v.SchemaWithPipe<readonly [v.RecordSchema<v.StringSchema<undefined>, v.AnySchema, undefined>, v.RawCheckAction<import("../common.js").DisplayType<v.ObjectSchema<{
5
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
6
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
7
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
8
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
9
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
10
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
11
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
12
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
13
+ readonly md: v.StringSchema<undefined>;
14
+ }, undefined>, undefined>;
15
+ } & {
16
+ readonly component: v.LiteralSchema<"text", undefined>;
17
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
18
+ readonly format: v.NullishSchema<v.LiteralSchema<"plaintext", undefined>, undefined>;
19
+ readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
20
+ readonly leading: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
21
+ readonly bold: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
22
+ readonly textColor: v.NullishSchema<v.StringSchema<undefined>, undefined>;
23
+ readonly position: v.NullishSchema<v.PicklistSchema<["center", "justify", "left", "right"], undefined>, undefined>;
24
+ readonly cell_valign: v.NullishSchema<v.PicklistSchema<["BOTTOM", "MIDDLE", "TOP"], undefined>, undefined>;
25
+ readonly enforceUppercase: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
26
+ }, undefined>, undefined>;
27
+ }, undefined>, v.ObjectSchema<{
28
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
29
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
30
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
31
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
32
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
33
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
34
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
35
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
36
+ readonly md: v.StringSchema<undefined>;
37
+ }, undefined>, undefined>;
38
+ } & {
39
+ readonly component: v.LiteralSchema<"text", undefined>;
40
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
41
+ readonly format: v.NullishSchema<v.LiteralSchema<"plaintext", undefined>, undefined>;
42
+ readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
43
+ readonly leading: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
44
+ readonly bold: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
45
+ readonly textColor: v.NullishSchema<v.StringSchema<undefined>, undefined>;
46
+ readonly position: v.NullishSchema<v.PicklistSchema<["center", "justify", "left", "right"], undefined>, undefined>;
47
+ readonly cell_valign: v.NullishSchema<v.PicklistSchema<["BOTTOM", "MIDDLE", "TOP"], undefined>, undefined>;
48
+ readonly enforceUppercase: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
49
+ }, undefined>, undefined>;
50
+ }, undefined>, v.ObjectSchema<{
51
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
52
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
53
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
54
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
55
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
56
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
57
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
58
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
59
+ readonly md: v.StringSchema<undefined>;
60
+ }, undefined>, undefined>;
61
+ } & {
62
+ readonly component: v.LiteralSchema<"text", undefined>;
63
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
64
+ readonly format: v.NullishSchema<v.LiteralSchema<"plaintext", undefined>, undefined>;
65
+ readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
66
+ readonly leading: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
67
+ readonly bold: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
68
+ readonly textColor: v.NullishSchema<v.StringSchema<undefined>, undefined>;
69
+ readonly position: v.NullishSchema<v.PicklistSchema<["center", "justify", "left", "right"], undefined>, undefined>;
70
+ readonly cell_valign: v.NullishSchema<v.PicklistSchema<["BOTTOM", "MIDDLE", "TOP"], undefined>, undefined>;
71
+ readonly enforceUppercase: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
72
+ }, undefined>, undefined>;
73
+ }, undefined>>>]>;
74
+ readonly value: v.NullishSchema<v.StringSchema<undefined>, undefined>;
75
+ readonly 'default-value': v.NullishSchema<v.StringSchema<undefined>, undefined>;
76
+ readonly attribute: v.NullishSchema<v.StringSchema<undefined>, undefined>;
77
+ readonly datatype: v.NullishSchema<v.PicklistSchema<["text", "string"], undefined>, undefined>;
78
+ readonly sources: v.NullishSchema<v.StringSchema<undefined>, undefined>;
79
+ readonly 'value-constructor': v.NullishSchema<v.StringSchema<undefined>, undefined>;
80
+ readonly safe: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
81
+ }, undefined>;
82
+ export type TextType = v.InferOutput<typeof TextSchema>;
83
+ export type TextSchemaType = v.GenericSchema<TextType>;
84
+ declare const _default: TextSchemaType;
85
+ export default _default;
@@ -0,0 +1,45 @@
1
+ import { boolean as external_valibot_boolean, literal, nullish, number, picklist, strictObject, string } from "valibot";
2
+ import { createFieldDisplay } from "../common.js";
3
+ const TextDisplaySchema = createFieldDisplay(strictObject({
4
+ component: literal('text'),
5
+ 'component-params': nullish(strictObject({
6
+ format: nullish(literal('plaintext')),
7
+ fontSize: nullish(number()),
8
+ leading: nullish(number()),
9
+ bold: nullish(external_valibot_boolean()),
10
+ textColor: nullish(string()),
11
+ position: nullish(picklist([
12
+ 'center',
13
+ 'justify',
14
+ 'left',
15
+ 'right'
16
+ ])),
17
+ cell_valign: nullish(picklist([
18
+ 'BOTTOM',
19
+ 'MIDDLE',
20
+ 'TOP'
21
+ ])),
22
+ enforceUppercase: nullish(external_valibot_boolean())
23
+ }))
24
+ }));
25
+ const TextSchema = strictObject({
26
+ 'user-input-mode': picklist([
27
+ 'display',
28
+ 'noinput',
29
+ 'optional',
30
+ 'required'
31
+ ]),
32
+ display: TextDisplaySchema,
33
+ value: nullish(string()),
34
+ 'default-value': nullish(string()),
35
+ attribute: nullish(string()),
36
+ datatype: nullish(picklist([
37
+ 'text',
38
+ 'string'
39
+ ])),
40
+ sources: nullish(string()),
41
+ 'value-constructor': nullish(string()),
42
+ safe: nullish(external_valibot_boolean())
43
+ });
44
+ const field_text = TextSchema;
45
+ export { field_text as default };
@@ -0,0 +1,64 @@
1
+ import * as v from 'valibot';
2
+ declare const ThreeBlockDateSchema: v.StrictObjectSchema<{
3
+ readonly 'user-input-mode': v.PicklistSchema<["noinput", "optional", "required"], undefined>;
4
+ readonly attribute: v.NullishSchema<v.StringSchema<undefined>, undefined>;
5
+ readonly display: v.SchemaWithPipe<readonly [v.RecordSchema<v.StringSchema<undefined>, v.AnySchema, undefined>, v.RawCheckAction<import("../common.js").DisplayType<v.ObjectSchema<{
6
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
7
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
8
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
9
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
10
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
11
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
12
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
13
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
14
+ readonly md: v.StringSchema<undefined>;
15
+ }, undefined>, undefined>;
16
+ } & {
17
+ readonly component: v.LiteralSchema<"three-block-date", undefined>;
18
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
19
+ readonly max: v.LiteralSchema<"now", undefined>;
20
+ readonly min: v.NullishSchema<v.StringSchema<undefined>, undefined>;
21
+ }, undefined>, undefined>;
22
+ }, undefined>, v.ObjectSchema<{
23
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
24
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
25
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
26
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
27
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
28
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
29
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
30
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
31
+ readonly md: v.StringSchema<undefined>;
32
+ }, undefined>, undefined>;
33
+ } & {
34
+ readonly component: v.LiteralSchema<"three-block-date", undefined>;
35
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
36
+ readonly max: v.LiteralSchema<"now", undefined>;
37
+ readonly min: v.NullishSchema<v.StringSchema<undefined>, undefined>;
38
+ }, undefined>, undefined>;
39
+ }, undefined>, v.ObjectSchema<{
40
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
41
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
42
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
43
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
44
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
45
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
46
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
47
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
48
+ readonly md: v.StringSchema<undefined>;
49
+ }, undefined>, undefined>;
50
+ } & {
51
+ readonly component: v.LiteralSchema<"three-block-date", undefined>;
52
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
53
+ readonly max: v.LiteralSchema<"now", undefined>;
54
+ readonly min: v.NullishSchema<v.StringSchema<undefined>, undefined>;
55
+ }, undefined>, undefined>;
56
+ }, undefined>>>]>;
57
+ readonly 'default-on-empty': v.NullishSchema<v.StringSchema<undefined>, undefined>;
58
+ readonly 'default-value': v.NullishSchema<v.StringSchema<undefined>, undefined>;
59
+ readonly datatype: v.NullishSchema<v.PicklistSchema<["date", "string"], undefined>, undefined>;
60
+ }, undefined>;
61
+ export type ThreeBlockDateType = v.InferOutput<typeof ThreeBlockDateSchema>;
62
+ export type ThreeBlockDateSchemaType = v.GenericSchema<ThreeBlockDateType>;
63
+ declare const _default: ThreeBlockDateSchemaType;
64
+ export default _default;
@@ -0,0 +1,26 @@
1
+ import { literal, nullish, picklist, strictObject, string } from "valibot";
2
+ import { createFieldDisplay } from "../common.js";
3
+ const ThreeBlockDateDisplaySchema = createFieldDisplay(strictObject({
4
+ component: literal('three-block-date'),
5
+ 'component-params': nullish(strictObject({
6
+ max: literal('now'),
7
+ min: nullish(string())
8
+ }))
9
+ }));
10
+ const ThreeBlockDateSchema = strictObject({
11
+ 'user-input-mode': picklist([
12
+ 'noinput',
13
+ 'optional',
14
+ 'required'
15
+ ]),
16
+ attribute: nullish(string()),
17
+ display: ThreeBlockDateDisplaySchema,
18
+ 'default-on-empty': nullish(string()),
19
+ 'default-value': nullish(string()),
20
+ datatype: nullish(picklist([
21
+ 'date',
22
+ 'string'
23
+ ]))
24
+ });
25
+ const three_block_date = ThreeBlockDateSchema;
26
+ export { three_block_date as default };
@@ -0,0 +1,57 @@
1
+ import * as v from 'valibot';
2
+ declare const UrlParamSchema: v.StrictObjectSchema<{
3
+ readonly 'user-input-mode': v.LiteralSchema<"optional", undefined>;
4
+ readonly display: v.SchemaWithPipe<readonly [v.RecordSchema<v.StringSchema<undefined>, v.AnySchema, undefined>, v.RawCheckAction<import("../common.js").DisplayType<v.ObjectSchema<{
5
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
6
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
7
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
8
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
9
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
10
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
11
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
12
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
13
+ readonly md: v.StringSchema<undefined>;
14
+ }, undefined>, undefined>;
15
+ } & {
16
+ readonly component: v.LiteralSchema<"url-param", undefined>;
17
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
18
+ readonly 'param-name': v.NullishSchema<v.StringSchema<undefined>, undefined>;
19
+ }, undefined>, undefined>;
20
+ }, undefined>, v.ObjectSchema<{
21
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
22
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
23
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
24
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
25
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
26
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
27
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
28
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
29
+ readonly md: v.StringSchema<undefined>;
30
+ }, undefined>, undefined>;
31
+ } & {
32
+ readonly component: v.LiteralSchema<"url-param", undefined>;
33
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
34
+ readonly 'param-name': v.NullishSchema<v.StringSchema<undefined>, undefined>;
35
+ }, undefined>, undefined>;
36
+ }, undefined>, v.ObjectSchema<{
37
+ readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
38
+ readonly title_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
39
+ readonly value_md: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
40
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
41
+ readonly hint_md: v.NullishSchema<v.StringSchema<undefined>, undefined>;
42
+ readonly template_hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
43
+ readonly example: v.NullishSchema<v.StringSchema<undefined>, undefined>;
44
+ readonly layout: v.NullishSchema<v.StrictObjectSchema<{
45
+ readonly md: v.StringSchema<undefined>;
46
+ }, undefined>, undefined>;
47
+ } & {
48
+ readonly component: v.LiteralSchema<"url-param", undefined>;
49
+ readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
50
+ readonly 'param-name': v.NullishSchema<v.StringSchema<undefined>, undefined>;
51
+ }, undefined>, undefined>;
52
+ }, undefined>>>]>;
53
+ }, undefined>;
54
+ export type UrlParamType = v.InferOutput<typeof UrlParamSchema>;
55
+ export type UrlParamSchemaType = v.GenericSchema<UrlParamType>;
56
+ declare const _default: UrlParamSchemaType;
57
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import { literal, nullish, strictObject, string } from "valibot";
2
+ import { createFieldDisplay } from "../common.js";
3
+ const UrlParamDisplaySchema = createFieldDisplay(strictObject({
4
+ component: literal('url-param'),
5
+ 'component-params': nullish(strictObject({
6
+ 'param-name': nullish(string())
7
+ }))
8
+ }));
9
+ const UrlParamSchema = strictObject({
10
+ 'user-input-mode': literal('optional'),
11
+ display: UrlParamDisplaySchema
12
+ });
13
+ const url_param = UrlParamSchema;
14
+ export { url_param as default };
@@ -0,0 +1,102 @@
1
+ import * as v from 'valibot';
2
+ export declare const MultiplicityLabelsSchema: v.StrictObjectSchema<{
3
+ /** add dialog title */
4
+ readonly addTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
5
+ /** edit dialog title */
6
+ readonly editTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
7
+ /** add action */
8
+ readonly addItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
9
+ /** remove item action */
10
+ readonly removeItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
11
+ /** edit item action */
12
+ readonly editItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
13
+ /** submit form action (add case) */
14
+ readonly submitAdd: v.NullishSchema<v.StringSchema<undefined>, undefined>;
15
+ /** submit form action (edit case) */
16
+ readonly submitEdit: v.NullishSchema<v.StringSchema<undefined>, undefined>;
17
+ /** cancel action */
18
+ readonly cancel: v.NullishSchema<v.StringSchema<undefined>, undefined>;
19
+ /** empty selection message (form field) */
20
+ readonly empty: v.NullishSchema<v.StringSchema<undefined>, undefined>;
21
+ /** empty selection message (field display) */
22
+ readonly emptyValueDisplay: v.NullishSchema<v.StringSchema<undefined>, undefined>;
23
+ }, undefined>;
24
+ export type MultiplicityLabels = v.InferOutput<typeof MultiplicityLabelsSchema>;
25
+ export declare const OtherComponentParamsSchema: v.StrictObjectSchema<{
26
+ readonly page_break: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
27
+ readonly sticky_title: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
28
+ readonly multiplicity: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
29
+ readonly multiplicityLabels: v.NullishSchema<v.StrictObjectSchema<{
30
+ /** add dialog title */
31
+ readonly addTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
32
+ /** edit dialog title */
33
+ readonly editTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
34
+ /** add action */
35
+ readonly addItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
36
+ /** remove item action */
37
+ readonly removeItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
38
+ /** edit item action */
39
+ readonly editItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
40
+ /** submit form action (add case) */
41
+ readonly submitAdd: v.NullishSchema<v.StringSchema<undefined>, undefined>;
42
+ /** submit form action (edit case) */
43
+ readonly submitEdit: v.NullishSchema<v.StringSchema<undefined>, undefined>;
44
+ /** cancel action */
45
+ readonly cancel: v.NullishSchema<v.StringSchema<undefined>, undefined>;
46
+ /** empty selection message (form field) */
47
+ readonly empty: v.NullishSchema<v.StringSchema<undefined>, undefined>;
48
+ /** empty selection message (field display) */
49
+ readonly emptyValueDisplay: v.NullishSchema<v.StringSchema<undefined>, undefined>;
50
+ }, undefined>, undefined>;
51
+ readonly required: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
52
+ readonly fixed: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
53
+ readonly layout: v.NullishSchema<v.PicklistSchema<["entry", "card"], undefined>, undefined>;
54
+ }, undefined>;
55
+ export type OtherComponentParams = v.InferOutput<typeof OtherComponentParamsSchema>;
56
+ export declare const TableComponentParamsSchema: v.StrictObjectSchema<{
57
+ readonly page_break: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
58
+ readonly sticky_title: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
59
+ readonly multiplicity: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
60
+ readonly multiplicityLabels: v.NullishSchema<v.StrictObjectSchema<{
61
+ /** add dialog title */
62
+ readonly addTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
63
+ /** edit dialog title */
64
+ readonly editTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
65
+ /** add action */
66
+ readonly addItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
67
+ /** remove item action */
68
+ readonly removeItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
69
+ /** edit item action */
70
+ readonly editItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
71
+ /** submit form action (add case) */
72
+ readonly submitAdd: v.NullishSchema<v.StringSchema<undefined>, undefined>;
73
+ /** submit form action (edit case) */
74
+ readonly submitEdit: v.NullishSchema<v.StringSchema<undefined>, undefined>;
75
+ /** cancel action */
76
+ readonly cancel: v.NullishSchema<v.StringSchema<undefined>, undefined>;
77
+ /** empty selection message (form field) */
78
+ readonly empty: v.NullishSchema<v.StringSchema<undefined>, undefined>;
79
+ /** empty selection message (field display) */
80
+ readonly emptyValueDisplay: v.NullishSchema<v.StringSchema<undefined>, undefined>;
81
+ }, undefined>, undefined>;
82
+ readonly required: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
83
+ readonly fixed: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
84
+ readonly layout: v.NullishSchema<v.PicklistSchema<["entry", "card"], undefined>, undefined>;
85
+ readonly lines: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["no", "grid", "outer", "grid-round", "outer-round"], undefined>, undefined>, undefined>;
86
+ readonly table_halign: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["LEFT", "CENTER", "RIGHT"], undefined>, undefined>, undefined>;
87
+ readonly table_width_ratio: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
88
+ readonly cell_halign: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["left", "center", "right"], undefined>, undefined>, undefined>;
89
+ readonly cell_valign: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["BOTTOM", "MIDDLE", "TOP"], undefined>, undefined>, undefined>;
90
+ readonly cell_height: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
91
+ readonly auto_columns: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
92
+ readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
93
+ readonly no_split: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
94
+ readonly spaceBefore: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
95
+ readonly spaceAfter: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
96
+ readonly omit_empty_values: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
97
+ readonly background: v.NullishSchema<v.StringSchema<undefined>, undefined>;
98
+ readonly coordinates: v.NullishSchema<v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>;
99
+ readonly mirrored: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
100
+ readonly handler: v.NullishSchema<v.StringSchema<undefined>, undefined>;
101
+ }, undefined>;
102
+ export type TableComponentParams = v.InferOutput<typeof TableComponentParamsSchema>;