@firecms/collection_editor 3.1.0 → 3.2.0-canary.44dc65b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist/index.es.js +6887 -3709
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/index.umd.js +6885 -3707
  4. package/dist/index.umd.js.map +1 -1
  5. package/dist/locales/de.d.ts +118 -0
  6. package/dist/locales/en.d.ts +118 -0
  7. package/dist/locales/es.d.ts +118 -0
  8. package/dist/locales/fr.d.ts +118 -0
  9. package/dist/locales/hi.d.ts +118 -0
  10. package/dist/locales/it.d.ts +118 -0
  11. package/dist/locales/pt.d.ts +118 -0
  12. package/package.json +8 -8
  13. package/src/locales/de.ts +123 -0
  14. package/src/locales/en.ts +143 -0
  15. package/src/locales/es.ts +123 -0
  16. package/src/locales/fr.ts +123 -0
  17. package/src/locales/hi.ts +123 -0
  18. package/src/locales/it.ts +123 -0
  19. package/src/locales/pt.ts +123 -0
  20. package/src/ui/EditorCollectionAction.tsx +3 -3
  21. package/src/ui/EditorEntityAction.tsx +3 -2
  22. package/src/ui/NewCollectionButton.tsx +3 -1
  23. package/src/ui/NewCollectionCard.tsx +7 -4
  24. package/src/ui/PropertyAddColumnComponent.tsx +3 -2
  25. package/src/ui/collection_editor/AICollectionGeneratorPopover.tsx +11 -10
  26. package/src/ui/collection_editor/CollectionDetailsForm.tsx +26 -24
  27. package/src/ui/collection_editor/CollectionEditorDialog.tsx +42 -38
  28. package/src/ui/collection_editor/CollectionEditorWelcomeView.tsx +19 -18
  29. package/src/ui/collection_editor/CollectionPropertiesEditorForm.tsx +12 -10
  30. package/src/ui/collection_editor/DisplaySettingsForm.tsx +19 -17
  31. package/src/ui/collection_editor/EntityActionsEditTab.tsx +11 -12
  32. package/src/ui/collection_editor/EntityActionsSelectDialog.tsx +5 -6
  33. package/src/ui/collection_editor/EntityCustomViewsSelectDialog.tsx +5 -5
  34. package/src/ui/collection_editor/EnumForm.tsx +6 -2
  35. package/src/ui/collection_editor/ExtendSettingsForm.tsx +8 -7
  36. package/src/ui/collection_editor/GeneralSettingsForm.tsx +36 -38
  37. package/src/ui/collection_editor/GetCodeDialog.tsx +13 -12
  38. package/src/ui/collection_editor/KanbanConfigSection.tsx +11 -9
  39. package/src/ui/collection_editor/LayoutModeSwitch.tsx +7 -4
  40. package/src/ui/collection_editor/PropertyEditView.tsx +74 -65
  41. package/src/ui/collection_editor/SubcollectionsEditTab.tsx +16 -19
  42. package/src/ui/collection_editor/ViewModeSwitch.tsx +8 -6
  43. package/src/ui/collection_editor/import/CollectionEditorImportDataPreview.tsx +6 -3
  44. package/src/ui/collection_editor/import/CollectionEditorImportMapping.tsx +5 -2
  45. package/src/ui/collection_editor/properties/BooleanPropertyField.tsx +3 -1
  46. package/src/ui/collection_editor/properties/CommonPropertyFields.tsx +6 -4
  47. package/src/ui/collection_editor/properties/DateTimePropertyField.tsx +20 -18
  48. package/src/ui/collection_editor/properties/EnumPropertyField.tsx +5 -4
  49. package/src/ui/collection_editor/properties/MapPropertyField.tsx +8 -7
  50. package/src/ui/collection_editor/properties/MarkdownPropertyField.tsx +22 -23
  51. package/src/ui/collection_editor/properties/NumberPropertyField.tsx +3 -1
  52. package/src/ui/collection_editor/properties/ReferencePropertyField.tsx +5 -4
  53. package/src/ui/collection_editor/properties/StoragePropertyField.tsx +46 -51
  54. package/src/ui/collection_editor/properties/StringPropertyField.tsx +3 -1
  55. package/src/ui/collection_editor/properties/UrlPropertyField.tsx +12 -10
  56. package/src/ui/collection_editor/properties/advanced/AdvancedPropertyValidation.tsx +7 -4
  57. package/src/ui/collection_editor/properties/conditions/ConditionsEditor.tsx +8 -3
  58. package/src/ui/collection_editor/properties/validation/ArrayPropertyValidation.tsx +5 -2
  59. package/src/ui/collection_editor/properties/validation/GeneralPropertyValidation.tsx +7 -5
  60. package/src/ui/collection_editor/properties/validation/NumberPropertyValidation.tsx +10 -7
  61. package/src/ui/collection_editor/properties/validation/StringPropertyValidation.tsx +11 -9
  62. package/src/ui/collection_editor/properties/validation/ValidationPanel.tsx +4 -1
  63. package/src/useCollectionEditorPlugin.tsx +22 -6
@@ -0,0 +1,118 @@
1
+ export declare const collectionEditorTranslationsDe: {
2
+ file_upload_config: string;
3
+ file_type_images: string;
4
+ file_type_videos: string;
5
+ file_type_audio: string;
6
+ file_type_applications: string;
7
+ file_type_text: string;
8
+ only: string;
9
+ all_file_types_allowed: string;
10
+ allowed_file_types: string;
11
+ file_name_label: string;
12
+ storage_path_label: string;
13
+ storage_placeholders_description: string;
14
+ storage_placeholder_file: string;
15
+ storage_placeholder_file_name: string;
16
+ storage_placeholder_file_ext: string;
17
+ storage_placeholder_entity_id: string;
18
+ storage_placeholder_property_key: string;
19
+ storage_placeholder_path: string;
20
+ storage_placeholder_rand: string;
21
+ include_bucket_url: string;
22
+ include_bucket_url_description: string;
23
+ save_url_instead_of_path: string;
24
+ save_url_description: string;
25
+ max_size_bytes: string;
26
+ image_resize_configuration: string;
27
+ image_resize_description: string;
28
+ max_width_px: string;
29
+ max_height_px: string;
30
+ resize_mode: string;
31
+ resize_contain: string;
32
+ resize_contain_description: string;
33
+ resize_cover: string;
34
+ resize_cover_description: string;
35
+ output_format: string;
36
+ format_original: string;
37
+ format_original_description: string;
38
+ format_webp_description: string;
39
+ quality_label: string;
40
+ quality_hint: string;
41
+ preview_type: string;
42
+ preview_image: string;
43
+ preview_video: string;
44
+ preview_audio: string;
45
+ display_url: string;
46
+ default_value_not_set: string;
47
+ default_value_is: string;
48
+ default_value_was_cleared: string;
49
+ enum_missing_values: string;
50
+ mode_label: string;
51
+ date_time_mode: string;
52
+ date_mode: string;
53
+ automatic_value: string;
54
+ auto_on_create: string;
55
+ auto_on_update: string;
56
+ auto_none: string;
57
+ auto_value_description: string;
58
+ timezone_label: string;
59
+ local_timezone: string;
60
+ timezone_description: string;
61
+ target_collection: string;
62
+ views_group: string;
63
+ add_property_to: string;
64
+ add_first_property_to_group: string;
65
+ spread_children_as_columns: string;
66
+ spread_children_description: string;
67
+ paste_behavior: string;
68
+ strip_html_on_paste: string;
69
+ strip_html_description: string;
70
+ convert_pasted_to_markdown: string;
71
+ convert_pasted_description: string;
72
+ markdown_url_note: string;
73
+ hide_from_collection: string;
74
+ hide_from_collection_tooltip: string;
75
+ read_only: string;
76
+ read_only_tooltip: string;
77
+ tab_general: string;
78
+ tab_display: string;
79
+ tab_properties: string;
80
+ tab_extend: string;
81
+ unsaved_changes_in_collection: string;
82
+ error_persisting_collection: string;
83
+ details_in_console: string;
84
+ error_inferring_collection: string;
85
+ collection_deleted: string;
86
+ data_imported_successfully_msg: string;
87
+ must_specify_path: string;
88
+ collection_path_already_exists: string;
89
+ collection_path_odd_segments: string;
90
+ collection_uses_path_as_id: string;
91
+ collection_uses_this_id: string;
92
+ delete_stored_config: string;
93
+ delete_stored_config_body: string;
94
+ order_label: string;
95
+ select_property_to_edit: string;
96
+ add_first_property: string;
97
+ add_new_property: string;
98
+ no_permission_add_properties: string;
99
+ get_code_for_collection: string;
100
+ add_properties_from_data: string;
101
+ collection_name_placeholder: string;
102
+ created_by: string;
103
+ property_defined_as_builder: string;
104
+ extend_title: string;
105
+ extend_description: string;
106
+ collection_defined_in_code: string;
107
+ reset_to_code: string;
108
+ widget_group_text: string;
109
+ widget_group_boolean: string;
110
+ widget_group_users: string;
111
+ widget_group_select: string;
112
+ widget_group_number: string;
113
+ widget_group_file: string;
114
+ widget_group_reference: string;
115
+ widget_group_date: string;
116
+ widget_group_group: string;
117
+ widget_group_array: string;
118
+ };
@@ -0,0 +1,118 @@
1
+ export declare const collectionEditorTranslationsEn: {
2
+ file_upload_config: string;
3
+ file_type_images: string;
4
+ file_type_videos: string;
5
+ file_type_audio: string;
6
+ file_type_applications: string;
7
+ file_type_text: string;
8
+ only: string;
9
+ all_file_types_allowed: string;
10
+ allowed_file_types: string;
11
+ file_name_label: string;
12
+ storage_path_label: string;
13
+ storage_placeholders_description: string;
14
+ storage_placeholder_file: string;
15
+ storage_placeholder_file_name: string;
16
+ storage_placeholder_file_ext: string;
17
+ storage_placeholder_entity_id: string;
18
+ storage_placeholder_property_key: string;
19
+ storage_placeholder_path: string;
20
+ storage_placeholder_rand: string;
21
+ include_bucket_url: string;
22
+ include_bucket_url_description: string;
23
+ save_url_instead_of_path: string;
24
+ save_url_description: string;
25
+ max_size_bytes: string;
26
+ image_resize_configuration: string;
27
+ image_resize_description: string;
28
+ max_width_px: string;
29
+ max_height_px: string;
30
+ resize_mode: string;
31
+ resize_contain: string;
32
+ resize_contain_description: string;
33
+ resize_cover: string;
34
+ resize_cover_description: string;
35
+ output_format: string;
36
+ format_original: string;
37
+ format_original_description: string;
38
+ format_webp_description: string;
39
+ quality_label: string;
40
+ quality_hint: string;
41
+ preview_type: string;
42
+ preview_image: string;
43
+ preview_video: string;
44
+ preview_audio: string;
45
+ display_url: string;
46
+ default_value_not_set: string;
47
+ default_value_is: string;
48
+ default_value_was_cleared: string;
49
+ enum_missing_values: string;
50
+ mode_label: string;
51
+ date_time_mode: string;
52
+ date_mode: string;
53
+ automatic_value: string;
54
+ auto_on_create: string;
55
+ auto_on_update: string;
56
+ auto_none: string;
57
+ auto_value_description: string;
58
+ timezone_label: string;
59
+ local_timezone: string;
60
+ timezone_description: string;
61
+ target_collection: string;
62
+ views_group: string;
63
+ add_property_to: string;
64
+ add_first_property_to_group: string;
65
+ spread_children_as_columns: string;
66
+ spread_children_description: string;
67
+ paste_behavior: string;
68
+ strip_html_on_paste: string;
69
+ strip_html_description: string;
70
+ convert_pasted_to_markdown: string;
71
+ convert_pasted_description: string;
72
+ markdown_url_note: string;
73
+ hide_from_collection: string;
74
+ hide_from_collection_tooltip: string;
75
+ read_only: string;
76
+ read_only_tooltip: string;
77
+ tab_general: string;
78
+ tab_display: string;
79
+ tab_properties: string;
80
+ tab_extend: string;
81
+ unsaved_changes_in_collection: string;
82
+ error_persisting_collection: string;
83
+ details_in_console: string;
84
+ error_inferring_collection: string;
85
+ collection_deleted: string;
86
+ data_imported_successfully_msg: string;
87
+ must_specify_path: string;
88
+ collection_path_already_exists: string;
89
+ collection_path_odd_segments: string;
90
+ collection_uses_path_as_id: string;
91
+ collection_uses_this_id: string;
92
+ delete_stored_config: string;
93
+ delete_stored_config_body: string;
94
+ order_label: string;
95
+ select_property_to_edit: string;
96
+ add_first_property: string;
97
+ add_new_property: string;
98
+ no_permission_add_properties: string;
99
+ get_code_for_collection: string;
100
+ add_properties_from_data: string;
101
+ collection_name_placeholder: string;
102
+ created_by: string;
103
+ property_defined_as_builder: string;
104
+ extend_title: string;
105
+ extend_description: string;
106
+ collection_defined_in_code: string;
107
+ reset_to_code: string;
108
+ widget_group_text: string;
109
+ widget_group_boolean: string;
110
+ widget_group_users: string;
111
+ widget_group_select: string;
112
+ widget_group_number: string;
113
+ widget_group_file: string;
114
+ widget_group_reference: string;
115
+ widget_group_date: string;
116
+ widget_group_group: string;
117
+ widget_group_array: string;
118
+ };
@@ -0,0 +1,118 @@
1
+ export declare const collectionEditorTranslationsEs: {
2
+ file_upload_config: string;
3
+ file_type_images: string;
4
+ file_type_videos: string;
5
+ file_type_audio: string;
6
+ file_type_applications: string;
7
+ file_type_text: string;
8
+ only: string;
9
+ all_file_types_allowed: string;
10
+ allowed_file_types: string;
11
+ file_name_label: string;
12
+ storage_path_label: string;
13
+ storage_placeholders_description: string;
14
+ storage_placeholder_file: string;
15
+ storage_placeholder_file_name: string;
16
+ storage_placeholder_file_ext: string;
17
+ storage_placeholder_entity_id: string;
18
+ storage_placeholder_property_key: string;
19
+ storage_placeholder_path: string;
20
+ storage_placeholder_rand: string;
21
+ include_bucket_url: string;
22
+ include_bucket_url_description: string;
23
+ save_url_instead_of_path: string;
24
+ save_url_description: string;
25
+ max_size_bytes: string;
26
+ image_resize_configuration: string;
27
+ image_resize_description: string;
28
+ max_width_px: string;
29
+ max_height_px: string;
30
+ resize_mode: string;
31
+ resize_contain: string;
32
+ resize_contain_description: string;
33
+ resize_cover: string;
34
+ resize_cover_description: string;
35
+ output_format: string;
36
+ format_original: string;
37
+ format_original_description: string;
38
+ format_webp_description: string;
39
+ quality_label: string;
40
+ quality_hint: string;
41
+ preview_type: string;
42
+ preview_image: string;
43
+ preview_video: string;
44
+ preview_audio: string;
45
+ display_url: string;
46
+ default_value_not_set: string;
47
+ default_value_is: string;
48
+ default_value_was_cleared: string;
49
+ enum_missing_values: string;
50
+ mode_label: string;
51
+ date_time_mode: string;
52
+ date_mode: string;
53
+ automatic_value: string;
54
+ auto_on_create: string;
55
+ auto_on_update: string;
56
+ auto_none: string;
57
+ auto_value_description: string;
58
+ timezone_label: string;
59
+ local_timezone: string;
60
+ timezone_description: string;
61
+ target_collection: string;
62
+ views_group: string;
63
+ add_property_to: string;
64
+ add_first_property_to_group: string;
65
+ spread_children_as_columns: string;
66
+ spread_children_description: string;
67
+ paste_behavior: string;
68
+ strip_html_on_paste: string;
69
+ strip_html_description: string;
70
+ convert_pasted_to_markdown: string;
71
+ convert_pasted_description: string;
72
+ markdown_url_note: string;
73
+ hide_from_collection: string;
74
+ hide_from_collection_tooltip: string;
75
+ read_only: string;
76
+ read_only_tooltip: string;
77
+ tab_general: string;
78
+ tab_display: string;
79
+ tab_properties: string;
80
+ tab_extend: string;
81
+ unsaved_changes_in_collection: string;
82
+ error_persisting_collection: string;
83
+ details_in_console: string;
84
+ error_inferring_collection: string;
85
+ collection_deleted: string;
86
+ data_imported_successfully_msg: string;
87
+ must_specify_path: string;
88
+ collection_path_already_exists: string;
89
+ collection_path_odd_segments: string;
90
+ collection_uses_path_as_id: string;
91
+ collection_uses_this_id: string;
92
+ delete_stored_config: string;
93
+ delete_stored_config_body: string;
94
+ order_label: string;
95
+ select_property_to_edit: string;
96
+ add_first_property: string;
97
+ add_new_property: string;
98
+ no_permission_add_properties: string;
99
+ get_code_for_collection: string;
100
+ add_properties_from_data: string;
101
+ collection_name_placeholder: string;
102
+ created_by: string;
103
+ property_defined_as_builder: string;
104
+ extend_title: string;
105
+ extend_description: string;
106
+ collection_defined_in_code: string;
107
+ reset_to_code: string;
108
+ widget_group_text: string;
109
+ widget_group_boolean: string;
110
+ widget_group_users: string;
111
+ widget_group_select: string;
112
+ widget_group_number: string;
113
+ widget_group_file: string;
114
+ widget_group_reference: string;
115
+ widget_group_date: string;
116
+ widget_group_group: string;
117
+ widget_group_array: string;
118
+ };
@@ -0,0 +1,118 @@
1
+ export declare const collectionEditorTranslationsFr: {
2
+ file_upload_config: string;
3
+ file_type_images: string;
4
+ file_type_videos: string;
5
+ file_type_audio: string;
6
+ file_type_applications: string;
7
+ file_type_text: string;
8
+ only: string;
9
+ all_file_types_allowed: string;
10
+ allowed_file_types: string;
11
+ file_name_label: string;
12
+ storage_path_label: string;
13
+ storage_placeholders_description: string;
14
+ storage_placeholder_file: string;
15
+ storage_placeholder_file_name: string;
16
+ storage_placeholder_file_ext: string;
17
+ storage_placeholder_entity_id: string;
18
+ storage_placeholder_property_key: string;
19
+ storage_placeholder_path: string;
20
+ storage_placeholder_rand: string;
21
+ include_bucket_url: string;
22
+ include_bucket_url_description: string;
23
+ save_url_instead_of_path: string;
24
+ save_url_description: string;
25
+ max_size_bytes: string;
26
+ image_resize_configuration: string;
27
+ image_resize_description: string;
28
+ max_width_px: string;
29
+ max_height_px: string;
30
+ resize_mode: string;
31
+ resize_contain: string;
32
+ resize_contain_description: string;
33
+ resize_cover: string;
34
+ resize_cover_description: string;
35
+ output_format: string;
36
+ format_original: string;
37
+ format_original_description: string;
38
+ format_webp_description: string;
39
+ quality_label: string;
40
+ quality_hint: string;
41
+ preview_type: string;
42
+ preview_image: string;
43
+ preview_video: string;
44
+ preview_audio: string;
45
+ display_url: string;
46
+ default_value_not_set: string;
47
+ default_value_is: string;
48
+ default_value_was_cleared: string;
49
+ enum_missing_values: string;
50
+ mode_label: string;
51
+ date_time_mode: string;
52
+ date_mode: string;
53
+ automatic_value: string;
54
+ auto_on_create: string;
55
+ auto_on_update: string;
56
+ auto_none: string;
57
+ auto_value_description: string;
58
+ timezone_label: string;
59
+ local_timezone: string;
60
+ timezone_description: string;
61
+ target_collection: string;
62
+ views_group: string;
63
+ add_property_to: string;
64
+ add_first_property_to_group: string;
65
+ spread_children_as_columns: string;
66
+ spread_children_description: string;
67
+ paste_behavior: string;
68
+ strip_html_on_paste: string;
69
+ strip_html_description: string;
70
+ convert_pasted_to_markdown: string;
71
+ convert_pasted_description: string;
72
+ markdown_url_note: string;
73
+ hide_from_collection: string;
74
+ hide_from_collection_tooltip: string;
75
+ read_only: string;
76
+ read_only_tooltip: string;
77
+ tab_general: string;
78
+ tab_display: string;
79
+ tab_properties: string;
80
+ tab_extend: string;
81
+ unsaved_changes_in_collection: string;
82
+ error_persisting_collection: string;
83
+ details_in_console: string;
84
+ error_inferring_collection: string;
85
+ collection_deleted: string;
86
+ data_imported_successfully_msg: string;
87
+ must_specify_path: string;
88
+ collection_path_already_exists: string;
89
+ collection_path_odd_segments: string;
90
+ collection_uses_path_as_id: string;
91
+ collection_uses_this_id: string;
92
+ delete_stored_config: string;
93
+ delete_stored_config_body: string;
94
+ order_label: string;
95
+ select_property_to_edit: string;
96
+ add_first_property: string;
97
+ add_new_property: string;
98
+ no_permission_add_properties: string;
99
+ get_code_for_collection: string;
100
+ add_properties_from_data: string;
101
+ collection_name_placeholder: string;
102
+ created_by: string;
103
+ property_defined_as_builder: string;
104
+ extend_title: string;
105
+ extend_description: string;
106
+ collection_defined_in_code: string;
107
+ reset_to_code: string;
108
+ widget_group_text: string;
109
+ widget_group_boolean: string;
110
+ widget_group_users: string;
111
+ widget_group_select: string;
112
+ widget_group_number: string;
113
+ widget_group_file: string;
114
+ widget_group_reference: string;
115
+ widget_group_date: string;
116
+ widget_group_group: string;
117
+ widget_group_array: string;
118
+ };
@@ -0,0 +1,118 @@
1
+ export declare const collectionEditorTranslationsHi: {
2
+ file_upload_config: string;
3
+ file_type_images: string;
4
+ file_type_videos: string;
5
+ file_type_audio: string;
6
+ file_type_applications: string;
7
+ file_type_text: string;
8
+ only: string;
9
+ all_file_types_allowed: string;
10
+ allowed_file_types: string;
11
+ file_name_label: string;
12
+ storage_path_label: string;
13
+ storage_placeholders_description: string;
14
+ storage_placeholder_file: string;
15
+ storage_placeholder_file_name: string;
16
+ storage_placeholder_file_ext: string;
17
+ storage_placeholder_entity_id: string;
18
+ storage_placeholder_property_key: string;
19
+ storage_placeholder_path: string;
20
+ storage_placeholder_rand: string;
21
+ include_bucket_url: string;
22
+ include_bucket_url_description: string;
23
+ save_url_instead_of_path: string;
24
+ save_url_description: string;
25
+ max_size_bytes: string;
26
+ image_resize_configuration: string;
27
+ image_resize_description: string;
28
+ max_width_px: string;
29
+ max_height_px: string;
30
+ resize_mode: string;
31
+ resize_contain: string;
32
+ resize_contain_description: string;
33
+ resize_cover: string;
34
+ resize_cover_description: string;
35
+ output_format: string;
36
+ format_original: string;
37
+ format_original_description: string;
38
+ format_webp_description: string;
39
+ quality_label: string;
40
+ quality_hint: string;
41
+ preview_type: string;
42
+ preview_image: string;
43
+ preview_video: string;
44
+ preview_audio: string;
45
+ display_url: string;
46
+ default_value_not_set: string;
47
+ default_value_is: string;
48
+ default_value_was_cleared: string;
49
+ enum_missing_values: string;
50
+ mode_label: string;
51
+ date_time_mode: string;
52
+ date_mode: string;
53
+ automatic_value: string;
54
+ auto_on_create: string;
55
+ auto_on_update: string;
56
+ auto_none: string;
57
+ auto_value_description: string;
58
+ timezone_label: string;
59
+ local_timezone: string;
60
+ timezone_description: string;
61
+ target_collection: string;
62
+ views_group: string;
63
+ add_property_to: string;
64
+ add_first_property_to_group: string;
65
+ spread_children_as_columns: string;
66
+ spread_children_description: string;
67
+ paste_behavior: string;
68
+ strip_html_on_paste: string;
69
+ strip_html_description: string;
70
+ convert_pasted_to_markdown: string;
71
+ convert_pasted_description: string;
72
+ markdown_url_note: string;
73
+ hide_from_collection: string;
74
+ hide_from_collection_tooltip: string;
75
+ read_only: string;
76
+ read_only_tooltip: string;
77
+ tab_general: string;
78
+ tab_display: string;
79
+ tab_properties: string;
80
+ tab_extend: string;
81
+ unsaved_changes_in_collection: string;
82
+ error_persisting_collection: string;
83
+ details_in_console: string;
84
+ error_inferring_collection: string;
85
+ collection_deleted: string;
86
+ data_imported_successfully_msg: string;
87
+ must_specify_path: string;
88
+ collection_path_already_exists: string;
89
+ collection_path_odd_segments: string;
90
+ collection_uses_path_as_id: string;
91
+ collection_uses_this_id: string;
92
+ delete_stored_config: string;
93
+ delete_stored_config_body: string;
94
+ order_label: string;
95
+ select_property_to_edit: string;
96
+ add_first_property: string;
97
+ add_new_property: string;
98
+ no_permission_add_properties: string;
99
+ get_code_for_collection: string;
100
+ add_properties_from_data: string;
101
+ collection_name_placeholder: string;
102
+ created_by: string;
103
+ property_defined_as_builder: string;
104
+ extend_title: string;
105
+ extend_description: string;
106
+ collection_defined_in_code: string;
107
+ reset_to_code: string;
108
+ widget_group_text: string;
109
+ widget_group_boolean: string;
110
+ widget_group_users: string;
111
+ widget_group_select: string;
112
+ widget_group_number: string;
113
+ widget_group_file: string;
114
+ widget_group_reference: string;
115
+ widget_group_date: string;
116
+ widget_group_group: string;
117
+ widget_group_array: string;
118
+ };
@@ -0,0 +1,118 @@
1
+ export declare const collectionEditorTranslationsIt: {
2
+ file_upload_config: string;
3
+ file_type_images: string;
4
+ file_type_videos: string;
5
+ file_type_audio: string;
6
+ file_type_applications: string;
7
+ file_type_text: string;
8
+ only: string;
9
+ all_file_types_allowed: string;
10
+ allowed_file_types: string;
11
+ file_name_label: string;
12
+ storage_path_label: string;
13
+ storage_placeholders_description: string;
14
+ storage_placeholder_file: string;
15
+ storage_placeholder_file_name: string;
16
+ storage_placeholder_file_ext: string;
17
+ storage_placeholder_entity_id: string;
18
+ storage_placeholder_property_key: string;
19
+ storage_placeholder_path: string;
20
+ storage_placeholder_rand: string;
21
+ include_bucket_url: string;
22
+ include_bucket_url_description: string;
23
+ save_url_instead_of_path: string;
24
+ save_url_description: string;
25
+ max_size_bytes: string;
26
+ image_resize_configuration: string;
27
+ image_resize_description: string;
28
+ max_width_px: string;
29
+ max_height_px: string;
30
+ resize_mode: string;
31
+ resize_contain: string;
32
+ resize_contain_description: string;
33
+ resize_cover: string;
34
+ resize_cover_description: string;
35
+ output_format: string;
36
+ format_original: string;
37
+ format_original_description: string;
38
+ format_webp_description: string;
39
+ quality_label: string;
40
+ quality_hint: string;
41
+ preview_type: string;
42
+ preview_image: string;
43
+ preview_video: string;
44
+ preview_audio: string;
45
+ display_url: string;
46
+ default_value_not_set: string;
47
+ default_value_is: string;
48
+ default_value_was_cleared: string;
49
+ enum_missing_values: string;
50
+ mode_label: string;
51
+ date_time_mode: string;
52
+ date_mode: string;
53
+ automatic_value: string;
54
+ auto_on_create: string;
55
+ auto_on_update: string;
56
+ auto_none: string;
57
+ auto_value_description: string;
58
+ timezone_label: string;
59
+ local_timezone: string;
60
+ timezone_description: string;
61
+ target_collection: string;
62
+ views_group: string;
63
+ add_property_to: string;
64
+ add_first_property_to_group: string;
65
+ spread_children_as_columns: string;
66
+ spread_children_description: string;
67
+ paste_behavior: string;
68
+ strip_html_on_paste: string;
69
+ strip_html_description: string;
70
+ convert_pasted_to_markdown: string;
71
+ convert_pasted_description: string;
72
+ markdown_url_note: string;
73
+ hide_from_collection: string;
74
+ hide_from_collection_tooltip: string;
75
+ read_only: string;
76
+ read_only_tooltip: string;
77
+ tab_general: string;
78
+ tab_display: string;
79
+ tab_properties: string;
80
+ tab_extend: string;
81
+ unsaved_changes_in_collection: string;
82
+ error_persisting_collection: string;
83
+ details_in_console: string;
84
+ error_inferring_collection: string;
85
+ collection_deleted: string;
86
+ data_imported_successfully_msg: string;
87
+ must_specify_path: string;
88
+ collection_path_already_exists: string;
89
+ collection_path_odd_segments: string;
90
+ collection_uses_path_as_id: string;
91
+ collection_uses_this_id: string;
92
+ delete_stored_config: string;
93
+ delete_stored_config_body: string;
94
+ order_label: string;
95
+ select_property_to_edit: string;
96
+ add_first_property: string;
97
+ add_new_property: string;
98
+ no_permission_add_properties: string;
99
+ get_code_for_collection: string;
100
+ add_properties_from_data: string;
101
+ collection_name_placeholder: string;
102
+ created_by: string;
103
+ property_defined_as_builder: string;
104
+ extend_title: string;
105
+ extend_description: string;
106
+ collection_defined_in_code: string;
107
+ reset_to_code: string;
108
+ widget_group_text: string;
109
+ widget_group_boolean: string;
110
+ widget_group_users: string;
111
+ widget_group_select: string;
112
+ widget_group_number: string;
113
+ widget_group_file: string;
114
+ widget_group_reference: string;
115
+ widget_group_date: string;
116
+ widget_group_group: string;
117
+ widget_group_array: string;
118
+ };