nextjs-cms 0.0.1 → 0.5.1

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 (302) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +289 -0
  3. package/dist/api/axios/axiosInstance.d.ts +2 -0
  4. package/dist/api/axios/axiosInstance.d.ts.map +1 -0
  5. package/dist/api/axios/axiosInstance.js +8 -0
  6. package/dist/api/index.d.ts +856 -0
  7. package/dist/api/index.d.ts.map +1 -0
  8. package/dist/api/index.js +12 -0
  9. package/dist/api/lib/serverActions.d.ts +240 -0
  10. package/dist/api/lib/serverActions.d.ts.map +1 -0
  11. package/dist/api/lib/serverActions.js +834 -0
  12. package/dist/api/root.d.ts +829 -0
  13. package/dist/api/root.d.ts.map +1 -0
  14. package/dist/api/root.js +30 -0
  15. package/dist/api/routers/accountSettings.d.ts +61 -0
  16. package/dist/api/routers/accountSettings.d.ts.map +1 -0
  17. package/dist/api/routers/accountSettings.js +108 -0
  18. package/dist/api/routers/admins.d.ts +106 -0
  19. package/dist/api/routers/admins.d.ts.map +1 -0
  20. package/dist/api/routers/admins.js +219 -0
  21. package/dist/api/routers/auth.d.ts +48 -0
  22. package/dist/api/routers/auth.d.ts.map +1 -0
  23. package/dist/api/routers/auth.js +25 -0
  24. package/dist/api/routers/categorySection.d.ts +104 -0
  25. package/dist/api/routers/categorySection.d.ts.map +1 -0
  26. package/dist/api/routers/categorySection.js +38 -0
  27. package/dist/api/routers/cmsSettings.d.ts +49 -0
  28. package/dist/api/routers/cmsSettings.d.ts.map +1 -0
  29. package/dist/api/routers/cmsSettings.js +51 -0
  30. package/dist/api/routers/cpanel.d.ts +84 -0
  31. package/dist/api/routers/cpanel.d.ts.map +1 -0
  32. package/dist/api/routers/cpanel.js +216 -0
  33. package/dist/api/routers/files.d.ts +48 -0
  34. package/dist/api/routers/files.d.ts.map +1 -0
  35. package/dist/api/routers/files.js +23 -0
  36. package/dist/api/routers/gallery.d.ts +36 -0
  37. package/dist/api/routers/gallery.d.ts.map +1 -0
  38. package/dist/api/routers/gallery.js +62 -0
  39. package/dist/api/routers/googleAnalytics.d.ts +31 -0
  40. package/dist/api/routers/googleAnalytics.d.ts.map +1 -0
  41. package/dist/api/routers/googleAnalytics.js +7 -0
  42. package/dist/api/routers/hasItemsSection.d.ts +140 -0
  43. package/dist/api/routers/hasItemsSection.d.ts.map +1 -0
  44. package/dist/api/routers/hasItemsSection.js +34 -0
  45. package/dist/api/routers/navigation.d.ts +52 -0
  46. package/dist/api/routers/navigation.d.ts.map +1 -0
  47. package/dist/api/routers/navigation.js +11 -0
  48. package/dist/api/routers/simpleSection.d.ts +58 -0
  49. package/dist/api/routers/simpleSection.d.ts.map +1 -0
  50. package/dist/api/routers/simpleSection.js +12 -0
  51. package/dist/api/trpc.d.ts +107 -0
  52. package/dist/api/trpc.d.ts.map +1 -0
  53. package/dist/api/trpc.js +72 -0
  54. package/dist/auth/axios/axiosInstance.d.ts +2 -0
  55. package/dist/auth/axios/axiosInstance.d.ts.map +1 -0
  56. package/dist/auth/axios/axiosInstance.js +8 -0
  57. package/dist/auth/csrf.d.ts +30 -0
  58. package/dist/auth/csrf.d.ts.map +1 -0
  59. package/dist/auth/csrf.js +76 -0
  60. package/dist/auth/hooks/index.d.ts +4 -0
  61. package/dist/auth/hooks/index.d.ts.map +1 -0
  62. package/dist/auth/hooks/index.js +3 -0
  63. package/dist/auth/hooks/useAxiosPrivate.d.ts +5 -0
  64. package/dist/auth/hooks/useAxiosPrivate.d.ts.map +1 -0
  65. package/dist/auth/hooks/useAxiosPrivate.js +74 -0
  66. package/dist/auth/hooks/useRefreshToken.d.ts +7 -0
  67. package/dist/auth/hooks/useRefreshToken.d.ts.map +1 -0
  68. package/dist/auth/hooks/useRefreshToken.js +79 -0
  69. package/dist/auth/index.d.ts +23 -0
  70. package/dist/auth/index.d.ts.map +1 -0
  71. package/dist/auth/index.js +44 -0
  72. package/dist/auth/jwt.d.ts +6 -0
  73. package/dist/auth/jwt.d.ts.map +1 -0
  74. package/dist/auth/jwt.js +25 -0
  75. package/dist/auth/lib/actions.d.ts +33 -0
  76. package/dist/auth/lib/actions.d.ts.map +1 -0
  77. package/dist/auth/lib/actions.js +209 -0
  78. package/dist/auth/lib/client.d.ts +4 -0
  79. package/dist/auth/lib/client.d.ts.map +1 -0
  80. package/dist/auth/lib/client.js +46 -0
  81. package/dist/auth/lib/index.d.ts +3 -0
  82. package/dist/auth/lib/index.d.ts.map +1 -0
  83. package/dist/auth/lib/index.js +2 -0
  84. package/dist/auth/react.d.ts +106 -0
  85. package/dist/auth/react.d.ts.map +1 -0
  86. package/dist/auth/react.js +347 -0
  87. package/dist/auth/trpc.d.ts +6 -0
  88. package/dist/auth/trpc.d.ts.map +1 -0
  89. package/dist/auth/trpc.js +81 -0
  90. package/dist/core/config/config-loader.d.ts +92 -0
  91. package/dist/core/config/config-loader.d.ts.map +1 -0
  92. package/dist/core/config/config-loader.js +230 -0
  93. package/dist/core/config/index.d.ts +3 -0
  94. package/dist/core/config/index.d.ts.map +1 -0
  95. package/dist/core/config/index.js +1 -0
  96. package/dist/core/config/loader.d.ts +2 -0
  97. package/dist/core/config/loader.d.ts.map +1 -0
  98. package/dist/core/config/loader.js +42 -0
  99. package/dist/core/db/index.d.ts +2 -0
  100. package/dist/core/db/index.d.ts.map +1 -0
  101. package/dist/core/db/index.js +1 -0
  102. package/dist/core/db/table-checker/DbTable.d.ts +6 -0
  103. package/dist/core/db/table-checker/DbTable.d.ts.map +1 -0
  104. package/dist/core/db/table-checker/DbTable.js +5 -0
  105. package/dist/core/db/table-checker/MysqlTable.d.ts +34 -0
  106. package/dist/core/db/table-checker/MysqlTable.d.ts.map +1 -0
  107. package/dist/core/db/table-checker/MysqlTable.js +102 -0
  108. package/dist/core/db/table-checker/index.d.ts +2 -0
  109. package/dist/core/db/table-checker/index.d.ts.map +1 -0
  110. package/dist/core/db/table-checker/index.js +1 -0
  111. package/dist/core/factories/FieldFactory.d.ts +124 -0
  112. package/dist/core/factories/FieldFactory.d.ts.map +1 -0
  113. package/dist/core/factories/FieldFactory.js +411 -0
  114. package/dist/core/factories/SectionFactory.d.ts +110 -0
  115. package/dist/core/factories/SectionFactory.d.ts.map +1 -0
  116. package/dist/core/factories/SectionFactory.js +415 -0
  117. package/dist/core/factories/index.d.ts +3 -0
  118. package/dist/core/factories/index.d.ts.map +1 -0
  119. package/dist/core/factories/index.js +2 -0
  120. package/dist/core/fields/checkbox.d.ts +63 -0
  121. package/dist/core/fields/checkbox.d.ts.map +1 -0
  122. package/dist/core/fields/checkbox.js +62 -0
  123. package/dist/core/fields/color.d.ts +84 -0
  124. package/dist/core/fields/color.d.ts.map +1 -0
  125. package/dist/core/fields/color.js +91 -0
  126. package/dist/core/fields/date.d.ts +100 -0
  127. package/dist/core/fields/date.d.ts.map +1 -0
  128. package/dist/core/fields/date.js +108 -0
  129. package/dist/core/fields/document.d.ts +180 -0
  130. package/dist/core/fields/document.d.ts.map +1 -0
  131. package/dist/core/fields/document.js +277 -0
  132. package/dist/core/fields/field-group.d.ts +18 -0
  133. package/dist/core/fields/field-group.d.ts.map +1 -0
  134. package/dist/core/fields/field-group.js +6 -0
  135. package/dist/core/fields/field.d.ts +126 -0
  136. package/dist/core/fields/field.d.ts.map +1 -0
  137. package/dist/core/fields/field.js +148 -0
  138. package/dist/core/fields/fileField.d.ts +15 -0
  139. package/dist/core/fields/fileField.d.ts.map +1 -0
  140. package/dist/core/fields/fileField.js +5 -0
  141. package/dist/core/fields/index.d.ts +65 -0
  142. package/dist/core/fields/index.d.ts.map +1 -0
  143. package/dist/core/fields/index.js +18 -0
  144. package/dist/core/fields/map.d.ts +167 -0
  145. package/dist/core/fields/map.d.ts.map +1 -0
  146. package/dist/core/fields/map.js +152 -0
  147. package/dist/core/fields/number.d.ts +186 -0
  148. package/dist/core/fields/number.d.ts.map +1 -0
  149. package/dist/core/fields/number.js +241 -0
  150. package/dist/core/fields/password.d.ts +109 -0
  151. package/dist/core/fields/password.d.ts.map +1 -0
  152. package/dist/core/fields/password.js +133 -0
  153. package/dist/core/fields/photo.d.ts +289 -0
  154. package/dist/core/fields/photo.d.ts.map +1 -0
  155. package/dist/core/fields/photo.js +410 -0
  156. package/dist/core/fields/richText.d.ts +295 -0
  157. package/dist/core/fields/richText.d.ts.map +1 -0
  158. package/dist/core/fields/richText.js +338 -0
  159. package/dist/core/fields/select.d.ts +366 -0
  160. package/dist/core/fields/select.d.ts.map +1 -0
  161. package/dist/core/fields/select.js +499 -0
  162. package/dist/core/fields/selectMultiple.d.ts +236 -0
  163. package/dist/core/fields/selectMultiple.d.ts.map +1 -0
  164. package/dist/core/fields/selectMultiple.js +417 -0
  165. package/dist/core/fields/tags.d.ts +131 -0
  166. package/dist/core/fields/tags.d.ts.map +1 -0
  167. package/dist/core/fields/tags.js +105 -0
  168. package/dist/core/fields/text.d.ts +136 -0
  169. package/dist/core/fields/text.d.ts.map +1 -0
  170. package/dist/core/fields/text.js +157 -0
  171. package/dist/core/fields/textArea.d.ts +107 -0
  172. package/dist/core/fields/textArea.d.ts.map +1 -0
  173. package/dist/core/fields/textArea.js +126 -0
  174. package/dist/core/fields/video.d.ts +148 -0
  175. package/dist/core/fields/video.d.ts.map +1 -0
  176. package/dist/core/fields/video.js +248 -0
  177. package/dist/core/helpers/entity.d.ts +8 -0
  178. package/dist/core/helpers/entity.d.ts.map +1 -0
  179. package/dist/core/helpers/entity.js +27 -0
  180. package/dist/core/helpers/index.d.ts +5 -0
  181. package/dist/core/helpers/index.d.ts.map +1 -0
  182. package/dist/core/helpers/index.js +3 -0
  183. package/dist/core/index.d.ts +8 -0
  184. package/dist/core/index.d.ts.map +1 -0
  185. package/dist/core/index.js +7 -0
  186. package/dist/core/sections/category.d.ts +283 -0
  187. package/dist/core/sections/category.d.ts.map +1 -0
  188. package/dist/core/sections/category.js +147 -0
  189. package/dist/core/sections/hasItems.d.ts +632 -0
  190. package/dist/core/sections/hasItems.d.ts.map +1 -0
  191. package/dist/core/sections/hasItems.js +144 -0
  192. package/dist/core/sections/index.d.ts +5 -0
  193. package/dist/core/sections/index.d.ts.map +1 -0
  194. package/dist/core/sections/index.js +4 -0
  195. package/dist/core/sections/section.d.ts +226 -0
  196. package/dist/core/sections/section.d.ts.map +1 -0
  197. package/dist/core/sections/section.js +341 -0
  198. package/dist/core/sections/simple.d.ts +99 -0
  199. package/dist/core/sections/simple.d.ts.map +1 -0
  200. package/dist/core/sections/simple.js +95 -0
  201. package/dist/core/security/dom.d.ts +11 -0
  202. package/dist/core/security/dom.d.ts.map +1 -0
  203. package/dist/core/security/dom.js +92 -0
  204. package/dist/core/submit/ItemEditSubmit.d.ts +76 -0
  205. package/dist/core/submit/ItemEditSubmit.d.ts.map +1 -0
  206. package/dist/core/submit/ItemEditSubmit.js +186 -0
  207. package/dist/core/submit/NewItemSubmit.d.ts +14 -0
  208. package/dist/core/submit/NewItemSubmit.d.ts.map +1 -0
  209. package/dist/core/submit/NewItemSubmit.js +93 -0
  210. package/dist/core/submit/SimpleSectionSubmit.d.ts +13 -0
  211. package/dist/core/submit/SimpleSectionSubmit.d.ts.map +1 -0
  212. package/dist/core/submit/SimpleSectionSubmit.js +93 -0
  213. package/dist/core/submit/index.d.ts +5 -0
  214. package/dist/core/submit/index.d.ts.map +1 -0
  215. package/dist/core/submit/index.js +4 -0
  216. package/dist/core/submit/submit.d.ts +116 -0
  217. package/dist/core/submit/submit.d.ts.map +1 -0
  218. package/dist/core/submit/submit.js +479 -0
  219. package/dist/core/types/index.d.ts +280 -0
  220. package/dist/core/types/index.d.ts.map +1 -0
  221. package/dist/core/types/index.js +1 -0
  222. package/dist/db/client.d.ts +9 -0
  223. package/dist/db/client.d.ts.map +1 -0
  224. package/dist/db/client.js +19 -0
  225. package/dist/db/config.d.ts +6 -0
  226. package/dist/db/config.d.ts.map +1 -0
  227. package/dist/db/config.js +22 -0
  228. package/dist/db/drizzle.config.d.ts +6 -0
  229. package/dist/db/drizzle.config.d.ts.map +1 -0
  230. package/dist/db/drizzle.config.js +18 -0
  231. package/dist/db/index.d.ts +3 -0
  232. package/dist/db/index.d.ts.map +1 -0
  233. package/dist/db/index.js +3 -0
  234. package/dist/db/schema.d.ts +639 -0
  235. package/dist/db/schema.d.ts.map +1 -0
  236. package/dist/db/schema.js +73 -0
  237. package/dist/index.d.ts +7 -1
  238. package/dist/index.d.ts.map +1 -1
  239. package/dist/index.js +7 -1
  240. package/dist/translations/dictionaries/ar.json +279 -0
  241. package/dist/translations/dictionaries/en.json +279 -0
  242. package/dist/translations/index.d.ts +3 -0
  243. package/dist/translations/index.d.ts.map +1 -0
  244. package/dist/translations/index.js +15 -0
  245. package/dist/utils/CpanelApi.d.ts +25 -0
  246. package/dist/utils/CpanelApi.d.ts.map +1 -0
  247. package/dist/utils/CpanelApi.js +64 -0
  248. package/dist/utils/constants.d.ts +14 -0
  249. package/dist/utils/constants.d.ts.map +1 -0
  250. package/dist/utils/constants.js +61 -0
  251. package/dist/utils/index.d.ts +5 -0
  252. package/dist/utils/index.d.ts.map +1 -0
  253. package/dist/utils/index.js +4 -0
  254. package/dist/utils/utils.d.ts +60 -0
  255. package/dist/utils/utils.d.ts.map +1 -0
  256. package/dist/utils/utils.js +132 -0
  257. package/dist/validators/checkbox.d.ts +4 -0
  258. package/dist/validators/checkbox.d.ts.map +1 -0
  259. package/dist/validators/checkbox.js +12 -0
  260. package/dist/validators/color.d.ts +4 -0
  261. package/dist/validators/color.d.ts.map +1 -0
  262. package/dist/validators/color.js +7 -0
  263. package/dist/validators/date.d.ts +4 -0
  264. package/dist/validators/date.d.ts.map +1 -0
  265. package/dist/validators/date.js +5 -0
  266. package/dist/validators/document.d.ts +4 -0
  267. package/dist/validators/document.d.ts.map +1 -0
  268. package/dist/validators/document.js +57 -0
  269. package/dist/validators/index.d.ts +15 -0
  270. package/dist/validators/index.d.ts.map +1 -0
  271. package/dist/validators/index.js +14 -0
  272. package/dist/validators/map.d.ts +4 -0
  273. package/dist/validators/map.d.ts.map +1 -0
  274. package/dist/validators/map.js +5 -0
  275. package/dist/validators/number.d.ts +4 -0
  276. package/dist/validators/number.d.ts.map +1 -0
  277. package/dist/validators/number.js +20 -0
  278. package/dist/validators/password.d.ts +4 -0
  279. package/dist/validators/password.d.ts.map +1 -0
  280. package/dist/validators/password.js +11 -0
  281. package/dist/validators/photo.d.ts +4 -0
  282. package/dist/validators/photo.d.ts.map +1 -0
  283. package/dist/validators/photo.js +100 -0
  284. package/dist/validators/richText.d.ts +4 -0
  285. package/dist/validators/richText.d.ts.map +1 -0
  286. package/dist/validators/richText.js +8 -0
  287. package/dist/validators/select-multiple.d.ts +10 -0
  288. package/dist/validators/select-multiple.d.ts.map +1 -0
  289. package/dist/validators/select-multiple.js +20 -0
  290. package/dist/validators/select.d.ts +4 -0
  291. package/dist/validators/select.d.ts.map +1 -0
  292. package/dist/validators/select.js +5 -0
  293. package/dist/validators/text.d.ts +4 -0
  294. package/dist/validators/text.d.ts.map +1 -0
  295. package/dist/validators/text.js +7 -0
  296. package/dist/validators/textarea.d.ts +4 -0
  297. package/dist/validators/textarea.d.ts.map +1 -0
  298. package/dist/validators/textarea.js +7 -0
  299. package/dist/validators/video.d.ts +4 -0
  300. package/dist/validators/video.d.ts.map +1 -0
  301. package/dist/validators/video.js +57 -0
  302. package/package.json +150 -6
@@ -0,0 +1,366 @@
1
+ import type { BaseFieldConfig } from './field';
2
+ import { Field } from './field';
3
+ import { entityKind } from '../helpers';
4
+ import type { CategorySection, HasItemsSection } from '../sections';
5
+ import * as z from 'zod';
6
+ export declare const selectOptionSchema: z.ZodObject<{
7
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
8
+ label: z.ZodString;
9
+ }, z.core.$strict>;
10
+ export type SelectOption = z.infer<typeof selectOptionSchema>;
11
+ export declare const selectFieldDestinationDbSchema: z.ZodObject<{
12
+ table: z.ZodString;
13
+ /**
14
+ * The identifier of the item that has this select field as a field
15
+ */
16
+ itemIdentifier: z.ZodString;
17
+ /**
18
+ * The identifier of the value of the select option that is coming from the select options
19
+ */
20
+ selectIdentifier: z.ZodString;
21
+ }, z.core.$strict>;
22
+ type SelectSectionOption = {
23
+ type: 'has_items' | 'category';
24
+ name: string;
25
+ depth?: number;
26
+ build(): HasItemsSection | CategorySection;
27
+ };
28
+ export declare const selectFieldSpecificConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
29
+ destinationDb: z.ZodOptional<z.ZodObject<{
30
+ table: z.ZodString;
31
+ /**
32
+ * The identifier of the item that has this select field as a field
33
+ */
34
+ itemIdentifier: z.ZodString;
35
+ /**
36
+ * The identifier of the value of the select option that is coming from the select options
37
+ */
38
+ selectIdentifier: z.ZodString;
39
+ }, z.core.$strict>>;
40
+ checkValueExists: z.ZodOptional<z.ZodBoolean>;
41
+ options: z.ZodOptional<z.ZodNever>;
42
+ db: z.ZodObject<{
43
+ table: z.ZodString;
44
+ identifier: z.ZodString;
45
+ label: z.ZodString;
46
+ orderBy: z.ZodOptional<z.ZodString>;
47
+ }, z.core.$strict>;
48
+ section: z.ZodOptional<z.ZodNever>;
49
+ }, z.core.$strict>, z.ZodObject<{
50
+ destinationDb: z.ZodOptional<z.ZodObject<{
51
+ table: z.ZodString;
52
+ /**
53
+ * The identifier of the item that has this select field as a field
54
+ */
55
+ itemIdentifier: z.ZodString;
56
+ /**
57
+ * The identifier of the value of the select option that is coming from the select options
58
+ */
59
+ selectIdentifier: z.ZodString;
60
+ }, z.core.$strict>>;
61
+ checkValueExists: z.ZodOptional<z.ZodBoolean>;
62
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
63
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
64
+ label: z.ZodString;
65
+ }, z.core.$strict>>>;
66
+ db: z.ZodOptional<z.ZodNever>;
67
+ section: z.ZodCustom<SelectSectionOption, SelectSectionOption>;
68
+ }, z.core.$strict>, z.ZodObject<{
69
+ destinationDb: z.ZodOptional<z.ZodObject<{
70
+ table: z.ZodString;
71
+ /**
72
+ * The identifier of the item that has this select field as a field
73
+ */
74
+ itemIdentifier: z.ZodString;
75
+ /**
76
+ * The identifier of the value of the select option that is coming from the select options
77
+ */
78
+ selectIdentifier: z.ZodString;
79
+ }, z.core.$strict>>;
80
+ checkValueExists: z.ZodOptional<z.ZodBoolean>;
81
+ options: z.ZodArray<z.ZodObject<{
82
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
83
+ label: z.ZodString;
84
+ }, z.core.$strict>>;
85
+ db: z.ZodOptional<z.ZodNever>;
86
+ section: z.ZodOptional<z.ZodNever>;
87
+ }, z.core.$strict>]>;
88
+ export type SelectFieldConfig = z.infer<typeof selectFieldSpecificConfigSchema>;
89
+ export declare class SelectField extends Field<'select', SelectFieldConfig> {
90
+ static readonly [entityKind]: string;
91
+ readonly checkValueExists: boolean;
92
+ readonly optionsType: 'db' | 'section' | 'static';
93
+ readonly db: {
94
+ table: string;
95
+ identifier: string;
96
+ label: string;
97
+ orderBy?: string;
98
+ };
99
+ readonly destinationDb?: {
100
+ table: string;
101
+ itemIdentifier: string;
102
+ selectIdentifier: string;
103
+ } | undefined;
104
+ value: SelectOption[] | undefined;
105
+ readonly section: SelectSectionOption | undefined;
106
+ private _itemIdentifier;
107
+ options: SelectOption[] | undefined;
108
+ private _allOptions;
109
+ constructor(config: BaseFieldConfig<SelectFieldConfig>);
110
+ /**
111
+ * @param value The value of a single select field,
112
+ * or values array of multiple select fields if the select is selecting from
113
+ * a category section with depth higher than 1.
114
+ */
115
+ setValue(value: string | SelectOption[] | undefined): void;
116
+ hasSqlNameAndValue(): boolean;
117
+ hasDepth(): boolean;
118
+ /**
119
+ * Get the value of the field
120
+ */
121
+ getValue(): SelectOption[] | undefined;
122
+ /**
123
+ * Get the value of the field when submitting to the database
124
+ */
125
+ getSubmitValue(): string | number | undefined;
126
+ exportForClient(): {
127
+ options: {
128
+ value: string | number;
129
+ label: string;
130
+ }[] | undefined;
131
+ section: {
132
+ name: string;
133
+ depth: number | undefined;
134
+ } | undefined;
135
+ /**
136
+ * Add the values with the level if present
137
+ */
138
+ value: {
139
+ level: number;
140
+ value: string | number;
141
+ label: string;
142
+ }[] | undefined;
143
+ type: "select";
144
+ name: string;
145
+ label: string;
146
+ required: boolean;
147
+ conditionalFields: import("../types").ConditionalField[];
148
+ readonly: boolean;
149
+ defaultValue: any;
150
+ };
151
+ postSubmit(itemId: string): Promise<void>;
152
+ postSubmitRollback(): Promise<void>;
153
+ /**
154
+ * Check the destination db config is set
155
+ * @private
156
+ */
157
+ private checkDestinationDBConfig;
158
+ /**
159
+ * Check if destination table and columns exist
160
+ * @private
161
+ */
162
+ private checkDestinationDBTableAndColumns;
163
+ /**
164
+ * Build the field to be used in a form
165
+ */
166
+ build(): Promise<void>;
167
+ private fetchOptions;
168
+ /**
169
+ * Check if table and columns exist
170
+ * @private
171
+ */
172
+ private checkDBTableAndColumns;
173
+ /**
174
+ * Check the db config is set
175
+ * @private
176
+ */
177
+ private checkDBConfig;
178
+ checkRequired(): void;
179
+ /**
180
+ * Prepare the field for submission
181
+ */
182
+ prepareForSubmission(): Promise<void>;
183
+ }
184
+ export type SelectFieldClientConfig = ReturnType<SelectField['exportForClient']>;
185
+ export declare const selectFieldOptionsSchema: z.ZodUnion<readonly [z.ZodObject<{
186
+ destinationDb: z.ZodOptional<z.ZodObject<{
187
+ table: z.ZodString;
188
+ /**
189
+ * The identifier of the item that has this select field as a field
190
+ */
191
+ itemIdentifier: z.ZodString;
192
+ /**
193
+ * The identifier of the value of the select option that is coming from the select options
194
+ */
195
+ selectIdentifier: z.ZodString;
196
+ }, z.core.$strict>>;
197
+ checkValueExists: z.ZodOptional<z.ZodBoolean>;
198
+ options: z.ZodOptional<z.ZodNever>;
199
+ db: z.ZodObject<{
200
+ table: z.ZodString;
201
+ identifier: z.ZodString;
202
+ label: z.ZodString;
203
+ orderBy: z.ZodOptional<z.ZodString>;
204
+ }, z.core.$strict>;
205
+ section: z.ZodOptional<z.ZodNever>;
206
+ name: z.ZodString;
207
+ label: z.ZodOptional<z.ZodString>;
208
+ required: z.ZodOptional<z.ZodBoolean>;
209
+ defaultValue: z.ZodOptional<z.ZodAny>;
210
+ order: z.ZodOptional<z.ZodNumber>;
211
+ conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
212
+ adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
213
+ }, z.core.$strict>, z.ZodObject<{
214
+ destinationDb: z.ZodOptional<z.ZodObject<{
215
+ table: z.ZodString;
216
+ /**
217
+ * The identifier of the item that has this select field as a field
218
+ */
219
+ itemIdentifier: z.ZodString;
220
+ /**
221
+ * The identifier of the value of the select option that is coming from the select options
222
+ */
223
+ selectIdentifier: z.ZodString;
224
+ }, z.core.$strict>>;
225
+ checkValueExists: z.ZodOptional<z.ZodBoolean>;
226
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
227
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
228
+ label: z.ZodString;
229
+ }, z.core.$strict>>>;
230
+ db: z.ZodOptional<z.ZodNever>;
231
+ section: z.ZodCustom<SelectSectionOption, SelectSectionOption>;
232
+ name: z.ZodString;
233
+ label: z.ZodOptional<z.ZodString>;
234
+ required: z.ZodOptional<z.ZodBoolean>;
235
+ defaultValue: z.ZodOptional<z.ZodAny>;
236
+ order: z.ZodOptional<z.ZodNumber>;
237
+ conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
238
+ adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
239
+ }, z.core.$strict>, z.ZodObject<{
240
+ destinationDb: z.ZodOptional<z.ZodObject<{
241
+ table: z.ZodString;
242
+ /**
243
+ * The identifier of the item that has this select field as a field
244
+ */
245
+ itemIdentifier: z.ZodString;
246
+ /**
247
+ * The identifier of the value of the select option that is coming from the select options
248
+ */
249
+ selectIdentifier: z.ZodString;
250
+ }, z.core.$strict>>;
251
+ checkValueExists: z.ZodOptional<z.ZodBoolean>;
252
+ options: z.ZodArray<z.ZodObject<{
253
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
254
+ label: z.ZodString;
255
+ }, z.core.$strict>>;
256
+ db: z.ZodOptional<z.ZodNever>;
257
+ section: z.ZodOptional<z.ZodNever>;
258
+ name: z.ZodString;
259
+ label: z.ZodOptional<z.ZodString>;
260
+ required: z.ZodOptional<z.ZodBoolean>;
261
+ defaultValue: z.ZodOptional<z.ZodAny>;
262
+ order: z.ZodOptional<z.ZodNumber>;
263
+ conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
264
+ adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
265
+ }, z.core.$strict>]>;
266
+ declare const selectFieldConfigSchema: z.ZodIntersection<z.ZodUnion<readonly [z.ZodObject<{
267
+ destinationDb: z.ZodOptional<z.ZodObject<{
268
+ table: z.ZodString;
269
+ /**
270
+ * The identifier of the item that has this select field as a field
271
+ */
272
+ itemIdentifier: z.ZodString;
273
+ /**
274
+ * The identifier of the value of the select option that is coming from the select options
275
+ */
276
+ selectIdentifier: z.ZodString;
277
+ }, z.core.$strict>>;
278
+ checkValueExists: z.ZodOptional<z.ZodBoolean>;
279
+ options: z.ZodOptional<z.ZodNever>;
280
+ db: z.ZodObject<{
281
+ table: z.ZodString;
282
+ identifier: z.ZodString;
283
+ label: z.ZodString;
284
+ orderBy: z.ZodOptional<z.ZodString>;
285
+ }, z.core.$strict>;
286
+ section: z.ZodOptional<z.ZodNever>;
287
+ name: z.ZodString;
288
+ label: z.ZodOptional<z.ZodString>;
289
+ required: z.ZodOptional<z.ZodBoolean>;
290
+ defaultValue: z.ZodOptional<z.ZodAny>;
291
+ order: z.ZodOptional<z.ZodNumber>;
292
+ conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
293
+ adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
294
+ }, z.core.$strict>, z.ZodObject<{
295
+ destinationDb: z.ZodOptional<z.ZodObject<{
296
+ table: z.ZodString;
297
+ /**
298
+ * The identifier of the item that has this select field as a field
299
+ */
300
+ itemIdentifier: z.ZodString;
301
+ /**
302
+ * The identifier of the value of the select option that is coming from the select options
303
+ */
304
+ selectIdentifier: z.ZodString;
305
+ }, z.core.$strict>>;
306
+ checkValueExists: z.ZodOptional<z.ZodBoolean>;
307
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
308
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
309
+ label: z.ZodString;
310
+ }, z.core.$strict>>>;
311
+ db: z.ZodOptional<z.ZodNever>;
312
+ section: z.ZodCustom<SelectSectionOption, SelectSectionOption>;
313
+ name: z.ZodString;
314
+ label: z.ZodOptional<z.ZodString>;
315
+ required: z.ZodOptional<z.ZodBoolean>;
316
+ defaultValue: z.ZodOptional<z.ZodAny>;
317
+ order: z.ZodOptional<z.ZodNumber>;
318
+ conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
319
+ adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
320
+ }, z.core.$strict>, z.ZodObject<{
321
+ destinationDb: z.ZodOptional<z.ZodObject<{
322
+ table: z.ZodString;
323
+ /**
324
+ * The identifier of the item that has this select field as a field
325
+ */
326
+ itemIdentifier: z.ZodString;
327
+ /**
328
+ * The identifier of the value of the select option that is coming from the select options
329
+ */
330
+ selectIdentifier: z.ZodString;
331
+ }, z.core.$strict>>;
332
+ checkValueExists: z.ZodOptional<z.ZodBoolean>;
333
+ options: z.ZodArray<z.ZodObject<{
334
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
335
+ label: z.ZodString;
336
+ }, z.core.$strict>>;
337
+ db: z.ZodOptional<z.ZodNever>;
338
+ section: z.ZodOptional<z.ZodNever>;
339
+ name: z.ZodString;
340
+ label: z.ZodOptional<z.ZodString>;
341
+ required: z.ZodOptional<z.ZodBoolean>;
342
+ defaultValue: z.ZodOptional<z.ZodAny>;
343
+ order: z.ZodOptional<z.ZodNumber>;
344
+ conditionalRules: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types").ConditionalRule, import("../types").ConditionalRule>>>;
345
+ adminGenerated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<true>, z.ZodLiteral<false>, z.ZodLiteral<"readonly">]>>;
346
+ }, z.core.$strict>]>, z.ZodObject<{
347
+ type: z.ZodLiteral<"select">;
348
+ optionsType: z.ZodEnum<{
349
+ db: "db";
350
+ section: "section";
351
+ static: "static";
352
+ }>;
353
+ build: z.ZodFunction<z.core.$ZodFunctionArgs, z.ZodCustom<SelectField, SelectField>>;
354
+ }, z.core.$strict>>;
355
+ /**
356
+ * Select field configuration type
357
+ * This is a plain object that can be serialized and used anywhere.
358
+ */
359
+ export type SelectFieldConfigType = z.infer<typeof selectFieldConfigSchema>;
360
+ /**
361
+ * Helper function to create a select field configuration
362
+ * Returns a config object with a build() method that can be serialized and used anywhere.
363
+ */
364
+ export declare function selectField(field: BaseFieldConfig<SelectFieldConfig>): SelectFieldConfigType;
365
+ export {};
366
+ //# sourceMappingURL=select.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../src/core/fields/select.ts"],"names":[],"mappings":"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"}