@firecms/collection_editor 3.0.0 → 3.1.0-canary.02232f4

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 (119) hide show
  1. package/dist/ConfigControllerProvider.d.ts +6 -0
  2. package/dist/api/generateCollectionApi.d.ts +71 -0
  3. package/dist/api/index.d.ts +1 -0
  4. package/dist/index.d.ts +5 -1
  5. package/dist/index.es.js +15234 -8138
  6. package/dist/index.es.js.map +1 -1
  7. package/dist/index.umd.js +15199 -8103
  8. package/dist/index.umd.js.map +1 -1
  9. package/dist/locales/de.d.ts +120 -0
  10. package/dist/locales/en.d.ts +120 -0
  11. package/dist/locales/es.d.ts +120 -0
  12. package/dist/locales/fr.d.ts +120 -0
  13. package/dist/locales/hi.d.ts +120 -0
  14. package/dist/locales/it.d.ts +120 -0
  15. package/dist/locales/pt.d.ts +120 -0
  16. package/dist/types/collection_editor_controller.d.ts +14 -0
  17. package/dist/types/collection_inference.d.ts +8 -2
  18. package/dist/types/config_controller.d.ts +31 -1
  19. package/dist/ui/AddKanbanColumnAction.d.ts +11 -0
  20. package/dist/ui/KanbanSetupAction.d.ts +10 -0
  21. package/dist/ui/collection_editor/AICollectionGeneratorPopover.d.ts +37 -0
  22. package/dist/ui/collection_editor/AIModifiedPathsContext.d.ts +20 -0
  23. package/dist/ui/collection_editor/CollectionDetailsForm.d.ts +2 -3
  24. package/dist/ui/collection_editor/CollectionEditorDialog.d.ts +24 -0
  25. package/dist/ui/collection_editor/CollectionEditorWelcomeView.d.ts +4 -1
  26. package/dist/ui/collection_editor/CollectionJsonImportDialog.d.ts +7 -0
  27. package/dist/ui/collection_editor/CollectionYupValidation.d.ts +9 -13
  28. package/dist/ui/collection_editor/DisplaySettingsForm.d.ts +3 -0
  29. package/dist/ui/collection_editor/EntityActionsEditTab.d.ts +2 -1
  30. package/dist/ui/collection_editor/ExtendSettingsForm.d.ts +14 -0
  31. package/dist/ui/collection_editor/GeneralSettingsForm.d.ts +7 -0
  32. package/dist/ui/collection_editor/KanbanConfigSection.d.ts +4 -0
  33. package/dist/ui/collection_editor/PropertyEditView.d.ts +6 -1
  34. package/dist/ui/collection_editor/PropertyTree.d.ts +2 -1
  35. package/dist/ui/collection_editor/SubcollectionsEditTab.d.ts +2 -1
  36. package/dist/ui/collection_editor/ViewModeSwitch.d.ts +6 -0
  37. package/dist/ui/collection_editor/properties/EnumPropertyField.d.ts +2 -1
  38. package/dist/ui/collection_editor/properties/conditions/ConditionsEditor.d.ts +10 -0
  39. package/dist/ui/collection_editor/properties/conditions/ConditionsPanel.d.ts +2 -0
  40. package/dist/ui/collection_editor/properties/conditions/EnumConditionsEditor.d.ts +6 -0
  41. package/dist/ui/collection_editor/properties/conditions/index.d.ts +6 -0
  42. package/dist/ui/collection_editor/properties/conditions/property_paths.d.ts +19 -0
  43. package/dist/useCollectionEditorPlugin.d.ts +7 -1
  44. package/dist/utils/validateCollectionJson.d.ts +22 -0
  45. package/package.json +15 -15
  46. package/src/ConfigControllerProvider.tsx +82 -47
  47. package/src/api/generateCollectionApi.ts +119 -0
  48. package/src/api/index.ts +1 -0
  49. package/src/index.ts +28 -1
  50. package/src/locales/de.ts +125 -0
  51. package/src/locales/en.ts +145 -0
  52. package/src/locales/es.ts +125 -0
  53. package/src/locales/fr.ts +125 -0
  54. package/src/locales/hi.ts +125 -0
  55. package/src/locales/it.ts +125 -0
  56. package/src/locales/pt.ts +125 -0
  57. package/src/types/collection_editor_controller.tsx +16 -3
  58. package/src/types/collection_inference.ts +15 -2
  59. package/src/types/config_controller.tsx +37 -1
  60. package/src/ui/AddKanbanColumnAction.tsx +203 -0
  61. package/src/ui/EditorCollectionAction.tsx +3 -3
  62. package/src/ui/EditorCollectionActionStart.tsx +1 -2
  63. package/src/ui/EditorEntityAction.tsx +3 -2
  64. package/src/ui/HomePageEditorCollectionAction.tsx +41 -13
  65. package/src/ui/KanbanSetupAction.tsx +38 -0
  66. package/src/ui/MissingReferenceWidget.tsx +1 -1
  67. package/src/ui/NewCollectionButton.tsx +4 -2
  68. package/src/ui/NewCollectionCard.tsx +7 -4
  69. package/src/ui/PropertyAddColumnComponent.tsx +4 -3
  70. package/src/ui/collection_editor/AICollectionGeneratorPopover.tsx +243 -0
  71. package/src/ui/collection_editor/AIModifiedPathsContext.tsx +88 -0
  72. package/src/ui/collection_editor/CollectionDetailsForm.tsx +222 -268
  73. package/src/ui/collection_editor/CollectionEditorDialog.tsx +270 -204
  74. package/src/ui/collection_editor/CollectionEditorWelcomeView.tsx +138 -71
  75. package/src/ui/collection_editor/CollectionJsonImportDialog.tsx +171 -0
  76. package/src/ui/collection_editor/CollectionPropertiesEditorForm.tsx +202 -101
  77. package/src/ui/collection_editor/DisplaySettingsForm.tsx +335 -0
  78. package/src/ui/collection_editor/EntityActionsEditTab.tsx +106 -97
  79. package/src/ui/collection_editor/EntityActionsSelectDialog.tsx +8 -10
  80. package/src/ui/collection_editor/EntityCustomViewsSelectDialog.tsx +5 -7
  81. package/src/ui/collection_editor/EnumForm.tsx +153 -102
  82. package/src/ui/collection_editor/ExtendSettingsForm.tsx +94 -0
  83. package/src/ui/collection_editor/GeneralSettingsForm.tsx +335 -0
  84. package/src/ui/collection_editor/GetCodeDialog.tsx +63 -41
  85. package/src/ui/collection_editor/KanbanConfigSection.tsx +209 -0
  86. package/src/ui/collection_editor/LayoutModeSwitch.tsx +27 -43
  87. package/src/ui/collection_editor/PropertyEditView.tsx +272 -199
  88. package/src/ui/collection_editor/PropertyFieldPreview.tsx +1 -1
  89. package/src/ui/collection_editor/PropertyTree.tsx +130 -58
  90. package/src/ui/collection_editor/SubcollectionsEditTab.tsx +169 -163
  91. package/src/ui/collection_editor/UnsavedChangesDialog.tsx +0 -2
  92. package/src/ui/collection_editor/ViewModeSwitch.tsx +43 -0
  93. package/src/ui/collection_editor/import/CollectionEditorImportDataPreview.tsx +6 -3
  94. package/src/ui/collection_editor/import/CollectionEditorImportMapping.tsx +5 -2
  95. package/src/ui/collection_editor/properties/BlockPropertyField.tsx +0 -2
  96. package/src/ui/collection_editor/properties/BooleanPropertyField.tsx +4 -1
  97. package/src/ui/collection_editor/properties/CommonPropertyFields.tsx +6 -4
  98. package/src/ui/collection_editor/properties/DateTimePropertyField.tsx +126 -42
  99. package/src/ui/collection_editor/properties/EnumPropertyField.tsx +32 -24
  100. package/src/ui/collection_editor/properties/MapPropertyField.tsx +8 -9
  101. package/src/ui/collection_editor/properties/MarkdownPropertyField.tsx +128 -53
  102. package/src/ui/collection_editor/properties/NumberPropertyField.tsx +3 -1
  103. package/src/ui/collection_editor/properties/ReferencePropertyField.tsx +6 -9
  104. package/src/ui/collection_editor/properties/StoragePropertyField.tsx +65 -49
  105. package/src/ui/collection_editor/properties/StringPropertyField.tsx +3 -1
  106. package/src/ui/collection_editor/properties/UrlPropertyField.tsx +12 -10
  107. package/src/ui/collection_editor/properties/advanced/AdvancedPropertyValidation.tsx +23 -4
  108. package/src/ui/collection_editor/properties/conditions/ConditionsEditor.tsx +866 -0
  109. package/src/ui/collection_editor/properties/conditions/ConditionsPanel.tsx +28 -0
  110. package/src/ui/collection_editor/properties/conditions/EnumConditionsEditor.tsx +599 -0
  111. package/src/ui/collection_editor/properties/conditions/index.ts +6 -0
  112. package/src/ui/collection_editor/properties/conditions/property_paths.ts +92 -0
  113. package/src/ui/collection_editor/properties/validation/ArrayPropertyValidation.tsx +5 -2
  114. package/src/ui/collection_editor/properties/validation/GeneralPropertyValidation.tsx +7 -5
  115. package/src/ui/collection_editor/properties/validation/NumberPropertyValidation.tsx +10 -7
  116. package/src/ui/collection_editor/properties/validation/StringPropertyValidation.tsx +11 -9
  117. package/src/ui/collection_editor/properties/validation/ValidationPanel.tsx +5 -2
  118. package/src/useCollectionEditorPlugin.tsx +53 -22
  119. package/src/utils/validateCollectionJson.ts +380 -0
@@ -0,0 +1,120 @@
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
+ nullable: string;
78
+ nullable_tooltip: string;
79
+ tab_general: string;
80
+ tab_display: string;
81
+ tab_properties: string;
82
+ tab_extend: string;
83
+ unsaved_changes_in_collection: string;
84
+ error_persisting_collection: string;
85
+ details_in_console: string;
86
+ error_inferring_collection: string;
87
+ collection_deleted: string;
88
+ data_imported_successfully_msg: string;
89
+ must_specify_path: string;
90
+ collection_path_already_exists: string;
91
+ collection_path_odd_segments: string;
92
+ collection_uses_path_as_id: string;
93
+ collection_uses_this_id: string;
94
+ delete_stored_config: string;
95
+ delete_stored_config_body: string;
96
+ order_label: string;
97
+ select_property_to_edit: string;
98
+ add_first_property: string;
99
+ add_new_property: string;
100
+ no_permission_add_properties: string;
101
+ get_code_for_collection: string;
102
+ add_properties_from_data: string;
103
+ collection_name_placeholder: string;
104
+ created_by: string;
105
+ property_defined_as_builder: string;
106
+ extend_title: string;
107
+ extend_description: string;
108
+ collection_defined_in_code: string;
109
+ reset_to_code: string;
110
+ widget_group_text: string;
111
+ widget_group_boolean: string;
112
+ widget_group_users: string;
113
+ widget_group_select: string;
114
+ widget_group_number: string;
115
+ widget_group_file: string;
116
+ widget_group_reference: string;
117
+ widget_group_date: string;
118
+ widget_group_group: string;
119
+ widget_group_array: string;
120
+ };
@@ -0,0 +1,120 @@
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
+ nullable: string;
78
+ nullable_tooltip: string;
79
+ tab_general: string;
80
+ tab_display: string;
81
+ tab_properties: string;
82
+ tab_extend: string;
83
+ unsaved_changes_in_collection: string;
84
+ error_persisting_collection: string;
85
+ details_in_console: string;
86
+ error_inferring_collection: string;
87
+ collection_deleted: string;
88
+ data_imported_successfully_msg: string;
89
+ must_specify_path: string;
90
+ collection_path_already_exists: string;
91
+ collection_path_odd_segments: string;
92
+ collection_uses_path_as_id: string;
93
+ collection_uses_this_id: string;
94
+ delete_stored_config: string;
95
+ delete_stored_config_body: string;
96
+ order_label: string;
97
+ select_property_to_edit: string;
98
+ add_first_property: string;
99
+ add_new_property: string;
100
+ no_permission_add_properties: string;
101
+ get_code_for_collection: string;
102
+ add_properties_from_data: string;
103
+ collection_name_placeholder: string;
104
+ created_by: string;
105
+ property_defined_as_builder: string;
106
+ extend_title: string;
107
+ extend_description: string;
108
+ collection_defined_in_code: string;
109
+ reset_to_code: string;
110
+ widget_group_text: string;
111
+ widget_group_boolean: string;
112
+ widget_group_users: string;
113
+ widget_group_select: string;
114
+ widget_group_number: string;
115
+ widget_group_file: string;
116
+ widget_group_reference: string;
117
+ widget_group_date: string;
118
+ widget_group_group: string;
119
+ widget_group_array: string;
120
+ };
@@ -0,0 +1,120 @@
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
+ nullable: string;
78
+ nullable_tooltip: string;
79
+ tab_general: string;
80
+ tab_display: string;
81
+ tab_properties: string;
82
+ tab_extend: string;
83
+ unsaved_changes_in_collection: string;
84
+ error_persisting_collection: string;
85
+ details_in_console: string;
86
+ error_inferring_collection: string;
87
+ collection_deleted: string;
88
+ data_imported_successfully_msg: string;
89
+ must_specify_path: string;
90
+ collection_path_already_exists: string;
91
+ collection_path_odd_segments: string;
92
+ collection_uses_path_as_id: string;
93
+ collection_uses_this_id: string;
94
+ delete_stored_config: string;
95
+ delete_stored_config_body: string;
96
+ order_label: string;
97
+ select_property_to_edit: string;
98
+ add_first_property: string;
99
+ add_new_property: string;
100
+ no_permission_add_properties: string;
101
+ get_code_for_collection: string;
102
+ add_properties_from_data: string;
103
+ collection_name_placeholder: string;
104
+ created_by: string;
105
+ property_defined_as_builder: string;
106
+ extend_title: string;
107
+ extend_description: string;
108
+ collection_defined_in_code: string;
109
+ reset_to_code: string;
110
+ widget_group_text: string;
111
+ widget_group_boolean: string;
112
+ widget_group_users: string;
113
+ widget_group_select: string;
114
+ widget_group_number: string;
115
+ widget_group_file: string;
116
+ widget_group_reference: string;
117
+ widget_group_date: string;
118
+ widget_group_group: string;
119
+ widget_group_array: string;
120
+ };
@@ -0,0 +1,120 @@
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
+ nullable: string;
78
+ nullable_tooltip: string;
79
+ tab_general: string;
80
+ tab_display: string;
81
+ tab_properties: string;
82
+ tab_extend: string;
83
+ unsaved_changes_in_collection: string;
84
+ error_persisting_collection: string;
85
+ details_in_console: string;
86
+ error_inferring_collection: string;
87
+ collection_deleted: string;
88
+ data_imported_successfully_msg: string;
89
+ must_specify_path: string;
90
+ collection_path_already_exists: string;
91
+ collection_path_odd_segments: string;
92
+ collection_uses_path_as_id: string;
93
+ collection_uses_this_id: string;
94
+ delete_stored_config: string;
95
+ delete_stored_config_body: string;
96
+ order_label: string;
97
+ select_property_to_edit: string;
98
+ add_first_property: string;
99
+ add_new_property: string;
100
+ no_permission_add_properties: string;
101
+ get_code_for_collection: string;
102
+ add_properties_from_data: string;
103
+ collection_name_placeholder: string;
104
+ created_by: string;
105
+ property_defined_as_builder: string;
106
+ extend_title: string;
107
+ extend_description: string;
108
+ collection_defined_in_code: string;
109
+ reset_to_code: string;
110
+ widget_group_text: string;
111
+ widget_group_boolean: string;
112
+ widget_group_users: string;
113
+ widget_group_select: string;
114
+ widget_group_number: string;
115
+ widget_group_file: string;
116
+ widget_group_reference: string;
117
+ widget_group_date: string;
118
+ widget_group_group: string;
119
+ widget_group_array: string;
120
+ };
@@ -0,0 +1,120 @@
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
+ nullable: string;
78
+ nullable_tooltip: string;
79
+ tab_general: string;
80
+ tab_display: string;
81
+ tab_properties: string;
82
+ tab_extend: string;
83
+ unsaved_changes_in_collection: string;
84
+ error_persisting_collection: string;
85
+ details_in_console: string;
86
+ error_inferring_collection: string;
87
+ collection_deleted: string;
88
+ data_imported_successfully_msg: string;
89
+ must_specify_path: string;
90
+ collection_path_already_exists: string;
91
+ collection_path_odd_segments: string;
92
+ collection_uses_path_as_id: string;
93
+ collection_uses_this_id: string;
94
+ delete_stored_config: string;
95
+ delete_stored_config_body: string;
96
+ order_label: string;
97
+ select_property_to_edit: string;
98
+ add_first_property: string;
99
+ add_new_property: string;
100
+ no_permission_add_properties: string;
101
+ get_code_for_collection: string;
102
+ add_properties_from_data: string;
103
+ collection_name_placeholder: string;
104
+ created_by: string;
105
+ property_defined_as_builder: string;
106
+ extend_title: string;
107
+ extend_description: string;
108
+ collection_defined_in_code: string;
109
+ reset_to_code: string;
110
+ widget_group_text: string;
111
+ widget_group_boolean: string;
112
+ widget_group_users: string;
113
+ widget_group_select: string;
114
+ widget_group_number: string;
115
+ widget_group_file: string;
116
+ widget_group_reference: string;
117
+ widget_group_date: string;
118
+ widget_group_group: string;
119
+ widget_group_array: string;
120
+ };