@woodylab/payload 0.0.7 → 0.0.8

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.
@@ -158,31 +158,1206 @@ const fieldSelect = (override) => ({
158
158
  ...override
159
159
  });
160
160
 
161
- const fieldSemantic = (override) => ({
162
- name: 'list',
163
- label: 'List',
164
- type: 'array',
165
- fields: [],
166
- required: false,
167
- ...override,
161
+ const fieldContainerProps = (customFields = []) => {
162
+ return {
163
+ name: 'ctrP',
164
+ label: 'Proprietà container',
165
+ type: 'group',
166
+ fields: [
167
+ ...customFields,
168
+ fieldRichText({ name: 'body', label: 'Contenuto', required: false }),
169
+ fieldContainerWidths(),
170
+ {
171
+ type: 'tabs',
172
+ tabs: [
173
+ {
174
+ label: 'Stile',
175
+ fields: [
176
+ fieldUpload('media', { name: 'bgi', label: 'Immagine di sfondo' }),
177
+ //WFieldColor({name:'bgc', label:'Colore di sfondo', required:false}),
178
+ {
179
+ name: 'borderRadius',
180
+ type: 'select',
181
+ label: 'Angoli arrotondati',
182
+ defaultValue: 'rounded-none',
183
+ options: [
184
+ { label: 'Nessuno', value: 'rounded-none' },
185
+ { label: 'Piccolo', value: 'rounded-sm' },
186
+ { label: 'Medio', value: 'rounded-md' },
187
+ { label: 'Grande', value: 'rounded-lg' },
188
+ { label: 'Extra Grande', value: 'rounded-xl' },
189
+ { label: 'Massimo', value: 'rounded-full' },
190
+ ],
191
+ admin: {
192
+ width: '50%',
193
+ description: 'Imposta lo stile degli angoli arrotondati del contenitore.',
194
+ },
195
+ },
196
+ {
197
+ name: 'boxShadow',
198
+ type: 'select',
199
+ label: 'Ombra contenitore',
200
+ defaultValue: 'shadow-none', // Default: nessuna ombra
201
+ options: [
202
+ { label: 'Nessuna', value: 'shadow-none' },
203
+ { label: 'Piccola', value: 'shadow-sm' },
204
+ { label: 'Normale', value: 'shadow' },
205
+ { label: 'Media', value: 'shadow-md' },
206
+ { label: 'Grande', value: 'shadow-lg' },
207
+ { label: 'Extra Grande', value: 'shadow-xl' },
208
+ { label: 'Massima', value: 'shadow-2xl' },
209
+ ],
210
+ admin: {
211
+ width: '50%',
212
+ description: 'Imposta lo stile dell\'ombra per il contenitore.',
213
+ },
214
+ }
215
+ ]
216
+ },
217
+ {
218
+ label: 'Dimensioni',
219
+ fields: [
220
+ fieldHeights(),
221
+ {
222
+ type: 'tabs',
223
+ tabs: [
224
+ {
225
+ label: 'Margini',
226
+ fields: [
227
+ fieldMargins()
228
+ ]
229
+ },
230
+ {
231
+ label: 'Paddings',
232
+ fields: [
233
+ fieldPaddings()
234
+ ]
235
+ }
236
+ ]
237
+ }
238
+ ]
239
+ }
240
+ ]
241
+ },
242
+ ]
243
+ };
244
+ };
245
+
246
+ const fieldConfigProps = (customFields = []) => {
247
+ return {
248
+ name: 'config',
249
+ label: 'Configurazione',
250
+ type: 'group',
251
+ fields: [
252
+ ...customFields,
253
+ ],
254
+ };
255
+ };
256
+
257
+ const fieldContentProps = (customFields = []) => {
258
+ return {
259
+ name: 'cntP',
260
+ label: 'Contenuto',
261
+ type: 'group',
262
+ fields: [
263
+ ...customFields,
264
+ ],
265
+ };
266
+ };
267
+
268
+ /**
269
+ * Costante che definisce le varianti di larghezza del container come classi Tailwind
270
+ */
271
+ const TailwindContainerWidths = [
272
+ 'container',
273
+ 'container-sm',
274
+ 'container-md',
275
+ 'container-lg',
276
+ 'container-xl',
277
+ 'container-2xl',
278
+ ];
279
+ /**
280
+ * Costante che contiene tutte le varianti di altezza relativa alla viewport
281
+ */
282
+ const TailwindViewportHeights = [
283
+ 'screen',
284
+ '1/5-vh',
285
+ '1/4-vh',
286
+ '1/3-vh',
287
+ '2/5-vh',
288
+ '1/2-vh',
289
+ '3/5-vh',
290
+ '2/3-vh',
291
+ '3/4-vh',
292
+ '4/5-vh',
293
+ ];
294
+ /**
295
+ * Costante che contiene tutte le varianti "h-" per altezza globale, incluse le altre classi layout per le altezze
296
+ */
297
+ const TailwindHeights = [
298
+ // Classi dinamiche
299
+ 'auto', // Altezza automatica
300
+ 'min', // Altezza minima (adatta al contenuto minimo)
301
+ 'max', // Altezza massima (adatta al contenuto massimo)
302
+ 'fit', // Altezza si adatta al contenuto
303
+ 'full', // Altezza piena (100% del contenitore genitore)
304
+ // Altezza proporzionale
305
+ '1/2', // 50% dell'altezza disponibile
306
+ '1/3', // 33.333% dell'altezza disponibile
307
+ '2/3', // 66.666% dell'altezza disponibile
308
+ '1/4', // 25% dell'altezza disponibile
309
+ '3/4', // 75% dell'altezza disponibile
310
+ // Varianti numeriche da 1 a 96
311
+ '1', '2', '3', '4', '5', '6', '7', '8', '9', '10',
312
+ '11', '12', '13', '14', '15', '16', '17', '18', '19', '20',
313
+ '21', '22', '23', '24', '25', '26', '27', '28', '29', '30',
314
+ '31', '32', '33', '34', '35', '36', '37', '38', '39', '40',
315
+ '41', '42', '43', '44', '45', '46', '47', '48', '49', '50',
316
+ '51', '52', '53', '54', '55', '56', '57', '58', '59', '60',
317
+ '61', '62', '63', '64', '65', '66', '67', '68', '69', '70',
318
+ '71', '72', '73', '74', '75', '76', '77', '78', '79', '80',
319
+ '81', '82', '83', '84', '85', '86', '87', '88', '89', '90',
320
+ '91', '92', '93', '94', '95', '96'
321
+ ];
322
+ /**
323
+ * Costante che contiene tutte le varianti "m-" mer madding globale, fino a 96
324
+ */
325
+ const TailwindMargins = [
326
+ 'm-1', 'm-2', 'm-3', 'm-4', 'm-5', 'm-6', 'm-7', 'm-8', 'm-9', 'm-10',
327
+ 'm-11', 'm-12', 'm-13', 'm-14', 'm-15', 'm-16', 'm-17', 'm-18', 'm-19', 'm-20',
328
+ 'm-21', 'm-22', 'm-23', 'm-24', 'm-25', 'm-26', 'm-27', 'm-28', 'm-29', 'm-30',
329
+ 'm-31', 'm-32', 'm-33', 'm-34', 'm-35', 'm-36', 'm-37', 'm-38', 'm-39', 'm-40',
330
+ 'm-41', 'm-42', 'm-43', 'm-44', 'm-45', 'm-46', 'm-47', 'm-48', 'm-49', 'm-50',
331
+ 'm-51', 'm-52', 'm-53', 'm-54', 'm-55', 'm-56', 'm-57', 'm-58', 'm-59', 'm-60',
332
+ 'm-61', 'm-62', 'm-63', 'm-64', 'm-65', 'm-66', 'm-67', 'm-68', 'm-69', 'm-70',
333
+ 'm-71', 'm-72', 'm-73', 'm-74', 'm-75', 'm-76', 'm-77', 'm-78', 'm-79', 'm-80',
334
+ 'm-81', 'm-82', 'm-83', 'm-84', 'm-85', 'm-86', 'm-87', 'm-88', 'm-89', 'm-90',
335
+ 'm-91', 'm-92', 'm-93', 'm-94', 'm-95', 'm-96',
336
+ // Varianti negative
337
+ '-m-1', '-m-2', '-m-3', '-m-4', '-m-5', '-m-6', '-m-7', '-m-8', '-m-9', '-m-10',
338
+ '-m-11', '-m-12', '-m-13', '-m-14', '-m-15', '-m-16', '-m-17', '-m-18', '-m-19', '-m-20',
339
+ '-m-21', '-m-22', '-m-23', '-m-24', '-m-25', '-m-26', '-m-27', '-m-28', '-m-29', '-m-30',
340
+ '-m-31', '-m-32', '-m-33', '-m-34', '-m-35', '-m-36', '-m-37', '-m-38', '-m-39', '-m-40',
341
+ '-m-41', '-m-42', '-m-43', '-m-44', '-m-45', '-m-46', '-m-47', '-m-48', '-m-49', '-m-50',
342
+ '-m-51', '-m-52', '-m-53', '-m-54', '-m-55', '-m-56', '-m-57', '-m-58', '-m-59', '-m-60',
343
+ '-m-61', '-m-62', '-m-63', '-m-64', '-m-65', '-m-66', '-m-67', '-m-68', '-m-69', '-m-70',
344
+ '-m-71', '-m-72', '-m-73', '-m-74', '-m-75', '-m-76', '-m-77', '-m-78', '-m-79', '-m-80',
345
+ '-m-81', '-m-82', '-m-83', '-m-84', '-m-85', '-m-86', '-m-87', '-m-88', '-m-89', '-m-90',
346
+ '-m-91', '-m-92', '-m-93', '-m-94', '-m-95', '-m-96',
347
+ ];
348
+ /**
349
+ * Costante che contiene tutte le varianti "mx-" mer madding orizzontale, fino a 96
350
+ */
351
+ const TailwindMargins_X = [
352
+ // Varianti positive
353
+ 'mx-1', 'mx-2', 'mx-3', 'mx-4', 'mx-5', 'mx-6', 'mx-7', 'mx-8', 'mx-9', 'mx-10',
354
+ 'mx-11', 'mx-12', 'mx-13', 'mx-14', 'mx-15', 'mx-16', 'mx-17', 'mx-18', 'mx-19', 'mx-20',
355
+ 'mx-21', 'mx-22', 'mx-23', 'mx-24', 'mx-25', 'mx-26', 'mx-27', 'mx-28', 'mx-29', 'mx-30',
356
+ 'mx-31', 'mx-32', 'mx-33', 'mx-34', 'mx-35', 'mx-36', 'mx-37', 'mx-38', 'mx-39', 'mx-40',
357
+ 'mx-41', 'mx-42', 'mx-43', 'mx-44', 'mx-45', 'mx-46', 'mx-47', 'mx-48', 'mx-49', 'mx-50',
358
+ 'mx-51', 'mx-52', 'mx-53', 'mx-54', 'mx-55', 'mx-56', 'mx-57', 'mx-58', 'mx-59', 'mx-60',
359
+ 'mx-61', 'mx-62', 'mx-63', 'mx-64', 'mx-65', 'mx-66', 'mx-67', 'mx-68', 'mx-69', 'mx-70',
360
+ 'mx-71', 'mx-72', 'mx-73', 'mx-74', 'mx-75', 'mx-76', 'mx-77', 'mx-78', 'mx-79', 'mx-80',
361
+ 'mx-81', 'mx-82', 'mx-83', 'mx-84', 'mx-85', 'mx-86', 'mx-87', 'mx-88', 'mx-89', 'mx-90',
362
+ 'mx-91', 'mx-92', 'mx-93', 'mx-94', 'mx-95', 'mx-96',
363
+ // Varianti negative
364
+ '-mx-1', '-mx-2', '-mx-3', '-mx-4', '-mx-5', '-mx-6', '-mx-7', '-mx-8', '-mx-9', '-mx-10',
365
+ '-mx-11', '-mx-12', '-mx-13', '-mx-14', '-mx-15', '-mx-16', '-mx-17', '-mx-18', '-mx-19', '-mx-20',
366
+ '-mx-21', '-mx-22', '-mx-23', '-mx-24', '-mx-25', '-mx-26', '-mx-27', '-mx-28', '-mx-29', '-mx-30',
367
+ '-mx-31', '-mx-32', '-mx-33', '-mx-34', '-mx-35', '-mx-36', '-mx-37', '-mx-38', '-mx-39', '-mx-40',
368
+ '-mx-41', '-mx-42', '-mx-43', '-mx-44', '-mx-45', '-mx-46', '-mx-47', '-mx-48', '-mx-49', '-mx-50',
369
+ '-mx-51', '-mx-52', '-mx-53', '-mx-54', '-mx-55', '-mx-56', '-mx-57', '-mx-58', '-mx-59', '-mx-60',
370
+ '-mx-61', '-mx-62', '-mx-63', '-mx-64', '-mx-65', '-mx-66', '-mx-67', '-mx-68', '-mx-69', '-mx-70',
371
+ '-mx-71', '-mx-72', '-mx-73', '-mx-74', '-mx-75', '-mx-76', '-mx-77', '-mx-78', '-mx-79', '-mx-80',
372
+ '-mx-81', '-mx-82', '-mx-83', '-mx-84', '-mx-85', '-mx-86', '-mx-87', '-mx-88', '-mx-89', '-mx-90',
373
+ '-mx-91', '-mx-92', '-mx-93', '-mx-94', '-mx-95', '-mx-96',
374
+ ];
375
+ /**
376
+ * Costante che contiene tutte le varianti "my-" mer madding verticale, fino a 96
377
+ */
378
+ const TailwindMargins_Y = [
379
+ // Varianti positive
380
+ 'my-1', 'my-2', 'my-3', 'my-4', 'my-5', 'my-6', 'my-7', 'my-8', 'my-9', 'my-10',
381
+ 'my-11', 'my-12', 'my-13', 'my-14', 'my-15', 'my-16', 'my-17', 'my-18', 'my-19', 'my-20',
382
+ 'my-21', 'my-22', 'my-23', 'my-24', 'my-25', 'my-26', 'my-27', 'my-28', 'my-29', 'my-30',
383
+ 'my-31', 'my-32', 'my-33', 'my-34', 'my-35', 'my-36', 'my-37', 'my-38', 'my-39', 'my-40',
384
+ 'my-41', 'my-42', 'my-43', 'my-44', 'my-45', 'my-46', 'my-47', 'my-48', 'my-49', 'my-50',
385
+ 'my-51', 'my-52', 'my-53', 'my-54', 'my-55', 'my-56', 'my-57', 'my-58', 'my-59', 'my-60',
386
+ 'my-61', 'my-62', 'my-63', 'my-64', 'my-65', 'my-66', 'my-67', 'my-68', 'my-69', 'my-70',
387
+ 'my-71', 'my-72', 'my-73', 'my-74', 'my-75', 'my-76', 'my-77', 'my-78', 'my-79', 'my-80',
388
+ 'my-81', 'my-82', 'my-83', 'my-84', 'my-85', 'my-86', 'my-87', 'my-88', 'my-89', 'my-90',
389
+ 'my-91', 'my-92', 'my-93', 'my-94', 'my-95', 'my-96',
390
+ // Varianti negative
391
+ '-my-1', '-my-2', '-my-3', '-my-4', '-my-5', '-my-6', '-my-7', '-my-8', '-my-9', '-my-10',
392
+ '-my-11', '-my-12', '-my-13', '-my-14', '-my-15', '-my-16', '-my-17', '-my-18', '-my-19', '-my-20',
393
+ '-my-21', '-my-22', '-my-23', '-my-24', '-my-25', '-my-26', '-my-27', '-my-28', '-my-29', '-my-30',
394
+ '-my-31', '-my-32', '-my-33', '-my-34', '-my-35', '-my-36', '-my-37', '-my-38', '-my-39', '-my-40',
395
+ '-my-41', '-my-42', '-my-43', '-my-44', '-my-45', '-my-46', '-my-47', '-my-48', '-my-49', '-my-50',
396
+ '-my-51', '-my-52', '-my-53', '-my-54', '-my-55', '-my-56', '-my-57', '-my-58', '-my-59', '-my-60',
397
+ '-my-61', '-my-62', '-my-63', '-my-64', '-my-65', '-my-66', '-my-67', '-my-68', '-my-69', '-my-70',
398
+ '-my-71', '-my-72', '-my-73', '-my-74', '-my-75', '-my-76', '-my-77', '-my-78', '-my-79', '-my-80',
399
+ '-my-81', '-my-82', '-my-83', '-my-84', '-my-85', '-my-86', '-my-87', '-my-88', '-my-89', '-my-90',
400
+ '-my-91', '-my-92', '-my-93', '-my-94', '-my-95', '-my-96',
401
+ ];
402
+ /**
403
+ * Costante che contiene tutte le varianti "mt-" mer madding sumeriore, fino a 96
404
+ */
405
+ const TailwindMargins_T = [
406
+ // Varianti positive
407
+ 'mt-1', 'mt-2', 'mt-3', 'mt-4', 'mt-5', 'mt-6', 'mt-7', 'mt-8', 'mt-9', 'mt-10',
408
+ 'mt-11', 'mt-12', 'mt-13', 'mt-14', 'mt-15', 'mt-16', 'mt-17', 'mt-18', 'mt-19', 'mt-20',
409
+ 'mt-21', 'mt-22', 'mt-23', 'mt-24', 'mt-25', 'mt-26', 'mt-27', 'mt-28', 'mt-29', 'mt-30',
410
+ 'mt-31', 'mt-32', 'mt-33', 'mt-34', 'mt-35', 'mt-36', 'mt-37', 'mt-38', 'mt-39', 'mt-40',
411
+ 'mt-41', 'mt-42', 'mt-43', 'mt-44', 'mt-45', 'mt-46', 'mt-47', 'mt-48', 'mt-49', 'mt-50',
412
+ 'mt-51', 'mt-52', 'mt-53', 'mt-54', 'mt-55', 'mt-56', 'mt-57', 'mt-58', 'mt-59', 'mt-60',
413
+ 'mt-61', 'mt-62', 'mt-63', 'mt-64', 'mt-65', 'mt-66', 'mt-67', 'mt-68', 'mt-69', 'mt-70',
414
+ 'mt-71', 'mt-72', 'mt-73', 'mt-74', 'mt-75', 'mt-76', 'mt-77', 'mt-78', 'mt-79', 'mt-80',
415
+ 'mt-81', 'mt-82', 'mt-83', 'mt-84', 'mt-85', 'mt-86', 'mt-87', 'mt-88', 'mt-89', 'mt-90',
416
+ 'mt-91', 'mt-92', 'mt-93', 'mt-94', 'mt-95', 'mt-96',
417
+ // Varianti negative
418
+ '-mt-1', '-mt-2', '-mt-3', '-mt-4', '-mt-5', '-mt-6', '-mt-7', '-mt-8', '-mt-9', '-mt-10',
419
+ '-mt-11', '-mt-12', '-mt-13', '-mt-14', '-mt-15', '-mt-16', '-mt-17', '-mt-18', '-mt-19', '-mt-20',
420
+ '-mt-21', '-mt-22', '-mt-23', '-mt-24', '-mt-25', '-mt-26', '-mt-27', '-mt-28', '-mt-29', '-mt-30',
421
+ '-mt-31', '-mt-32', '-mt-33', '-mt-34', '-mt-35', '-mt-36', '-mt-37', '-mt-38', '-mt-39', '-mt-40',
422
+ '-mt-41', '-mt-42', '-mt-43', '-mt-44', '-mt-45', '-mt-46', '-mt-47', '-mt-48', '-mt-49', '-mt-50',
423
+ '-mt-51', '-mt-52', '-mt-53', '-mt-54', '-mt-55', '-mt-56', '-mt-57', '-mt-58', '-mt-59', '-mt-60',
424
+ '-mt-61', '-mt-62', '-mt-63', '-mt-64', '-mt-65', '-mt-66', '-mt-67', '-mt-68', '-mt-69', '-mt-70',
425
+ '-mt-71', '-mt-72', '-mt-73', '-mt-74', '-mt-75', '-mt-76', '-mt-77', '-mt-78', '-mt-79', '-mt-80',
426
+ '-mt-81', '-mt-82', '-mt-83', '-mt-84', '-mt-85', '-mt-86', '-mt-87', '-mt-88', '-mt-89', '-mt-90',
427
+ '-mt-91', '-mt-92', '-mt-93', '-mt-94', '-mt-95', '-mt-96',
428
+ ];
429
+ /**
430
+ * Costante che contiene tutte le varianti "mr-" mer madding a destra, fino a 96
431
+ */
432
+ const TailwindMargins_R = [
433
+ // Varianti positive
434
+ 'mr-1', 'mr-2', 'mr-3', 'mr-4', 'mr-5', 'mr-6', 'mr-7', 'mr-8', 'mr-9', 'mr-10',
435
+ 'mr-11', 'mr-12', 'mr-13', 'mr-14', 'mr-15', 'mr-16', 'mr-17', 'mr-18', 'mr-19', 'mr-20',
436
+ 'mr-21', 'mr-22', 'mr-23', 'mr-24', 'mr-25', 'mr-26', 'mr-27', 'mr-28', 'mr-29', 'mr-30',
437
+ 'mr-31', 'mr-32', 'mr-33', 'mr-34', 'mr-35', 'mr-36', 'mr-37', 'mr-38', 'mr-39', 'mr-40',
438
+ 'mr-41', 'mr-42', 'mr-43', 'mr-44', 'mr-45', 'mr-46', 'mr-47', 'mr-48', 'mr-49', 'mr-50',
439
+ 'mr-51', 'mr-52', 'mr-53', 'mr-54', 'mr-55', 'mr-56', 'mr-57', 'mr-58', 'mr-59', 'mr-60',
440
+ 'mr-61', 'mr-62', 'mr-63', 'mr-64', 'mr-65', 'mr-66', 'mr-67', 'mr-68', 'mr-69', 'mr-70',
441
+ 'mr-71', 'mr-72', 'mr-73', 'mr-74', 'mr-75', 'mr-76', 'mr-77', 'mr-78', 'mr-79', 'mr-80',
442
+ 'mr-81', 'mr-82', 'mr-83', 'mr-84', 'mr-85', 'mr-86', 'mr-87', 'mr-88', 'mr-89', 'mr-90',
443
+ 'mr-91', 'mr-92', 'mr-93', 'mr-94', 'mr-95', 'mr-96',
444
+ // Varianti negative
445
+ '-mr-1', '-mr-2', '-mr-3', '-mr-4', '-mr-5', '-mr-6', '-mr-7', '-mr-8', '-mr-9', '-mr-10',
446
+ '-mr-11', '-mr-12', '-mr-13', '-mr-14', '-mr-15', '-mr-16', '-mr-17', '-mr-18', '-mr-19', '-mr-20',
447
+ '-mr-21', '-mr-22', '-mr-23', '-mr-24', '-mr-25', '-mr-26', '-mr-27', '-mr-28', '-mr-29', '-mr-30',
448
+ '-mr-31', '-mr-32', '-mr-33', '-mr-34', '-mr-35', '-mr-36', '-mr-37', '-mr-38', '-mr-39', '-mr-40',
449
+ '-mr-41', '-mr-42', '-mr-43', '-mr-44', '-mr-45', '-mr-46', '-mr-47', '-mr-48', '-mr-49', '-mr-50',
450
+ '-mr-51', '-mr-52', '-mr-53', '-mr-54', '-mr-55', '-mr-56', '-mr-57', '-mr-58', '-mr-59', '-mr-60',
451
+ '-mr-61', '-mr-62', '-mr-63', '-mr-64', '-mr-65', '-mr-66', '-mr-67', '-mr-68', '-mr-69', '-mr-70',
452
+ '-mr-71', '-mr-72', '-mr-73', '-mr-74', '-mr-75', '-mr-76', '-mr-77', '-mr-78', '-mr-79', '-mr-80',
453
+ '-mr-81', '-mr-82', '-mr-83', '-mr-84', '-mr-85', '-mr-86', '-mr-87', '-mr-88', '-mr-89', '-mr-90',
454
+ '-mr-91', '-mr-92', '-mr-93', '-mr-94', '-mr-95', '-mr-96',
455
+ ];
456
+ /**
457
+ * Costante che contiene tutte le varianti "mb-" mer madding inferiore, fino a 96
458
+ */
459
+ const TailwindMargins_L = [
460
+ // Varianti positive
461
+ 'ml-1', 'ml-2', 'ml-3', 'ml-4', 'ml-5', 'ml-6', 'ml-7', 'ml-8', 'ml-9', 'ml-10',
462
+ 'ml-11', 'ml-12', 'ml-13', 'ml-14', 'ml-15', 'ml-16', 'ml-17', 'ml-18', 'ml-19', 'ml-20',
463
+ 'ml-21', 'ml-22', 'ml-23', 'ml-24', 'ml-25', 'ml-26', 'ml-27', 'ml-28', 'ml-29', 'ml-30',
464
+ 'ml-31', 'ml-32', 'ml-33', 'ml-34', 'ml-35', 'ml-36', 'ml-37', 'ml-38', 'ml-39', 'ml-40',
465
+ 'ml-41', 'ml-42', 'ml-43', 'ml-44', 'ml-45', 'ml-46', 'ml-47', 'ml-48', 'ml-49', 'ml-50',
466
+ 'ml-51', 'ml-52', 'ml-53', 'ml-54', 'ml-55', 'ml-56', 'ml-57', 'ml-58', 'ml-59', 'ml-60',
467
+ 'ml-61', 'ml-62', 'ml-63', 'ml-64', 'ml-65', 'ml-66', 'ml-67', 'ml-68', 'ml-69', 'ml-70',
468
+ 'ml-71', 'ml-72', 'ml-73', 'ml-74', 'ml-75', 'ml-76', 'ml-77', 'ml-78', 'ml-79', 'ml-80',
469
+ 'ml-81', 'ml-82', 'ml-83', 'ml-84', 'ml-85', 'ml-86', 'ml-87', 'ml-88', 'ml-89', 'ml-90',
470
+ 'ml-91', 'ml-92', 'ml-93', 'ml-94', 'ml-95', 'ml-96',
471
+ // Varianti negative
472
+ '-ml-1', '-ml-2', '-ml-3', '-ml-4', '-ml-5', '-ml-6', '-ml-7', '-ml-8', '-ml-9', '-ml-10',
473
+ '-ml-11', '-ml-12', '-ml-13', '-ml-14', '-ml-15', '-ml-16', '-ml-17', '-ml-18', '-ml-19', '-ml-20',
474
+ '-ml-21', '-ml-22', '-ml-23', '-ml-24', '-ml-25', '-ml-26', '-ml-27', '-ml-28', '-ml-29', '-ml-30',
475
+ '-ml-31', '-ml-32', '-ml-33', '-ml-34', '-ml-35', '-ml-36', '-ml-37', '-ml-38', '-ml-39', '-ml-40',
476
+ '-ml-41', '-ml-42', '-ml-43', '-ml-44', '-ml-45', '-ml-46', '-ml-47', '-ml-48', '-ml-49', '-ml-50',
477
+ '-ml-51', '-ml-52', '-ml-53', '-ml-54', '-ml-55', '-ml-56', '-ml-57', '-ml-58', '-ml-59', '-ml-60',
478
+ '-ml-61', '-ml-62', '-ml-63', '-ml-64', '-ml-65', '-ml-66', '-ml-67', '-ml-68', '-ml-69', '-ml-70',
479
+ '-ml-71', '-ml-72', '-ml-73', '-ml-74', '-ml-75', '-ml-76', '-ml-77', '-ml-78', '-ml-79', '-ml-80',
480
+ '-ml-81', '-ml-82', '-ml-83', '-ml-84', '-ml-85', '-ml-86', '-ml-87', '-ml-88', '-ml-89', '-ml-90',
481
+ '-ml-91', '-ml-92', '-ml-93', '-ml-94', '-ml-95', '-ml-96',
482
+ ];
483
+ const TailwindMargins_B = [
484
+ // Varianti positive
485
+ 'mb-1', 'mb-2', 'mb-3', 'mb-4', 'mb-5', 'mb-6', 'mb-7', 'mb-8', 'mb-9', 'mb-10',
486
+ 'mb-11', 'mb-12', 'mb-13', 'mb-14', 'mb-15', 'mb-16', 'mb-17', 'mb-18', 'mb-19', 'mb-20',
487
+ 'mb-21', 'mb-22', 'mb-23', 'mb-24', 'mb-25', 'mb-26', 'mb-27', 'mb-28', 'mb-29', 'mb-30',
488
+ 'mb-31', 'mb-32', 'mb-33', 'mb-34', 'mb-35', 'mb-36', 'mb-37', 'mb-38', 'mb-39', 'mb-40',
489
+ 'mb-41', 'mb-42', 'mb-43', 'mb-44', 'mb-45', 'mb-46', 'mb-47', 'mb-48', 'mb-49', 'mb-50',
490
+ 'mb-51', 'mb-52', 'mb-53', 'mb-54', 'mb-55', 'mb-56', 'mb-57', 'mb-58', 'mb-59', 'mb-60',
491
+ 'mb-61', 'mb-62', 'mb-63', 'mb-64', 'mb-65', 'mb-66', 'mb-67', 'mb-68', 'mb-69', 'mb-70',
492
+ 'mb-71', 'mb-72', 'mb-73', 'mb-74', 'mb-75', 'mb-76', 'mb-77', 'mb-78', 'mb-79', 'mb-80',
493
+ 'mb-81', 'mb-82', 'mb-83', 'mb-84', 'mb-85', 'mb-86', 'mb-87', 'mb-88', 'mb-89', 'mb-90',
494
+ 'mb-91', 'mb-92', 'mb-93', 'mb-94', 'mb-95', 'mb-96',
495
+ // Varianti negative
496
+ '-mb-1', '-mb-2', '-mb-3', '-mb-4', '-mb-5', '-mb-6', '-mb-7', '-mb-8', '-mb-9', '-mb-10',
497
+ '-mb-11', '-mb-12', '-mb-13', '-mb-14', '-mb-15', '-mb-16', '-mb-17', '-mb-18', '-mb-19', '-mb-20',
498
+ '-mb-21', '-mb-22', '-mb-23', '-mb-24', '-mb-25', '-mb-26', '-mb-27', '-mb-28', '-mb-29', '-mb-30',
499
+ '-mb-31', '-mb-32', '-mb-33', '-mb-34', '-mb-35', '-mb-36', '-mb-37', '-mb-38', '-mb-39', '-mb-40',
500
+ '-mb-41', '-mb-42', '-mb-43', '-mb-44', '-mb-45', '-mb-46', '-mb-47', '-mb-48', '-mb-49', '-mb-50',
501
+ '-mb-51', '-mb-52', '-mb-53', '-mb-54', '-mb-55', '-mb-56', '-mb-57', '-mb-58', '-mb-59', '-mb-60',
502
+ '-mb-61', '-mb-62', '-mb-63', '-mb-64', '-mb-65', '-mb-66', '-mb-67', '-mb-68', '-mb-69', '-mb-70',
503
+ '-mb-71', '-mb-72', '-mb-73', '-mb-74', '-mb-75', '-mb-76', '-mb-77', '-mb-78', '-mb-79', '-mb-80',
504
+ '-mb-81', '-mb-82', '-mb-83', '-mb-84', '-mb-85', '-mb-86', '-mb-87', '-mb-88', '-mb-89', '-mb-90',
505
+ '-mb-91', '-mb-92', '-mb-93', '-mb-94', '-mb-95', '-mb-96',
506
+ ];
507
+ const TailwindMargins_ALL = [
508
+ ...TailwindMargins,
509
+ ...TailwindMargins_X,
510
+ ...TailwindMargins_Y,
511
+ ...TailwindMargins_T,
512
+ ...TailwindMargins_R,
513
+ ...TailwindMargins_L,
514
+ ...TailwindMargins_B
515
+ ];
516
+ /**
517
+ * Array di stringhe che rappresentano i multipli di 0.25rem da 0.25rem a 24rem
518
+ */
519
+ const TailwindMultipliers = [
520
+ "0",
521
+ "0.25rem",
522
+ "0.5rem",
523
+ "0.75rem",
524
+ "1rem",
525
+ "1.25rem",
526
+ "1.5rem",
527
+ "1.75rem",
528
+ "2rem",
529
+ "2.25rem",
530
+ "2.5rem",
531
+ "2.75rem",
532
+ "3rem",
533
+ "3.25rem",
534
+ "3.5rem",
535
+ "3.75rem",
536
+ "4rem",
537
+ "4.25rem",
538
+ "4.5rem",
539
+ "4.75rem",
540
+ "5rem",
541
+ "5.25rem",
542
+ "5.5rem",
543
+ "5.75rem",
544
+ "6rem",
545
+ "6.25rem",
546
+ "6.5rem",
547
+ "6.75rem",
548
+ "7rem",
549
+ "7.25rem",
550
+ "7.5rem",
551
+ "7.75rem",
552
+ "8rem",
553
+ "8.25rem",
554
+ "8.5rem",
555
+ "8.75rem",
556
+ "9rem",
557
+ "9.25rem",
558
+ "9.5rem",
559
+ "9.75rem",
560
+ "10rem",
561
+ "10.25rem",
562
+ "10.5rem",
563
+ "10.75rem",
564
+ "11rem",
565
+ "11.25rem",
566
+ "11.5rem",
567
+ "11.75rem",
568
+ "12rem",
569
+ "12.25rem",
570
+ "12.5rem",
571
+ "12.75rem",
572
+ "13rem",
573
+ "13.25rem",
574
+ "13.5rem",
575
+ "13.75rem",
576
+ "14rem",
577
+ "14.25rem",
578
+ "14.5rem",
579
+ "14.75rem",
580
+ "15rem",
581
+ "15.25rem",
582
+ "15.5rem",
583
+ "15.75rem",
584
+ "16rem",
585
+ "16.25rem",
586
+ "16.5rem",
587
+ "16.75rem",
588
+ "17rem",
589
+ "17.25rem",
590
+ "17.5rem",
591
+ "17.75rem",
592
+ "18rem",
593
+ "18.25rem",
594
+ "18.5rem",
595
+ "18.75rem",
596
+ "19rem",
597
+ "19.25rem",
598
+ "19.5rem",
599
+ "19.75rem",
600
+ "20rem",
601
+ "20.25rem",
602
+ "20.5rem",
603
+ "20.75rem",
604
+ "21rem",
605
+ "21.25rem",
606
+ "21.5rem",
607
+ "21.75rem",
608
+ "22rem",
609
+ "22.25rem",
610
+ "22.5rem",
611
+ "22.75rem",
612
+ "23rem",
613
+ "23.25rem",
614
+ "23.5rem",
615
+ "23.75rem",
616
+ "24rem"
617
+ ];
618
+ const TailwindViewportHeightMultipliers = {
619
+ '1/5-vh': '20vh',
620
+ '1/4-vh': '25vh',
621
+ '1/3-vh': '33.333vh',
622
+ '2/5-vh': '40vh',
623
+ '1/2-vh': '50vh',
624
+ '3/5-vh': '60vh',
625
+ '2/3-vh': '66.666vh',
626
+ '3/4-vh': '75vh',
627
+ '4/5-vh': '80vh',
628
+ };
629
+ /**
630
+ * Costante che contiene tutte le varianti "p-" per padding globale, fino a 96
631
+ */
632
+ const TailwindPaddings = [
633
+ 'p-1', 'p-2', 'p-3', 'p-4', 'p-5', 'p-6', 'p-7', 'p-8', 'p-9', 'p-10',
634
+ 'p-11', 'p-12', 'p-13', 'p-14', 'p-15', 'p-16', 'p-17', 'p-18', 'p-19', 'p-20',
635
+ 'p-21', 'p-22', 'p-23', 'p-24', 'p-25', 'p-26', 'p-27', 'p-28', 'p-29', 'p-30',
636
+ 'p-31', 'p-32', 'p-33', 'p-34', 'p-35', 'p-36', 'p-37', 'p-38', 'p-39', 'p-40',
637
+ 'p-41', 'p-42', 'p-43', 'p-44', 'p-45', 'p-46', 'p-47', 'p-48', 'p-49', 'p-50',
638
+ 'p-51', 'p-52', 'p-53', 'p-54', 'p-55', 'p-56', 'p-57', 'p-58', 'p-59', 'p-60',
639
+ 'p-61', 'p-62', 'p-63', 'p-64', 'p-65', 'p-66', 'p-67', 'p-68', 'p-69', 'p-70',
640
+ 'p-71', 'p-72', 'p-73', 'p-74', 'p-75', 'p-76', 'p-77', 'p-78', 'p-79', 'p-80',
641
+ 'p-81', 'p-82', 'p-83', 'p-84', 'p-85', 'p-86', 'p-87', 'p-88', 'p-89', 'p-90',
642
+ 'p-91', 'p-92', 'p-93', 'p-94', 'p-95', 'p-96',
643
+ ];
644
+ /**
645
+ * Costante che contiene tutte le varianti "px-" per padding orizzontale, fino a 96
646
+ */
647
+ const TailwindPaddings_X = [
648
+ 'px-1', 'px-2', 'px-3', 'px-4', 'px-5', 'px-6', 'px-7', 'px-8', 'px-9', 'px-10',
649
+ 'px-11', 'px-12', 'px-13', 'px-14', 'px-15', 'px-16', 'px-17', 'px-18', 'px-19', 'px-20',
650
+ 'px-21', 'px-22', 'px-23', 'px-24', 'px-25', 'px-26', 'px-27', 'px-28', 'px-29', 'px-30',
651
+ 'px-31', 'px-32', 'px-33', 'px-34', 'px-35', 'px-36', 'px-37', 'px-38', 'px-39', 'px-40',
652
+ 'px-41', 'px-42', 'px-43', 'px-44', 'px-45', 'px-46', 'px-47', 'px-48', 'px-49', 'px-50',
653
+ 'px-51', 'px-52', 'px-53', 'px-54', 'px-55', 'px-56', 'px-57', 'px-58', 'px-59', 'px-60',
654
+ 'px-61', 'px-62', 'px-63', 'px-64', 'px-65', 'px-66', 'px-67', 'px-68', 'px-69', 'px-70',
655
+ 'px-71', 'px-72', 'px-73', 'px-74', 'px-75', 'px-76', 'px-77', 'px-78', 'px-79', 'px-80',
656
+ 'px-81', 'px-82', 'px-83', 'px-84', 'px-85', 'px-86', 'px-87', 'px-88', 'px-89', 'px-90',
657
+ 'px-91', 'px-92', 'px-93', 'px-94', 'px-95', 'px-96',
658
+ ];
659
+ /**
660
+ * Costante che contiene tutte le varianti "py-" per padding verticale, fino a 96
661
+ */
662
+ const TailwindPaddings_Y = [
663
+ 'py-1', 'py-2', 'py-3', 'py-4', 'py-5', 'py-6', 'py-7', 'py-8', 'py-9', 'py-10',
664
+ 'py-11', 'py-12', 'py-13', 'py-14', 'py-15', 'py-16', 'py-17', 'py-18', 'py-19', 'py-20',
665
+ 'py-21', 'py-22', 'py-23', 'py-24', 'py-25', 'py-26', 'py-27', 'py-28', 'py-29', 'py-30',
666
+ 'py-31', 'py-32', 'py-33', 'py-34', 'py-35', 'py-36', 'py-37', 'py-38', 'py-39', 'py-40',
667
+ 'py-41', 'py-42', 'py-43', 'py-44', 'py-45', 'py-46', 'py-47', 'py-48', 'py-49', 'py-50',
668
+ 'py-51', 'py-52', 'py-53', 'py-54', 'py-55', 'py-56', 'py-57', 'py-58', 'py-59', 'py-60',
669
+ 'py-61', 'py-62', 'py-63', 'py-64', 'py-65', 'py-66', 'py-67', 'py-68', 'py-69', 'py-70',
670
+ 'py-71', 'py-72', 'py-73', 'py-74', 'py-75', 'py-76', 'py-77', 'py-78', 'py-79', 'py-80',
671
+ 'py-81', 'py-82', 'py-83', 'py-84', 'py-85', 'py-86', 'py-87', 'py-88', 'py-89', 'py-90',
672
+ 'py-91', 'py-92', 'py-93', 'py-94', 'py-95', 'py-96',
673
+ ];
674
+ /**
675
+ * Costante che contiene tutte le varianti "pt-" per padding superiore, fino a 96
676
+ */
677
+ const TailwindPaddings_T = [
678
+ 'pt-1', 'pt-2', 'pt-3', 'pt-4', 'pt-5', 'pt-6', 'pt-7', 'pt-8', 'pt-9', 'pt-10',
679
+ 'pt-11', 'pt-12', 'pt-13', 'pt-14', 'pt-15', 'pt-16', 'pt-17', 'pt-18', 'pt-19', 'pt-20',
680
+ 'pt-21', 'pt-22', 'pt-23', 'pt-24', 'pt-25', 'pt-26', 'pt-27', 'pt-28', 'pt-29', 'pt-30',
681
+ 'pt-31', 'pt-32', 'pt-33', 'pt-34', 'pt-35', 'pt-36', 'pt-37', 'pt-38', 'pt-39', 'pt-40',
682
+ 'pt-41', 'pt-42', 'pt-43', 'pt-44', 'pt-45', 'pt-46', 'pt-47', 'pt-48', 'pt-49', 'pt-50',
683
+ 'pt-51', 'pt-52', 'pt-53', 'pt-54', 'pt-55', 'pt-56', 'pt-57', 'pt-58', 'pt-59', 'pt-60',
684
+ 'pt-61', 'pt-62', 'pt-63', 'pt-64', 'pt-65', 'pt-66', 'pt-67', 'pt-68', 'pt-69', 'pt-70',
685
+ 'pt-71', 'pt-72', 'pt-73', 'pt-74', 'pt-75', 'pt-76', 'pt-77', 'pt-78', 'pt-79', 'pt-80',
686
+ 'pt-81', 'pt-82', 'pt-83', 'pt-84', 'pt-85', 'pt-86', 'pt-87', 'pt-88', 'pt-89', 'pt-90',
687
+ 'pt-91', 'pt-92', 'pt-93', 'pt-94', 'pt-95', 'pt-96',
688
+ ];
689
+ /**
690
+ * Costante che contiene tutte le varianti "pr-" per padding a destra, fino a 96
691
+ */
692
+ const TailwindPaddings_R = [
693
+ 'pr-1', 'pr-2', 'pr-3', 'pr-4', 'pr-5', 'pr-6', 'pr-7', 'pr-8', 'pr-9', 'pr-10',
694
+ 'pr-11', 'pr-12', 'pr-13', 'pr-14', 'pr-15', 'pr-16', 'pr-17', 'pr-18', 'pr-19', 'pr-20',
695
+ 'pr-21', 'pr-22', 'pr-23', 'pr-24', 'pr-25', 'pr-26', 'pr-27', 'pr-28', 'pr-29', 'pr-30',
696
+ 'pr-31', 'pr-32', 'pr-33', 'pr-34', 'pr-35', 'pr-36', 'pr-37', 'pr-38', 'pr-39', 'pr-40',
697
+ 'pr-41', 'pr-42', 'pr-43', 'pr-44', 'pr-45', 'pr-46', 'pr-47', 'pr-48', 'pr-49', 'pr-50',
698
+ 'pr-51', 'pr-52', 'pr-53', 'pr-54', 'pr-55', 'pr-56', 'pr-57', 'pr-58', 'pr-59', 'pr-60',
699
+ 'pr-61', 'pr-62', 'pr-63', 'pr-64', 'pr-65', 'pr-66', 'pr-67', 'pr-68', 'pr-69', 'pr-70',
700
+ 'pr-71', 'pr-72', 'pr-73', 'pr-74', 'pr-75', 'pr-76', 'pr-77', 'pr-78', 'pr-79', 'pr-80',
701
+ 'pr-81', 'pr-82', 'pr-83', 'pr-84', 'pr-85', 'pr-86', 'pr-87', 'pr-88', 'pr-89', 'pr-90',
702
+ 'pr-91', 'pr-92', 'pr-93', 'pr-94', 'pr-95', 'pr-96',
703
+ ];
704
+ /**
705
+ * Costante che contiene tutte le varianti "pb-" per padding inferiore, fino a 96
706
+ */
707
+ const TailwindPaddings_B = [
708
+ 'pb-1', 'pb-2', 'pb-3', 'pb-4', 'pb-5', 'pb-6', 'pb-7', 'pb-8', 'pb-9', 'pb-10',
709
+ 'pb-11', 'pb-12', 'pb-13', 'pb-14', 'pb-15', 'pb-16', 'pb-17', 'pb-18', 'pb-19', 'pb-20',
710
+ 'pb-21', 'pb-22', 'pb-23', 'pb-24', 'pb-25', 'pb-26', 'pb-27', 'pb-28', 'pb-29', 'pb-30',
711
+ 'pb-31', 'pb-32', 'pb-33', 'pb-34', 'pb-35', 'pb-36', 'pb-37', 'pb-38', 'pb-39', 'pb-40',
712
+ 'pb-41', 'pb-42', 'pb-43', 'pb-44', 'pb-45', 'pb-46', 'pb-47', 'pb-48', 'pb-49', 'pb-50',
713
+ 'pb-51', 'pb-52', 'pb-53', 'pb-54', 'pb-55', 'pb-56', 'pb-57', 'pb-58', 'pb-59', 'pb-60',
714
+ 'pb-61', 'pb-62', 'pb-63', 'pb-64', 'pb-65', 'pb-66', 'pb-67', 'pb-68', 'pb-69', 'pb-70',
715
+ 'pb-71', 'pb-72', 'pb-73', 'pb-74', 'pb-75', 'pb-76', 'pb-77', 'pb-78', 'pb-79', 'pb-80',
716
+ 'pb-81', 'pb-82', 'pb-83', 'pb-84', 'pb-85', 'pb-86', 'pb-87', 'pb-88', 'pb-89', 'pb-90',
717
+ 'pb-91', 'pb-92', 'pb-93', 'pb-94', 'pb-95', 'pb-96',
718
+ ];
719
+ /**
720
+ * Costante che contiene tutte le varianti "pl-" per padding a sinistra, fino a 96
721
+ */
722
+ const TailwindPaddings_L = [
723
+ 'pl-1', 'pl-2', 'pl-3', 'pl-4', 'pl-5', 'pl-6', 'pl-7', 'pl-8', 'pl-9', 'pl-10',
724
+ 'pl-11', 'pl-12', 'pl-13', 'pl-14', 'pl-15', 'pl-16', 'pl-17', 'pl-18', 'pl-19', 'pl-20',
725
+ 'pl-21', 'pl-22', 'pl-23', 'pl-24', 'pl-25', 'pl-26', 'pl-27', 'pl-28', 'pl-29', 'pl-30',
726
+ 'pl-31', 'pl-32', 'pl-33', 'pl-34', 'pl-35', 'pl-36', 'pl-37', 'pl-38', 'pl-39', 'pl-40',
727
+ 'pl-41', 'pl-42', 'pl-43', 'pl-44', 'pl-45', 'pl-46', 'pl-47', 'pl-48', 'pl-49', 'pl-50',
728
+ 'pl-51', 'pl-52', 'pl-53', 'pl-54', 'pl-55', 'pl-56', 'pl-57', 'pl-58', 'pl-59', 'pl-60',
729
+ 'pl-61', 'pl-62', 'pl-63', 'pl-64', 'pl-65', 'pl-66', 'pl-67', 'pl-68', 'pl-69', 'pl-70',
730
+ 'pl-71', 'pl-72', 'pl-73', 'pl-74', 'pl-75', 'pl-76', 'pl-77', 'pl-78', 'pl-79', 'pl-80',
731
+ 'pl-81', 'pl-82', 'pl-83', 'pl-84', 'pl-85', 'pl-86', 'pl-87', 'pl-88', 'pl-89', 'pl-90',
732
+ 'pl-91', 'pl-92', 'pl-93', 'pl-94', 'pl-95', 'pl-96',
733
+ ];
734
+ const TailwindPaddings_ALL = [
735
+ ...TailwindPaddings,
736
+ ...TailwindPaddings_X,
737
+ ...TailwindPaddings_Y,
738
+ ...TailwindPaddings_T,
739
+ ...TailwindPaddings_R,
740
+ ...TailwindPaddings_B,
741
+ ...TailwindPaddings_L,
742
+ ];
743
+ // file: constants/layout/textSizes.ts
744
+ const TailwindTextSizes = [
745
+ 'text-xs',
746
+ 'text-sm',
747
+ 'text-base',
748
+ 'text-lg',
749
+ 'text-xl',
750
+ 'text-2xl',
751
+ 'text-3xl',
752
+ 'text-4xl',
753
+ 'text-5xl',
754
+ 'text-6xl',
755
+ 'text-7xl',
756
+ ];
757
+ /**
758
+ * Costante che contiene tutte le varianti "w-" per larghezza globale
759
+ */
760
+ const TailwindWidths = [
761
+ // Classi dinamiche
762
+ 'w-auto', // Larghezza automatica
763
+ 'w-full', // Larghezza piena (100% del contenitore genitore)
764
+ 'w-screen', // Larghezza dell'intero viewport
765
+ 'w-min', // Larghezza minima (adatta al contenuto minimo)
766
+ 'w-max', // Larghezza massima (adatta al contenuto massimo)
767
+ 'w-fit', // Larghezza si adatta al contenuto
768
+ // Larghezza proporzionale
769
+ 'w-1/2', // 50% della larghezza disponibile
770
+ 'w-1/3', // 33.333% della larghezza disponibile
771
+ 'w-2/3', // 66.666% della larghezza disponibile
772
+ 'w-1/4', // 25% della larghezza disponibile
773
+ 'w-3/4', // 75% della larghezza disponibile
774
+ // Varianti numeriche da 1 a 96
775
+ 'w-1', 'w-2', 'w-3', 'w-4', 'w-5', 'w-6', 'w-7', 'w-8', 'w-9', 'w-10',
776
+ 'w-11', 'w-12', 'w-13', 'w-14', 'w-15', 'w-16', 'w-17', 'w-18', 'w-19', 'w-20',
777
+ 'w-21', 'w-22', 'w-23', 'w-24', 'w-25', 'w-26', 'w-27', 'w-28', 'w-29', 'w-30',
778
+ 'w-31', 'w-32', 'w-33', 'w-34', 'w-35', 'w-36', 'w-37', 'w-38', 'w-39', 'w-40',
779
+ 'w-41', 'w-42', 'w-43', 'w-44', 'w-45', 'w-46', 'w-47', 'w-48', 'w-49', 'w-50',
780
+ 'w-51', 'w-52', 'w-53', 'w-54', 'w-55', 'w-56', 'w-57', 'w-58', 'w-59', 'w-60',
781
+ 'w-61', 'w-62', 'w-63', 'w-64', 'w-65', 'w-66', 'w-67', 'w-68', 'w-69', 'w-70',
782
+ 'w-71', 'w-72', 'w-73', 'w-74', 'w-75', 'w-76', 'w-77', 'w-78', 'w-79', 'w-80',
783
+ 'w-81', 'w-82', 'w-83', 'w-84', 'w-85', 'w-86', 'w-87', 'w-88', 'w-89', 'w-90',
784
+ 'w-91', 'w-92', 'w-93', 'w-94', 'w-95', 'w-96',
785
+ ];
786
+ const TailwindColors = [
787
+ "text-primary/10", "bg-primary/10", "border-primary/10",
788
+ "text-primary/20", "bg-primary/20", "border-primary/20",
789
+ "text-primary/30", "bg-primary/30", "border-primary/30",
790
+ "text-primary/40", "bg-primary/40", "border-primary/40",
791
+ "text-primary/50", "bg-primary/50", "border-primary/50",
792
+ "text-primary/60", "bg-primary/60", "border-primary/60",
793
+ "text-primary/70", "bg-primary/70", "border-primary/70",
794
+ "text-primary/80", "bg-primary/80", "border-primary/80",
795
+ "text-primary/90", "bg-primary/90", "border-primary/90",
796
+ "text-primary", "bg-primary", "border-primary",
797
+ "text-secondary/10", "bg-secondary/10", "border-secondary/10",
798
+ "text-secondary/20", "bg-secondary/20", "border-secondary/20",
799
+ "text-secondary/30", "bg-secondary/30", "border-secondary/30",
800
+ "text-secondary/40", "bg-secondary/40", "border-secondary/40",
801
+ "text-secondary/50", "bg-secondary/50", "border-secondary/50",
802
+ "text-secondary/60", "bg-secondary/60", "border-secondary/60",
803
+ "text-secondary/70", "bg-secondary/70", "border-secondary/70",
804
+ "text-secondary/80", "bg-secondary/80", "border-secondary/80",
805
+ "text-secondary/90", "bg-secondary/90", "border-secondary/90",
806
+ "text-secondary", "bg-secondary", "border-secondary",
807
+ "text-accent/10", "bg-accent/10", "border-accent/10",
808
+ "text-accent/20", "bg-accent/20", "border-accent/20",
809
+ "text-accent/30", "bg-accent/30", "border-accent/30",
810
+ "text-accent/40", "bg-accent/40", "border-accent/40",
811
+ "text-accent/50", "bg-accent/50", "border-accent/50",
812
+ "text-accent/60", "bg-accent/60", "border-accent/60",
813
+ "text-accent/70", "bg-accent/70", "border-accent/70",
814
+ "text-accent/80", "bg-accent/80", "border-accent/80",
815
+ "text-accent/90", "bg-accent/90", "border-accent/90",
816
+ "text-accent", "bg-accent", "border-accent",
817
+ "text-dark/10", "bg-dark/10", "border-dark/10",
818
+ "text-dark/20", "bg-dark/20", "border-dark/20",
819
+ "text-dark/30", "bg-dark/30", "border-dark/30",
820
+ "text-dark/40", "bg-dark/40", "border-dark/40",
821
+ "text-dark/50", "bg-dark/50", "border-dark/50",
822
+ "text-dark/60", "bg-dark/60", "border-dark/60",
823
+ "text-dark/70", "bg-dark/70", "border-dark/70",
824
+ "text-dark/80", "bg-dark/80", "border-dark/80",
825
+ "text-dark/90", "bg-dark/90", "border-dark/90",
826
+ "text-dark", "bg-dark", "border-dark",
827
+ "text-light/10", "bg-light/10", "border-light/10",
828
+ "text-light/20", "bg-light/20", "border-light/20",
829
+ "text-light/30", "bg-light/30", "border-light/30",
830
+ "text-light/40", "bg-light/40", "border-light/40",
831
+ "text-light/50", "bg-light/50", "border-light/50",
832
+ "text-light/60", "bg-light/60", "border-light/60",
833
+ "text-light/70", "bg-light/70", "border-light/70",
834
+ "text-light/80", "bg-light/80", "border-light/80",
835
+ "text-light/90", "bg-light/90", "border-light/90",
836
+ "text-light", "bg-light", "border-light"
837
+ ];
838
+ const TailwindDesktopGridColumns = [
839
+ 'lg:grid-cols-1',
840
+ 'lg:grid-cols-2',
841
+ 'lg:grid-cols-3',
842
+ 'lg:grid-cols-4',
843
+ 'lg:grid-cols-5',
844
+ 'lg:grid-cols-6',
845
+ 'lg:grid-cols-7',
846
+ 'lg:grid-cols-8',
847
+ 'lg:grid-cols-9',
848
+ 'lg:grid-cols-10',
849
+ 'lg:grid-cols-11',
850
+ 'lg:grid-cols-12'
851
+ ];
852
+ // Classi grid-cols per tablet (md)
853
+ const TailwindTabletGridColumns = [
854
+ 'md:grid-cols-1',
855
+ 'md:grid-cols-2',
856
+ 'md:grid-cols-3',
857
+ 'md:grid-cols-4',
858
+ 'md:grid-cols-5',
859
+ 'md:grid-cols-6'
860
+ ];
861
+ // Classi grid-cols per mobile (default, senza prefisso)
862
+ const TailwindMobileGridColumns = [
863
+ 'grid-cols-1',
864
+ 'grid-cols-2'
865
+ ];
866
+ const TailwindAllSafeList = [
867
+ ...TailwindHeights,
868
+ ...TailwindPaddings,
869
+ ...TailwindMargins,
870
+ ...TailwindContainerWidths,
871
+ ...TailwindWidths,
872
+ ...TailwindColors,
873
+ ...TailwindDesktopGridColumns,
874
+ ...TailwindMobileGridColumns,
875
+ ...TailwindTabletGridColumns,
876
+ ...TailwindTextSizes
877
+ ];
878
+
879
+ var index$1 = /*#__PURE__*/Object.freeze({
880
+ __proto__: null,
881
+ TailwindAllSafeList: TailwindAllSafeList,
882
+ TailwindColors: TailwindColors,
883
+ TailwindContainerWidths: TailwindContainerWidths,
884
+ TailwindDesktopGridColumns: TailwindDesktopGridColumns,
885
+ TailwindHeights: TailwindHeights,
886
+ TailwindMargins: TailwindMargins,
887
+ TailwindMargins_ALL: TailwindMargins_ALL,
888
+ TailwindMargins_B: TailwindMargins_B,
889
+ TailwindMargins_L: TailwindMargins_L,
890
+ TailwindMargins_R: TailwindMargins_R,
891
+ TailwindMargins_T: TailwindMargins_T,
892
+ TailwindMargins_X: TailwindMargins_X,
893
+ TailwindMargins_Y: TailwindMargins_Y,
894
+ TailwindMobileGridColumns: TailwindMobileGridColumns,
895
+ TailwindMultipliers: TailwindMultipliers,
896
+ TailwindPaddings: TailwindPaddings,
897
+ TailwindPaddings_ALL: TailwindPaddings_ALL,
898
+ TailwindPaddings_B: TailwindPaddings_B,
899
+ TailwindPaddings_L: TailwindPaddings_L,
900
+ TailwindPaddings_R: TailwindPaddings_R,
901
+ TailwindPaddings_T: TailwindPaddings_T,
902
+ TailwindPaddings_X: TailwindPaddings_X,
903
+ TailwindPaddings_Y: TailwindPaddings_Y,
904
+ TailwindTabletGridColumns: TailwindTabletGridColumns,
905
+ TailwindTextSizes: TailwindTextSizes,
906
+ TailwindViewportHeightMultipliers: TailwindViewportHeightMultipliers,
907
+ TailwindViewportHeights: TailwindViewportHeights,
908
+ TailwindWidths: TailwindWidths
168
909
  });
169
910
 
911
+ /**
912
+ * Genera un campo per la selezione delle altezze
913
+ * @returns Field - Campo di tipo `select` per PayloadCMS
914
+ */
915
+ const fieldViewportHeights = () => {
916
+ return fieldSelect({
917
+ name: 'h',
918
+ label: 'Altezza',
919
+ type: 'select',
920
+ options: [{ value: '', label: '(Nessuno)' }, ...TailwindViewportHeights.map(h => ({ value: `h-${h}`, label: h }))],
921
+ admin: {
922
+ description: 'Definisce l’altezza dell’elemento.',
923
+ width: '50%'
924
+ },
925
+ });
926
+ };
927
+
928
+ const fieldThemeColor = (override) => ({
929
+ name: override?.name || 'color',
930
+ label: override?.label || 'Colore',
931
+ type: 'select',
932
+ required: override?.required ?? false,
933
+ options: [
934
+ { label: 'Default', value: '' },
935
+ { label: 'Foreground', value: 'foreground' },
936
+ { label: 'Primary', value: 'primary' },
937
+ { label: 'Secondary', value: 'secondary' },
938
+ { label: 'Accent', value: 'accent' },
939
+ { label: 'Dark', value: 'dark' },
940
+ { label: 'Light', value: 'light' },
941
+ { label: 'White', value: 'white' },
942
+ { label: 'Black', value: 'black' },
943
+ ],
944
+ admin: {
945
+ ...override?.admin,
946
+ },
947
+ });
948
+
949
+ const fieldSectionProps = (customFields = []) => {
950
+ return {
951
+ name: 'sctP',
952
+ label: 'Proprietà sezione',
953
+ type: 'group',
954
+ fields: [
955
+ ...customFields,
956
+ fieldRichText({ name: 'body', label: 'Contenuto', required: false }),
957
+ {
958
+ type: 'tabs',
959
+ tabs: [
960
+ {
961
+ label: 'Stile',
962
+ fields: [
963
+ fieldUpload('media', { name: 'bgi', label: 'Immagine di sfondo' }),
964
+ fieldThemeColor({ name: 'bgc', label: 'Colore di sfondo', required: false }),
965
+ ]
966
+ }
967
+ ]
968
+ },
969
+ {
970
+ type: 'tabs',
971
+ tabs: [
972
+ {
973
+ label: 'Dimensioni',
974
+ fields: [
975
+ fieldViewportHeights(),
976
+ {
977
+ type: 'tabs',
978
+ tabs: [{
979
+ label: 'Margini',
980
+ fields: [
981
+ fieldMargins()
982
+ ]
983
+ },
984
+ {
985
+ label: 'Paddings',
986
+ fields: [
987
+ fieldPaddings()
988
+ ]
989
+ }
990
+ ]
991
+ }
992
+ ]
993
+ }
994
+ ]
995
+ },
996
+ ],
997
+ };
998
+ };
999
+
1000
+ const fieldSectionTabs = (options = {}) => {
1001
+ const { config = true, section = true, container = true, content = true, configFields = [], sectionFields = [], containerFields = [], contentFields = [] } = options;
1002
+ const tabs = [];
1003
+ if (config) {
1004
+ tabs.push({
1005
+ label: 'Configurazione',
1006
+ fields: [
1007
+ fieldConfigProps(configFields)
1008
+ ],
1009
+ });
1010
+ }
1011
+ // Tab per la sezione
1012
+ if (section) {
1013
+ tabs.push({
1014
+ label: 'Sezione',
1015
+ fields: [
1016
+ fieldSectionProps(sectionFields)
1017
+ ],
1018
+ });
1019
+ }
1020
+ // Tab per il container
1021
+ if (container) {
1022
+ tabs.push({
1023
+ label: 'Container',
1024
+ fields: [
1025
+ fieldContainerProps(containerFields)
1026
+ ],
1027
+ });
1028
+ }
1029
+ // Tab per il contenuto
1030
+ if (content) {
1031
+ tabs.push({
1032
+ label: 'Contenuto',
1033
+ fields: [
1034
+ fieldContentProps(contentFields)
1035
+ ],
1036
+ });
1037
+ }
1038
+ return {
1039
+ type: 'tabs',
1040
+ tabs: tabs,
1041
+ };
1042
+ };
1043
+
1044
+ /**
1045
+ * Genera un campo per la selezione delle larghezze del container
1046
+ * @returns Field - Campo di tipo `select` per PayloadCMS
1047
+ */
1048
+ const fieldContainerWidths = () => {
1049
+ return fieldSelect({
1050
+ name: 'container',
1051
+ label: 'Larghezza del container',
1052
+ options: [{ value: '', label: '(Nessuno)' }, ...TailwindContainerWidths],
1053
+ admin: {
1054
+ description: 'Seleziona una larghezza massima per il container. Usa "None" per una larghezza a schermo intero.',
1055
+ },
1056
+ });
1057
+ };
1058
+
1059
+ /**
1060
+ * Genera un campo per la selezione delle altezze
1061
+ * @returns Field - Campo di tipo `select` per PayloadCMS
1062
+ */
1063
+ const fieldHeights = () => {
1064
+ return fieldSelect({
1065
+ name: 'h',
1066
+ label: 'Altezza',
1067
+ type: 'select',
1068
+ defaultValue: 'h-full',
1069
+ options: [{ value: '', label: '(Nessuno)' }, ...TailwindHeights.map(h => ({ value: `h-${h}`, label: h }))],
1070
+ admin: {
1071
+ description: 'Definisce l’altezza dell’elemento.',
1072
+ },
1073
+ });
1074
+ };
1075
+
1076
+ const concatMarginFields = (args) => {
1077
+ const { value, siblingData, operation, } = args;
1078
+ if (operation === 'create' || operation === 'update') {
1079
+ const margins = siblingData || {};
1080
+ const { all, x, y, t, r, b, l } = margins;
1081
+ const classes = [];
1082
+ if (all)
1083
+ classes.push(`m-${all}`);
1084
+ if (x)
1085
+ classes.push(`mx-${x}`);
1086
+ if (y)
1087
+ classes.push(`my-${y}`);
1088
+ if (t)
1089
+ classes.push(`mt-${t}`);
1090
+ if (r)
1091
+ classes.push(`mr-${r}`);
1092
+ if (b)
1093
+ classes.push(`mb-${b}`);
1094
+ if (l)
1095
+ classes.push(`ml-${l}`);
1096
+ return classes.join(' ');
1097
+ }
1098
+ return value;
1099
+ };
1100
+ /**
1101
+ * Genera un campo per la selezione dinamica dei margini
1102
+ * @returns Field - Campo di tipo `group` per PayloadCMS
1103
+ */
1104
+ const fieldMargins = () => {
1105
+ return {
1106
+ name: 'm',
1107
+ label: 'Margini',
1108
+ type: 'group',
1109
+ fields: [
1110
+ {
1111
+ name: 'className',
1112
+ label: 'Classi CSS Margini',
1113
+ type: 'text',
1114
+ hooks: {
1115
+ beforeChange: [concatMarginFields],
1116
+ },
1117
+ admin: {
1118
+ readOnly: true,
1119
+ description: 'Questa stringa verrà generata automaticamente in base ai campi sottostanti.',
1120
+ },
1121
+ },
1122
+ {
1123
+ type: 'row',
1124
+ fields: [
1125
+ fieldNumber({
1126
+ name: 'all',
1127
+ label: 'Tutti i lati',
1128
+ type: 'number',
1129
+ min: 0,
1130
+ max: 96,
1131
+ admin: {
1132
+ width: '33%'
1133
+ }
1134
+ }),
1135
+ fieldNumber({
1136
+ name: 'x',
1137
+ label: 'Orizzontale',
1138
+ type: 'number',
1139
+ min: 0,
1140
+ max: 96,
1141
+ admin: {
1142
+ width: '33%'
1143
+ }
1144
+ }),
1145
+ fieldNumber({
1146
+ name: 'y',
1147
+ label: 'Verticale',
1148
+ type: 'number',
1149
+ min: 0,
1150
+ max: 96,
1151
+ admin: {
1152
+ width: '33%'
1153
+ }
1154
+ }),
1155
+ fieldNumber({
1156
+ name: 't',
1157
+ label: 'Top',
1158
+ type: 'number',
1159
+ min: 0,
1160
+ max: 96,
1161
+ admin: {
1162
+ width: '25%'
1163
+ }
1164
+ }),
1165
+ fieldNumber({
1166
+ name: 'r',
1167
+ label: 'Right',
1168
+ type: 'number',
1169
+ min: 0,
1170
+ max: 96,
1171
+ admin: {
1172
+ width: '25%'
1173
+ }
1174
+ }),
1175
+ fieldNumber({
1176
+ name: 'b',
1177
+ label: 'Bottom',
1178
+ type: 'number',
1179
+ min: 0,
1180
+ max: 96,
1181
+ admin: {
1182
+ width: '25%'
1183
+ }
1184
+ }),
1185
+ fieldNumber({
1186
+ name: 'l',
1187
+ label: 'Left',
1188
+ type: 'number',
1189
+ min: 0,
1190
+ max: 96,
1191
+ admin: {
1192
+ width: '25%'
1193
+ }
1194
+ }),
1195
+ ]
1196
+ }
1197
+ ],
1198
+ admin: {
1199
+ description: 'Definisce lo spazio esterno generale, orizzontale, verticale o per ciascun lato.',
1200
+ },
1201
+ };
1202
+ };
1203
+
1204
+ /**
1205
+ * Hook per concatenare le classi CSS di padding
1206
+ */
1207
+ const concatPaddingFields = (args) => {
1208
+ const { value, siblingData, operation, } = args;
1209
+ if (operation === 'create' || operation === 'update') {
1210
+ const paddings = siblingData || {};
1211
+ const { all, x, y, t, r, b, l } = paddings;
1212
+ const classes = [];
1213
+ if (all)
1214
+ classes.push(`p-${all}`);
1215
+ if (x)
1216
+ classes.push(`px-${x}`);
1217
+ if (y)
1218
+ classes.push(`py-${y}`);
1219
+ if (t)
1220
+ classes.push(`pt-${t}`);
1221
+ if (r)
1222
+ classes.push(`pr-${r}`);
1223
+ if (b)
1224
+ classes.push(`pb-${b}`);
1225
+ if (l)
1226
+ classes.push(`pl-${l}`);
1227
+ return classes.join(' ');
1228
+ }
1229
+ return value;
1230
+ };
1231
+ /**
1232
+ * Genera un campo per la selezione dinamica dei padding
1233
+ * @returns Field - Campo di tipo `group` per PayloadCMS
1234
+ */
1235
+ const fieldPaddings = () => {
1236
+ return {
1237
+ name: 'p',
1238
+ label: 'Padding',
1239
+ type: 'group',
1240
+ fields: [
1241
+ {
1242
+ name: 'className',
1243
+ label: 'Classi CSS Padding',
1244
+ type: 'text',
1245
+ hooks: {
1246
+ beforeChange: [concatPaddingFields],
1247
+ },
1248
+ admin: {
1249
+ readOnly: true,
1250
+ description: 'Questa stringa verrà generata automaticamente in base ai campi sottostanti.',
1251
+ },
1252
+ },
1253
+ {
1254
+ type: 'row',
1255
+ fields: [
1256
+ fieldNumber({
1257
+ name: 'all',
1258
+ label: 'Tutti i lati',
1259
+ type: 'number',
1260
+ min: 0,
1261
+ max: 96,
1262
+ admin: {
1263
+ width: '33%'
1264
+ }
1265
+ }),
1266
+ fieldNumber({
1267
+ name: 'x',
1268
+ label: 'Orizzontale',
1269
+ type: 'number',
1270
+ min: 0,
1271
+ max: 96,
1272
+ admin: {
1273
+ width: '33%'
1274
+ }
1275
+ }),
1276
+ fieldNumber({
1277
+ name: 'y',
1278
+ label: 'Verticale',
1279
+ type: 'number',
1280
+ min: 0,
1281
+ max: 96,
1282
+ admin: {
1283
+ width: '33%'
1284
+ }
1285
+ }),
1286
+ fieldNumber({
1287
+ name: 't',
1288
+ label: 'Top',
1289
+ type: 'number',
1290
+ min: 0,
1291
+ max: 96,
1292
+ admin: {
1293
+ width: '25%'
1294
+ }
1295
+ }),
1296
+ fieldNumber({
1297
+ name: 'r',
1298
+ label: 'Right',
1299
+ type: 'number',
1300
+ min: 0,
1301
+ max: 96,
1302
+ admin: {
1303
+ width: '25%'
1304
+ }
1305
+ }),
1306
+ fieldNumber({
1307
+ name: 'b',
1308
+ label: 'Bottom',
1309
+ type: 'number',
1310
+ min: 0,
1311
+ max: 96,
1312
+ admin: {
1313
+ width: '25%'
1314
+ }
1315
+ }),
1316
+ fieldNumber({
1317
+ name: 'l',
1318
+ label: 'Left',
1319
+ type: 'number',
1320
+ min: 0,
1321
+ max: 96,
1322
+ admin: {
1323
+ width: '25%'
1324
+ }
1325
+ }),
1326
+ ]
1327
+ }
1328
+ ],
1329
+ admin: {
1330
+ description: 'Definisce lo spazio interno generale, orizzontale, verticale o per ciascun lato.',
1331
+ },
1332
+ };
1333
+ };
1334
+
1335
+ // Esportazioni dalle cartelle principali
1336
+
170
1337
  var index = /*#__PURE__*/Object.freeze({
171
1338
  __proto__: null,
172
1339
  fieldArray: fieldArray,
173
1340
  fieldBlocks: fieldBlocks,
174
1341
  fieldCheckbox: fieldCheckbox,
175
1342
  fieldCode: fieldCode,
1343
+ fieldConfigProps: fieldConfigProps,
1344
+ fieldContainerProps: fieldContainerProps,
1345
+ fieldContainerWidths: fieldContainerWidths,
1346
+ fieldContentProps: fieldContentProps,
176
1347
  fieldDate: fieldDate,
177
1348
  fieldEmail: fieldEmail,
1349
+ fieldHeights: fieldHeights,
178
1350
  fieldJoin: fieldJoin,
1351
+ fieldMargins: fieldMargins,
179
1352
  fieldNumber: fieldNumber,
1353
+ fieldPaddings: fieldPaddings,
180
1354
  fieldPoint: fieldPoint,
181
1355
  fieldRadioGroup: fieldRadioGroup,
182
1356
  fieldRelationship: fieldRelationship,
183
1357
  fieldRichText: fieldRichText,
1358
+ fieldSectionProps: fieldSectionProps,
1359
+ fieldSectionTabs: fieldSectionTabs,
184
1360
  fieldSelect: fieldSelect,
185
- fieldSemantic: fieldSemantic,
186
1361
  fieldText: fieldText,
187
1362
  fieldTextArea: fieldTextArea,
188
1363
  fieldUpload: fieldUpload
@@ -192,18 +1367,27 @@ exports.fieldArray = fieldArray;
192
1367
  exports.fieldBlocks = fieldBlocks;
193
1368
  exports.fieldCheckbox = fieldCheckbox;
194
1369
  exports.fieldCode = fieldCode;
1370
+ exports.fieldConfigProps = fieldConfigProps;
1371
+ exports.fieldContainerProps = fieldContainerProps;
1372
+ exports.fieldContainerWidths = fieldContainerWidths;
1373
+ exports.fieldContentProps = fieldContentProps;
195
1374
  exports.fieldDate = fieldDate;
196
1375
  exports.fieldEmail = fieldEmail;
1376
+ exports.fieldHeights = fieldHeights;
197
1377
  exports.fieldJoin = fieldJoin;
1378
+ exports.fieldMargins = fieldMargins;
198
1379
  exports.fieldNumber = fieldNumber;
1380
+ exports.fieldPaddings = fieldPaddings;
199
1381
  exports.fieldPoint = fieldPoint;
200
1382
  exports.fieldRadioGroup = fieldRadioGroup;
201
1383
  exports.fieldRelationship = fieldRelationship;
202
1384
  exports.fieldRichText = fieldRichText;
1385
+ exports.fieldSectionProps = fieldSectionProps;
1386
+ exports.fieldSectionTabs = fieldSectionTabs;
203
1387
  exports.fieldSelect = fieldSelect;
204
- exports.fieldSemantic = fieldSemantic;
205
1388
  exports.fieldText = fieldText;
206
1389
  exports.fieldTextArea = fieldTextArea;
207
1390
  exports.fieldUpload = fieldUpload;
208
1391
  exports.index = index;
1392
+ exports.index$1 = index$1;
209
1393
  //# sourceMappingURL=index.cjs.js.map