nextjs-cms 0.9.22 → 0.9.24
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/README.md +65 -13
- package/dist/api/actions/files.d.ts +30 -0
- package/dist/api/actions/files.d.ts.map +1 -0
- package/dist/api/actions/files.js +234 -0
- package/dist/api/actions/index.d.ts +4 -0
- package/dist/api/actions/index.d.ts.map +1 -0
- package/dist/api/actions/index.js +3 -0
- package/dist/api/actions/pages.d.ts +297 -0
- package/dist/api/actions/pages.d.ts.map +1 -0
- package/dist/api/actions/pages.js +1215 -0
- package/dist/api/actions/privileges.d.ts +25 -0
- package/dist/api/actions/privileges.d.ts.map +1 -0
- package/dist/api/actions/privileges.js +98 -0
- package/dist/api/client/index.d.ts +4 -0
- package/dist/api/client/index.d.ts.map +1 -0
- package/dist/api/client/index.js +3 -0
- package/dist/api/client.d.ts +30 -0
- package/dist/api/client.d.ts.map +1 -0
- package/dist/api/client.js +82 -0
- package/dist/api/index.d.ts +1 -938
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/index.js +0 -13
- package/dist/api/plugin/index.d.ts +7 -0
- package/dist/api/plugin/index.d.ts.map +1 -0
- package/dist/api/plugin/index.js +5 -0
- package/dist/api/root.d.ts +18 -1844
- package/dist/api/root.d.ts.map +1 -1
- package/dist/api/root.js +18 -83
- package/dist/api/server/index.d.ts +8 -0
- package/dist/api/server/index.d.ts.map +1 -0
- package/dist/api/server/index.js +3 -0
- package/dist/api/server.d.ts +2748 -0
- package/dist/api/server.d.ts.map +1 -0
- package/dist/api/server.js +100 -0
- package/dist/api/trpc/client.d.ts +19 -3
- package/dist/api/trpc/client.d.ts.map +1 -1
- package/dist/api/trpc/client.js +55 -1
- package/dist/api/trpc/query-client.d.ts +3 -1
- package/dist/api/trpc/query-client.d.ts.map +1 -1
- package/dist/api/trpc/query-client.js +25 -20
- package/dist/api/trpc/root.d.ts +906 -0
- package/dist/api/trpc/root.d.ts.map +1 -0
- package/dist/api/trpc/root.js +47 -0
- package/dist/api/trpc/routers/accountSettings.d.ts +66 -0
- package/dist/api/trpc/routers/accountSettings.d.ts.map +1 -0
- package/dist/api/trpc/routers/accountSettings.js +200 -0
- package/dist/api/trpc/routers/admins.d.ts +112 -0
- package/dist/api/trpc/routers/admins.d.ts.map +1 -0
- package/dist/api/trpc/routers/admins.js +331 -0
- package/dist/api/trpc/routers/auth.d.ts +54 -0
- package/dist/api/trpc/routers/auth.d.ts.map +1 -0
- package/dist/api/trpc/routers/auth.js +50 -0
- package/dist/api/trpc/routers/categorySection.d.ts +105 -0
- package/dist/api/trpc/routers/categorySection.d.ts.map +1 -0
- package/dist/api/trpc/routers/categorySection.js +49 -0
- package/dist/api/trpc/routers/config.d.ts +48 -0
- package/dist/api/trpc/routers/config.d.ts.map +1 -0
- package/dist/api/trpc/routers/config.js +18 -0
- package/dist/api/trpc/routers/cpanel.d.ts +82 -0
- package/dist/api/trpc/routers/cpanel.d.ts.map +1 -0
- package/dist/api/trpc/routers/cpanel.js +216 -0
- package/dist/api/trpc/routers/fields.d.ts +35 -0
- package/dist/api/trpc/routers/fields.d.ts.map +1 -0
- package/dist/api/trpc/routers/fields.js +81 -0
- package/dist/api/trpc/routers/files.d.ts +34 -0
- package/dist/api/trpc/routers/files.d.ts.map +1 -0
- package/dist/api/trpc/routers/files.js +14 -0
- package/dist/api/trpc/routers/gallery.d.ts +35 -0
- package/dist/api/trpc/routers/gallery.d.ts.map +1 -0
- package/dist/api/trpc/routers/gallery.js +92 -0
- package/dist/api/trpc/routers/hasItemsSection.d.ts +194 -0
- package/dist/api/trpc/routers/hasItemsSection.d.ts.map +1 -0
- package/dist/api/trpc/routers/hasItemsSection.js +86 -0
- package/dist/api/trpc/routers/logs.d.ts +59 -0
- package/dist/api/trpc/routers/logs.d.ts.map +1 -0
- package/dist/api/trpc/routers/logs.js +79 -0
- package/dist/api/trpc/routers/navigation.d.ts +65 -0
- package/dist/api/trpc/routers/navigation.d.ts.map +1 -0
- package/dist/api/trpc/routers/navigation.js +11 -0
- package/dist/api/trpc/routers/simpleSection.d.ts +93 -0
- package/dist/api/trpc/routers/simpleSection.d.ts.map +1 -0
- package/dist/api/trpc/routers/simpleSection.js +54 -0
- package/dist/api/trpc/server.d.ts +2789 -5
- package/dist/api/trpc/server.d.ts.map +1 -1
- package/dist/api/trpc/server.js +91 -52
- package/dist/api/trpc/trpc.d.ts +111 -0
- package/dist/api/trpc/trpc.d.ts.map +1 -0
- package/dist/api/trpc/trpc.js +99 -0
- package/dist/api/trpc/utils/async-caller-proxy.d.ts +2 -0
- package/dist/api/trpc/utils/async-caller-proxy.d.ts.map +1 -0
- package/dist/api/trpc/utils/async-caller-proxy.js +38 -0
- package/dist/api/trpc/utils/refresh-token-link.d.ts +6 -0
- package/dist/api/trpc/utils/refresh-token-link.d.ts.map +1 -0
- package/dist/api/trpc/utils/refresh-token-link.js +81 -0
- package/dist/api/trpc/utils/router-types.d.ts +7 -0
- package/dist/api/trpc/utils/router-types.d.ts.map +1 -0
- package/dist/api/trpc/utils/router-types.js +0 -0
- package/dist/api/use-axios-private.d.ts +6 -0
- package/dist/api/use-axios-private.d.ts.map +1 -0
- package/dist/api/use-axios-private.js +57 -0
- package/dist/api/utils/async-caller-proxy.d.ts +2 -0
- package/dist/api/utils/async-caller-proxy.d.ts.map +1 -0
- package/dist/api/utils/async-caller-proxy.js +36 -0
- package/dist/api/utils/lazy-caller-proxy.d.ts +2 -0
- package/dist/api/utils/lazy-caller-proxy.d.ts.map +1 -0
- package/dist/api/utils/lazy-caller-proxy.js +36 -0
- package/dist/api/utils/router-types.d.ts +7 -0
- package/dist/api/utils/router-types.d.ts.map +1 -0
- package/dist/api/utils/router-types.js +0 -0
- package/dist/auth/hooks/index.d.ts +1 -2
- package/dist/auth/hooks/index.d.ts.map +1 -1
- package/dist/auth/hooks/index.js +1 -2
- package/dist/auth/react.d.ts +1 -2
- package/dist/auth/react.d.ts.map +1 -1
- package/dist/auth/react.js +1 -2
- package/dist/auth/trpc.d.ts +1 -1
- package/dist/auth/trpc.d.ts.map +1 -1
- package/dist/auth/trpc.js +0 -1
- package/dist/cli/lib/fix-master-admin.d.ts.map +1 -1
- package/dist/cli/lib/fix-master-admin.js +12 -25
- package/dist/cli/lib/update-sections.d.ts.map +1 -1
- package/dist/cli/lib/update-sections.js +29 -24
- package/dist/core/config/config-loader.d.ts +40 -16
- package/dist/core/config/config-loader.d.ts.map +1 -1
- package/dist/core/config/config-loader.js +58 -10
- package/dist/core/config/index.d.ts +1 -1
- package/dist/core/config/index.d.ts.map +1 -1
- package/dist/core/config/loader-with-jiti.d.ts.map +1 -1
- package/dist/core/config/loader-with-jiti.js +13 -12
- package/dist/core/factories/section-factory-with-jiti.d.ts.map +1 -1
- package/dist/core/factories/section-factory-with-jiti.js +2 -1
- package/dist/core/sections/category.d.ts +6 -6
- package/dist/core/sections/hasItems.d.ts +6 -6
- package/dist/core/sections/section.d.ts +4 -4
- package/dist/core/sections/simple.d.ts +2 -2
- package/dist/core/types/index.d.ts +17 -0
- package/dist/core/types/index.d.ts.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/plugins/client.d.ts +19 -0
- package/dist/plugins/client.d.ts.map +1 -0
- package/dist/plugins/client.js +24 -0
- package/dist/plugins/define.d.ts +6 -0
- package/dist/plugins/define.d.ts.map +1 -0
- package/dist/plugins/define.js +3 -0
- package/dist/plugins/derive.d.ts +32 -0
- package/dist/plugins/derive.d.ts.map +1 -0
- package/dist/plugins/derive.js +77 -0
- package/dist/plugins/index.d.ts +1 -1
- package/dist/plugins/index.d.ts.map +1 -1
- package/dist/plugins/loader.d.ts +43 -51
- package/dist/plugins/loader.d.ts.map +1 -1
- package/dist/plugins/loader.js +115 -58
- package/dist/plugins/manifest.d.ts +28 -0
- package/dist/plugins/manifest.d.ts.map +1 -0
- package/dist/plugins/manifest.js +83 -0
- package/dist/plugins/prefetch.d.ts +16 -0
- package/dist/plugins/prefetch.d.ts.map +1 -0
- package/dist/plugins/prefetch.js +40 -0
- package/dist/plugins/registry.d.ts +22 -0
- package/dist/plugins/registry.d.ts.map +1 -0
- package/dist/plugins/registry.js +25 -0
- package/dist/plugins/server.d.ts +2 -0
- package/dist/plugins/server.d.ts.map +1 -1
- package/dist/plugins/server.js +2 -0
- package/dist/plugins/types.d.ts +79 -0
- package/dist/plugins/types.d.ts.map +1 -0
- package/dist/plugins/types.js +0 -0
- package/dist/translations/base/en.d.ts +1 -0
- package/dist/translations/base/en.d.ts.map +1 -1
- package/dist/translations/base/en.js +1 -0
- package/dist/translations/client.d.ts +16 -4
- package/dist/translations/client.d.ts.map +1 -1
- package/dist/translations/server.d.ts +16 -4
- package/dist/translations/server.d.ts.map +1 -1
- package/dist/utils/console-log.d.ts +18 -0
- package/dist/utils/console-log.d.ts.map +1 -0
- package/dist/utils/console-log.js +28 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +1 -0
- package/dist/utils/log.d.ts +18 -0
- package/dist/utils/log.d.ts.map +1 -0
- package/dist/utils/log.js +28 -0
- package/dist/validators/index.d.ts +1 -0
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +1 -0
- package/dist/validators/tags.d.ts +4 -0
- package/dist/validators/tags.d.ts.map +1 -0
- package/dist/validators/tags.js +8 -0
- package/package.json +28 -18
|
@@ -0,0 +1,906 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const coreRouters: {
|
|
3
|
+
auth: import("@trpc/server").TRPCBuiltRouter<{
|
|
4
|
+
ctx: {
|
|
5
|
+
headers: Headers;
|
|
6
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
7
|
+
$client: import("mysql2/promise").Pool;
|
|
8
|
+
};
|
|
9
|
+
session: import("../../index.js").Session | null;
|
|
10
|
+
};
|
|
11
|
+
meta: object;
|
|
12
|
+
errorShape: {
|
|
13
|
+
data: {
|
|
14
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
15
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
16
|
+
httpStatus: number;
|
|
17
|
+
path?: string;
|
|
18
|
+
stack?: string;
|
|
19
|
+
};
|
|
20
|
+
message: string;
|
|
21
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
22
|
+
};
|
|
23
|
+
transformer: true;
|
|
24
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
25
|
+
login: import("@trpc/server").TRPCMutationProcedure<{
|
|
26
|
+
input: {
|
|
27
|
+
username: string;
|
|
28
|
+
password: string;
|
|
29
|
+
};
|
|
30
|
+
output: {
|
|
31
|
+
status: number;
|
|
32
|
+
session: {
|
|
33
|
+
user: {
|
|
34
|
+
id: string;
|
|
35
|
+
name: string;
|
|
36
|
+
language: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
user: {
|
|
40
|
+
id: string;
|
|
41
|
+
username: string;
|
|
42
|
+
lang: string;
|
|
43
|
+
avatar: string | null;
|
|
44
|
+
};
|
|
45
|
+
accessToken: string;
|
|
46
|
+
};
|
|
47
|
+
meta: object;
|
|
48
|
+
}>;
|
|
49
|
+
logout: import("@trpc/server").TRPCMutationProcedure<{
|
|
50
|
+
input: void;
|
|
51
|
+
output: boolean;
|
|
52
|
+
meta: object;
|
|
53
|
+
}>;
|
|
54
|
+
}>>;
|
|
55
|
+
admins: import("@trpc/server").TRPCBuiltRouter<{
|
|
56
|
+
ctx: {
|
|
57
|
+
headers: Headers;
|
|
58
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
59
|
+
$client: import("mysql2/promise").Pool;
|
|
60
|
+
};
|
|
61
|
+
session: import("../../index.js").Session | null;
|
|
62
|
+
};
|
|
63
|
+
meta: object;
|
|
64
|
+
errorShape: {
|
|
65
|
+
data: {
|
|
66
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
67
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
68
|
+
httpStatus: number;
|
|
69
|
+
path?: string;
|
|
70
|
+
stack?: string;
|
|
71
|
+
};
|
|
72
|
+
message: string;
|
|
73
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
74
|
+
};
|
|
75
|
+
transformer: true;
|
|
76
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
77
|
+
list: import("@trpc/server").TRPCQueryProcedure<{
|
|
78
|
+
input: void;
|
|
79
|
+
output: {
|
|
80
|
+
error: {
|
|
81
|
+
message: string;
|
|
82
|
+
};
|
|
83
|
+
admins?: undefined;
|
|
84
|
+
privileges?: undefined;
|
|
85
|
+
} | {
|
|
86
|
+
admins: {
|
|
87
|
+
id: string;
|
|
88
|
+
username: string;
|
|
89
|
+
avatar: string | null;
|
|
90
|
+
roles: {
|
|
91
|
+
operations: "C" | "U" | "D" | "CU" | "CD" | "UD" | "CUD";
|
|
92
|
+
publisher: boolean | null;
|
|
93
|
+
sectionName: string;
|
|
94
|
+
}[];
|
|
95
|
+
}[];
|
|
96
|
+
privileges: {
|
|
97
|
+
title: string;
|
|
98
|
+
order: number;
|
|
99
|
+
sectionType: string;
|
|
100
|
+
sectionName: string;
|
|
101
|
+
}[];
|
|
102
|
+
error?: undefined;
|
|
103
|
+
};
|
|
104
|
+
meta: object;
|
|
105
|
+
}>;
|
|
106
|
+
get: import("@trpc/server").TRPCQueryProcedure<{
|
|
107
|
+
input: string;
|
|
108
|
+
output: {
|
|
109
|
+
admin: {
|
|
110
|
+
id: string;
|
|
111
|
+
user: string;
|
|
112
|
+
};
|
|
113
|
+
adminRoles: {
|
|
114
|
+
sectionName: string;
|
|
115
|
+
operations: "C" | "U" | "D" | "CU" | "CD" | "UD" | "CUD";
|
|
116
|
+
publisher: boolean | null;
|
|
117
|
+
}[];
|
|
118
|
+
allRoles: {
|
|
119
|
+
title: string;
|
|
120
|
+
order: number;
|
|
121
|
+
sectionType: string;
|
|
122
|
+
sectionName: string;
|
|
123
|
+
}[];
|
|
124
|
+
};
|
|
125
|
+
meta: object;
|
|
126
|
+
}>;
|
|
127
|
+
create: import("@trpc/server").TRPCMutationProcedure<{
|
|
128
|
+
input: {
|
|
129
|
+
username: string;
|
|
130
|
+
password: string;
|
|
131
|
+
privileges: {
|
|
132
|
+
sectionName: string;
|
|
133
|
+
publisher: boolean | null;
|
|
134
|
+
operations: string;
|
|
135
|
+
}[];
|
|
136
|
+
};
|
|
137
|
+
output: {
|
|
138
|
+
status: string;
|
|
139
|
+
id: string;
|
|
140
|
+
};
|
|
141
|
+
meta: object;
|
|
142
|
+
}>;
|
|
143
|
+
update: import("@trpc/server").TRPCMutationProcedure<{
|
|
144
|
+
input: {
|
|
145
|
+
id: string;
|
|
146
|
+
privileges: {
|
|
147
|
+
sectionName: string;
|
|
148
|
+
publisher: boolean | null;
|
|
149
|
+
operations: string;
|
|
150
|
+
}[];
|
|
151
|
+
};
|
|
152
|
+
output: {
|
|
153
|
+
status: string;
|
|
154
|
+
};
|
|
155
|
+
meta: object;
|
|
156
|
+
}>;
|
|
157
|
+
remove: import("@trpc/server").TRPCMutationProcedure<{
|
|
158
|
+
input: {
|
|
159
|
+
id: string;
|
|
160
|
+
};
|
|
161
|
+
output: boolean;
|
|
162
|
+
meta: object;
|
|
163
|
+
}>;
|
|
164
|
+
}>>;
|
|
165
|
+
config: import("@trpc/server").TRPCBuiltRouter<{
|
|
166
|
+
ctx: {
|
|
167
|
+
headers: Headers;
|
|
168
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
169
|
+
$client: import("mysql2/promise").Pool;
|
|
170
|
+
};
|
|
171
|
+
session: import("../../index.js").Session | null;
|
|
172
|
+
};
|
|
173
|
+
meta: object;
|
|
174
|
+
errorShape: {
|
|
175
|
+
data: {
|
|
176
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
177
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
178
|
+
httpStatus: number;
|
|
179
|
+
path?: string;
|
|
180
|
+
stack?: string;
|
|
181
|
+
};
|
|
182
|
+
message: string;
|
|
183
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
184
|
+
};
|
|
185
|
+
transformer: true;
|
|
186
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
187
|
+
getI18n: import("@trpc/server").TRPCQueryProcedure<{
|
|
188
|
+
input: void;
|
|
189
|
+
output: {
|
|
190
|
+
supportedLanguages: readonly string[];
|
|
191
|
+
fallbackLanguage: string;
|
|
192
|
+
};
|
|
193
|
+
meta: object;
|
|
194
|
+
}>;
|
|
195
|
+
getLocalization: import("@trpc/server").TRPCQueryProcedure<{
|
|
196
|
+
input: void;
|
|
197
|
+
output: {
|
|
198
|
+
enabled: boolean;
|
|
199
|
+
locales: {
|
|
200
|
+
code: string;
|
|
201
|
+
label: string;
|
|
202
|
+
rtl?: boolean;
|
|
203
|
+
}[];
|
|
204
|
+
defaultLocale: string;
|
|
205
|
+
} | null;
|
|
206
|
+
meta: object;
|
|
207
|
+
}>;
|
|
208
|
+
}>>;
|
|
209
|
+
hasItemsSections: import("@trpc/server").TRPCBuiltRouter<{
|
|
210
|
+
ctx: {
|
|
211
|
+
headers: Headers;
|
|
212
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
213
|
+
$client: import("mysql2/promise").Pool;
|
|
214
|
+
};
|
|
215
|
+
session: import("../../index.js").Session | null;
|
|
216
|
+
};
|
|
217
|
+
meta: object;
|
|
218
|
+
errorShape: {
|
|
219
|
+
data: {
|
|
220
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
221
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
222
|
+
httpStatus: number;
|
|
223
|
+
path?: string;
|
|
224
|
+
stack?: string;
|
|
225
|
+
};
|
|
226
|
+
message: string;
|
|
227
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
228
|
+
};
|
|
229
|
+
transformer: true;
|
|
230
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
231
|
+
listItems: import("@trpc/server").TRPCQueryProcedure<{
|
|
232
|
+
input: {
|
|
233
|
+
sectionName: string;
|
|
234
|
+
page?: number | undefined;
|
|
235
|
+
q?: string | undefined;
|
|
236
|
+
};
|
|
237
|
+
output: {
|
|
238
|
+
error: {
|
|
239
|
+
message: string;
|
|
240
|
+
};
|
|
241
|
+
section?: undefined;
|
|
242
|
+
items?: undefined;
|
|
243
|
+
totalCount?: undefined;
|
|
244
|
+
} | {
|
|
245
|
+
section: {
|
|
246
|
+
hasSearch: boolean;
|
|
247
|
+
name: string;
|
|
248
|
+
title: string;
|
|
249
|
+
};
|
|
250
|
+
items: (Record<string, any> | {
|
|
251
|
+
id: string | number;
|
|
252
|
+
headingTitle: string;
|
|
253
|
+
coverPhoto: string | null;
|
|
254
|
+
createdAt: string;
|
|
255
|
+
createdBy: string;
|
|
256
|
+
permission: number;
|
|
257
|
+
})[];
|
|
258
|
+
totalCount: any;
|
|
259
|
+
error?: undefined;
|
|
260
|
+
};
|
|
261
|
+
meta: object;
|
|
262
|
+
}>;
|
|
263
|
+
newItem: import("@trpc/server").TRPCQueryProcedure<{
|
|
264
|
+
input: {
|
|
265
|
+
sectionName: string;
|
|
266
|
+
};
|
|
267
|
+
output: {
|
|
268
|
+
error: {
|
|
269
|
+
message: any;
|
|
270
|
+
};
|
|
271
|
+
section?: undefined;
|
|
272
|
+
inputGroups?: undefined;
|
|
273
|
+
defaultLocale?: undefined;
|
|
274
|
+
} | {
|
|
275
|
+
section: {
|
|
276
|
+
name: string;
|
|
277
|
+
title: {
|
|
278
|
+
section: string;
|
|
279
|
+
singular: string;
|
|
280
|
+
plural: string;
|
|
281
|
+
};
|
|
282
|
+
gallery: import("../../index.js").SectionGallery | undefined;
|
|
283
|
+
variants: import("../../core/types/index.js").Variant[] | undefined;
|
|
284
|
+
configFile: string;
|
|
285
|
+
};
|
|
286
|
+
inputGroups: {
|
|
287
|
+
groupId: number;
|
|
288
|
+
groupTitle: string;
|
|
289
|
+
groupOrder: number;
|
|
290
|
+
inputs: {
|
|
291
|
+
type: import("../../core/types/index.js").FieldType;
|
|
292
|
+
name: string;
|
|
293
|
+
label: string;
|
|
294
|
+
required: boolean;
|
|
295
|
+
localized?: boolean;
|
|
296
|
+
conditionalFields: import("../../core/types/index.js").ConditionalField[];
|
|
297
|
+
readonly: boolean;
|
|
298
|
+
defaultValue: any;
|
|
299
|
+
value: any;
|
|
300
|
+
}[];
|
|
301
|
+
}[] | undefined;
|
|
302
|
+
defaultLocale: {
|
|
303
|
+
code: string;
|
|
304
|
+
label: string;
|
|
305
|
+
rtl?: boolean;
|
|
306
|
+
} | null;
|
|
307
|
+
error?: undefined;
|
|
308
|
+
};
|
|
309
|
+
meta: object;
|
|
310
|
+
}>;
|
|
311
|
+
editItem: import("@trpc/server").TRPCQueryProcedure<{
|
|
312
|
+
input: {
|
|
313
|
+
sectionName: string;
|
|
314
|
+
sectionItemId: string | number;
|
|
315
|
+
locale?: string | undefined;
|
|
316
|
+
};
|
|
317
|
+
output: {
|
|
318
|
+
section: {
|
|
319
|
+
name: string;
|
|
320
|
+
title: {
|
|
321
|
+
section: string;
|
|
322
|
+
singular: string;
|
|
323
|
+
plural: string;
|
|
324
|
+
};
|
|
325
|
+
gallery: import("../../index.js").SectionGallery | undefined;
|
|
326
|
+
variants: import("../../core/types/index.js").Variant[] | undefined;
|
|
327
|
+
configFile: string;
|
|
328
|
+
};
|
|
329
|
+
inputGroups: {
|
|
330
|
+
groupId: number;
|
|
331
|
+
groupTitle: string;
|
|
332
|
+
groupOrder: number;
|
|
333
|
+
inputs: {
|
|
334
|
+
type: import("../../core/types/index.js").FieldType;
|
|
335
|
+
name: string;
|
|
336
|
+
label: string;
|
|
337
|
+
required: boolean;
|
|
338
|
+
localized?: boolean;
|
|
339
|
+
conditionalFields: import("../../core/types/index.js").ConditionalField[];
|
|
340
|
+
readonly: boolean;
|
|
341
|
+
defaultValue: any;
|
|
342
|
+
value: any;
|
|
343
|
+
}[];
|
|
344
|
+
}[] | undefined;
|
|
345
|
+
gallery: {
|
|
346
|
+
referenceId: string;
|
|
347
|
+
photo: string;
|
|
348
|
+
meta: any;
|
|
349
|
+
locale?: string;
|
|
350
|
+
}[];
|
|
351
|
+
localization: {
|
|
352
|
+
defaultLocale: {
|
|
353
|
+
code: string;
|
|
354
|
+
label: string;
|
|
355
|
+
rtl?: boolean;
|
|
356
|
+
};
|
|
357
|
+
currentLocale: {
|
|
358
|
+
code: string;
|
|
359
|
+
label: string;
|
|
360
|
+
rtl?: boolean;
|
|
361
|
+
};
|
|
362
|
+
existingTranslations: string[];
|
|
363
|
+
locales: {
|
|
364
|
+
code: string;
|
|
365
|
+
label: string;
|
|
366
|
+
rtl?: boolean;
|
|
367
|
+
}[];
|
|
368
|
+
localeSwitcherEnabled: boolean;
|
|
369
|
+
developerNoteEnabled: boolean;
|
|
370
|
+
} | null;
|
|
371
|
+
error?: undefined;
|
|
372
|
+
} | {
|
|
373
|
+
error: {
|
|
374
|
+
message: any;
|
|
375
|
+
};
|
|
376
|
+
section?: undefined;
|
|
377
|
+
inputGroups?: undefined;
|
|
378
|
+
gallery?: undefined;
|
|
379
|
+
localization?: undefined;
|
|
380
|
+
};
|
|
381
|
+
meta: object;
|
|
382
|
+
}>;
|
|
383
|
+
deleteItem: import("@trpc/server").TRPCMutationProcedure<{
|
|
384
|
+
input: {
|
|
385
|
+
sectionName: string;
|
|
386
|
+
sectionItemId: string | number;
|
|
387
|
+
};
|
|
388
|
+
output: boolean;
|
|
389
|
+
meta: object;
|
|
390
|
+
}>;
|
|
391
|
+
deleteLocaleTranslation: import("@trpc/server").TRPCMutationProcedure<{
|
|
392
|
+
input: {
|
|
393
|
+
sectionName: string;
|
|
394
|
+
sectionItemId: string | number;
|
|
395
|
+
locale: string;
|
|
396
|
+
};
|
|
397
|
+
output: boolean;
|
|
398
|
+
meta: object;
|
|
399
|
+
}>;
|
|
400
|
+
}>>;
|
|
401
|
+
simpleSections: import("@trpc/server").TRPCBuiltRouter<{
|
|
402
|
+
ctx: {
|
|
403
|
+
headers: Headers;
|
|
404
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
405
|
+
$client: import("mysql2/promise").Pool;
|
|
406
|
+
};
|
|
407
|
+
session: import("../../index.js").Session | null;
|
|
408
|
+
};
|
|
409
|
+
meta: object;
|
|
410
|
+
errorShape: {
|
|
411
|
+
data: {
|
|
412
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
413
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
414
|
+
httpStatus: number;
|
|
415
|
+
path?: string;
|
|
416
|
+
stack?: string;
|
|
417
|
+
};
|
|
418
|
+
message: string;
|
|
419
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
420
|
+
};
|
|
421
|
+
transformer: true;
|
|
422
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
423
|
+
create: import("@trpc/server").TRPCQueryProcedure<{
|
|
424
|
+
input: {
|
|
425
|
+
sectionName: string;
|
|
426
|
+
locale?: string | undefined;
|
|
427
|
+
};
|
|
428
|
+
output: {
|
|
429
|
+
error: {
|
|
430
|
+
message: string;
|
|
431
|
+
};
|
|
432
|
+
section?: undefined;
|
|
433
|
+
inputGroups?: undefined;
|
|
434
|
+
localization?: undefined;
|
|
435
|
+
} | {
|
|
436
|
+
section: {
|
|
437
|
+
name: string;
|
|
438
|
+
title: string;
|
|
439
|
+
gallery: import("../../index.js").SectionGallery | undefined;
|
|
440
|
+
variants: import("../../core/types/index.js").Variant[] | undefined;
|
|
441
|
+
configFile: string;
|
|
442
|
+
};
|
|
443
|
+
inputGroups: {
|
|
444
|
+
groupId: number;
|
|
445
|
+
groupTitle: string;
|
|
446
|
+
groupOrder: number;
|
|
447
|
+
inputs: {
|
|
448
|
+
type: import("../../core/types/index.js").FieldType;
|
|
449
|
+
name: string;
|
|
450
|
+
label: string;
|
|
451
|
+
required: boolean;
|
|
452
|
+
localized?: boolean;
|
|
453
|
+
conditionalFields: import("../../core/types/index.js").ConditionalField[];
|
|
454
|
+
readonly: boolean;
|
|
455
|
+
defaultValue: any;
|
|
456
|
+
value: any;
|
|
457
|
+
}[];
|
|
458
|
+
}[] | undefined;
|
|
459
|
+
localization: {
|
|
460
|
+
defaultLocale: {
|
|
461
|
+
code: string;
|
|
462
|
+
label: any;
|
|
463
|
+
rtl?: boolean;
|
|
464
|
+
};
|
|
465
|
+
currentLocale: {
|
|
466
|
+
code: string;
|
|
467
|
+
label: any;
|
|
468
|
+
rtl?: boolean;
|
|
469
|
+
};
|
|
470
|
+
existingTranslations: string[];
|
|
471
|
+
locales: {
|
|
472
|
+
code: string;
|
|
473
|
+
label: any;
|
|
474
|
+
rtl?: boolean;
|
|
475
|
+
}[];
|
|
476
|
+
localeSwitcherEnabled: boolean;
|
|
477
|
+
developerNoteEnabled: boolean;
|
|
478
|
+
} | null;
|
|
479
|
+
error?: undefined;
|
|
480
|
+
};
|
|
481
|
+
meta: object;
|
|
482
|
+
}>;
|
|
483
|
+
deleteLocaleTranslation: import("@trpc/server").TRPCMutationProcedure<{
|
|
484
|
+
input: {
|
|
485
|
+
sectionName: string;
|
|
486
|
+
locale: string;
|
|
487
|
+
};
|
|
488
|
+
output: boolean;
|
|
489
|
+
meta: object;
|
|
490
|
+
}>;
|
|
491
|
+
}>>;
|
|
492
|
+
categorySections: import("@trpc/server").TRPCBuiltRouter<{
|
|
493
|
+
ctx: {
|
|
494
|
+
headers: Headers;
|
|
495
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
496
|
+
$client: import("mysql2/promise").Pool;
|
|
497
|
+
};
|
|
498
|
+
session: import("../../index.js").Session | null;
|
|
499
|
+
};
|
|
500
|
+
meta: object;
|
|
501
|
+
errorShape: {
|
|
502
|
+
data: {
|
|
503
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
504
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
505
|
+
httpStatus: number;
|
|
506
|
+
path?: string;
|
|
507
|
+
stack?: string;
|
|
508
|
+
};
|
|
509
|
+
message: string;
|
|
510
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
511
|
+
};
|
|
512
|
+
transformer: true;
|
|
513
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
514
|
+
get: import("@trpc/server").TRPCQueryProcedure<{
|
|
515
|
+
input: {
|
|
516
|
+
sectionName: string;
|
|
517
|
+
};
|
|
518
|
+
output: {
|
|
519
|
+
error: {
|
|
520
|
+
message: string;
|
|
521
|
+
};
|
|
522
|
+
section?: undefined;
|
|
523
|
+
data?: undefined;
|
|
524
|
+
} | {
|
|
525
|
+
section: {
|
|
526
|
+
tableName: string;
|
|
527
|
+
sectionName: string;
|
|
528
|
+
title: {
|
|
529
|
+
section: string;
|
|
530
|
+
singular: string;
|
|
531
|
+
plural: string;
|
|
532
|
+
};
|
|
533
|
+
};
|
|
534
|
+
data: {
|
|
535
|
+
options: {
|
|
536
|
+
value: string | number;
|
|
537
|
+
label: string;
|
|
538
|
+
}[] | undefined;
|
|
539
|
+
required: boolean;
|
|
540
|
+
name: string;
|
|
541
|
+
label: string;
|
|
542
|
+
value: {
|
|
543
|
+
value: string | number;
|
|
544
|
+
label: string;
|
|
545
|
+
}[] | undefined;
|
|
546
|
+
parentId: string | number | undefined;
|
|
547
|
+
level: number;
|
|
548
|
+
depth: number | undefined;
|
|
549
|
+
sectionName: string;
|
|
550
|
+
allowRecursiveDelete: boolean | undefined;
|
|
551
|
+
};
|
|
552
|
+
error?: undefined;
|
|
553
|
+
};
|
|
554
|
+
meta: object;
|
|
555
|
+
}>;
|
|
556
|
+
getChildren: import("@trpc/server").TRPCMutationProcedure<{
|
|
557
|
+
input: {
|
|
558
|
+
sectionName: string;
|
|
559
|
+
parentId: string | number | undefined;
|
|
560
|
+
level: number;
|
|
561
|
+
};
|
|
562
|
+
output: {
|
|
563
|
+
error: {
|
|
564
|
+
message: string;
|
|
565
|
+
};
|
|
566
|
+
options?: undefined;
|
|
567
|
+
parentId?: undefined;
|
|
568
|
+
level?: undefined;
|
|
569
|
+
} | {
|
|
570
|
+
options: null;
|
|
571
|
+
parentId: string | number;
|
|
572
|
+
level: number;
|
|
573
|
+
error?: undefined;
|
|
574
|
+
} | {
|
|
575
|
+
options: {
|
|
576
|
+
value: any;
|
|
577
|
+
label: any;
|
|
578
|
+
}[];
|
|
579
|
+
parentId: string | number;
|
|
580
|
+
level: number;
|
|
581
|
+
error?: undefined;
|
|
582
|
+
} | undefined;
|
|
583
|
+
meta: object;
|
|
584
|
+
}>;
|
|
585
|
+
deleteItem: import("@trpc/server").TRPCMutationProcedure<{
|
|
586
|
+
input: {
|
|
587
|
+
sectionName: string;
|
|
588
|
+
sectionItemId: string | number;
|
|
589
|
+
deleteChildren?: boolean | undefined;
|
|
590
|
+
};
|
|
591
|
+
output: boolean;
|
|
592
|
+
meta: object;
|
|
593
|
+
}>;
|
|
594
|
+
}>>;
|
|
595
|
+
files: import("@trpc/server").TRPCBuiltRouter<{
|
|
596
|
+
ctx: {
|
|
597
|
+
headers: Headers;
|
|
598
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
599
|
+
$client: import("mysql2/promise").Pool;
|
|
600
|
+
};
|
|
601
|
+
session: import("../../index.js").Session | null;
|
|
602
|
+
};
|
|
603
|
+
meta: object;
|
|
604
|
+
errorShape: {
|
|
605
|
+
data: {
|
|
606
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
607
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
608
|
+
httpStatus: number;
|
|
609
|
+
path?: string;
|
|
610
|
+
stack?: string;
|
|
611
|
+
};
|
|
612
|
+
message: string;
|
|
613
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
614
|
+
};
|
|
615
|
+
transformer: true;
|
|
616
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
617
|
+
getPhoto: import("@trpc/server").TRPCQueryProcedure<{
|
|
618
|
+
input: {
|
|
619
|
+
name: string;
|
|
620
|
+
folder: string;
|
|
621
|
+
isThumb?: boolean | undefined;
|
|
622
|
+
};
|
|
623
|
+
output: string;
|
|
624
|
+
meta: object;
|
|
625
|
+
}>;
|
|
626
|
+
}>>;
|
|
627
|
+
gallery: import("@trpc/server").TRPCBuiltRouter<{
|
|
628
|
+
ctx: {
|
|
629
|
+
headers: Headers;
|
|
630
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
631
|
+
$client: import("mysql2/promise").Pool;
|
|
632
|
+
};
|
|
633
|
+
session: import("../../index.js").Session | null;
|
|
634
|
+
};
|
|
635
|
+
meta: object;
|
|
636
|
+
errorShape: {
|
|
637
|
+
data: {
|
|
638
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
639
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
640
|
+
httpStatus: number;
|
|
641
|
+
path?: string;
|
|
642
|
+
stack?: string;
|
|
643
|
+
};
|
|
644
|
+
message: string;
|
|
645
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
646
|
+
};
|
|
647
|
+
transformer: true;
|
|
648
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
649
|
+
deletePhoto: import("@trpc/server").TRPCMutationProcedure<{
|
|
650
|
+
input: {
|
|
651
|
+
sectionName: string;
|
|
652
|
+
photoName: string;
|
|
653
|
+
referenceId: string;
|
|
654
|
+
locale?: string | undefined;
|
|
655
|
+
};
|
|
656
|
+
output: boolean;
|
|
657
|
+
meta: object;
|
|
658
|
+
}>;
|
|
659
|
+
}>>;
|
|
660
|
+
navigation: import("@trpc/server").TRPCBuiltRouter<{
|
|
661
|
+
ctx: {
|
|
662
|
+
headers: Headers;
|
|
663
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
664
|
+
$client: import("mysql2/promise").Pool;
|
|
665
|
+
};
|
|
666
|
+
session: import("../../index.js").Session | null;
|
|
667
|
+
};
|
|
668
|
+
meta: object;
|
|
669
|
+
errorShape: {
|
|
670
|
+
data: {
|
|
671
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
672
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
673
|
+
httpStatus: number;
|
|
674
|
+
path?: string;
|
|
675
|
+
stack?: string;
|
|
676
|
+
};
|
|
677
|
+
message: string;
|
|
678
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
679
|
+
};
|
|
680
|
+
transformer: true;
|
|
681
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
682
|
+
getSidebar: import("@trpc/server").TRPCQueryProcedure<{
|
|
683
|
+
input: void;
|
|
684
|
+
output: {
|
|
685
|
+
fixed_sections: {
|
|
686
|
+
title: string;
|
|
687
|
+
path: string;
|
|
688
|
+
icon: string;
|
|
689
|
+
}[];
|
|
690
|
+
plugin_sections: ({
|
|
691
|
+
kind: "leaf";
|
|
692
|
+
title: string;
|
|
693
|
+
path: string;
|
|
694
|
+
icon: string;
|
|
695
|
+
} | {
|
|
696
|
+
kind: "group";
|
|
697
|
+
title: string;
|
|
698
|
+
icon: string;
|
|
699
|
+
children: {
|
|
700
|
+
title: string;
|
|
701
|
+
path: string;
|
|
702
|
+
icon: string;
|
|
703
|
+
}[];
|
|
704
|
+
})[];
|
|
705
|
+
cat_sections: {
|
|
706
|
+
title: string;
|
|
707
|
+
path: string;
|
|
708
|
+
icon: "delete" | "user" | "binary" | "unlink" | "section" | "upload" | "contact" | "home" | "video" | "edit" | "save" | "logs" | "settings" | "undo" | "search" | "view" | "database" | "users" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "anchor" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "badge" | "baggage-claim" | "balloon" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "baseline" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binoculars" | "biohazard" | "bird" | "birdhouse" | "bitcoin" | "blend" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bold" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-search" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "box" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "calendar" | "calendars" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis-off" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chess-bishop" | "chess-king" | "chess-knight" | "chess-pawn" | "chess-queen" | "chess-rook" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chromium" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-pile" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-check" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-backup" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-sync" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "code" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "command" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "container" | "contrast" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copy" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "cross" | "crosshair" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "diamond" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "dot" | "download" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "ellipsis" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "ev-charger" | "expand" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-axis-3d" | "file-axis-3-d" | "file-badge" | "file-badge-2" | "file-box" | "file-braces-corner" | "file-json-2" | "file-braces" | "file-json" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-corner" | "file-check-2" | "file-check" | "file-clock" | "file-code-corner" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-exclamation-point" | "file-warning" | "file-headphone" | "file-audio" | "file-audio-2" | "file-heart" | "file-image" | "file-input" | "file-key" | "file-key-2" | "file-lock" | "file-lock-2" | "file-minus-corner" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-corner" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-corner" | "file-search-2" | "file-search" | "file-signal" | "file-volume-2" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-corner" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume" | "file-x-corner" | "file-x-2" | "file-x" | "file" | "files" | "film" | "fingerprint-pattern" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "fishing-hook" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "focus" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "form" | "forward" | "frame" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "filter" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad-directional" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "ghost" | "gift" | "git-branch-minus" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe-x" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "group" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hd" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "heading" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "helicopter" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-heart" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "image" | "images" | "import" | "inbox" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "italic" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "key" | "keyboard-music" | "keyboard-off" | "keyboard" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers-plus" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "link" | "linkedin" | "list-check" | "list-checks" | "list-chevrons-down-up" | "list-chevrons-up-down" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-indent-decrease" | "outdent" | "indent-decrease" | "list-indent-increase" | "indent" | "indent-increase" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "list" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "map" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "menu" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cloud" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "motorbike" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "mouse" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "move" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "navigation" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "option" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left-right-dashed" | "panel-left" | "sidebar" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-bottom-dashed" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "layout" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "pause" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "pen" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "percent" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "play" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "pointer" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "power" | "presentation" | "printer-check" | "printer-x" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "radio" | "radius" | "rail-symbol" | "rainbow" | "rat" | "ratio" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "repeat" | "replace-all" | "replace" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "scale-3d" | "scale-3-d" | "scale" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "scooter" | "screen-share-off" | "screen-share" | "scroll-text" | "scroll" | "search-alert" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "send" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "shapes" | "share-2" | "share" | "sheet" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrink" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "slice" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "solar-panel" | "soup" | "space" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "split" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "star" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "stone" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "table" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "target" | "telescope" | "tent-tree" | "tent" | "terminal" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-align-center" | "align-center" | "text-align-end" | "align-right" | "text-align-justify" | "align-justify" | "text-align-start" | "text" | "align-left" | "text-cursor-input" | "text-cursor" | "text-initial" | "letter-text" | "text-quote" | "text-search" | "text-select" | "text-selection" | "text-wrap" | "wrap-text" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "timer" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "toolbox" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "triangle" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "type" | "umbrella-off" | "umbrella" | "underline" | "undo-2" | "undo-dot" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unplug" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "van" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "vibrate" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-arrow-down" | "waves-arrow-up" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "weight-tilde" | "weight" | "wheat-off" | "wheat" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrench" | "x" | "youtube" | "zap-off" | "zap" | "zoom-in" | "zoom-out" | undefined;
|
|
709
|
+
}[];
|
|
710
|
+
has_items_sections: {
|
|
711
|
+
title: string;
|
|
712
|
+
path: string;
|
|
713
|
+
icon: "delete" | "user" | "binary" | "unlink" | "section" | "upload" | "contact" | "home" | "video" | "edit" | "save" | "logs" | "settings" | "undo" | "search" | "view" | "database" | "users" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "anchor" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "badge" | "baggage-claim" | "balloon" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "baseline" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binoculars" | "biohazard" | "bird" | "birdhouse" | "bitcoin" | "blend" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bold" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-search" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "box" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "calendar" | "calendars" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis-off" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chess-bishop" | "chess-king" | "chess-knight" | "chess-pawn" | "chess-queen" | "chess-rook" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chromium" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-pile" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-check" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-backup" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-sync" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "code" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "command" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "container" | "contrast" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copy" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "cross" | "crosshair" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "diamond" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "dot" | "download" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "ellipsis" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "ev-charger" | "expand" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-axis-3d" | "file-axis-3-d" | "file-badge" | "file-badge-2" | "file-box" | "file-braces-corner" | "file-json-2" | "file-braces" | "file-json" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-corner" | "file-check-2" | "file-check" | "file-clock" | "file-code-corner" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-exclamation-point" | "file-warning" | "file-headphone" | "file-audio" | "file-audio-2" | "file-heart" | "file-image" | "file-input" | "file-key" | "file-key-2" | "file-lock" | "file-lock-2" | "file-minus-corner" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-corner" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-corner" | "file-search-2" | "file-search" | "file-signal" | "file-volume-2" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-corner" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume" | "file-x-corner" | "file-x-2" | "file-x" | "file" | "files" | "film" | "fingerprint-pattern" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "fishing-hook" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "focus" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "form" | "forward" | "frame" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "filter" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad-directional" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "ghost" | "gift" | "git-branch-minus" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe-x" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "group" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hd" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "heading" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "helicopter" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-heart" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "image" | "images" | "import" | "inbox" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "italic" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "key" | "keyboard-music" | "keyboard-off" | "keyboard" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers-plus" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "link" | "linkedin" | "list-check" | "list-checks" | "list-chevrons-down-up" | "list-chevrons-up-down" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-indent-decrease" | "outdent" | "indent-decrease" | "list-indent-increase" | "indent" | "indent-increase" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "list" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "map" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "menu" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cloud" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "motorbike" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "mouse" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "move" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "navigation" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "option" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left-right-dashed" | "panel-left" | "sidebar" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-bottom-dashed" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "layout" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "pause" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "pen" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "percent" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "play" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "pointer" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "power" | "presentation" | "printer-check" | "printer-x" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "radio" | "radius" | "rail-symbol" | "rainbow" | "rat" | "ratio" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "repeat" | "replace-all" | "replace" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "scale-3d" | "scale-3-d" | "scale" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "scooter" | "screen-share-off" | "screen-share" | "scroll-text" | "scroll" | "search-alert" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "send" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "shapes" | "share-2" | "share" | "sheet" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrink" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "slice" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "solar-panel" | "soup" | "space" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "split" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "star" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "stone" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "table" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "target" | "telescope" | "tent-tree" | "tent" | "terminal" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-align-center" | "align-center" | "text-align-end" | "align-right" | "text-align-justify" | "align-justify" | "text-align-start" | "text" | "align-left" | "text-cursor-input" | "text-cursor" | "text-initial" | "letter-text" | "text-quote" | "text-search" | "text-select" | "text-selection" | "text-wrap" | "wrap-text" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "timer" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "toolbox" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "triangle" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "type" | "umbrella-off" | "umbrella" | "underline" | "undo-2" | "undo-dot" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unplug" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "van" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "vibrate" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-arrow-down" | "waves-arrow-up" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "weight-tilde" | "weight" | "wheat-off" | "wheat" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrench" | "x" | "youtube" | "zap-off" | "zap" | "zoom-in" | "zoom-out" | undefined;
|
|
714
|
+
}[];
|
|
715
|
+
simple_sections: {
|
|
716
|
+
title: string;
|
|
717
|
+
path: string;
|
|
718
|
+
icon: "delete" | "user" | "binary" | "unlink" | "section" | "upload" | "contact" | "home" | "video" | "edit" | "save" | "logs" | "settings" | "undo" | "search" | "view" | "database" | "users" | "a-arrow-down" | "a-arrow-up" | "a-large-small" | "accessibility" | "activity" | "air-vent" | "airplay" | "alarm-clock-check" | "alarm-check" | "alarm-clock-minus" | "alarm-minus" | "alarm-clock-off" | "alarm-clock-plus" | "alarm-plus" | "alarm-clock" | "alarm-smoke" | "album" | "align-center-horizontal" | "align-center-vertical" | "align-end-horizontal" | "align-end-vertical" | "align-horizontal-distribute-center" | "align-horizontal-distribute-end" | "align-horizontal-distribute-start" | "align-horizontal-justify-center" | "align-horizontal-justify-end" | "align-horizontal-justify-start" | "align-horizontal-space-around" | "align-horizontal-space-between" | "align-start-horizontal" | "align-start-vertical" | "align-vertical-distribute-center" | "align-vertical-distribute-end" | "align-vertical-distribute-start" | "align-vertical-justify-center" | "align-vertical-justify-end" | "align-vertical-justify-start" | "align-vertical-space-around" | "align-vertical-space-between" | "ambulance" | "ampersand" | "ampersands" | "amphora" | "anchor" | "angry" | "annoyed" | "antenna" | "anvil" | "aperture" | "app-window-mac" | "app-window" | "apple" | "archive-restore" | "archive-x" | "archive" | "armchair" | "arrow-big-down-dash" | "arrow-big-down" | "arrow-big-left-dash" | "arrow-big-left" | "arrow-big-right-dash" | "arrow-big-right" | "arrow-big-up-dash" | "arrow-big-up" | "arrow-down-0-1" | "arrow-down-01" | "arrow-down-1-0" | "arrow-down-10" | "arrow-down-a-z" | "arrow-down-az" | "arrow-down-from-line" | "arrow-down-left" | "arrow-down-narrow-wide" | "arrow-down-right" | "arrow-down-to-dot" | "arrow-down-to-line" | "arrow-down-up" | "arrow-down-wide-narrow" | "sort-desc" | "arrow-down-z-a" | "arrow-down-za" | "arrow-down" | "arrow-left-from-line" | "arrow-left-right" | "arrow-left-to-line" | "arrow-left" | "arrow-right-from-line" | "arrow-right-left" | "arrow-right-to-line" | "arrow-right" | "arrow-up-0-1" | "arrow-up-01" | "arrow-up-1-0" | "arrow-up-10" | "arrow-up-a-z" | "arrow-up-az" | "arrow-up-down" | "arrow-up-from-dot" | "arrow-up-from-line" | "arrow-up-left" | "arrow-up-narrow-wide" | "sort-asc" | "arrow-up-right" | "arrow-up-to-line" | "arrow-up-wide-narrow" | "arrow-up-z-a" | "arrow-up-za" | "arrow-up" | "arrows-up-from-line" | "asterisk" | "at-sign" | "atom" | "audio-lines" | "audio-waveform" | "award" | "axe" | "axis-3d" | "axis-3-d" | "baby" | "backpack" | "badge-alert" | "badge-cent" | "badge-check" | "verified" | "badge-dollar-sign" | "badge-euro" | "badge-indian-rupee" | "badge-info" | "badge-japanese-yen" | "badge-minus" | "badge-percent" | "badge-plus" | "badge-pound-sterling" | "badge-question-mark" | "badge-help" | "badge-russian-ruble" | "badge-swiss-franc" | "badge-turkish-lira" | "badge-x" | "badge" | "baggage-claim" | "balloon" | "ban" | "banana" | "bandage" | "banknote-arrow-down" | "banknote-arrow-up" | "banknote-x" | "banknote" | "barcode" | "barrel" | "baseline" | "bath" | "battery-charging" | "battery-full" | "battery-low" | "battery-medium" | "battery-plus" | "battery-warning" | "battery" | "beaker" | "bean-off" | "bean" | "bed-double" | "bed-single" | "bed" | "beef" | "beer-off" | "beer" | "bell-dot" | "bell-electric" | "bell-minus" | "bell-off" | "bell-plus" | "bell-ring" | "bell" | "between-horizontal-end" | "between-horizonal-end" | "between-horizontal-start" | "between-horizonal-start" | "between-vertical-end" | "between-vertical-start" | "biceps-flexed" | "bike" | "binoculars" | "biohazard" | "bird" | "birdhouse" | "bitcoin" | "blend" | "blinds" | "blocks" | "bluetooth-connected" | "bluetooth-off" | "bluetooth-searching" | "bluetooth" | "bold" | "bolt" | "bomb" | "bone" | "book-a" | "book-alert" | "book-audio" | "book-check" | "book-copy" | "book-dashed" | "book-template" | "book-down" | "book-headphones" | "book-heart" | "book-image" | "book-key" | "book-lock" | "book-marked" | "book-minus" | "book-open-check" | "book-open-text" | "book-open" | "book-plus" | "book-search" | "book-text" | "book-type" | "book-up-2" | "book-up" | "book-user" | "book-x" | "book" | "bookmark-check" | "bookmark-minus" | "bookmark-plus" | "bookmark-x" | "bookmark" | "boom-box" | "bot-message-square" | "bot-off" | "bot" | "bottle-wine" | "bow-arrow" | "box" | "boxes" | "braces" | "curly-braces" | "brackets" | "brain-circuit" | "brain-cog" | "brain" | "brick-wall-fire" | "brick-wall-shield" | "brick-wall" | "briefcase-business" | "briefcase-conveyor-belt" | "briefcase-medical" | "briefcase" | "bring-to-front" | "brush-cleaning" | "brush" | "bubbles" | "bug-off" | "bug-play" | "bug" | "building-2" | "building" | "bus-front" | "bus" | "cable-car" | "cable" | "cake-slice" | "cake" | "calculator" | "calendar-1" | "calendar-arrow-down" | "calendar-arrow-up" | "calendar-check-2" | "calendar-check" | "calendar-clock" | "calendar-cog" | "calendar-days" | "calendar-fold" | "calendar-heart" | "calendar-minus-2" | "calendar-minus" | "calendar-off" | "calendar-plus-2" | "calendar-plus" | "calendar-range" | "calendar-search" | "calendar-sync" | "calendar-x-2" | "calendar-x" | "calendar" | "calendars" | "camera-off" | "camera" | "candy-cane" | "candy-off" | "candy" | "cannabis-off" | "cannabis" | "captions-off" | "captions" | "subtitles" | "car-front" | "car-taxi-front" | "car" | "caravan" | "card-sim" | "carrot" | "case-lower" | "case-sensitive" | "case-upper" | "cassette-tape" | "cast" | "castle" | "cat" | "cctv" | "chart-area" | "area-chart" | "chart-bar-big" | "bar-chart-horizontal-big" | "chart-bar-decreasing" | "chart-bar-increasing" | "chart-bar-stacked" | "chart-bar" | "bar-chart-horizontal" | "chart-candlestick" | "candlestick-chart" | "chart-column-big" | "bar-chart-big" | "chart-column-decreasing" | "chart-column-increasing" | "bar-chart-4" | "chart-column-stacked" | "chart-column" | "bar-chart-3" | "chart-gantt" | "chart-line" | "line-chart" | "chart-network" | "chart-no-axes-column-decreasing" | "chart-no-axes-column-increasing" | "bar-chart" | "chart-no-axes-column" | "bar-chart-2" | "chart-no-axes-combined" | "chart-no-axes-gantt" | "gantt-chart" | "chart-pie" | "pie-chart" | "chart-scatter" | "scatter-chart" | "chart-spline" | "check-check" | "check-line" | "check" | "chef-hat" | "cherry" | "chess-bishop" | "chess-king" | "chess-knight" | "chess-pawn" | "chess-queen" | "chess-rook" | "chevron-down" | "chevron-first" | "chevron-last" | "chevron-left" | "chevron-right" | "chevron-up" | "chevrons-down-up" | "chevrons-down" | "chevrons-left-right-ellipsis" | "chevrons-left-right" | "chevrons-left" | "chevrons-right-left" | "chevrons-right" | "chevrons-up-down" | "chevrons-up" | "chromium" | "chrome" | "church" | "cigarette-off" | "cigarette" | "circle-alert" | "alert-circle" | "circle-arrow-down" | "arrow-down-circle" | "circle-arrow-left" | "arrow-left-circle" | "circle-arrow-out-down-left" | "arrow-down-left-from-circle" | "circle-arrow-out-down-right" | "arrow-down-right-from-circle" | "circle-arrow-out-up-left" | "arrow-up-left-from-circle" | "circle-arrow-out-up-right" | "arrow-up-right-from-circle" | "circle-arrow-right" | "arrow-right-circle" | "circle-arrow-up" | "arrow-up-circle" | "circle-check-big" | "check-circle" | "circle-check" | "check-circle-2" | "circle-chevron-down" | "chevron-down-circle" | "circle-chevron-left" | "chevron-left-circle" | "circle-chevron-right" | "chevron-right-circle" | "circle-chevron-up" | "chevron-up-circle" | "circle-dashed" | "circle-divide" | "divide-circle" | "circle-dollar-sign" | "circle-dot-dashed" | "circle-dot" | "circle-ellipsis" | "circle-equal" | "circle-fading-arrow-up" | "circle-fading-plus" | "circle-gauge" | "gauge-circle" | "circle-minus" | "minus-circle" | "circle-off" | "circle-parking-off" | "parking-circle-off" | "circle-parking" | "parking-circle" | "circle-pause" | "pause-circle" | "circle-percent" | "percent-circle" | "circle-pile" | "circle-play" | "play-circle" | "circle-plus" | "plus-circle" | "circle-pound-sterling" | "circle-power" | "power-circle" | "circle-question-mark" | "help-circle" | "circle-help" | "circle-slash-2" | "circle-slashed" | "circle-slash" | "circle-small" | "circle-star" | "circle-stop" | "stop-circle" | "circle-user-round" | "user-circle-2" | "circle-user" | "user-circle" | "circle-x" | "x-circle" | "circle" | "circuit-board" | "citrus" | "clapperboard" | "clipboard-check" | "clipboard-clock" | "clipboard-copy" | "clipboard-list" | "clipboard-minus" | "clipboard-paste" | "clipboard-pen-line" | "clipboard-signature" | "clipboard-pen" | "clipboard-edit" | "clipboard-plus" | "clipboard-type" | "clipboard-x" | "clipboard" | "clock-1" | "clock-10" | "clock-11" | "clock-12" | "clock-2" | "clock-3" | "clock-4" | "clock-5" | "clock-6" | "clock-7" | "clock-8" | "clock-9" | "clock-alert" | "clock-arrow-down" | "clock-arrow-up" | "clock-check" | "clock-fading" | "clock-plus" | "clock" | "closed-caption" | "cloud-alert" | "cloud-backup" | "cloud-check" | "cloud-cog" | "cloud-download" | "download-cloud" | "cloud-drizzle" | "cloud-fog" | "cloud-hail" | "cloud-lightning" | "cloud-moon-rain" | "cloud-moon" | "cloud-off" | "cloud-rain-wind" | "cloud-rain" | "cloud-snow" | "cloud-sun-rain" | "cloud-sun" | "cloud-sync" | "cloud-upload" | "upload-cloud" | "cloud" | "cloudy" | "clover" | "club" | "code-xml" | "code-2" | "code" | "codepen" | "codesandbox" | "coffee" | "cog" | "coins" | "columns-2" | "columns" | "columns-3-cog" | "columns-settings" | "table-config" | "columns-3" | "panels-left-right" | "columns-4" | "combine" | "command" | "compass" | "component" | "computer" | "concierge-bell" | "cone" | "construction" | "contact-round" | "contact-2" | "container" | "contrast" | "cookie" | "cooking-pot" | "copy-check" | "copy-minus" | "copy-plus" | "copy-slash" | "copy-x" | "copy" | "copyleft" | "copyright" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "cpu" | "creative-commons" | "credit-card" | "croissant" | "crop" | "cross" | "crosshair" | "crown" | "cuboid" | "cup-soda" | "currency" | "cylinder" | "dam" | "database-backup" | "database-zap" | "decimals-arrow-left" | "decimals-arrow-right" | "dessert" | "diameter" | "diamond-minus" | "diamond-percent" | "percent-diamond" | "diamond-plus" | "diamond" | "dice-1" | "dice-2" | "dice-3" | "dice-4" | "dice-5" | "dice-6" | "dices" | "diff" | "disc-2" | "disc-3" | "disc-album" | "disc" | "divide" | "dna-off" | "dna" | "dock" | "dog" | "dollar-sign" | "donut" | "door-closed-locked" | "door-closed" | "door-open" | "dot" | "download" | "drafting-compass" | "drama" | "dribbble" | "drill" | "drone" | "droplet-off" | "droplet" | "droplets" | "drum" | "drumstick" | "dumbbell" | "ear-off" | "ear" | "earth-lock" | "earth" | "globe-2" | "eclipse" | "egg-fried" | "egg-off" | "egg" | "ellipsis-vertical" | "more-vertical" | "ellipsis" | "more-horizontal" | "equal-approximately" | "equal-not" | "equal" | "eraser" | "ethernet-port" | "euro" | "ev-charger" | "expand" | "external-link" | "eye-closed" | "eye-off" | "eye" | "facebook" | "factory" | "fan" | "fast-forward" | "feather" | "fence" | "ferris-wheel" | "figma" | "file-archive" | "file-axis-3d" | "file-axis-3-d" | "file-badge" | "file-badge-2" | "file-box" | "file-braces-corner" | "file-json-2" | "file-braces" | "file-json" | "file-chart-column-increasing" | "file-bar-chart" | "file-chart-column" | "file-bar-chart-2" | "file-chart-line" | "file-line-chart" | "file-chart-pie" | "file-pie-chart" | "file-check-corner" | "file-check-2" | "file-check" | "file-clock" | "file-code-corner" | "file-code-2" | "file-code" | "file-cog" | "file-cog-2" | "file-diff" | "file-digit" | "file-down" | "file-exclamation-point" | "file-warning" | "file-headphone" | "file-audio" | "file-audio-2" | "file-heart" | "file-image" | "file-input" | "file-key" | "file-key-2" | "file-lock" | "file-lock-2" | "file-minus-corner" | "file-minus-2" | "file-minus" | "file-music" | "file-output" | "file-pen-line" | "file-signature" | "file-pen" | "file-edit" | "file-play" | "file-video" | "file-plus-corner" | "file-plus-2" | "file-plus" | "file-question-mark" | "file-question" | "file-scan" | "file-search-corner" | "file-search-2" | "file-search" | "file-signal" | "file-volume-2" | "file-sliders" | "file-spreadsheet" | "file-stack" | "file-symlink" | "file-terminal" | "file-text" | "file-type-corner" | "file-type-2" | "file-type" | "file-up" | "file-user" | "file-video-camera" | "file-video-2" | "file-volume" | "file-x-corner" | "file-x-2" | "file-x" | "file" | "files" | "film" | "fingerprint-pattern" | "fingerprint" | "fire-extinguisher" | "fish-off" | "fish-symbol" | "fish" | "fishing-hook" | "flag-off" | "flag-triangle-left" | "flag-triangle-right" | "flag" | "flame-kindling" | "flame" | "flashlight-off" | "flashlight" | "flask-conical-off" | "flask-conical" | "flask-round" | "flip-horizontal-2" | "flip-horizontal" | "flip-vertical-2" | "flip-vertical" | "flower-2" | "flower" | "focus" | "fold-horizontal" | "fold-vertical" | "folder-archive" | "folder-check" | "folder-clock" | "folder-closed" | "folder-code" | "folder-cog" | "folder-cog-2" | "folder-dot" | "folder-down" | "folder-git-2" | "folder-git" | "folder-heart" | "folder-input" | "folder-kanban" | "folder-key" | "folder-lock" | "folder-minus" | "folder-open-dot" | "folder-open" | "folder-output" | "folder-pen" | "folder-edit" | "folder-plus" | "folder-root" | "folder-search-2" | "folder-search" | "folder-symlink" | "folder-sync" | "folder-tree" | "folder-up" | "folder-x" | "folder" | "folders" | "footprints" | "forklift" | "form" | "forward" | "frame" | "framer" | "frown" | "fuel" | "fullscreen" | "funnel-plus" | "funnel-x" | "filter-x" | "funnel" | "filter" | "gallery-horizontal-end" | "gallery-horizontal" | "gallery-thumbnails" | "gallery-vertical-end" | "gallery-vertical" | "gamepad-2" | "gamepad-directional" | "gamepad" | "gauge" | "gavel" | "gem" | "georgian-lari" | "ghost" | "gift" | "git-branch-minus" | "git-branch-plus" | "git-branch" | "git-commit-horizontal" | "git-commit" | "git-commit-vertical" | "git-compare-arrows" | "git-compare" | "git-fork" | "git-graph" | "git-merge" | "git-pull-request-arrow" | "git-pull-request-closed" | "git-pull-request-create-arrow" | "git-pull-request-create" | "git-pull-request-draft" | "git-pull-request" | "github" | "gitlab" | "glass-water" | "glasses" | "globe-lock" | "globe-x" | "globe" | "goal" | "gpu" | "graduation-cap" | "grape" | "grid-2x2-check" | "grid-2-x-2-check" | "grid-2x2-plus" | "grid-2-x-2-plus" | "grid-2x2-x" | "grid-2-x-2-x" | "grid-2x2" | "grid-2-x-2" | "grid-3x2" | "grid-3x3" | "grid" | "grid-3-x-3" | "grip-horizontal" | "grip-vertical" | "grip" | "group" | "guitar" | "ham" | "hamburger" | "hammer" | "hand-coins" | "hand-fist" | "hand-grab" | "grab" | "hand-heart" | "hand-helping" | "helping-hand" | "hand-metal" | "hand-platter" | "hand" | "handbag" | "handshake" | "hard-drive-download" | "hard-drive-upload" | "hard-drive" | "hard-hat" | "hash" | "hat-glasses" | "haze" | "hd" | "hdmi-port" | "heading-1" | "heading-2" | "heading-3" | "heading-4" | "heading-5" | "heading-6" | "heading" | "headphone-off" | "headphones" | "headset" | "heart-crack" | "heart-handshake" | "heart-minus" | "heart-off" | "heart-plus" | "heart-pulse" | "heart" | "heater" | "helicopter" | "hexagon" | "highlighter" | "history" | "hop-off" | "hop" | "hospital" | "hotel" | "hourglass" | "house-heart" | "house-plug" | "house-plus" | "house-wifi" | "house" | "ice-cream-bowl" | "ice-cream-2" | "ice-cream-cone" | "ice-cream" | "id-card-lanyard" | "id-card" | "image-down" | "image-minus" | "image-off" | "image-play" | "image-plus" | "image-up" | "image-upscale" | "image" | "images" | "import" | "inbox" | "indian-rupee" | "infinity" | "info" | "inspection-panel" | "instagram" | "italic" | "iteration-ccw" | "iteration-cw" | "japanese-yen" | "joystick" | "kanban" | "kayak" | "key-round" | "key-square" | "key" | "keyboard-music" | "keyboard-off" | "keyboard" | "lamp-ceiling" | "lamp-desk" | "lamp-floor" | "lamp-wall-down" | "lamp-wall-up" | "lamp" | "land-plot" | "landmark" | "languages" | "laptop-minimal-check" | "laptop-minimal" | "laptop-2" | "laptop" | "lasso-select" | "lasso" | "laugh" | "layers-2" | "layers-plus" | "layers" | "layers-3" | "layout-dashboard" | "layout-grid" | "layout-list" | "layout-panel-left" | "layout-panel-top" | "layout-template" | "leaf" | "leafy-green" | "lectern" | "library-big" | "library" | "life-buoy" | "ligature" | "lightbulb-off" | "lightbulb" | "line-squiggle" | "link-2-off" | "link-2" | "link" | "linkedin" | "list-check" | "list-checks" | "list-chevrons-down-up" | "list-chevrons-up-down" | "list-collapse" | "list-end" | "list-filter-plus" | "list-filter" | "list-indent-decrease" | "outdent" | "indent-decrease" | "list-indent-increase" | "indent" | "indent-increase" | "list-minus" | "list-music" | "list-ordered" | "list-plus" | "list-restart" | "list-start" | "list-todo" | "list-tree" | "list-video" | "list-x" | "list" | "loader-circle" | "loader-2" | "loader-pinwheel" | "loader" | "locate-fixed" | "locate-off" | "locate" | "lock-keyhole-open" | "unlock-keyhole" | "lock-keyhole" | "lock-open" | "unlock" | "lock" | "log-in" | "log-out" | "lollipop" | "luggage" | "magnet" | "mail-check" | "mail-minus" | "mail-open" | "mail-plus" | "mail-question-mark" | "mail-question" | "mail-search" | "mail-warning" | "mail-x" | "mail" | "mailbox" | "mails" | "map-minus" | "map-pin-check-inside" | "map-pin-check" | "map-pin-house" | "map-pin-minus-inside" | "map-pin-minus" | "map-pin-off" | "map-pin-pen" | "location-edit" | "map-pin-plus-inside" | "map-pin-plus" | "map-pin-x-inside" | "map-pin-x" | "map-pin" | "map-pinned" | "map-plus" | "map" | "mars-stroke" | "mars" | "martini" | "maximize-2" | "maximize" | "medal" | "megaphone-off" | "megaphone" | "meh" | "memory-stick" | "menu" | "merge" | "message-circle-code" | "message-circle-dashed" | "message-circle-heart" | "message-circle-more" | "message-circle-off" | "message-circle-plus" | "message-circle-question-mark" | "message-circle-question" | "message-circle-reply" | "message-circle-warning" | "message-circle-x" | "message-circle" | "message-square-code" | "message-square-dashed" | "message-square-diff" | "message-square-dot" | "message-square-heart" | "message-square-lock" | "message-square-more" | "message-square-off" | "message-square-plus" | "message-square-quote" | "message-square-reply" | "message-square-share" | "message-square-text" | "message-square-warning" | "message-square-x" | "message-square" | "messages-square" | "mic-off" | "mic-vocal" | "mic-2" | "mic" | "microchip" | "microscope" | "microwave" | "milestone" | "milk-off" | "milk" | "minimize-2" | "minimize" | "minus" | "monitor-check" | "monitor-cloud" | "monitor-cog" | "monitor-dot" | "monitor-down" | "monitor-off" | "monitor-pause" | "monitor-play" | "monitor-smartphone" | "monitor-speaker" | "monitor-stop" | "monitor-up" | "monitor-x" | "monitor" | "moon-star" | "moon" | "motorbike" | "mountain-snow" | "mountain" | "mouse-off" | "mouse-pointer-2-off" | "mouse-pointer-2" | "mouse-pointer-ban" | "mouse-pointer-click" | "mouse-pointer" | "mouse" | "move-3d" | "move-3-d" | "move-diagonal-2" | "move-diagonal" | "move-down-left" | "move-down-right" | "move-down" | "move-horizontal" | "move-left" | "move-right" | "move-up-left" | "move-up-right" | "move-up" | "move-vertical" | "move" | "music-2" | "music-3" | "music-4" | "music" | "navigation-2-off" | "navigation-2" | "navigation-off" | "navigation" | "network" | "newspaper" | "nfc" | "non-binary" | "notebook-pen" | "notebook-tabs" | "notebook-text" | "notebook" | "notepad-text-dashed" | "notepad-text" | "nut-off" | "nut" | "octagon-alert" | "alert-octagon" | "octagon-minus" | "octagon-pause" | "pause-octagon" | "octagon-x" | "x-octagon" | "octagon" | "omega" | "option" | "orbit" | "origami" | "package-2" | "package-check" | "package-minus" | "package-open" | "package-plus" | "package-search" | "package-x" | "package" | "paint-bucket" | "paint-roller" | "paintbrush-vertical" | "paintbrush-2" | "paintbrush" | "palette" | "panda" | "panel-bottom-close" | "panel-bottom-dashed" | "panel-bottom-inactive" | "panel-bottom-open" | "panel-bottom" | "panel-left-close" | "sidebar-close" | "panel-left-dashed" | "panel-left-inactive" | "panel-left-open" | "sidebar-open" | "panel-left-right-dashed" | "panel-left" | "sidebar" | "panel-right-close" | "panel-right-dashed" | "panel-right-inactive" | "panel-right-open" | "panel-right" | "panel-top-bottom-dashed" | "panel-top-close" | "panel-top-dashed" | "panel-top-inactive" | "panel-top-open" | "panel-top" | "panels-left-bottom" | "panels-right-bottom" | "panels-top-left" | "layout" | "paperclip" | "parentheses" | "parking-meter" | "party-popper" | "pause" | "paw-print" | "pc-case" | "pen-line" | "edit-3" | "pen-off" | "pen-tool" | "pen" | "edit-2" | "pencil-line" | "pencil-off" | "pencil-ruler" | "pencil" | "pentagon" | "percent" | "person-standing" | "philippine-peso" | "phone-call" | "phone-forwarded" | "phone-incoming" | "phone-missed" | "phone-off" | "phone-outgoing" | "phone" | "pi" | "piano" | "pickaxe" | "picture-in-picture-2" | "picture-in-picture" | "piggy-bank" | "pilcrow-left" | "pilcrow-right" | "pilcrow" | "pill-bottle" | "pill" | "pin-off" | "pin" | "pipette" | "pizza" | "plane-landing" | "plane-takeoff" | "plane" | "play" | "plug-2" | "plug-zap" | "plug-zap-2" | "plug" | "plus" | "pocket-knife" | "pocket" | "podcast" | "pointer-off" | "pointer" | "popcorn" | "popsicle" | "pound-sterling" | "power-off" | "power" | "presentation" | "printer-check" | "printer-x" | "printer" | "projector" | "proportions" | "puzzle" | "pyramid" | "qr-code" | "quote" | "rabbit" | "radar" | "radiation" | "radical" | "radio-receiver" | "radio-tower" | "radio" | "radius" | "rail-symbol" | "rainbow" | "rat" | "ratio" | "receipt-cent" | "receipt-euro" | "receipt-indian-rupee" | "receipt-japanese-yen" | "receipt-pound-sterling" | "receipt-russian-ruble" | "receipt-swiss-franc" | "receipt-text" | "receipt-turkish-lira" | "receipt" | "rectangle-circle" | "rectangle-ellipsis" | "form-input" | "rectangle-goggles" | "rectangle-horizontal" | "rectangle-vertical" | "recycle" | "redo-2" | "redo-dot" | "redo" | "refresh-ccw-dot" | "refresh-ccw" | "refresh-cw-off" | "refresh-cw" | "refrigerator" | "regex" | "remove-formatting" | "repeat-1" | "repeat-2" | "repeat" | "replace-all" | "replace" | "reply-all" | "reply" | "rewind" | "ribbon" | "rocket" | "rocking-chair" | "roller-coaster" | "rose" | "rotate-3d" | "rotate-3-d" | "rotate-ccw-key" | "rotate-ccw-square" | "rotate-ccw" | "rotate-cw-square" | "rotate-cw" | "route-off" | "route" | "router" | "rows-2" | "rows" | "rows-3" | "panels-top-bottom" | "rows-4" | "rss" | "ruler-dimension-line" | "ruler" | "russian-ruble" | "sailboat" | "salad" | "sandwich" | "satellite-dish" | "satellite" | "saudi-riyal" | "save-all" | "save-off" | "scale-3d" | "scale-3-d" | "scale" | "scaling" | "scan-barcode" | "scan-eye" | "scan-face" | "scan-heart" | "scan-line" | "scan-qr-code" | "scan-search" | "scan-text" | "scan" | "school" | "scissors-line-dashed" | "scissors" | "scooter" | "screen-share-off" | "screen-share" | "scroll-text" | "scroll" | "search-alert" | "search-check" | "search-code" | "search-slash" | "search-x" | "send-horizontal" | "send-horizonal" | "send-to-back" | "send" | "separator-horizontal" | "separator-vertical" | "server-cog" | "server-crash" | "server-off" | "server" | "settings-2" | "shapes" | "share-2" | "share" | "sheet" | "shell" | "shield-alert" | "shield-ban" | "shield-check" | "shield-ellipsis" | "shield-half" | "shield-minus" | "shield-off" | "shield-plus" | "shield-question-mark" | "shield-question" | "shield-user" | "shield-x" | "shield-close" | "shield" | "ship-wheel" | "ship" | "shirt" | "shopping-bag" | "shopping-basket" | "shopping-cart" | "shovel" | "shower-head" | "shredder" | "shrimp" | "shrink" | "shrub" | "shuffle" | "sigma" | "signal-high" | "signal-low" | "signal-medium" | "signal-zero" | "signal" | "signature" | "signpost-big" | "signpost" | "siren" | "skip-back" | "skip-forward" | "skull" | "slack" | "slash" | "slice" | "sliders-horizontal" | "sliders-vertical" | "sliders" | "smartphone-charging" | "smartphone-nfc" | "smartphone" | "smile-plus" | "smile" | "snail" | "snowflake" | "soap-dispenser-droplet" | "sofa" | "solar-panel" | "soup" | "space" | "spade" | "sparkle" | "sparkles" | "stars" | "speaker" | "speech" | "spell-check-2" | "spell-check" | "spline-pointer" | "spline" | "split" | "spool" | "spotlight" | "spray-can" | "sprout" | "square-activity" | "activity-square" | "square-arrow-down-left" | "arrow-down-left-square" | "square-arrow-down-right" | "arrow-down-right-square" | "square-arrow-down" | "arrow-down-square" | "square-arrow-left" | "arrow-left-square" | "square-arrow-out-down-left" | "arrow-down-left-from-square" | "square-arrow-out-down-right" | "arrow-down-right-from-square" | "square-arrow-out-up-left" | "arrow-up-left-from-square" | "square-arrow-out-up-right" | "arrow-up-right-from-square" | "square-arrow-right" | "arrow-right-square" | "square-arrow-up-left" | "arrow-up-left-square" | "square-arrow-up-right" | "arrow-up-right-square" | "square-arrow-up" | "arrow-up-square" | "square-asterisk" | "asterisk-square" | "square-bottom-dashed-scissors" | "scissors-square-dashed-bottom" | "square-chart-gantt" | "gantt-chart-square" | "square-gantt-chart" | "square-check-big" | "check-square" | "square-check" | "check-square-2" | "square-chevron-down" | "chevron-down-square" | "square-chevron-left" | "chevron-left-square" | "square-chevron-right" | "chevron-right-square" | "square-chevron-up" | "chevron-up-square" | "square-code" | "code-square" | "square-dashed-bottom-code" | "square-dashed-bottom" | "square-dashed-kanban" | "kanban-square-dashed" | "square-dashed-mouse-pointer" | "mouse-pointer-square-dashed" | "square-dashed-top-solid" | "square-dashed" | "box-select" | "square-divide" | "divide-square" | "square-dot" | "dot-square" | "square-equal" | "equal-square" | "square-function" | "function-square" | "square-kanban" | "kanban-square" | "square-library" | "library-square" | "square-m" | "m-square" | "square-menu" | "menu-square" | "square-minus" | "minus-square" | "square-mouse-pointer" | "inspect" | "square-parking-off" | "parking-square-off" | "square-parking" | "parking-square" | "square-pause" | "square-pen" | "pen-box" | "pen-square" | "square-percent" | "percent-square" | "square-pi" | "pi-square" | "square-pilcrow" | "pilcrow-square" | "square-play" | "play-square" | "square-plus" | "plus-square" | "square-power" | "power-square" | "square-radical" | "square-round-corner" | "square-scissors" | "scissors-square" | "square-sigma" | "sigma-square" | "square-slash" | "slash-square" | "square-split-horizontal" | "split-square-horizontal" | "square-split-vertical" | "split-square-vertical" | "square-square" | "square-stack" | "square-star" | "square-stop" | "square-terminal" | "terminal-square" | "square-user-round" | "user-square-2" | "square-user" | "user-square" | "square-x" | "x-square" | "square" | "squares-exclude" | "squares-intersect" | "squares-subtract" | "squares-unite" | "squircle-dashed" | "squircle" | "squirrel" | "stamp" | "star-half" | "star-off" | "star" | "step-back" | "step-forward" | "stethoscope" | "sticker" | "sticky-note" | "stone" | "store" | "stretch-horizontal" | "stretch-vertical" | "strikethrough" | "subscript" | "sun-dim" | "sun-medium" | "sun-moon" | "sun-snow" | "sun" | "sunrise" | "sunset" | "superscript" | "swatch-book" | "swiss-franc" | "switch-camera" | "sword" | "swords" | "syringe" | "table-2" | "table-cells-merge" | "table-cells-split" | "table-columns-split" | "table-of-contents" | "table-properties" | "table-rows-split" | "table" | "tablet-smartphone" | "tablet" | "tablets" | "tag" | "tags" | "tally-1" | "tally-2" | "tally-3" | "tally-4" | "tally-5" | "tangent" | "target" | "telescope" | "tent-tree" | "tent" | "terminal" | "test-tube-diagonal" | "test-tube-2" | "test-tube" | "test-tubes" | "text-align-center" | "align-center" | "text-align-end" | "align-right" | "text-align-justify" | "align-justify" | "text-align-start" | "text" | "align-left" | "text-cursor-input" | "text-cursor" | "text-initial" | "letter-text" | "text-quote" | "text-search" | "text-select" | "text-selection" | "text-wrap" | "wrap-text" | "theater" | "thermometer-snowflake" | "thermometer-sun" | "thermometer" | "thumbs-down" | "thumbs-up" | "ticket-check" | "ticket-minus" | "ticket-percent" | "ticket-plus" | "ticket-slash" | "ticket-x" | "ticket" | "tickets-plane" | "tickets" | "timer-off" | "timer-reset" | "timer" | "toggle-left" | "toggle-right" | "toilet" | "tool-case" | "toolbox" | "tornado" | "torus" | "touchpad-off" | "touchpad" | "tower-control" | "toy-brick" | "tractor" | "traffic-cone" | "train-front-tunnel" | "train-front" | "train-track" | "tram-front" | "train" | "transgender" | "trash-2" | "trash" | "tree-deciduous" | "tree-palm" | "palmtree" | "tree-pine" | "trees" | "trello" | "trending-down" | "trending-up-down" | "trending-up" | "triangle-alert" | "alert-triangle" | "triangle-dashed" | "triangle-right" | "triangle" | "trophy" | "truck-electric" | "truck" | "turkish-lira" | "turntable" | "turtle" | "tv-minimal-play" | "tv-minimal" | "tv-2" | "tv" | "twitch" | "twitter" | "type-outline" | "type" | "umbrella-off" | "umbrella" | "underline" | "undo-2" | "undo-dot" | "unfold-horizontal" | "unfold-vertical" | "ungroup" | "university" | "school-2" | "unlink-2" | "unplug" | "usb" | "user-check" | "user-cog" | "user-lock" | "user-minus" | "user-pen" | "user-plus" | "user-round-check" | "user-check-2" | "user-round-cog" | "user-cog-2" | "user-round-minus" | "user-minus-2" | "user-round-pen" | "user-round-plus" | "user-plus-2" | "user-round-search" | "user-round-x" | "user-x-2" | "user-round" | "user-2" | "user-search" | "user-star" | "user-x" | "users-round" | "users-2" | "utensils-crossed" | "fork-knife-crossed" | "utensils" | "fork-knife" | "utility-pole" | "van" | "variable" | "vault" | "vector-square" | "vegan" | "venetian-mask" | "venus-and-mars" | "venus" | "vibrate-off" | "vibrate" | "video-off" | "videotape" | "voicemail" | "volleyball" | "volume-1" | "volume-2" | "volume-off" | "volume-x" | "volume" | "vote" | "wallet-cards" | "wallet-minimal" | "wallet-2" | "wallet" | "wallpaper" | "wand-sparkles" | "wand-2" | "wand" | "warehouse" | "washing-machine" | "watch" | "waves-arrow-down" | "waves-arrow-up" | "waves-ladder" | "waves" | "waypoints" | "webcam" | "webhook-off" | "webhook" | "weight-tilde" | "weight" | "wheat-off" | "wheat" | "whole-word" | "wifi-cog" | "wifi-high" | "wifi-low" | "wifi-off" | "wifi-pen" | "wifi-sync" | "wifi-zero" | "wifi" | "wind-arrow-down" | "wind" | "wine-off" | "wine" | "workflow" | "worm" | "wrench" | "x" | "youtube" | "zap-off" | "zap" | "zoom-in" | "zoom-out" | undefined;
|
|
719
|
+
}[];
|
|
720
|
+
};
|
|
721
|
+
meta: object;
|
|
722
|
+
}>;
|
|
723
|
+
}>>;
|
|
724
|
+
accountSettings: import("@trpc/server").TRPCBuiltRouter<{
|
|
725
|
+
ctx: {
|
|
726
|
+
headers: Headers;
|
|
727
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
728
|
+
$client: import("mysql2/promise").Pool;
|
|
729
|
+
};
|
|
730
|
+
session: import("../../index.js").Session | null;
|
|
731
|
+
};
|
|
732
|
+
meta: object;
|
|
733
|
+
errorShape: {
|
|
734
|
+
data: {
|
|
735
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
736
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
737
|
+
httpStatus: number;
|
|
738
|
+
path?: string;
|
|
739
|
+
stack?: string;
|
|
740
|
+
};
|
|
741
|
+
message: string;
|
|
742
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
743
|
+
};
|
|
744
|
+
transformer: true;
|
|
745
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
746
|
+
get: import("@trpc/server").TRPCQueryProcedure<{
|
|
747
|
+
input: void;
|
|
748
|
+
output: {
|
|
749
|
+
id: string;
|
|
750
|
+
username: string;
|
|
751
|
+
emailAddress: string | null;
|
|
752
|
+
fullName: string | null;
|
|
753
|
+
avatar: string | null;
|
|
754
|
+
phoneNumber: string | null;
|
|
755
|
+
} | undefined;
|
|
756
|
+
meta: object;
|
|
757
|
+
}>;
|
|
758
|
+
save: import("@trpc/server").TRPCMutationProcedure<{
|
|
759
|
+
input: {
|
|
760
|
+
emailAddress: string;
|
|
761
|
+
fullName: string;
|
|
762
|
+
phoneNumber: string;
|
|
763
|
+
};
|
|
764
|
+
output: boolean;
|
|
765
|
+
meta: object;
|
|
766
|
+
}>;
|
|
767
|
+
changePassword: import("@trpc/server").TRPCMutationProcedure<{
|
|
768
|
+
input: {
|
|
769
|
+
oldPassword: string;
|
|
770
|
+
newPassword: string;
|
|
771
|
+
confirmPassword: string;
|
|
772
|
+
};
|
|
773
|
+
output: boolean;
|
|
774
|
+
meta: object;
|
|
775
|
+
}>;
|
|
776
|
+
updateLanguage: import("@trpc/server").TRPCMutationProcedure<{
|
|
777
|
+
input: {
|
|
778
|
+
language: string;
|
|
779
|
+
};
|
|
780
|
+
output: boolean;
|
|
781
|
+
meta: object;
|
|
782
|
+
}>;
|
|
783
|
+
}>>;
|
|
784
|
+
fields: import("@trpc/server").TRPCBuiltRouter<{
|
|
785
|
+
ctx: {
|
|
786
|
+
headers: Headers;
|
|
787
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
788
|
+
$client: import("mysql2/promise").Pool;
|
|
789
|
+
};
|
|
790
|
+
session: import("../../index.js").Session | null;
|
|
791
|
+
};
|
|
792
|
+
meta: object;
|
|
793
|
+
errorShape: {
|
|
794
|
+
data: {
|
|
795
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
796
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
797
|
+
httpStatus: number;
|
|
798
|
+
path?: string;
|
|
799
|
+
stack?: string;
|
|
800
|
+
};
|
|
801
|
+
message: string;
|
|
802
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
803
|
+
};
|
|
804
|
+
transformer: true;
|
|
805
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
806
|
+
tagsAutoComplete: import("@trpc/server").TRPCQueryProcedure<{
|
|
807
|
+
input: {
|
|
808
|
+
sectionName: string;
|
|
809
|
+
fieldName: string;
|
|
810
|
+
query: string;
|
|
811
|
+
locale?: string | undefined;
|
|
812
|
+
};
|
|
813
|
+
output: string[];
|
|
814
|
+
meta: object;
|
|
815
|
+
}>;
|
|
816
|
+
}>>;
|
|
817
|
+
logs: import("@trpc/server").TRPCBuiltRouter<{
|
|
818
|
+
ctx: {
|
|
819
|
+
headers: Headers;
|
|
820
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
821
|
+
$client: import("mysql2/promise").Pool;
|
|
822
|
+
};
|
|
823
|
+
session: import("../../index.js").Session | null;
|
|
824
|
+
};
|
|
825
|
+
meta: object;
|
|
826
|
+
errorShape: {
|
|
827
|
+
data: {
|
|
828
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
829
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
830
|
+
httpStatus: number;
|
|
831
|
+
path?: string;
|
|
832
|
+
stack?: string;
|
|
833
|
+
};
|
|
834
|
+
message: string;
|
|
835
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
836
|
+
};
|
|
837
|
+
transformer: true;
|
|
838
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
839
|
+
list: import("@trpc/server").TRPCQueryProcedure<{
|
|
840
|
+
input: {
|
|
841
|
+
limit?: number | undefined;
|
|
842
|
+
offset?: number | undefined;
|
|
843
|
+
eventType?: string | undefined;
|
|
844
|
+
actorId?: string | undefined;
|
|
845
|
+
sectionName?: string | undefined;
|
|
846
|
+
entityType?: string | undefined;
|
|
847
|
+
entityId?: string | undefined;
|
|
848
|
+
from?: string | undefined;
|
|
849
|
+
to?: string | undefined;
|
|
850
|
+
} | undefined;
|
|
851
|
+
output: {
|
|
852
|
+
items: {
|
|
853
|
+
id: number;
|
|
854
|
+
eventType: string;
|
|
855
|
+
actorId: string | null;
|
|
856
|
+
actorUsername: string | null;
|
|
857
|
+
entityType: string | null;
|
|
858
|
+
entityId: string | null;
|
|
859
|
+
entityLabel: string | null;
|
|
860
|
+
sectionName: string | null;
|
|
861
|
+
metadata: string | null;
|
|
862
|
+
ipAddress: string | null;
|
|
863
|
+
userAgent: string | null;
|
|
864
|
+
source: string | null;
|
|
865
|
+
createdAt: Date;
|
|
866
|
+
}[];
|
|
867
|
+
total: number;
|
|
868
|
+
limit: number;
|
|
869
|
+
offset: number;
|
|
870
|
+
};
|
|
871
|
+
meta: object;
|
|
872
|
+
}>;
|
|
873
|
+
}>>;
|
|
874
|
+
plugins: import("@trpc/server").TRPCBuiltRouter<{
|
|
875
|
+
ctx: {
|
|
876
|
+
headers: Headers;
|
|
877
|
+
db: import("drizzle-orm/mysql2").MySql2Database<typeof import("../../db/schema.js")> & {
|
|
878
|
+
$client: import("mysql2/promise").Pool;
|
|
879
|
+
};
|
|
880
|
+
session: import("../../index.js").Session | null;
|
|
881
|
+
};
|
|
882
|
+
meta: object;
|
|
883
|
+
errorShape: {
|
|
884
|
+
data: {
|
|
885
|
+
zodError: z.core.$ZodFlattenedError<unknown, string> | null;
|
|
886
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_KEY;
|
|
887
|
+
httpStatus: number;
|
|
888
|
+
path?: string;
|
|
889
|
+
stack?: string;
|
|
890
|
+
};
|
|
891
|
+
message: string;
|
|
892
|
+
code: import("@trpc/server").TRPC_ERROR_CODE_NUMBER;
|
|
893
|
+
};
|
|
894
|
+
transformer: true;
|
|
895
|
+
}, import("@trpc/server").TRPCDecorateCreateRouterOptions<{
|
|
896
|
+
checkRoute: import("@trpc/server").TRPCQueryProcedure<{
|
|
897
|
+
input: {
|
|
898
|
+
path: string;
|
|
899
|
+
};
|
|
900
|
+
output: import("../../plugins/loader.js").LoadedPluginRoute | null;
|
|
901
|
+
meta: object;
|
|
902
|
+
}>;
|
|
903
|
+
}>>;
|
|
904
|
+
};
|
|
905
|
+
export type CoreRouters = typeof coreRouters;
|
|
906
|
+
//# sourceMappingURL=root.d.ts.map
|