@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
@@ -0,0 +1,45 @@
1
+ {
2
+ "componentName": "mobile_phone",
3
+ "kind": "fields",
4
+ "instanceCount": 22,
5
+ "templates": [
6
+ "BUSINESS-AID23",
7
+ "DILOSI-VAPTISIS",
8
+ "EVIA-AID-EPIXEIRHSH",
9
+ "PIST-POLYTEK-AIT-ASPE",
10
+ "REFERENCE"
11
+ ],
12
+ "possibleValues": {
13
+ "attribute": [
14
+ null
15
+ ],
16
+ "datatype": [
17
+ "mobile_phone"
18
+ ],
19
+ "default-value": [
20
+ "6901234567"
21
+ ],
22
+ "display.default.el.component": [
23
+ "mobile_phone"
24
+ ],
25
+ "display.default.el.title": [
26
+ "Component mobile_phone",
27
+ "Κινητό Τηλέφωνο",
28
+ "Τηλέφωνο"
29
+ ],
30
+ "display.default.el.title_md": [
31
+ 8
32
+ ],
33
+ "display.default.el.value_md": [
34
+ 22
35
+ ],
36
+ "display.pdf.el.title": [
37
+ "Τηλ"
38
+ ],
39
+ "user-input-mode": [
40
+ "optional",
41
+ "noinput",
42
+ "required"
43
+ ]
44
+ }
45
+ }
@@ -0,0 +1,128 @@
1
+ {
2
+ "componentName": "multiple-choice",
3
+ "kind": "fields",
4
+ "instanceCount": 33,
5
+ "templates": [
6
+ "BUSINESS-AID23",
7
+ "DILOSI-VAPTISIS",
8
+ "EDUDOCS",
9
+ "EVIA-AID-EPIXEIRHSH",
10
+ "KEP-PISTGENN2",
11
+ "REFERENCE",
12
+ "TEACHER-SELF-EVALUATION-B"
13
+ ],
14
+ "possibleValues": {
15
+ "choices-source-fn": [
16
+ "dilosi.applications.edudocs.claims.unit_workers.get_worker_choices"
17
+ ],
18
+ "default-value": [
19
+ "2 3 6"
20
+ ],
21
+ "display.default.el.choices-order": [
22
+ "educator",
23
+ "educatee",
24
+ "1 2 3 4 5 6 7 8",
25
+ "yes",
26
+ "ΥΠΟΓΕΙΟ ΗΜΙΥΠΟΓΕΙΟ ΙΣΟΓΕΙΟ ΗΜΙΟΡΟΦΟΣ Α'ΟΡΟΦΟΣ ΆΛΛΟΣΟΡΟΦΟΣ ΔΩΜΑ",
27
+ "1",
28
+ "protes_yles eksoplismo emporeumata apothikeymena_emporeymata oximata"
29
+ ],
30
+ "display.default.el.choices.1": [
31
+ "1",
32
+ "Με ατομική μου ευθύνη και γνωρίζοντας τις κυρώσεις, που προβλέπονται από τις διατάξεις της παρ. 6 του άρθρου 22 του Ν. 1599/1986, δηλώνω ότι το συνημμένο έγγραφο είναι γνήσιο αντίγραφο πρωτότυπου, που έχω στην κατοχή μου."
33
+ ],
34
+ "display.default.el.choices.2": [
35
+ "2"
36
+ ],
37
+ "display.default.el.choices.3": [
38
+ "3"
39
+ ],
40
+ "display.default.el.choices.4": [
41
+ "4"
42
+ ],
43
+ "display.default.el.choices.5": [
44
+ "5"
45
+ ],
46
+ "display.default.el.choices.6": [
47
+ "6"
48
+ ],
49
+ "display.default.el.choices.7": [
50
+ "7"
51
+ ],
52
+ "display.default.el.choices.8": [
53
+ "8"
54
+ ],
55
+ "display.default.el.choices.apothikeymena_emporeymata": [
56
+ "Αποθηκευμένα προϊόντα"
57
+ ],
58
+ "display.default.el.choices.educatee": [
59
+ "Ως επιμορφούμενος (Τίτλοι, χρονική διάρκεια)"
60
+ ],
61
+ "display.default.el.choices.educator": [
62
+ "Ως επιμορφωτής (Τίτλοι, χρονική διάρκεια)"
63
+ ],
64
+ "display.default.el.choices.eksoplismo": [
65
+ "Εξοπλισμό"
66
+ ],
67
+ "display.default.el.choices.emporeumata": [
68
+ "Εμπορεύματα"
69
+ ],
70
+ "display.default.el.choices.oximata": [
71
+ "Οχήματα"
72
+ ],
73
+ "display.default.el.choices.protes_yles": [
74
+ "Πρώτες ύλες"
75
+ ],
76
+ "display.default.el.choices.yes": [
77
+ "Η αίτηση υποβάλλεται από εκπρόσωπο"
78
+ ],
79
+ "display.default.el.choices.ΆΛΛΟΣΟΡΟΦΟΣ": [
80
+ "ΆΛΛΟΣ ΟΡΟΦΟΣ"
81
+ ],
82
+ "display.default.el.choices.Α'ΟΡΟΦΟΣ": [
83
+ "Α' ΟΡΟΦΟΣ"
84
+ ],
85
+ "display.default.el.choices.ΔΩΜΑ": [
86
+ "ΔΩΜΑ"
87
+ ],
88
+ "display.default.el.choices.ΗΜΙΟΡΟΦΟΣ": [
89
+ "ΗΜΙΟΡΟΦΟΣ"
90
+ ],
91
+ "display.default.el.choices.ΗΜΙΥΠΟΓΕΙΟ": [
92
+ "ΗΜΙΥΠΟΓΕΙΟ"
93
+ ],
94
+ "display.default.el.choices.ΙΣΟΓΕΙΟ": [
95
+ "ΙΣΟΓΕΙΟ"
96
+ ],
97
+ "display.default.el.choices.ΥΠΟΓΕΙΟ": [
98
+ "ΥΠΟΓΕΙΟ"
99
+ ],
100
+ "display.default.el.component": [
101
+ "multiple-choice"
102
+ ],
103
+ "display.default.el.component-params.legacy-mode": [
104
+ true
105
+ ],
106
+ "display.default.el.component-params.showcase": [
107
+ "one_per_line",
108
+ "comma_separated"
109
+ ],
110
+ "display.default.el.template_hint": [
111
+ "Όροφος"
112
+ ],
113
+ "display.default.el.title": [
114
+ "Component multiple_choice",
115
+ "Όροφος πληγείσας επιχείρησης",
116
+ "Εκπαιδευτικοί",
117
+ "2. Ζημιές"
118
+ ],
119
+ "display.pdf.el.component": [
120
+ "hidden"
121
+ ],
122
+ "user-input-mode": [
123
+ "optional",
124
+ "noinput",
125
+ "required"
126
+ ]
127
+ }
128
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "componentName": "password",
3
+ "kind": "fields",
4
+ "instanceCount": 4,
5
+ "templates": [
6
+ "REFERENCE"
7
+ ],
8
+ "possibleValues": {
9
+ "display.default.el.component": [
10
+ "password"
11
+ ],
12
+ "display.default.el.title": [
13
+ "Component password"
14
+ ],
15
+ "user-input-mode": [
16
+ "optional",
17
+ "noinput"
18
+ ]
19
+ }
20
+ }
@@ -0,0 +1,70 @@
1
+ {
2
+ "componentName": "pdf-image",
3
+ "kind": "fields",
4
+ "instanceCount": 92,
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
+ "datatype": [
34
+ "string"
35
+ ],
36
+ "display.default.el.component": [
37
+ "pdf-image"
38
+ ],
39
+ "display.default.el.component-params.coordinates.0": [
40
+ 7.5,
41
+ 0
42
+ ],
43
+ "display.default.el.component-params.coordinates.1": [
44
+ 26.4,
45
+ 27,
46
+ 0
47
+ ],
48
+ "display.default.el.component-params.coordinates.2": [
49
+ 6,
50
+ 21
51
+ ],
52
+ "display.default.el.component-params.coordinates.3": [
53
+ 2.581,
54
+ 30
55
+ ],
56
+ "display.default.el.component-params.later-pages": [
57
+ true
58
+ ],
59
+ "display.web.default.component": [
60
+ "hidden"
61
+ ],
62
+ "user-input-mode": [
63
+ "noinput"
64
+ ],
65
+ "value": [
66
+ "hellenic_coat_of_arms_el_pdf",
67
+ "daktylios_backgroud_pdf"
68
+ ]
69
+ }
70
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "componentName": "postal_code",
3
+ "kind": "fields",
4
+ "instanceCount": 4,
5
+ "templates": [
6
+ "ENSTASI-PARAVASIS-AIT"
7
+ ],
8
+ "possibleValues": {
9
+ "attribute": [
10
+ null
11
+ ],
12
+ "datatype": [
13
+ "postal_code"
14
+ ],
15
+ "display.default.el.component": [
16
+ "postal_code"
17
+ ],
18
+ "display.default.el.title": [
19
+ "ΤΚ"
20
+ ],
21
+ "display.default.el.title_md": [
22
+ 8
23
+ ],
24
+ "display.default.el.value_md": [
25
+ 7
26
+ ],
27
+ "user-input-mode": [
28
+ "required",
29
+ "noinput"
30
+ ]
31
+ }
32
+ }
@@ -0,0 +1,53 @@
1
+ {
2
+ "componentName": "preference-multiple-choice",
3
+ "kind": "fields",
4
+ "instanceCount": 4,
5
+ "templates": [
6
+ "REFERENCE"
7
+ ],
8
+ "possibleValues": {
9
+ "display.default.el.choices-order": [
10
+ "hellenic_police hellenic_armed_forces passport residence_permit"
11
+ ],
12
+ "display.default.el.choices.hellenic_armed_forces": [
13
+ "Δελτίο Ταυτότητας Ελληνικών Ενόπλων Δυνάμεων"
14
+ ],
15
+ "display.default.el.choices.hellenic_police": [
16
+ "Δελτίο Ταυτότητας Έλληνα Πολίτη"
17
+ ],
18
+ "display.default.el.choices.passport": [
19
+ "Διαβατήριο"
20
+ ],
21
+ "display.default.el.choices.residence_permit": [
22
+ "Άδεια Διαμονής"
23
+ ],
24
+ "display.default.el.component": [
25
+ "preference-multiple-choice"
26
+ ],
27
+ "display.default.el.component-params.labels.addItem": [
28
+ "Προσθήκη επιλογής"
29
+ ],
30
+ "display.default.el.component-params.labels.addTitle": [
31
+ "Προσθήκη επιλογών"
32
+ ],
33
+ "display.default.el.component-params.labels.empty": [
34
+ "Δεν έχουν προστεθεί επιλογές"
35
+ ],
36
+ "display.default.el.component-params.labels.submitAdd": [
37
+ "Προσθήκη"
38
+ ],
39
+ "display.default.el.component-params.max": [
40
+ 3
41
+ ],
42
+ "display.default.el.component-params.min": [
43
+ 2
44
+ ],
45
+ "display.default.el.title": [
46
+ "Component preference-multiple-choice"
47
+ ],
48
+ "user-input-mode": [
49
+ "optional",
50
+ "noinput"
51
+ ]
52
+ }
53
+ }
@@ -0,0 +1,75 @@
1
+ {
2
+ "componentName": "qrcode",
3
+ "kind": "fields",
4
+ "instanceCount": 93,
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
+ "display.default.el.component": [
34
+ "qrcode"
35
+ ],
36
+ "display.default.el.component-params.coordinates.0": [
37
+ 17.5
38
+ ],
39
+ "display.default.el.component-params.coordinates.1": [
40
+ 27
41
+ ],
42
+ "display.default.el.component-params.coordinates.2": [
43
+ 2.5
44
+ ],
45
+ "display.default.el.component-params.coordinates.3": [
46
+ 2.5
47
+ ],
48
+ "display.default.el.component-params.later-pages": [
49
+ true
50
+ ],
51
+ "display.web.el.component": [
52
+ "qrcode"
53
+ ],
54
+ "display.web.el.component-params.size": [
55
+ 64
56
+ ],
57
+ "is-display-field": [
58
+ true
59
+ ],
60
+ "sources": [
61
+ "declaration:reference_code declaration:validation_context"
62
+ ],
63
+ "user-input-mode": [
64
+ "noinput",
65
+ "display"
66
+ ],
67
+ "value": [
68
+ "https://www.gov.gr",
69
+ "blank"
70
+ ],
71
+ "value-constructor": [
72
+ "dilosi.interop_logic.common.create_document_uri"
73
+ ]
74
+ }
75
+ }
@@ -0,0 +1,71 @@
1
+ {
2
+ "componentName": "quote",
3
+ "kind": "fields",
4
+ "instanceCount": 51,
5
+ "templates": [
6
+ "AFTEPAGGELTI",
7
+ "APOSTILLE",
8
+ "DIGITAL-SIGN-APPLY",
9
+ "DILOSI-VAPTISIS",
10
+ "EDUDOCS",
11
+ "ENSTASI-PARAVASIS-AIT",
12
+ "EXOUS",
13
+ "GNISIO-YPOGRAFIS",
14
+ "IDIOTIKO-SYMFONITIKO",
15
+ "POINIKO-AIT",
16
+ "REFERENCE",
17
+ "TEACHER-SELF-EVALUATION-B",
18
+ "YPDIL"
19
+ ],
20
+ "possibleValues": {
21
+ "attribute": [
22
+ null
23
+ ],
24
+ "datatype": [
25
+ "string"
26
+ ],
27
+ "display.default.el.component": [
28
+ "quote"
29
+ ],
30
+ "display.default.el.component-params.mode": [
31
+ "info",
32
+ "error",
33
+ "warning"
34
+ ],
35
+ "display.default.el.title": [
36
+ null
37
+ ],
38
+ "display.pdf.el.component": [
39
+ "hidden"
40
+ ],
41
+ "safe": [
42
+ true
43
+ ],
44
+ "sources": [
45
+ "field:document-map literal:govgr_profile literal:gr_flag",
46
+ "field:previous_attempt",
47
+ "declaration:user_id"
48
+ ],
49
+ "user-input-mode": [
50
+ "display"
51
+ ],
52
+ "value": [
53
+ "Το αίτημα απορρίφθηκε",
54
+ "Ενδεικτικά παραδείγματα τέτοιων στοιχείων <b>σε τίτλους</b>: έντυπα σχεδιασμού δράσεων, σχέδιο μαθήματος ή αντιστοίχως έργου ή προγράμματος μελών Ε.Ε.Π. ή Ε.Β.Π., θέματα διαγωνισμών και εξετάσεων, φύλλα εργασίας, υποστηρικτό εκπαιδευτικό υλικό του ίδιου του αξιολογούμενου ή τροποποιημένο υλικό από άλλη πηγή ή αυτούσιο υλικό από άλλη πηγή.",
55
+ "Προσοχή! Μετά την έκδοση του εγγράφου, δεν υπάρχει δυνατότητα τροποποίησης των στοιχείων που υποβάλατε στο περιβάλλον της πλατφόρμας.",
56
+ "Component quote, some quote",
57
+ "\nΜε την ολοκλήρωση της επεξεργασίας του αιτήματός σας από το\nΟλοκληρωμένο Πληροφοριακό Σύστημα του έργου «Εθνικό Ποινικό Μητρώο»,\nθα λάβετε ειδοποίηση μέσω SMS ή/και email.\nΗ ηλεκτρονική παραλαβή του αντιγράφου Ποινικού Μητρώου σας θα γίνει μέσω της\n<a target=\"_blank\"\nhref=\"https://dilosi.services.gov.gr/vault/cases\">θυρίδας σας</a>.\n",
58
+ "\n Το αρχείο σας δεν είναι συμβατό με την υπηρεσία Ψηφιακής Βεβαίωσης\n Εγγράφου. Έγινε επεξεργασία του αυτόματα και πλέον είναι συμβατό.\n Προτείνουμε να κάνετε λήψη του επιδιορθωμένου αρχείου και να ελέγξετε\n την ορθότητά του και αν θέλετε να συνεχίσετε με αυτό\n (επιλέγετε «Συνέχεια με το επιδιορθωμένο αρχείο»). Σε περίπτωση που δεν\n συμφωνείτε με την επιδιόρθωση που έγινε, επιλέξτε\n «Επισύναψη νέου αρχείου» και ανεβάστε νέο συμβατό αρχείο.\n ",
59
+ "Για να δείτε την πορεία της υπόθεσης, επισκεφθείτε το <a href=\"https://dilosi.services.gov.gr/templates/EDUDOCS/create\">https://dilosi.services.gov.gr/templates/EDUDOCS/create</a>. Μπορείτε να δείτε ποιοι έχουν υπογράψει το έγγραφο. Μπορείτε να εκδώσετε το έγγραφο ακόμα κι αν δεν έχουν υπογράψει όλοι οι εκπαιδευτικοί που έχετε ορίσει.",
60
+ "Το όνομα του παιδιού προσδιορίζεται με την Ονοματοδοσία.",
61
+ "Στα στοιχεία αυτά θα λάβετε αυτόματη ειδοποίηση για τη διεκπεραίωση της αίτησης και το Ληξιαρχείο μπορεί να επικοινωνήσει μαζί σας για διευκρινίσεις.",
62
+ "\nΠαρακαλούμε συμπληρώστε σωστά όλα τα πεδία.<br/>Η αίτησή σας για έκδοση ψηφιακού πιστοποιητικού θα απορριφθεί αν τα στοιχεία που θα καταχωρίσετε δεν συμφωνούν με αυτά που αναγράφονται στο ταυτοποιητικό σας έγγραφο.\n",
63
+ "\n Εάν η αναζήτηση γίνεται κατά την αυτεπάγγελτη άσκηση αρμοδιότητας τότε\n στο πεδίο \"Αριθμός πρωτοκόλλου αίτησης\" συμπληρώστε την φράση\n \"αυτεπάγγελτη ενέργεια\" και στο πεδίο \"Ημερομηνία πρωτοκόλλου\"\n συμπληρώστε την τρέχουσα ημερομηνία.\n "
64
+ ],
65
+ "value-constructor": [
66
+ "dilosi.interop_logic.common.get_gr_flag_text",
67
+ "dilosi.applications.gov_wallet.claims.common.get_previous_attempt_info",
68
+ "dilosi.applications.gov_wallet.claims.common.get_gov_wallet_method_info"
69
+ ]
70
+ }
71
+ }