nextjs-cms 0.5.9 → 0.5.10
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.
- package/dist/api/axios/axiosInstance.d.ts +1 -1
- package/dist/api/axios/axiosInstance.js +8 -8
- package/dist/api/index.d.ts +855 -855
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/index.js +12 -12
- package/dist/api/lib/serverActions.d.ts +239 -239
- package/dist/api/lib/serverActions.d.ts.map +1 -1
- package/dist/api/lib/serverActions.js +834 -834
- package/dist/api/root.d.ts +828 -828
- package/dist/api/root.js +30 -30
- package/dist/api/routers/accountSettings.d.ts +60 -60
- package/dist/api/routers/accountSettings.js +108 -108
- package/dist/api/routers/admins.d.ts +105 -105
- package/dist/api/routers/admins.js +219 -219
- package/dist/api/routers/auth.d.ts +47 -47
- package/dist/api/routers/auth.js +25 -25
- package/dist/api/routers/categorySection.d.ts +103 -103
- package/dist/api/routers/categorySection.js +38 -38
- package/dist/api/routers/cmsSettings.d.ts +48 -48
- package/dist/api/routers/cmsSettings.js +51 -51
- package/dist/api/routers/cpanel.d.ts +83 -83
- package/dist/api/routers/cpanel.js +216 -216
- package/dist/api/routers/files.d.ts +47 -47
- package/dist/api/routers/files.js +23 -23
- package/dist/api/routers/gallery.d.ts +35 -35
- package/dist/api/routers/gallery.js +62 -62
- package/dist/api/routers/googleAnalytics.d.ts +30 -30
- package/dist/api/routers/googleAnalytics.js +7 -7
- package/dist/api/routers/hasItemsSection.d.ts +139 -139
- package/dist/api/routers/hasItemsSection.js +34 -34
- package/dist/api/routers/navigation.d.ts +51 -51
- package/dist/api/routers/navigation.js +11 -11
- package/dist/api/routers/simpleSection.d.ts +57 -57
- package/dist/api/routers/simpleSection.js +12 -12
- package/dist/api/trpc.d.ts +106 -106
- package/dist/api/trpc.js +72 -72
- package/dist/auth/axios/axiosInstance.d.ts +1 -1
- package/dist/auth/axios/axiosInstance.js +8 -8
- package/dist/auth/csrf.d.ts +29 -29
- package/dist/auth/csrf.js +76 -76
- package/dist/auth/hooks/index.d.ts +3 -3
- package/dist/auth/hooks/index.d.ts.map +1 -1
- package/dist/auth/hooks/index.js +3 -3
- package/dist/auth/hooks/useAxiosPrivate.d.ts +4 -4
- package/dist/auth/hooks/useAxiosPrivate.js +74 -74
- package/dist/auth/hooks/useRefreshToken.d.ts +6 -6
- package/dist/auth/hooks/useRefreshToken.js +79 -79
- package/dist/auth/index.d.ts +22 -22
- package/dist/auth/index.js +44 -44
- package/dist/auth/jwt.d.ts +5 -5
- package/dist/auth/jwt.js +25 -25
- package/dist/auth/lib/actions.d.ts +32 -32
- package/dist/auth/lib/actions.d.ts.map +1 -1
- package/dist/auth/lib/actions.js +209 -209
- package/dist/auth/lib/client.d.ts +3 -3
- package/dist/auth/lib/client.js +46 -46
- package/dist/auth/lib/index.d.ts +2 -2
- package/dist/auth/lib/index.d.ts.map +1 -1
- package/dist/auth/lib/index.js +2 -2
- package/dist/auth/react.d.ts +105 -105
- package/dist/auth/react.d.ts.map +1 -1
- package/dist/auth/react.js +347 -347
- package/dist/auth/trpc.d.ts +5 -5
- package/dist/auth/trpc.d.ts.map +1 -1
- package/dist/auth/trpc.js +81 -81
- package/dist/core/config/config-loader.d.ts +91 -91
- package/dist/core/config/config-loader.js +230 -230
- package/dist/core/config/index.d.ts +2 -2
- package/dist/core/config/index.d.ts.map +1 -1
- package/dist/core/config/index.js +1 -1
- package/dist/core/config/loader.d.ts +1 -1
- package/dist/core/config/loader.js +42 -42
- package/dist/core/db/index.d.ts +1 -1
- package/dist/core/db/index.d.ts.map +1 -1
- package/dist/core/db/index.js +1 -1
- package/dist/core/db/table-checker/DbTable.d.ts +5 -5
- package/dist/core/db/table-checker/DbTable.js +5 -5
- package/dist/core/db/table-checker/MysqlTable.d.ts +33 -33
- package/dist/core/db/table-checker/MysqlTable.d.ts.map +1 -1
- package/dist/core/db/table-checker/MysqlTable.js +94 -94
- package/dist/core/db/table-checker/index.d.ts +1 -1
- package/dist/core/db/table-checker/index.d.ts.map +1 -1
- package/dist/core/db/table-checker/index.js +1 -1
- package/dist/core/factories/FieldFactory.d.ts +123 -123
- package/dist/core/factories/FieldFactory.d.ts.map +1 -1
- package/dist/core/factories/FieldFactory.js +411 -411
- package/dist/core/factories/SectionFactory.d.ts +109 -109
- package/dist/core/factories/SectionFactory.d.ts.map +1 -1
- package/dist/core/factories/SectionFactory.js +415 -415
- package/dist/core/factories/index.d.ts +2 -2
- package/dist/core/factories/index.d.ts.map +1 -1
- package/dist/core/factories/index.js +2 -2
- package/dist/core/fields/checkbox.d.ts +62 -62
- package/dist/core/fields/checkbox.d.ts.map +1 -1
- package/dist/core/fields/checkbox.js +62 -62
- package/dist/core/fields/color.d.ts +83 -83
- package/dist/core/fields/color.d.ts.map +1 -1
- package/dist/core/fields/color.js +91 -91
- package/dist/core/fields/date.d.ts +99 -99
- package/dist/core/fields/date.d.ts.map +1 -1
- package/dist/core/fields/date.js +108 -108
- package/dist/core/fields/document.d.ts +179 -179
- package/dist/core/fields/document.d.ts.map +1 -1
- package/dist/core/fields/document.js +277 -277
- package/dist/core/fields/field-group.d.ts +17 -17
- package/dist/core/fields/field-group.d.ts.map +1 -1
- package/dist/core/fields/field-group.js +6 -6
- package/dist/core/fields/field.d.ts +125 -125
- package/dist/core/fields/field.d.ts.map +1 -1
- package/dist/core/fields/field.js +148 -148
- package/dist/core/fields/fileField.d.ts +14 -14
- package/dist/core/fields/fileField.d.ts.map +1 -1
- package/dist/core/fields/fileField.js +5 -5
- package/dist/core/fields/index.d.ts +64 -64
- package/dist/core/fields/index.d.ts.map +1 -1
- package/dist/core/fields/index.js +18 -18
- package/dist/core/fields/map.d.ts +166 -166
- package/dist/core/fields/map.d.ts.map +1 -1
- package/dist/core/fields/map.js +152 -152
- package/dist/core/fields/number.d.ts +185 -185
- package/dist/core/fields/number.d.ts.map +1 -1
- package/dist/core/fields/number.js +241 -241
- package/dist/core/fields/password.d.ts +108 -108
- package/dist/core/fields/password.d.ts.map +1 -1
- package/dist/core/fields/password.js +133 -133
- package/dist/core/fields/photo.d.ts +288 -288
- package/dist/core/fields/photo.d.ts.map +1 -1
- package/dist/core/fields/photo.js +410 -410
- package/dist/core/fields/richText.d.ts +294 -294
- package/dist/core/fields/richText.d.ts.map +1 -1
- package/dist/core/fields/richText.js +338 -338
- package/dist/core/fields/select.d.ts +365 -365
- package/dist/core/fields/select.d.ts.map +1 -1
- package/dist/core/fields/select.js +499 -499
- package/dist/core/fields/selectMultiple.d.ts +235 -235
- package/dist/core/fields/selectMultiple.d.ts.map +1 -1
- package/dist/core/fields/selectMultiple.js +417 -417
- package/dist/core/fields/tags.d.ts +130 -130
- package/dist/core/fields/tags.d.ts.map +1 -1
- package/dist/core/fields/tags.js +105 -105
- package/dist/core/fields/text.d.ts +135 -135
- package/dist/core/fields/text.d.ts.map +1 -1
- package/dist/core/fields/text.js +157 -157
- package/dist/core/fields/textArea.d.ts +106 -106
- package/dist/core/fields/textArea.d.ts.map +1 -1
- package/dist/core/fields/textArea.js +126 -126
- package/dist/core/fields/video.d.ts +147 -147
- package/dist/core/fields/video.d.ts.map +1 -1
- package/dist/core/fields/video.js +248 -248
- package/dist/core/helpers/entity.d.ts +7 -7
- package/dist/core/helpers/entity.js +27 -27
- package/dist/core/helpers/index.d.ts +4 -4
- package/dist/core/helpers/index.d.ts.map +1 -1
- package/dist/core/helpers/index.js +3 -3
- package/dist/core/index.d.ts +7 -7
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +7 -7
- package/dist/core/sections/category.d.ts +282 -282
- package/dist/core/sections/category.d.ts.map +1 -1
- package/dist/core/sections/category.js +147 -147
- package/dist/core/sections/hasItems.d.ts +631 -631
- package/dist/core/sections/hasItems.d.ts.map +1 -1
- package/dist/core/sections/hasItems.js +144 -144
- package/dist/core/sections/index.d.ts +4 -4
- package/dist/core/sections/index.d.ts.map +1 -1
- package/dist/core/sections/index.js +4 -4
- package/dist/core/sections/section.d.ts +225 -225
- package/dist/core/sections/section.d.ts.map +1 -1
- package/dist/core/sections/section.js +341 -341
- package/dist/core/sections/simple.d.ts +98 -98
- package/dist/core/sections/simple.d.ts.map +1 -1
- package/dist/core/sections/simple.js +95 -95
- package/dist/core/security/dom.d.ts +10 -10
- package/dist/core/security/dom.js +92 -92
- package/dist/core/submit/ItemEditSubmit.d.ts +75 -75
- package/dist/core/submit/ItemEditSubmit.js +186 -186
- package/dist/core/submit/NewItemSubmit.d.ts +13 -13
- package/dist/core/submit/NewItemSubmit.js +93 -93
- package/dist/core/submit/SimpleSectionSubmit.d.ts +12 -12
- package/dist/core/submit/SimpleSectionSubmit.js +93 -93
- package/dist/core/submit/index.d.ts +4 -4
- package/dist/core/submit/index.js +4 -4
- package/dist/core/submit/submit.d.ts +115 -115
- package/dist/core/submit/submit.js +479 -479
- package/dist/core/types/index.d.ts +279 -279
- package/dist/core/types/index.d.ts.map +1 -1
- package/dist/core/types/index.js +1 -1
- package/dist/db/client.d.ts +8 -8
- package/dist/db/client.d.ts.map +1 -1
- package/dist/db/client.js +19 -19
- package/dist/db/config.d.ts +5 -5
- package/dist/db/config.js +22 -22
- package/dist/db/drizzle.config.d.ts +5 -5
- package/dist/db/drizzle.config.js +18 -18
- package/dist/db/index.d.ts +2 -2
- package/dist/db/index.js +3 -3
- package/dist/db/schema.d.ts +638 -638
- package/dist/db/schema.js +73 -73
- package/dist/index.d.ts +7 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -7
- package/dist/translations/index.d.ts +2 -2
- package/dist/translations/index.js +15 -15
- package/dist/utils/CpanelApi.d.ts +24 -24
- package/dist/utils/CpanelApi.js +64 -64
- package/dist/utils/constants.d.ts +13 -13
- package/dist/utils/constants.js +61 -61
- package/dist/utils/index.d.ts +4 -4
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +4 -4
- package/dist/utils/utils.d.ts +59 -59
- package/dist/utils/utils.js +132 -132
- package/dist/validators/checkbox.d.ts +3 -3
- package/dist/validators/checkbox.d.ts.map +1 -1
- package/dist/validators/checkbox.js +12 -12
- package/dist/validators/color.d.ts +3 -3
- package/dist/validators/color.d.ts.map +1 -1
- package/dist/validators/color.js +7 -7
- package/dist/validators/date.d.ts +3 -3
- package/dist/validators/date.d.ts.map +1 -1
- package/dist/validators/date.js +5 -5
- package/dist/validators/document.d.ts +3 -3
- package/dist/validators/document.d.ts.map +1 -1
- package/dist/validators/document.js +57 -57
- package/dist/validators/index.d.ts +14 -14
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +14 -14
- package/dist/validators/map.d.ts +3 -3
- package/dist/validators/map.d.ts.map +1 -1
- package/dist/validators/map.js +5 -5
- package/dist/validators/number.d.ts +3 -3
- package/dist/validators/number.d.ts.map +1 -1
- package/dist/validators/number.js +20 -20
- package/dist/validators/password.d.ts +3 -3
- package/dist/validators/password.d.ts.map +1 -1
- package/dist/validators/password.js +11 -11
- package/dist/validators/photo.d.ts +3 -3
- package/dist/validators/photo.d.ts.map +1 -1
- package/dist/validators/photo.js +100 -100
- package/dist/validators/richText.d.ts +3 -3
- package/dist/validators/richText.d.ts.map +1 -1
- package/dist/validators/richText.js +8 -8
- package/dist/validators/select-multiple.d.ts +9 -9
- package/dist/validators/select-multiple.d.ts.map +1 -1
- package/dist/validators/select-multiple.js +20 -20
- package/dist/validators/select.d.ts +3 -3
- package/dist/validators/select.d.ts.map +1 -1
- package/dist/validators/select.js +5 -5
- package/dist/validators/text.d.ts +3 -3
- package/dist/validators/text.d.ts.map +1 -1
- package/dist/validators/text.js +7 -7
- package/dist/validators/textarea.d.ts +3 -3
- package/dist/validators/textarea.d.ts.map +1 -1
- package/dist/validators/textarea.js +7 -7
- package/dist/validators/video.d.ts +3 -3
- package/dist/validators/video.d.ts.map +1 -1
- package/dist/validators/video.js +57 -57
- package/package.json +2 -3
|
@@ -1,366 +1,366 @@
|
|
|
1
|
-
import type { BaseFieldConfig } from
|
|
2
|
-
import { Field } from
|
|
3
|
-
import { entityKind } from
|
|
4
|
-
import type { CategorySection, HasItemsSection } from
|
|
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.js").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.js").ConditionalRule, import("../types.js").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.js").ConditionalRule, import("../types.js").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.js").ConditionalRule, import("../types.js").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.js").ConditionalRule, import("../types.js").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.js").ConditionalRule, import("../types.js").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.js").ConditionalRule, import("../types.js").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
|
-
section: "section";
|
|
350
|
-
db: "db";
|
|
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 {};
|
|
1
|
+
import type { BaseFieldConfig } from './field.js';
|
|
2
|
+
import { Field } from './field.js';
|
|
3
|
+
import { entityKind } from '../helpers/index.js';
|
|
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/index.js").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/index.js").ConditionalRule, import("../types/index.js").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/index.js").ConditionalRule, import("../types/index.js").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/index.js").ConditionalRule, import("../types/index.js").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/index.js").ConditionalRule, import("../types/index.js").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/index.js").ConditionalRule, import("../types/index.js").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/index.js").ConditionalRule, import("../types/index.js").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
|
+
section: "section";
|
|
350
|
+
db: "db";
|
|
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
366
|
//# sourceMappingURL=select.d.ts.map
|