@uides/stepwise 2.2.1 → 2.2.3

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 (229) hide show
  1. package/CHANGELOG.md +11 -2
  2. package/generators/extractStepwisePossibleValues.d.mts +1 -0
  3. package/index.js +1 -1
  4. package/package.json +1 -1
  5. package/schemas/action.d.ts +48 -168
  6. package/schemas/action.js +34 -47
  7. package/schemas/field/afm/index.d.ts +158 -6
  8. package/schemas/field/afm/index.js +6 -9
  9. package/schemas/field/amka/index.d.ts +152 -8
  10. package/schemas/field/amka/index.js +3 -7
  11. package/schemas/field/attachment/index.d.ts +184 -16
  12. package/schemas/field/attachment/index.js +9 -22
  13. package/schemas/field/captcha/index.d.ts +156 -2
  14. package/schemas/field/captcha/index.js +6 -9
  15. package/schemas/field/choice/index.d.ts +188 -15
  16. package/schemas/field/choice/index.js +4 -9
  17. package/schemas/field/common.d.ts +92 -40
  18. package/schemas/field/common.js +78 -11
  19. package/schemas/field/date/index.d.ts +152 -38
  20. package/schemas/field/date/index.js +6 -33
  21. package/schemas/field/doc_subtitle/index.d.ts +158 -5
  22. package/schemas/field/doc_subtitle/index.js +5 -6
  23. package/schemas/field/doc_title/index.d.ts +154 -8
  24. package/schemas/field/doc_title/index.js +5 -12
  25. package/schemas/field/dynamically-filled-text/index.d.ts +170 -33
  26. package/schemas/field/dynamically-filled-text/index.js +6 -23
  27. package/schemas/field/email/index.d.ts +152 -8
  28. package/schemas/field/email/index.js +5 -9
  29. package/schemas/field/fillable-string/index.d.ts +156 -12
  30. package/schemas/field/fillable-string/index.js +4 -10
  31. package/schemas/field/five-block-date/index.d.ts +156 -2
  32. package/schemas/field/five-block-date/index.js +5 -4
  33. package/schemas/field/hidden/index.d.ts +161 -14
  34. package/schemas/field/hidden/index.js +7 -15
  35. package/schemas/field/hierarchical-selector/index.d.ts +176 -37
  36. package/schemas/field/hierarchical-selector/index.js +5 -21
  37. package/schemas/field/iban/index.d.ts +168 -6
  38. package/schemas/field/iban/index.js +3 -3
  39. package/schemas/field/image/index.d.ts +168 -16
  40. package/schemas/field/image/index.js +7 -23
  41. package/schemas/field/index.d.ts +2 -7
  42. package/schemas/field/index.js +8 -15
  43. package/schemas/field/int/index.d.ts +152 -8
  44. package/schemas/field/int/index.js +5 -9
  45. package/schemas/field/intl_mobile_phone/index.d.ts +156 -3
  46. package/schemas/field/intl_mobile_phone/index.js +5 -5
  47. package/schemas/field/lab-results/index.d.ts +156 -3
  48. package/schemas/field/lab-results/index.js +6 -6
  49. package/schemas/field/mobile_phone/index.d.ts +158 -5
  50. package/schemas/field/mobile_phone/index.js +5 -6
  51. package/schemas/field/multiple-choice/index.d.ts +180 -12
  52. package/schemas/field/multiple-choice/index.js +3 -8
  53. package/schemas/field/password/index.d.ts +156 -2
  54. package/schemas/field/password/index.js +5 -5
  55. package/schemas/field/pdf-image/index.d.ts +152 -14
  56. package/schemas/field/pdf-image/index.js +6 -18
  57. package/schemas/field/postal_code/index.d.ts +156 -4
  58. package/schemas/field/postal_code/index.js +6 -8
  59. package/schemas/field/preference-multiple-choice/index.d.ts +211 -17
  60. package/schemas/field/preference-multiple-choice/index.js +5 -9
  61. package/schemas/field/qrcode/index.d.ts +168 -19
  62. package/schemas/field/qrcode/index.js +6 -18
  63. package/schemas/field/quote/index.d.ts +170 -11
  64. package/schemas/field/quote/index.js +4 -12
  65. package/schemas/field/radio-choice/index.d.ts +172 -9
  66. package/schemas/field/radio-choice/index.js +4 -10
  67. package/schemas/field/rate/index.d.ts +150 -8
  68. package/schemas/field/rate/index.js +4 -7
  69. package/schemas/field/recipient/index.d.ts +158 -5
  70. package/schemas/field/recipient/index.js +5 -9
  71. package/schemas/field/redirect/index.d.ts +156 -6
  72. package/schemas/field/redirect/index.js +6 -9
  73. package/schemas/field/refcode/index.d.ts +168 -16
  74. package/schemas/field/refcode/index.js +6 -20
  75. package/schemas/field/string/index.d.ts +226 -65
  76. package/schemas/field/string/index.js +5 -54
  77. package/schemas/field/text/index.d.ts +170 -33
  78. package/schemas/field/text/index.js +5 -30
  79. package/schemas/field/three-block-date/index.d.ts +176 -12
  80. package/schemas/field/three-block-date/index.js +4 -10
  81. package/schemas/field/url/index.d.ts +204 -0
  82. package/schemas/field/url/index.js +16 -0
  83. package/schemas/fieldset/component-params.d.ts +9 -41
  84. package/schemas/fieldset/component-params.js +5 -29
  85. package/schemas/fieldset/display-components.d.ts +16 -244
  86. package/schemas/fieldset/display-components.js +6 -19
  87. package/schemas/fieldset/enums.d.ts +0 -22
  88. package/schemas/fieldset/enums.js +1 -15
  89. package/schemas/fieldset/index.d.ts +9 -93
  90. package/schemas/index.d.ts +1 -1
  91. package/schemas/index.js +1 -1
  92. package/schemas/step.d.ts +7 -0
  93. package/schemas/step.js +2 -1
  94. package/schemas/{template/template.d.ts → template.d.ts} +47 -23
  95. package/schemas/template.js +26 -0
  96. package/src/generators/actions-possible-values/document-anon-create.json +19 -0
  97. package/src/generators/actions-possible-values/document-backstep.json +19 -0
  98. package/src/generators/actions-possible-values/document-create-new.json +43 -0
  99. package/src/generators/actions-possible-values/document-create.json +20 -0
  100. package/src/generators/actions-possible-values/document-dismiss.json +36 -0
  101. package/src/generators/actions-possible-values/document-download-pdf.json +69 -0
  102. package/src/generators/actions-possible-values/document-email.json +42 -0
  103. package/src/generators/actions-possible-values/document-resend-otp.json +30 -0
  104. package/src/generators/actions-possible-values/document-revoke.json +46 -0
  105. package/src/generators/actions-possible-values/document-share.json +29 -0
  106. package/src/generators/actions-possible-values/document-sms.json +38 -0
  107. package/src/generators/actions-possible-values/document-temporary-save.json +28 -0
  108. package/src/generators/actions-possible-values/document-update.json +111 -0
  109. package/src/generators/actions-possible-values/entity-forward.json +31 -0
  110. package/src/generators/actions-possible-values/entity-reply.json +31 -0
  111. package/src/generators/actions-possible-values/entity-send-message.json +34 -0
  112. package/src/generators/actions-possible-values/hidden.json +22 -0
  113. package/src/generators/actions-possible-values/link.json +43 -0
  114. package/src/generators/extractStepwisePossibleValues.mjs +139 -0
  115. package/src/generators/fields-possible-values/afm.json +94 -0
  116. package/src/generators/fields-possible-values/amka.json +26 -0
  117. package/src/generators/fields-possible-values/attachment.json +89 -0
  118. package/src/generators/fields-possible-values/captcha.json +16 -0
  119. package/src/generators/fields-possible-values/choice.json +432 -0
  120. package/src/generators/fields-possible-values/date.json +57 -0
  121. package/src/generators/fields-possible-values/doc_subtitle.json +26 -0
  122. package/src/generators/fields-possible-values/doc_title.json +63 -0
  123. package/src/generators/fields-possible-values/dynamically-filled-text.json +47 -0
  124. package/src/generators/fields-possible-values/email.json +65 -0
  125. package/src/generators/fields-possible-values/fillable-string.json +47 -0
  126. package/src/generators/fields-possible-values/five-block-date.json +23 -0
  127. package/src/generators/fields-possible-values/hidden.json +140 -0
  128. package/src/generators/fields-possible-values/hierarchical-selector.json +84 -0
  129. package/src/generators/fields-possible-values/iban.json +35 -0
  130. package/src/generators/fields-possible-values/image.json +37 -0
  131. package/src/generators/fields-possible-values/int.json +52 -0
  132. package/src/generators/fields-possible-values/intl_mobile_phone.json +32 -0
  133. package/src/generators/fields-possible-values/lab-results.json +19 -0
  134. package/src/generators/fields-possible-values/mobile_phone.json +45 -0
  135. package/src/generators/fields-possible-values/multiple-choice.json +128 -0
  136. package/src/generators/fields-possible-values/password.json +20 -0
  137. package/src/generators/fields-possible-values/pdf-image.json +70 -0
  138. package/src/generators/fields-possible-values/postal_code.json +32 -0
  139. package/src/generators/fields-possible-values/preference-multiple-choice.json +53 -0
  140. package/src/generators/fields-possible-values/qrcode.json +75 -0
  141. package/src/generators/fields-possible-values/quote.json +71 -0
  142. package/src/generators/fields-possible-values/radio-choice.json +209 -0
  143. package/src/generators/fields-possible-values/rate.json +26 -0
  144. package/src/generators/fields-possible-values/recipient.json +46 -0
  145. package/src/generators/fields-possible-values/redirect.json +22 -0
  146. package/src/generators/fields-possible-values/refcode.json +89 -0
  147. package/src/generators/fields-possible-values/string.json +778 -0
  148. package/src/generators/fields-possible-values/text.json +105 -0
  149. package/src/generators/fields-possible-values/three-block-date.json +83 -0
  150. package/src/generators/fields-possible-values/url.json +23 -0
  151. package/src/generators/fieldsets-possible-values/form.json +311 -0
  152. package/src/generators/fieldsets-possible-values/hidden.json +107 -0
  153. package/src/generators/fieldsets-possible-values/unknown.json +69 -0
  154. package/src/generators/fieldsets-possible-values/values-list.json +364 -0
  155. package/src/schemas/action.ts +44 -58
  156. package/src/schemas/field/afm/index.ts +8 -6
  157. package/src/schemas/field/amka/index.ts +7 -9
  158. package/src/schemas/field/attachment/index.ts +9 -23
  159. package/src/schemas/field/captcha/index.ts +8 -3
  160. package/src/schemas/field/choice/index.ts +7 -5
  161. package/src/schemas/field/common.spec.ts +0 -3
  162. package/src/schemas/field/common.ts +115 -53
  163. package/src/schemas/field/date/index.ts +8 -24
  164. package/src/schemas/field/doc_subtitle/index.ts +7 -4
  165. package/src/schemas/field/doc_title/index.ts +7 -14
  166. package/src/schemas/field/dynamically-filled-text/index.ts +7 -15
  167. package/src/schemas/field/email/index.ts +7 -9
  168. package/src/schemas/field/fillable-string/index.ts +7 -11
  169. package/src/schemas/field/five-block-date/index.ts +7 -2
  170. package/src/schemas/field/hidden/index.ts +15 -40
  171. package/src/schemas/field/hierarchical-selector/index.ts +8 -18
  172. package/src/schemas/field/iban/index.ts +7 -3
  173. package/src/schemas/field/image/index.ts +8 -10
  174. package/src/schemas/field/index.ts +8 -33
  175. package/src/schemas/field/int/index.ts +7 -9
  176. package/src/schemas/field/intl_mobile_phone/index.ts +7 -3
  177. package/src/schemas/field/lab-results/index.ts +7 -3
  178. package/src/schemas/field/mobile_phone/index.ts +7 -4
  179. package/src/schemas/field/multiple-choice/index.ts +7 -5
  180. package/src/schemas/field/password/index.ts +8 -3
  181. package/src/schemas/field/pdf-image/index.ts +8 -12
  182. package/src/schemas/field/postal_code/index.ts +8 -5
  183. package/src/schemas/field/preference-multiple-choice/index.ts +8 -7
  184. package/src/schemas/field/qrcode/index.ts +7 -10
  185. package/src/schemas/field/quote/index.ts +8 -8
  186. package/src/schemas/field/radio-choice/index.ts +7 -5
  187. package/src/schemas/field/rate/index.ts +7 -8
  188. package/src/schemas/field/recipient/index.ts +7 -4
  189. package/src/schemas/field/redirect/index.ts +7 -6
  190. package/src/schemas/field/refcode/index.ts +7 -21
  191. package/src/schemas/field/string/index.ts +7 -42
  192. package/src/schemas/field/text/index.ts +8 -16
  193. package/src/schemas/field/three-block-date/index.ts +7 -6
  194. package/src/schemas/field/url/index.ts +24 -0
  195. package/src/schemas/fieldset/component-params.ts +4 -20
  196. package/src/schemas/fieldset/display-components.ts +5 -36
  197. package/src/schemas/fieldset/enums.ts +0 -38
  198. package/src/schemas/step.ts +1 -0
  199. package/src/schemas/{template/template-base.ts → template.ts} +30 -6
  200. package/src/utils/index.ts +69 -2
  201. package/utils/index.js +28 -2
  202. package/schemas/field/consent-content/index.d.ts +0 -68
  203. package/schemas/field/consent-content/index.js +0 -19
  204. package/schemas/field/image-crop/index.d.ts +0 -59
  205. package/schemas/field/image-crop/index.js +0 -19
  206. package/schemas/field/landline_phone/index.d.ts +0 -48
  207. package/schemas/field/landline_phone/index.js +0 -14
  208. package/schemas/field/link/index.d.ts +0 -50
  209. package/schemas/field/link/index.js +0 -16
  210. package/schemas/field/phone/index.d.ts +0 -48
  211. package/schemas/field/phone/index.js +0 -14
  212. package/schemas/field/url-param/index.d.ts +0 -57
  213. package/schemas/field/url-param/index.js +0 -14
  214. package/schemas/template/index.d.ts +0 -2
  215. package/schemas/template/index.js +0 -2
  216. package/schemas/template/template-base.d.ts +0 -53
  217. package/schemas/template/template-base.js +0 -15
  218. package/schemas/template/template-source.d.ts +0 -50
  219. package/schemas/template/template-source.js +0 -14
  220. package/schemas/template/template.js +0 -22
  221. package/src/schemas/field/consent-content/index.ts +0 -28
  222. package/src/schemas/field/image-crop/index.ts +0 -25
  223. package/src/schemas/field/landline_phone/index.ts +0 -18
  224. package/src/schemas/field/link/index.ts +0 -20
  225. package/src/schemas/field/phone/index.ts +0 -18
  226. package/src/schemas/field/url-param/index.ts +0 -23
  227. package/src/schemas/template/index.ts +0 -2
  228. package/src/schemas/template/template-source.ts +0 -88
  229. package/src/schemas/template/template.ts +0 -49
@@ -13,42 +13,31 @@ export declare const FieldsetSchema: v.StrictObjectSchema<{
13
13
  readonly display: v.NullishSchema<v.UnionSchema<[v.LooseObjectSchema<{
14
14
  readonly default: v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.StrictObjectSchema<{
15
15
  readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
16
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
16
17
  readonly component: v.PicklistSchema<["values-list", "hidden", "form"], undefined>;
17
18
  readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
18
- readonly page_break: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
19
19
  readonly sticky_title: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
20
20
  readonly multiplicity: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
21
21
  readonly multiplicityLabels: v.NullishSchema<v.StrictObjectSchema<{
22
22
  readonly addTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
23
+ readonly addHint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
23
24
  readonly editTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
24
25
  readonly addItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
25
- readonly removeItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
26
26
  readonly editItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
27
- readonly submitAdd: v.NullishSchema<v.StringSchema<undefined>, undefined>;
28
- readonly submitEdit: v.NullishSchema<v.StringSchema<undefined>, undefined>;
29
- readonly cancel: v.NullishSchema<v.StringSchema<undefined>, undefined>;
30
27
  readonly empty: v.NullishSchema<v.StringSchema<undefined>, undefined>;
31
- readonly emptyValueDisplay: v.NullishSchema<v.StringSchema<undefined>, undefined>;
32
28
  }, undefined>, undefined>;
33
29
  readonly required: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
34
30
  readonly fixed: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
35
31
  readonly layout: v.NullishSchema<v.PicklistSchema<["entry", "card"], undefined>, undefined>;
32
+ readonly page_break: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
36
33
  readonly lines: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["no", "grid", "outer", "grid-round", "outer-round"], undefined>, undefined>, undefined>;
37
- readonly table_halign: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["LEFT", "CENTER", "RIGHT"], undefined>, undefined>, undefined>;
38
- readonly table_width_ratio: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
39
- readonly cell_halign: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["left", "center", "right"], undefined>, undefined>, undefined>;
40
- readonly cell_valign: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["BOTTOM", "MIDDLE", "TOP"], undefined>, undefined>, undefined>;
34
+ readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
41
35
  readonly cell_height: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
42
36
  readonly auto_columns: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
43
- readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
44
- readonly no_split: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
45
37
  readonly spaceBefore: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
46
38
  readonly spaceAfter: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
47
39
  readonly omit_empty_values: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
48
- readonly background: v.NullishSchema<v.StringSchema<undefined>, undefined>;
49
40
  readonly coordinates: v.NullishSchema<v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>;
50
- readonly mirrored: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
51
- readonly handler: v.NullishSchema<v.StringSchema<undefined>, undefined>;
52
41
  }, undefined>, undefined>;
53
42
  readonly layout: v.NullishSchema<v.StrictObjectSchema<{
54
43
  readonly grid: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
@@ -62,42 +51,31 @@ export declare const FieldsetSchema: v.StrictObjectSchema<{
62
51
  }, undefined>, v.LooseObjectSchema<{
63
52
  readonly web: v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.StrictObjectSchema<{
64
53
  readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
54
+ readonly hint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
65
55
  readonly component: v.PicklistSchema<["values-list", "hidden", "form"], undefined>;
66
56
  readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
67
- readonly page_break: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
68
57
  readonly sticky_title: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
69
58
  readonly multiplicity: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
70
59
  readonly multiplicityLabels: v.NullishSchema<v.StrictObjectSchema<{
71
60
  readonly addTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
61
+ readonly addHint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
72
62
  readonly editTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
73
63
  readonly addItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
74
- readonly removeItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
75
64
  readonly editItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
76
- readonly submitAdd: v.NullishSchema<v.StringSchema<undefined>, undefined>;
77
- readonly submitEdit: v.NullishSchema<v.StringSchema<undefined>, undefined>;
78
- readonly cancel: v.NullishSchema<v.StringSchema<undefined>, undefined>;
79
65
  readonly empty: v.NullishSchema<v.StringSchema<undefined>, undefined>;
80
- readonly emptyValueDisplay: v.NullishSchema<v.StringSchema<undefined>, undefined>;
81
66
  }, undefined>, undefined>;
82
67
  readonly required: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
83
68
  readonly fixed: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
84
69
  readonly layout: v.NullishSchema<v.PicklistSchema<["entry", "card"], undefined>, undefined>;
70
+ readonly page_break: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
85
71
  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>;
72
+ readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
90
73
  readonly cell_height: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
91
74
  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
75
  readonly spaceBefore: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
95
76
  readonly spaceAfter: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
96
77
  readonly omit_empty_values: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
97
- readonly background: v.NullishSchema<v.StringSchema<undefined>, undefined>;
98
78
  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
79
  }, undefined>, undefined>;
102
80
  readonly layout: v.NullishSchema<v.StrictObjectSchema<{
103
81
  readonly grid: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
@@ -109,69 +87,7 @@ export declare const FieldsetSchema: v.StrictObjectSchema<{
109
87
  }, undefined>, undefined>;
110
88
  }, undefined>, undefined>;
111
89
  }, undefined>, v.LooseObjectSchema<{
112
- readonly pdf: v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.VariantSchema<"component", [v.StrictObjectSchema<{
113
- readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
114
- readonly component: v.PicklistSchema<["values-list", "table", "one-liner-table", "signature", "footnotes", "hidden", "custom"], undefined>;
115
- readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
116
- readonly page_break: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
117
- readonly sticky_title: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
118
- readonly multiplicity: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
119
- readonly multiplicityLabels: v.NullishSchema<v.StrictObjectSchema<{
120
- readonly addTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
121
- readonly editTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
122
- readonly addItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
123
- readonly removeItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
124
- readonly editItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
125
- readonly submitAdd: v.NullishSchema<v.StringSchema<undefined>, undefined>;
126
- readonly submitEdit: v.NullishSchema<v.StringSchema<undefined>, undefined>;
127
- readonly cancel: v.NullishSchema<v.StringSchema<undefined>, undefined>;
128
- readonly empty: v.NullishSchema<v.StringSchema<undefined>, undefined>;
129
- readonly emptyValueDisplay: v.NullishSchema<v.StringSchema<undefined>, undefined>;
130
- }, undefined>, undefined>;
131
- readonly required: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
132
- readonly fixed: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
133
- readonly layout: v.NullishSchema<v.PicklistSchema<["entry", "card"], undefined>, undefined>;
134
- readonly lines: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["no", "grid", "outer", "grid-round", "outer-round"], undefined>, undefined>, undefined>;
135
- readonly table_halign: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["LEFT", "CENTER", "RIGHT"], undefined>, undefined>, undefined>;
136
- readonly table_width_ratio: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
137
- readonly cell_halign: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["left", "center", "right"], undefined>, undefined>, undefined>;
138
- readonly cell_valign: v.OptionalSchema<v.NullableSchema<v.PicklistSchema<["BOTTOM", "MIDDLE", "TOP"], undefined>, undefined>, undefined>;
139
- readonly cell_height: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
140
- readonly auto_columns: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
141
- readonly fontSize: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
142
- readonly no_split: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
143
- readonly spaceBefore: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
144
- readonly spaceAfter: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
145
- readonly omit_empty_values: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
146
- readonly background: v.NullishSchema<v.StringSchema<undefined>, undefined>;
147
- readonly coordinates: v.NullishSchema<v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>;
148
- readonly mirrored: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
149
- readonly handler: v.NullishSchema<v.StringSchema<undefined>, undefined>;
150
- }, undefined>, undefined>;
151
- }, undefined>, v.StrictObjectSchema<{
152
- readonly title: v.NullishSchema<v.StringSchema<undefined>, undefined>;
153
- readonly component: v.PicklistSchema<["header", "common", "plain-text"], undefined>;
154
- readonly 'component-params': v.NullishSchema<v.StrictObjectSchema<{
155
- readonly page_break: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
156
- readonly sticky_title: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
157
- readonly multiplicity: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
158
- readonly multiplicityLabels: v.NullishSchema<v.StrictObjectSchema<{
159
- readonly addTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
160
- readonly editTitle: v.NullishSchema<v.StringSchema<undefined>, undefined>;
161
- readonly addItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
162
- readonly removeItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
163
- readonly editItem: v.NullishSchema<v.StringSchema<undefined>, undefined>;
164
- readonly submitAdd: v.NullishSchema<v.StringSchema<undefined>, undefined>;
165
- readonly submitEdit: v.NullishSchema<v.StringSchema<undefined>, undefined>;
166
- readonly cancel: v.NullishSchema<v.StringSchema<undefined>, undefined>;
167
- readonly empty: v.NullishSchema<v.StringSchema<undefined>, undefined>;
168
- readonly emptyValueDisplay: v.NullishSchema<v.StringSchema<undefined>, undefined>;
169
- }, undefined>, undefined>;
170
- readonly required: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
171
- readonly fixed: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
172
- readonly layout: v.NullishSchema<v.PicklistSchema<["entry", "card"], undefined>, undefined>;
173
- }, undefined>, undefined>;
174
- }, undefined>], undefined>, undefined>;
90
+ readonly pdf: v.RecordSchema<v.PicklistSchema<["default", "el", "en", "fr"], undefined>, v.AnySchema, undefined>;
175
91
  }, undefined>], undefined>, undefined>;
176
92
  }, undefined>;
177
93
  export type Fieldset = v.InferOutput<typeof FieldsetSchema>;
@@ -1,7 +1,7 @@
1
1
  export * from './field/index.js';
2
2
  export * from './fieldset/index.js';
3
3
  export * from './resource/index.js';
4
- export * from './template/index.js';
4
+ export * from './template.js';
5
5
  export * from './validation-context/index.js';
6
6
  export * from './action.js';
7
7
  export * from './application.js';
package/schemas/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  export * from "./field/index.js";
2
2
  export * from "./fieldset/index.js";
3
3
  export * from "./resource/index.js";
4
- export * from "./template/index.js";
4
+ export * from "./template.js";
5
5
  export * from "./validation-context/index.js";
6
6
  export * from "./action.js";
7
7
  export * from "./application.js";
package/schemas/step.d.ts CHANGED
@@ -174,6 +174,7 @@ export declare const StepSchema: v.SchemaWithPipe<readonly [v.StrictObjectSchema
174
174
  readonly 'has-display-fields': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
175
175
  readonly targets: v.NullishSchema<v.ArraySchema<v.RecordSchema<v.StringSchema<undefined>, v.AnySchema, undefined>, undefined>, undefined>;
176
176
  readonly 'post-step-claims': v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
177
+ readonly 'pre-step-claims': v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
177
178
  }, undefined>, v.CheckAction<{
178
179
  actions?: import("./action.js").Actions | null | undefined;
179
180
  'action-order': string;
@@ -241,6 +242,7 @@ export declare const StepSchema: v.SchemaWithPipe<readonly [v.StrictObjectSchema
241
242
  [x: string]: any;
242
243
  }[] | null | undefined;
243
244
  'post-step-claims'?: string[] | null | undefined;
245
+ 'pre-step-claims'?: string[] | null | undefined;
244
246
  }, `Invalid field '${string}'`>, v.CheckAction<{
245
247
  actions?: import("./action.js").Actions | null | undefined;
246
248
  'action-order': string;
@@ -308,6 +310,7 @@ export declare const StepSchema: v.SchemaWithPipe<readonly [v.StrictObjectSchema
308
310
  [x: string]: any;
309
311
  }[] | null | undefined;
310
312
  'post-step-claims'?: string[] | null | undefined;
313
+ 'pre-step-claims'?: string[] | null | undefined;
311
314
  }, `Invalid field '${string}'`>, v.CheckAction<{
312
315
  actions?: import("./action.js").Actions | null | undefined;
313
316
  'action-order': string;
@@ -375,6 +378,7 @@ export declare const StepSchema: v.SchemaWithPipe<readonly [v.StrictObjectSchema
375
378
  [x: string]: any;
376
379
  }[] | null | undefined;
377
380
  'post-step-claims'?: string[] | null | undefined;
381
+ 'pre-step-claims'?: string[] | null | undefined;
378
382
  }, `Invalid field '${string}'`>, v.CheckAction<{
379
383
  actions?: import("./action.js").Actions | null | undefined;
380
384
  'action-order': string;
@@ -442,6 +446,7 @@ export declare const StepSchema: v.SchemaWithPipe<readonly [v.StrictObjectSchema
442
446
  [x: string]: any;
443
447
  }[] | null | undefined;
444
448
  'post-step-claims'?: string[] | null | undefined;
449
+ 'pre-step-claims'?: string[] | null | undefined;
445
450
  }, `Invalid field '${string}'`>, v.CheckAction<{
446
451
  actions?: import("./action.js").Actions | null | undefined;
447
452
  'action-order': string;
@@ -509,6 +514,7 @@ export declare const StepSchema: v.SchemaWithPipe<readonly [v.StrictObjectSchema
509
514
  [x: string]: any;
510
515
  }[] | null | undefined;
511
516
  'post-step-claims'?: string[] | null | undefined;
517
+ 'pre-step-claims'?: string[] | null | undefined;
512
518
  }, `Invalid field '${string}'`>, v.CheckAction<{
513
519
  actions?: import("./action.js").Actions | null | undefined;
514
520
  'action-order': string;
@@ -576,6 +582,7 @@ export declare const StepSchema: v.SchemaWithPipe<readonly [v.StrictObjectSchema
576
582
  [x: string]: any;
577
583
  }[] | null | undefined;
578
584
  'post-step-claims'?: string[] | null | undefined;
585
+ 'pre-step-claims'?: string[] | null | undefined;
579
586
  }, `Invalid field '${string}'`>]>;
580
587
  export type Step = v.InferOutput<typeof StepSchema>;
581
588
  type StepSchemaType = v.GenericSchema<Step, Step>;
package/schemas/step.js CHANGED
@@ -69,7 +69,8 @@ const StepSchema = pipe(strictObject({
69
69
  validation_dynamic_info: nullish(string()),
70
70
  'has-display-fields': nullish(external_valibot_boolean()),
71
71
  targets: nullish(array(record(string(), any()))),
72
- 'post-step-claims': nullish(array(string()))
72
+ 'post-step-claims': nullish(array(string())),
73
+ 'pre-step-claims': nullish(array(string()))
73
74
  }), validateField('fieldsets', (fieldsets, step)=>{
74
75
  if (!fieldsets || !step.fields) return true;
75
76
  const fieldsSpec = step.fields;
@@ -1,13 +1,53 @@
1
1
  import * as v from 'valibot';
2
+ import { StepsSpecSchemaType } from './step.js';
2
3
  /**
3
- * Template type used in the frontend.
4
+ * Describes a template.
4
5
  *
5
- * This describes the template as it is returned by the API to the frontend.
6
- * Some of the fields present in the backend model are not used in the frontend type.
7
- *
8
- * @see {@link TemplateBase} for the definition of a template.
6
+ * A template is a set of steps that the user must complete in order to complete a process
7
+ * in the system, whether that is the issuance of a document or the entry of a request.
9
8
  */
10
9
  export declare const TemplateSchema: v.StrictObjectSchema<{
10
+ /**
11
+ * Template's creation date
12
+ */
13
+ readonly created_at: v.NullishSchema<v.StringSchema<undefined>, undefined>;
14
+ /** Brief summary of template */
15
+ readonly description: v.StringSchema<undefined>;
16
+ readonly id: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
17
+ /**
18
+ * Defines the fields that are used to index documents
19
+ *
20
+ * A list of fields of the document, that are used to index multiple documents upon their
21
+ * presentation to the user's gate interface.
22
+ */
23
+ readonly index_by_fields: v.NullishSchema<v.StringSchema<undefined>, undefined>;
24
+ /**
25
+ * Whether the template is officially published or not.
26
+ *
27
+ * If true then template is officially published and functional.
28
+ * Otherwise it is considered a draft and the documents it produces are not valid.
29
+ * @default true
30
+ */
31
+ readonly is_official: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
32
+ /**
33
+ * Codename of the gate that owns the template
34
+ *
35
+ * An entity's gate can be the owner of a template. If not specified, the template is considered
36
+ * to be owned by the "System".
37
+ */
38
+ readonly owner: v.NullishSchema<v.StringSchema<undefined>, undefined>;
39
+ /** The template's unique identifier */
40
+ readonly refname: v.StringSchema<undefined>;
41
+ /**
42
+ * List of templates with which replies to the document can be issued.
43
+ */
44
+ readonly reply_templates: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
45
+ /** Brief title of template */
46
+ readonly shortname: v.StringSchema<undefined>;
47
+ /**
48
+ * Specification of the steps of the template.
49
+ */
50
+ readonly steps_spec: v.NullishSchema<StepsSpecSchemaType, undefined>;
11
51
  /**
12
52
  * Whether the template is enabled or not.
13
53
  */
@@ -18,7 +58,7 @@ export declare const TemplateSchema: v.StrictObjectSchema<{
18
58
  /** @default [] */
19
59
  readonly fields: v.ArraySchema<v.AnySchema, undefined>;
20
60
  }, undefined>;
21
- readonly consent_method: v.PicklistSchema<["login", "otp", "gov_wallet_or_otp"], undefined>;
61
+ readonly consent_method: v.LiteralSchema<"login", undefined>;
22
62
  /**
23
63
  * Recipient's business title
24
64
  * @deprecated
@@ -30,25 +70,9 @@ export declare const TemplateSchema: v.StrictObjectSchema<{
30
70
  * @default ['mobile_certified_login','is_citizen_user','govgr_login']
31
71
  */
32
72
  readonly required_claims: v.ArraySchema<v.StringSchema<undefined>, undefined>;
33
- /**
34
- * Codename of the gate that owns the template
35
- *
36
- * An entity's gate can be the owner of a template. If not specified, the template is considered
37
- * to be owned by the "System".
38
- */
39
- readonly owner: v.NullishSchema<v.StringSchema<undefined>, undefined>;
40
73
  readonly login_endpoint: v.NullishSchema<v.StringSchema<undefined>, undefined>;
41
74
  readonly fields: v.NullishSchema<v.ArraySchema<v.AnySchema, undefined>, undefined>;
42
- readonly 'ui:legacy_renderer': v.BooleanSchema<undefined>;
43
- readonly created_at: v.NullishSchema<v.StringSchema<undefined>, undefined>;
44
- readonly description: v.StringSchema<undefined>;
45
- readonly id: v.NullishSchema<v.NumberSchema<undefined>, undefined>;
46
- readonly index_by_fields: v.NullishSchema<v.StringSchema<undefined>, undefined>;
47
- readonly is_official: v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
48
- readonly refname: v.StringSchema<undefined>;
49
- readonly reply_templates: v.NullishSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
50
- readonly shortname: v.StringSchema<undefined>;
51
- readonly steps_spec: v.NullishSchema<import("../index.js").StepsSpecSchemaType, undefined>;
75
+ readonly 'ui:legacy_renderer': v.NullishSchema<v.BooleanSchema<undefined>, undefined>;
52
76
  }, undefined>;
53
77
  export type Template = v.InferOutput<typeof TemplateSchema>;
54
78
  export default Template;
@@ -0,0 +1,26 @@
1
+ import { any, array, boolean as external_valibot_boolean, literal, nullish, number, strictObject, string } from "valibot";
2
+ import { StepsSpecSchema } from "./step.js";
3
+ const TemplateSchema = strictObject({
4
+ created_at: nullish(string()),
5
+ description: string(),
6
+ id: nullish(number()),
7
+ index_by_fields: nullish(string()),
8
+ is_official: nullish(external_valibot_boolean()),
9
+ owner: nullish(string()),
10
+ refname: string(),
11
+ reply_templates: nullish(array(string())),
12
+ shortname: string(),
13
+ steps_spec: nullish(StepsSpecSchema),
14
+ enabled: nullish(external_valibot_boolean()),
15
+ template_type: strictObject({
16
+ refname: string(),
17
+ fields: array(any())
18
+ }),
19
+ consent_method: literal('login'),
20
+ recipient_hint: nullish(string()),
21
+ required_claims: array(string()),
22
+ login_endpoint: nullish(string()),
23
+ fields: nullish(array(any())),
24
+ 'ui:legacy_renderer': nullish(external_valibot_boolean())
25
+ });
26
+ export { TemplateSchema };
@@ -0,0 +1,19 @@
1
+ {
2
+ "componentName": "document-anon-create",
3
+ "kind": "actions",
4
+ "instanceCount": 1,
5
+ "templates": [
6
+ "VEHICLE-INSURANCE"
7
+ ],
8
+ "possibleValues": {
9
+ "display.default.el.component": [
10
+ "document-anon-create"
11
+ ],
12
+ "display.default.el.label": [
13
+ "Συνέχεια"
14
+ ],
15
+ "display.default.el.primary": [
16
+ true
17
+ ]
18
+ }
19
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "componentName": "document-backstep",
3
+ "kind": "actions",
4
+ "instanceCount": 6,
5
+ "templates": [
6
+ "BUSINESS-AID23"
7
+ ],
8
+ "possibleValues": {
9
+ "display.default.el.component": [
10
+ "document-backstep"
11
+ ],
12
+ "display.default.el.label": [
13
+ "Πίσω"
14
+ ],
15
+ "display.default.el.primary": [
16
+ false
17
+ ]
18
+ }
19
+ }
@@ -0,0 +1,43 @@
1
+ {
2
+ "componentName": "document-create-new",
3
+ "kind": "actions",
4
+ "instanceCount": 21,
5
+ "templates": [
6
+ "EXOUS",
7
+ "GNISIO-YPOGRAFIS",
8
+ "IDIOTIKO-SYMFONITIKO",
9
+ "YPDIL"
10
+ ],
11
+ "possibleValues": {
12
+ "component-params.refname": [
13
+ "YPDIL",
14
+ "IDIOTIKO-SYMFONITIKO",
15
+ "GNISIO-YPOGRAFIS",
16
+ "EXOUS"
17
+ ],
18
+ "display.default.el.component": [
19
+ "document-create-new"
20
+ ],
21
+ "display.default.el.helptext": [
22
+ "Δημιουργήστε νέο έγγραφο",
23
+ "",
24
+ "Δημιουργήστε ένα νέο ιδιωτικό συμφωνητικό με τα στοιχεία σας",
25
+ "Δημιουργήστε μία νέα ψηφιακή βεβαίωση εγγράφου με τα στοιχεία σας"
26
+ ],
27
+ "display.default.el.label": [
28
+ "Νέο Έγγραφο",
29
+ "Αναζήτηση ή Δημιουργία νέου",
30
+ "Δημιουργία"
31
+ ],
32
+ "display.default.el.primary": [
33
+ true,
34
+ false
35
+ ],
36
+ "display.default.el.title": [
37
+ "Δημιουργία νέου εγγράφου",
38
+ "",
39
+ "Δημιουργήστε νέο συμφωνητικό",
40
+ "Δημιουργήστε νέα βεβαίωση"
41
+ ]
42
+ }
43
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "componentName": "document-create",
3
+ "kind": "actions",
4
+ "instanceCount": 2,
5
+ "templates": [
6
+ "AFTEPAGGELTI",
7
+ "GOV-PRESENT-ID"
8
+ ],
9
+ "possibleValues": {
10
+ "display.default.el.component": [
11
+ "document-create"
12
+ ],
13
+ "display.default.el.label": [
14
+ "Συνέχεια"
15
+ ],
16
+ "display.default.el.primary": [
17
+ true
18
+ ]
19
+ }
20
+ }
@@ -0,0 +1,36 @@
1
+ {
2
+ "componentName": "document-dismiss",
3
+ "kind": "actions",
4
+ "instanceCount": 16,
5
+ "templates": [
6
+ "ADEIA-POLITIKOU-GAMOU",
7
+ "KEP-AITISI",
8
+ "OIKKAT-KEP"
9
+ ],
10
+ "possibleValues": {
11
+ "display.default.el.component": [
12
+ "document-dismiss"
13
+ ],
14
+ "display.default.el.confirm_cancel_label": [
15
+ "Επιστροφή"
16
+ ],
17
+ "display.default.el.confirm_confirm_label": [
18
+ "Επιβεβαίωση"
19
+ ],
20
+ "display.default.el.confirm_message": [
21
+ "Επιβεβαιώστε την ακύρωση της αίτησης"
22
+ ],
23
+ "display.default.el.label": [
24
+ "Ακύρωση"
25
+ ],
26
+ "display.default.el.primary": [
27
+ false
28
+ ],
29
+ "display.default.el.self": [
30
+ true
31
+ ],
32
+ "display.default.el.url": [
33
+ "https://aitiseis-dhmoi.services.gov.gr"
34
+ ]
35
+ }
36
+ }
@@ -0,0 +1,69 @@
1
+ {
2
+ "componentName": "document-download-pdf",
3
+ "kind": "actions",
4
+ "instanceCount": 87,
5
+ "templates": [
6
+ "ADEIA-POLITIKOU-GAMOU",
7
+ "AFTEPAGGELTI",
8
+ "APOSTILLE",
9
+ "BUSINESS-AID23",
10
+ "DAKTYLIOS",
11
+ "DIGITAL-SIGN-APPLY",
12
+ "DILOSI-VAPTISIS",
13
+ "EDUDOCS",
14
+ "ENISXYSI-TYPOU",
15
+ "ENSTASI-PARAVASIS-AIT",
16
+ "EVIA-AID-EPIXEIRHSH",
17
+ "EXOUS",
18
+ "GNISIO-YPOGRAFIS",
19
+ "GOV-PRESENT-ID",
20
+ "IDIOTIKO-SYMFONITIKO",
21
+ "KEP-AITISI",
22
+ "KEP-PISTGENN2",
23
+ "OIKKAT",
24
+ "OIKKAT-KEP",
25
+ "PIST-POLYTEK-AIT-ASPE",
26
+ "POINIKO-AIT",
27
+ "REFERENCE",
28
+ "TEACHER-SELF-EVALUATION-B",
29
+ "VEVAIOSI-ERGASTIRIAKON-EXETASEON",
30
+ "YPDIL"
31
+ ],
32
+ "possibleValues": {
33
+ "component-params.filename": [
34
+ "declaration.pdf",
35
+ "govgr_document.pdf",
36
+ "application.pdf",
37
+ "authorization.pdf"
38
+ ],
39
+ "component-params.sign": [
40
+ false
41
+ ],
42
+ "display.default.el.component": [
43
+ "document-download-pdf"
44
+ ],
45
+ "display.default.el.helptext": [
46
+ "Αποθηκεύστε το αρχείο PDF στη συσκευή σας.",
47
+ null,
48
+ "Αποθήκευση του αρχείου PDF στην συσκευή σας / Save the PDF file to your device."
49
+ ],
50
+ "display.default.el.label": [
51
+ "Αποθήκευση",
52
+ "Εκτύπωση αίτησης",
53
+ "Αποθήκευση / Save"
54
+ ],
55
+ "display.default.el.primary": [
56
+ true,
57
+ false
58
+ ],
59
+ "display.default.el.title": [
60
+ "Αποθηκεύστε στο αρχείο σας",
61
+ null,
62
+ "Αποθήκευση στο αρχείο σας / Save to your archive",
63
+ "Απόθηκευση στο αρχείο σας / Save to your archive"
64
+ ],
65
+ "display.web.el.icon": [
66
+ "picture_as_pdf"
67
+ ]
68
+ }
69
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ "componentName": "document-email",
3
+ "kind": "actions",
4
+ "instanceCount": 10,
5
+ "templates": [
6
+ "BUSINESS-AID23",
7
+ "DIGITAL-SIGN-APPLY",
8
+ "EVIA-AID-EPIXEIRHSH",
9
+ "EXOUS",
10
+ "YPDIL"
11
+ ],
12
+ "possibleValues": {
13
+ "component-params.email_field": [
14
+ "solemn:email",
15
+ "authorization:email"
16
+ ],
17
+ "component-params.subject": [
18
+ "Υπεύθυνη Δήλωση - GOV.GR",
19
+ "Εξουσιοδότηση - GOV.GR"
20
+ ],
21
+ "component-params.template": [
22
+ "Δείτε την υπεύθυνη δήλωσή σας εδώ: %s",
23
+ "Δείτε την εξουσιοδότησή σας εδώ: %s",
24
+ "Δείτε την αίτησή σας εδώ: %s"
25
+ ],
26
+ "display.default.el.component": [
27
+ "document-email"
28
+ ],
29
+ "display.default.el.helptext": [
30
+ "Λάβετε το έγγραφο στη διεύθυνση ηλεκτρονικού ταχυδρομείου σας."
31
+ ],
32
+ "display.default.el.label": [
33
+ "Αποστολή E-mail"
34
+ ],
35
+ "display.default.el.primary": [
36
+ false
37
+ ],
38
+ "display.default.el.title": [
39
+ "Λάβετε το έγγραφο μέσω E-mail"
40
+ ]
41
+ }
42
+ }