@rebasepro/cms-types 0.17.0-canary.0

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 (78) hide show
  1. package/LICENSE +21 -0
  2. package/dist/admin_collection.d.ts +650 -0
  3. package/dist/augment.d.ts +81 -0
  4. package/dist/collections.d.ts +282 -0
  5. package/dist/controllers/analytics_controller.d.ts +7 -0
  6. package/dist/controllers/auth.d.ts +111 -0
  7. package/dist/controllers/customization_controller.d.ts +69 -0
  8. package/dist/controllers/dialogs_controller.d.ts +36 -0
  9. package/dist/controllers/index.d.ts +10 -0
  10. package/dist/controllers/local_config_persistence.d.ts +20 -0
  11. package/dist/controllers/navigation.d.ts +248 -0
  12. package/dist/controllers/registry.d.ts +96 -0
  13. package/dist/controllers/side_dialogs_controller.d.ts +67 -0
  14. package/dist/controllers/side_panel_controller.d.ts +97 -0
  15. package/dist/controllers/snackbar.d.ts +45 -0
  16. package/dist/index.d.ts +18 -0
  17. package/dist/index.es.js +154 -0
  18. package/dist/index.es.js.map +1 -0
  19. package/dist/react_component_ref.d.ts +43 -0
  20. package/dist/rebase_context.d.ts +68 -0
  21. package/dist/types/breadcrumbs.d.ts +15 -0
  22. package/dist/types/builders.d.ts +15 -0
  23. package/dist/types/collection_views.d.ts +105 -0
  24. package/dist/types/component_overrides.d.ts +196 -0
  25. package/dist/types/entity_actions.d.ts +112 -0
  26. package/dist/types/entity_display.d.ts +148 -0
  27. package/dist/types/entity_link_builder.d.ts +7 -0
  28. package/dist/types/entity_views.d.ts +115 -0
  29. package/dist/types/export_import.d.ts +21 -0
  30. package/dist/types/form_layout.d.ts +126 -0
  31. package/dist/types/formex.d.ts +40 -0
  32. package/dist/types/index.d.ts +18 -0
  33. package/dist/types/locales.d.ts +4 -0
  34. package/dist/types/modify_collections.d.ts +5 -0
  35. package/dist/types/plugins.d.ts +277 -0
  36. package/dist/types/property_config.d.ts +74 -0
  37. package/dist/types/property_options.d.ts +255 -0
  38. package/dist/types/slots.d.ts +279 -0
  39. package/dist/types/translations.d.ts +989 -0
  40. package/dist/types/user_management_delegate.d.ts +22 -0
  41. package/package.json +103 -0
  42. package/src/admin_collection.ts +775 -0
  43. package/src/augment.ts +79 -0
  44. package/src/collections.ts +312 -0
  45. package/src/controllers/analytics_controller.tsx +57 -0
  46. package/src/controllers/auth.ts +122 -0
  47. package/src/controllers/customization_controller.tsx +81 -0
  48. package/src/controllers/dialogs_controller.tsx +37 -0
  49. package/src/controllers/index.ts +10 -0
  50. package/src/controllers/local_config_persistence.tsx +22 -0
  51. package/src/controllers/navigation.ts +288 -0
  52. package/src/controllers/registry.ts +114 -0
  53. package/src/controllers/side_dialogs_controller.tsx +82 -0
  54. package/src/controllers/side_panel_controller.tsx +112 -0
  55. package/src/controllers/snackbar.ts +51 -0
  56. package/src/index.ts +20 -0
  57. package/src/react_component_ref.ts +52 -0
  58. package/src/rebase_context.ts +81 -0
  59. package/src/types/breadcrumbs.ts +16 -0
  60. package/src/types/builders.ts +18 -0
  61. package/src/types/collection_views.tsx +125 -0
  62. package/src/types/component_overrides.ts +244 -0
  63. package/src/types/entity_actions.tsx +134 -0
  64. package/src/types/entity_display.ts +182 -0
  65. package/src/types/entity_link_builder.ts +8 -0
  66. package/src/types/entity_views.tsx +135 -0
  67. package/src/types/export_import.ts +26 -0
  68. package/src/types/form_layout.ts +137 -0
  69. package/src/types/formex.ts +45 -0
  70. package/src/types/index.ts +18 -0
  71. package/src/types/locales.ts +81 -0
  72. package/src/types/modify_collections.tsx +6 -0
  73. package/src/types/plugins.tsx +346 -0
  74. package/src/types/property_config.tsx +97 -0
  75. package/src/types/property_options.ts +300 -0
  76. package/src/types/slots.tsx +334 -0
  77. package/src/types/translations.ts +1104 -0
  78. package/src/types/user_management_delegate.ts +23 -0
@@ -0,0 +1,989 @@
1
+ /**
2
+ * Recursively makes all properties optional.
3
+ * Used to type partial translation overrides.
4
+ */
5
+ export type DeepPartial<T> = T extends object ? {
6
+ [K in keyof T]?: DeepPartial<T[K]>;
7
+ } : T;
8
+ /**
9
+ * All user-visible strings used internally by @rebasepro/app.
10
+ * Pass a `DeepPartial<RebaseTranslations>` via the `translations` prop
11
+ * on your Rebase entry-point component to override any key, or to add
12
+ * a new locale.
13
+ *
14
+ * @group Core
15
+ */
16
+ export interface RebaseTranslations {
17
+ save: string;
18
+ create: string;
19
+ /** Used when duplicating an existing entity */
20
+ create_copy: string;
21
+ save_and_close: string;
22
+ create_copy_and_close: string;
23
+ create_and_close: string;
24
+ /** Discard changes on an existing entity */
25
+ discard: string;
26
+ /** Clear a new/copy form (not yet persisted) */
27
+ clear: string;
28
+ cancel: string;
29
+ edit: string;
30
+ copy: string;
31
+ delete: string;
32
+ delete_not_allowed: string;
33
+ edit_entity?: string;
34
+ back_to_detail?: string;
35
+ delete_confirmation_title: string;
36
+ delete_confirmation_body: string;
37
+ delete_multiple_confirmation_body: string;
38
+ unsaved_changes_title: string;
39
+ unsaved_changes_body: string;
40
+ discard_changes: string;
41
+ keep_editing: string;
42
+ /** Dialog title when clearing a new/copy form */
43
+ clear_form?: string;
44
+ /** Confirmation body when discarding changes on an existing entity */
45
+ discard_changes_confirmation?: string;
46
+ /** Confirmation body when clearing a new/copy form */
47
+ clear_form_confirmation?: string;
48
+ search: string;
49
+ find_by_id: string;
50
+ find_entity_by_id: string;
51
+ filter: string;
52
+ clear_filter: string;
53
+ clear_filter_sort: string;
54
+ clear_sort: string;
55
+ /** Toolbar control that orders the collection, outside the table view */
56
+ sort: string;
57
+ sort_by: string;
58
+ /** Heading over the columns a further key can still be added from */
59
+ sort_then_by: string;
60
+ /** What the next click does to a key currently running descending */
61
+ sort_ascending: string;
62
+ /** …and to one currently running ascending */
63
+ sort_descending: string;
64
+ /** …and to one whose next click clears it, which is the third state a header cycles through */
65
+ sort_remove: string;
66
+ /** Promote a key over the one above it, which is what changes which key decides */
67
+ sort_move_up: string;
68
+ sort_move_down: string;
69
+ /** Drop one key of a multi-column sort, leaving the rest in place */
70
+ sort_remove_key: string;
71
+ /** A key's rank in a multi-column sort. Supports `{{position}}` interpolation, 1-based. */
72
+ sort_key_position: string;
73
+ /** How a column is added under the sort already in place, rather than replacing it */
74
+ sort_shift_click_hint: string;
75
+ /** Stands in for a subcollection list on an entity that has never been saved */
76
+ save_entity_before_subcollections: string;
77
+ /** Reset all active filters */
78
+ clear_all: string;
79
+ no_items: string;
80
+ no_entries_found: string;
81
+ all_entries_loaded: string;
82
+ create_your_first_entry: string;
83
+ no_results_filter_sort: string;
84
+ /** Shown when a text search yields no results. Supports `{{search}}` interpolation. */
85
+ no_results_search?: string;
86
+ add: string;
87
+ remove: string;
88
+ copy_id: string;
89
+ add_specific: string;
90
+ /**
91
+ * Offer to create the row a search did not find, with the search text as
92
+ * its name — e.g. `Add "Acme Corp"`.
93
+ */
94
+ add_named: string;
95
+ select_specific: string;
96
+ select_from: string;
97
+ done: string;
98
+ log_out: string;
99
+ column_cannot_be_edited: string;
100
+ close: string;
101
+ hide_list: string;
102
+ show_list: string;
103
+ unsaved_local_changes: string;
104
+ unsaved_local_changes_description: string;
105
+ preview_changes: string;
106
+ apply_changes: string;
107
+ discard_local_changes: string;
108
+ preview_local_changes: string;
109
+ preview_local_changes_description: string;
110
+ type: string;
111
+ string: string;
112
+ number: string;
113
+ boolean: string;
114
+ date: string;
115
+ map: string;
116
+ array: string;
117
+ arrays_of_arrays_not_supported: string;
118
+ data_type_not_supported: string;
119
+ browser_does_not_support_audio: string;
120
+ user_not_found: string;
121
+ /** "Delete" action on collections, may require permissions check */
122
+ delete_selected: string;
123
+ cannot_delete_selected: string;
124
+ /** Label for buttons that add a new item to a list */
125
+ add_entry: string;
126
+ add_on_top: string;
127
+ add_below: string;
128
+ /** Label when a fieldName is provided — "Add to {fieldName}" */
129
+ add_to_field: string;
130
+ /** Placeholder for the 'value' input in a KeyValue field */
131
+ value: string;
132
+ /** Placeholder for the 'key' input in a KeyValue field */
133
+ key: string;
134
+ /** Drag and drop help text for multiple files */
135
+ drag_drop_multiple: string;
136
+ /** Drag and drop help text for a single file */
137
+ drag_drop_single: string;
138
+ open_menu: string;
139
+ close_drawer: string;
140
+ navigation_drawer: string;
141
+ collapse: string;
142
+ expand: string;
143
+ /** Tooltip for the language switcher in the drawer footer */
144
+ change_language?: string;
145
+ /** Tooltip for the theme toggle in the drawer footer */
146
+ toggle_theme?: string;
147
+ /** Aria label for the user menu trigger in the drawer footer */
148
+ user_menu?: string;
149
+ error: string;
150
+ error_loading_data?: string;
151
+ error_check_server_logs?: string;
152
+ error_technical_details?: string;
153
+ error_uploading_file: string;
154
+ error_deleting: string;
155
+ error_before_delete: string;
156
+ error_firestore_index: string;
157
+ create_index: string;
158
+ value_is_not_reference: string;
159
+ click_to_edit: string;
160
+ data_is_not_array_of_references: string;
161
+ collection_does_not_exist: string;
162
+ loading: string;
163
+ local_changes_applied: string;
164
+ local_changes_discarded: string;
165
+ open_in_console: string;
166
+ see_console_details: string;
167
+ drop_here_create_group: string;
168
+ filter_for_null_values: string;
169
+ value_updated_elsewhere: string;
170
+ add_property: string;
171
+ edit_name: string;
172
+ this_entity_not_exist: string;
173
+ internal_error: string;
174
+ /** Shown in unsaved-changes dialogs */
175
+ are_you_sure_leave: string;
176
+ passkey_error_unsupported: string;
177
+ /** Snackbar message after a successful save */
178
+ saved_correctly: string;
179
+ /** Snackbar title when a beforeSave callback throws */
180
+ error_before_saving: string;
181
+ /** Snackbar title when an afterSave callback throws */
182
+ error_after_saving: string;
183
+ /** Snackbar title when the save itself fails */
184
+ error_saving_entity: string;
185
+ /** Alert shown when the entity does not exist in the database */
186
+ entity_does_not_exist: string;
187
+ /** Tooltip when the form has unsaved modifications */
188
+ form_modified: string;
189
+ /** Tooltip when the form is in sync with the database */
190
+ form_in_sync: string;
191
+ /** Tooltip/alert shown when form has validation errors */
192
+ fix_errors_before_saving?: string;
193
+ admin: string;
194
+ home: string;
195
+ this_form_has_errors: string;
196
+ error_loading_navigation: string;
197
+ error_loading_auth: string;
198
+ this_form_has_been_modified: string;
199
+ current_form_in_sync: string;
200
+ unexpected_value: string;
201
+ unexpected_value_click_to_edit: string;
202
+ unexpected_reference_value: string;
203
+ copy_url_to_clipboard: string;
204
+ open_image_in_new_tab: string;
205
+ reference_not_set: string;
206
+ reference_does_not_exist: string;
207
+ entity_not_found: string;
208
+ file_not_found: string;
209
+ unsaved_changes_in_entity: string;
210
+ delete_this_role: string;
211
+ no_roles_yet: string;
212
+ create_default_roles: string;
213
+ delete_role_confirmation: string;
214
+ delete_this_user: string;
215
+ no_users_yet: string;
216
+ add_logged_user_as_admin: string;
217
+ add_current_user_as_admin: string;
218
+ create_default_roles_and_add_admin: string;
219
+ delete_user_confirmation: string;
220
+ create_your_users_and_roles: string;
221
+ no_users_or_roles_defined: string;
222
+ save_before_changing_schema: string;
223
+ edit_schema_for_this_form: string;
224
+ no_permissions_to_edit_collection: string;
225
+ rename_group: string;
226
+ group_name_label: string;
227
+ group_name_empty_error: string;
228
+ group_name_exists_error: string;
229
+ search_collections: string;
230
+ /** Default group name shown when collections/views have no explicit group */
231
+ views_group: string;
232
+ youd_need_to_save_before_additional_collections: string;
233
+ page_not_found: string;
234
+ page_not_found_body: string;
235
+ back_to_home: string;
236
+ default_collection_view: string;
237
+ table_view: string;
238
+ cards_view: string;
239
+ kanban_view: string;
240
+ choose_how_entities_displayed_default: string;
241
+ document_view: string;
242
+ side_panel: string;
243
+ full_screen: string;
244
+ should_documents_opened_full_screen: string;
245
+ select_custom_view: string;
246
+ no_custom_views_defined: string;
247
+ select_custom_action: string;
248
+ no_custom_actions_defined: string;
249
+ no_collections_found: string;
250
+ start_building_collections: string;
251
+ create_first_collection: string;
252
+ define_collections_programmatically: string;
253
+ edit_collection: string;
254
+ no_permissions_edit_collection: string;
255
+ no_permissions_create_collection: string;
256
+ create_collection: string;
257
+ update_collection: string;
258
+ new_collection: string;
259
+ add_new_collection: string;
260
+ collection_with_name: string;
261
+ change_icon: string;
262
+ is_subcollection_of: string;
263
+ name: string;
264
+ collection_name_description: string;
265
+ path: string;
266
+ relative_path_to_parent: string;
267
+ path_in_database: string;
268
+ singular_name: string;
269
+ singular_name_description: string;
270
+ description: string;
271
+ description_of_collection: string;
272
+ collection_id: string;
273
+ collection_id_description: string;
274
+ collection_group: string;
275
+ collection_group_description: string;
276
+ advanced_settings: string;
277
+ doc_history_global: string;
278
+ doc_history_enabled: string;
279
+ doc_history_not_enabled: string;
280
+ doc_history_description: string;
281
+ document_id_generation: string;
282
+ code_defined: string;
283
+ users_must_define_id: string;
284
+ users_can_define_id: string;
285
+ doc_id_auto_generated: string;
286
+ config_doc_id_generation: string;
287
+ enable_text_search: string;
288
+ text_search_description: string;
289
+ database_id: string;
290
+ default_text: string;
291
+ custom_actions: string;
292
+ more_info: string;
293
+ define_custom_actions_cli: string;
294
+ action_defined_in_code: string;
295
+ add_custom_entity_action: string;
296
+ remove_this_action: string;
297
+ remove_action_warning: string;
298
+ subcollections_of: string;
299
+ add_subcollection: string;
300
+ custom_views: string;
301
+ define_custom_views_cli: string;
302
+ view_defined_in_code: string;
303
+ add_custom_entity_view: string;
304
+ delete_this_subcollection: string;
305
+ remove_collection_warning: string;
306
+ remove_this_view: string;
307
+ remove_view_warning: string;
308
+ no_collection_selected: string;
309
+ code_for_collection: string;
310
+ use_config_define_json: string;
311
+ customise_collection_code: string;
312
+ copied: string;
313
+ property_cant_be_edited: string;
314
+ property_not_editable_description: string;
315
+ delete_this_property: string;
316
+ delete_property_warning: string;
317
+ error_must_specify_id: string;
318
+ error_id_format: string;
319
+ error_id_already_exists: string;
320
+ error_must_specify_title: string;
321
+ custom_or_other: string;
322
+ select_property_widget: string;
323
+ error_changing_data_type: string;
324
+ required: string;
325
+ enum_form_dialog: string;
326
+ imported_data_preview: string;
327
+ entities_with_same_id_overwritten: string;
328
+ collection_editor: string;
329
+ properties_in_this_group: string;
330
+ data_property_mapping: string;
331
+ property_edit_view: string;
332
+ all_of_these: string;
333
+ any_of_these: string;
334
+ only_admins_edit_roles: string;
335
+ error_user_not_found: string;
336
+ /** Placeholder / label for the "all roles" filter option */
337
+ all_roles: string;
338
+ role: string;
339
+ name_of_this_role: string;
340
+ id_of_this_role: string;
341
+ create_entities: string;
342
+ read_entities: string;
343
+ update_entities: string;
344
+ delete_entities: string;
345
+ all_collections: string;
346
+ create_entities_in_collections: string;
347
+ access_all_data_in_every_collection: string;
348
+ update_data_in_any_collection: string;
349
+ delete_data_in_any_collection: string;
350
+ allow_all_permissions_in_this_collections: string;
351
+ all: string;
352
+ customise_permissions_description: string;
353
+ create_collections: string;
354
+ yes: string;
355
+ no: string;
356
+ can_user_create_collections: string;
357
+ edit_collections: string;
358
+ only_own_collections: string;
359
+ own: string;
360
+ can_user_edit_collections: string;
361
+ delete_collections: string;
362
+ can_user_delete_collections: string;
363
+ error_saving_role: string;
364
+ create_role: string;
365
+ update: string;
366
+ only_admins_change_roles: string;
367
+ must_be_at_least_one_admin: string;
368
+ logged_user_not_found: string;
369
+ user: string;
370
+ user_id: string;
371
+ error_updating_asset: string;
372
+ error_deleting_asset: string;
373
+ name_of_this_user: string;
374
+ email_of_this_user: string;
375
+ roles: string;
376
+ create_user: string;
377
+ filters: string;
378
+ /** Tooltip on the record count in the collection toolbar */
379
+ records_in_view: string;
380
+ multiple_entities: string;
381
+ unsaved_changes: string;
382
+ so_empty: string;
383
+ no_results: string;
384
+ refresh_data: string;
385
+ dark_mode: string;
386
+ light_mode: string;
387
+ system_mode: string;
388
+ join_newsletter: string;
389
+ ok: string;
390
+ save_collection_config: string;
391
+ search_for_more_icons: string;
392
+ ai_modified: string;
393
+ size_label: string;
394
+ group_by: string;
395
+ initialize_kanban_order: string;
396
+ users: string;
397
+ add_user: string;
398
+ add_role: string;
399
+ is_admin: string;
400
+ default_permissions: string;
401
+ created_on: string;
402
+ email: string;
403
+ id: string;
404
+ read: string;
405
+ column_in_file: string;
406
+ map_to_property: string;
407
+ default_values: string;
408
+ default_values_description: string;
409
+ property: string;
410
+ default_value: string;
411
+ autogenerate_id: string;
412
+ id_column_description: string;
413
+ do_not_set_value: string;
414
+ set_value_to_true: string;
415
+ set_value_to_false: string;
416
+ drag_and_drop_file: string;
417
+ error_saving_data: string;
418
+ retry: string;
419
+ saving_data: string;
420
+ entities_saved: string;
421
+ do_not_close_tab: string;
422
+ import: string;
423
+ import_data: string;
424
+ upload_file_description: string;
425
+ back: string;
426
+ next: string;
427
+ save_data: string;
428
+ use_column_as_id: string;
429
+ do_not_import_property: string;
430
+ entities_will_be_overwritten: string;
431
+ data_imported_successfully: string;
432
+ export: string;
433
+ export_data: string;
434
+ download_table_csv: string;
435
+ csv: string;
436
+ json: string;
437
+ dates_as_timestamps: string;
438
+ dates_as_strings: string;
439
+ flatten_arrays: string;
440
+ download: string;
441
+ large_number_of_documents: string;
442
+ too_many_documents_to_export: string;
443
+ include_undefined_values: string;
444
+ submit: string;
445
+ no_filterable_properties: string;
446
+ apply_filters: string;
447
+ /** Label shown on the filter presets dropdown trigger */
448
+ filter_presets?: string;
449
+ /** Tooltip shown when hovering over a preset entry */
450
+ filter_preset_apply?: string;
451
+ /** Shown when a preset is active, with {{label}} interpolation */
452
+ filter_preset_active?: string;
453
+ list: string;
454
+ table_view_mode: string;
455
+ cards: string;
456
+ board: string;
457
+ initialize_kanban_order_desc: string;
458
+ kanban_view_not_available: string;
459
+ kanban_view_requires_enum: string;
460
+ no_enum_values_configured: string;
461
+ items_need_backfill: string;
462
+ kanban_order_not_configured: string;
463
+ initialize: string;
464
+ confirm_multiple_delete: string;
465
+ delete_entity_confirm_title: string;
466
+ /**
467
+ * Confirmation for the destructive action on a tab whose rows are shared
468
+ * through a junction. The row is not deleted — the parent's link to it is —
469
+ * so this copy must not promise deletion.
470
+ */
471
+ /** Attach a row that already exists to this parent, on a junction-backed tab. */
472
+ add_existing: string;
473
+ unlink_entity_confirm_title: string;
474
+ unlink_entity_confirm_body: string;
475
+ confirm_multiple_unlink: string;
476
+ no_filter: string;
477
+ is_true: string;
478
+ is_false: string;
479
+ error_uploading_file_size: string;
480
+ error_uploading_file_type: string;
481
+ drag_drop_files: string;
482
+ drag_drop_file: string;
483
+ multiple_deleted: string;
484
+ some_entities_deleted: string;
485
+ error_deleting_entities: string;
486
+ deleted: string;
487
+ select_reference: string;
488
+ select_references: string;
489
+ account_settings?: string;
490
+ profile?: string;
491
+ sessions?: string;
492
+ security?: string;
493
+ change_password?: string;
494
+ current_password?: string;
495
+ new_password?: string;
496
+ confirm_password?: string;
497
+ password_changed?: string;
498
+ passwords_dont_match?: string;
499
+ password_too_short?: string;
500
+ password_change_not_available?: string;
501
+ changing_password?: string;
502
+ display_name?: string;
503
+ photo_url?: string;
504
+ save_profile?: string;
505
+ saving?: string;
506
+ no_active_sessions?: string;
507
+ revoking?: string;
508
+ revoke_all_sessions?: string;
509
+ unknown_device?: string;
510
+ current?: string;
511
+ role_id: string;
512
+ role_name: string;
513
+ add_reference: string;
514
+ add_reference_to: string;
515
+ /** RolesView — table & permissions */
516
+ role_deleted_successfully: string;
517
+ error_deleting_role: string;
518
+ collection_permissions: string;
519
+ collection: string;
520
+ no_collections_configured: string;
521
+ no_security_rules_defined: string;
522
+ no_rules: string;
523
+ /** UsersView — snackbar */
524
+ bootstrap_admin_success: string;
525
+ failed_to_bootstrap_admin: string;
526
+ user_deleted_successfully: string;
527
+ error_deleting_user: string;
528
+ user_created_successfully?: string;
529
+ invitation_sent?: string;
530
+ invitation_sent_title?: string;
531
+ temporary_password?: string;
532
+ temporary_password_description?: string;
533
+ temporary_password_email_failed_description?: string;
534
+ copy_password?: string;
535
+ password_copied?: string;
536
+ /** UsersView — pagination & search */
537
+ search_users?: string;
538
+ created?: string;
539
+ actions?: string;
540
+ no_users_found?: string;
541
+ reset_password?: string;
542
+ reset_password_success?: string;
543
+ reset_password_confirmation?: string;
544
+ reset_password_send_email?: string;
545
+ reset_password_set_manually?: string;
546
+ reset_password_set_manually_description?: string;
547
+ error_resetting_password?: string;
548
+ /** Permission-denied empty states */
549
+ no_permission_to_view_users?: string;
550
+ no_permission_to_view_roles?: string;
551
+ no_permission_description?: string;
552
+ /** Editor table-bubble */
553
+ add_row_before: string;
554
+ add_row_after: string;
555
+ delete_row: string;
556
+ add_column_before: string;
557
+ add_column_after: string;
558
+ delete_column: string;
559
+ delete_table: string;
560
+ /** Editor image-bubble */
561
+ alt_text: string;
562
+ title: string;
563
+ /** MapFieldBinding */
564
+ a_property_of_this_map_has_error: string;
565
+ /** AI Collection Generator Popover */
566
+ generate_collection_with_ai: string;
567
+ modify_collection_with_ai: string;
568
+ describe_collection_to_create: string;
569
+ describe_changes_to_make: string;
570
+ ai_placeholder_create: string;
571
+ ai_placeholder_modify: string;
572
+ ai_assist: string;
573
+ generating: string;
574
+ /** Recently extracted strings for collection editor */
575
+ this_is_subcollection_of: string;
576
+ use_existing_paths_database: string;
577
+ describe_collection_ai: string;
578
+ generate_with_ai: string;
579
+ create_from_json_config: string;
580
+ paste_json_config: string;
581
+ create_collection_from_file_formats: string;
582
+ select_template: string;
583
+ products: string;
584
+ collection_products_subtitle: string;
585
+ collection_users_subtitle: string;
586
+ blog_posts: string;
587
+ collection_blog_posts_subtitle: string;
588
+ pages: string;
589
+ collection_pages_subtitle: string;
590
+ continue_from_scratch: string;
591
+ /** Admin views config */
592
+ admin_users: string;
593
+ roles_menu: string;
594
+ project_settings: string;
595
+ by_signing_in_you_agree_to_our: string;
596
+ terms_and_conditions: string;
597
+ and_our: string;
598
+ privacy_policy: string;
599
+ email_password: string;
600
+ sign_in_with_google: string;
601
+ auth_user_not_found: string;
602
+ auth_wrong_password: string;
603
+ auth_user_disabled: string;
604
+ auth_account_exists_with_different_credential: string;
605
+ auth_email_already_in_use: string;
606
+ auth_google_permissions_required: string;
607
+ auth_invalid_email_password: string;
608
+ auth_enter_email_first: string;
609
+ auth_password_reset_sent: string;
610
+ auth_sign_in_account: string;
611
+ auth_create_new_account: string;
612
+ auth_password: string;
613
+ auth_reset_password: string;
614
+ auth_new_user: string;
615
+ auth_have_account: string;
616
+ auth_sign_in: string;
617
+ auth_sign_up: string;
618
+ auto_setup_collections_button: string;
619
+ auto_setup_collections_title: string;
620
+ auto_setup_collections_desc: string;
621
+ this_can_take_a_minute: string;
622
+ no_collections_found_to_setup: string;
623
+ collections_have_been_setup: string;
624
+ error_setting_up_collections: string;
625
+ add_your: string;
626
+ database_collections: string;
627
+ no_unmapped_collections: string;
628
+ welcome_to_rebase: string;
629
+ admin_panel_ready_bring_data: string;
630
+ admin_panel_ready_get_started: string;
631
+ auto_detect_collections: string;
632
+ auto_detect_collections_desc: string;
633
+ create_a_collection: string;
634
+ create_collection_desc: string;
635
+ read_the_docs: string;
636
+ read_the_docs_desc: string;
637
+ explore_docs: string;
638
+ want_to_customize_with_code: string;
639
+ to_scaffold_a_local_project: string;
640
+ validation: string;
641
+ unique: string;
642
+ required_message: string;
643
+ required_tooltip: string;
644
+ unique_tooltip: string;
645
+ lowercase: string;
646
+ uppercase: string;
647
+ trim: string;
648
+ exact_length: string;
649
+ min_length: string;
650
+ max_length: string;
651
+ matches_regex: string;
652
+ not_valid_regexp: string;
653
+ regex_helper: string;
654
+ min_value: string;
655
+ max_value: string;
656
+ less_than: string;
657
+ more_than: string;
658
+ positive_value: string;
659
+ negative_value: string;
660
+ integer_value: string;
661
+ invalid_regular_expression: string;
662
+ must_specify_target_collection: string;
663
+ need_specify_repeat_field: string;
664
+ need_specify_block_properties: string;
665
+ incomplete_condition: string;
666
+ field_name: string;
667
+ kanban_column_property: string;
668
+ select_a_property: string;
669
+ kanban_property_not_found: string;
670
+ no_enum_string_properties: string;
671
+ kanban_column_description: string;
672
+ create_property: string;
673
+ order_property: string;
674
+ order_property_not_found: string;
675
+ no_number_properties: string;
676
+ order_property_description: string;
677
+ display_settings: string;
678
+ default_row_size: string;
679
+ side_dialog_width: string;
680
+ side_dialog_width_description: string;
681
+ inline_editing_enabled: string;
682
+ inline_editing_disabled: string;
683
+ inline_editing_description: string;
684
+ include_json_view: string;
685
+ no_json_view: string;
686
+ json_view_description: string;
687
+ not_found_suffix: string;
688
+ editor_text: string;
689
+ editor_text_description: string;
690
+ editor_heading_1: string;
691
+ editor_heading_1_description: string;
692
+ editor_heading_2: string;
693
+ editor_heading_2_description: string;
694
+ editor_heading_3: string;
695
+ editor_heading_3_description: string;
696
+ editor_todo_list: string;
697
+ editor_todo_list_description: string;
698
+ editor_bullet_list: string;
699
+ editor_bullet_list_description: string;
700
+ editor_numbered_list: string;
701
+ editor_numbered_list_description: string;
702
+ editor_quote: string;
703
+ editor_quote_description: string;
704
+ editor_code: string;
705
+ editor_code_description: string;
706
+ editor_image: string;
707
+ editor_image_description: string;
708
+ editor_multiple: string;
709
+ editor_link: string;
710
+ editor_save: string;
711
+ editor_cancel: string;
712
+ editor_remove_link: string;
713
+ editor_paste_or_type_link: string;
714
+ editor_open_in_new_window: string;
715
+ editor_bold: string;
716
+ editor_italic: string;
717
+ editor_underline: string;
718
+ editor_strikethrough: string;
719
+ editor_autocomplete: string;
720
+ editor_autocomplete_description: string;
721
+ text_search_dialog_title: string;
722
+ text_search_local_not_recommended: string;
723
+ text_search_local_fetch_warning: string;
724
+ text_search_external_suggestion: string;
725
+ text_search_local_description: string;
726
+ text_search_own_implementation: string;
727
+ text_search_enable_for_collection: string;
728
+ text_search_enable_for_project: string;
729
+ text_search_enabled_snackbar: string;
730
+ settings_heading: string;
731
+ settings_project_name: string;
732
+ settings_default_language: string;
733
+ settings_default_language_caption: string;
734
+ settings_enable_local_text_search: string;
735
+ settings_local_text_search_caption: string;
736
+ settings_doc_history_all_collections: string;
737
+ settings_doc_history_caption: string;
738
+ settings_theme: string;
739
+ settings_primary_color: string;
740
+ settings_secondary_color: string;
741
+ settings_sample_theme_components: string;
742
+ settings_drag_drop_logo: string;
743
+ settings_security_rules: string;
744
+ settings_security_rules_description: string;
745
+ settings_security_rules_add_domain: string;
746
+ settings_security_rules_caption: string;
747
+ studio_sql_executing_query?: string;
748
+ studio_sql_query_error?: string;
749
+ studio_sql_run_query_placeholder?: string;
750
+ studio_sql_visual_execution_plan?: string;
751
+ studio_sql_success?: string;
752
+ studio_sql_no_results?: string;
753
+ studio_sql_rows?: string;
754
+ studio_sql_time?: string;
755
+ studio_sql_copy_markdown?: string;
756
+ studio_sql_export_json?: string;
757
+ studio_sql_export_csv?: string;
758
+ studio_sql_format_sql?: string;
759
+ studio_sql_explain?: string;
760
+ studio_sql_limit_1000: string;
761
+ studio_sql_remove_from_favorites?: string;
762
+ studio_sql_add_to_favorites?: string;
763
+ studio_sql_save?: string;
764
+ studio_sql_run?: string;
765
+ studio_sql_database?: string;
766
+ studio_sql_role?: string;
767
+ studio_sql_admin?: string;
768
+ studio_sql_select_db?: string;
769
+ studio_sql_query_results?: string;
770
+ studio_sql_save_snippet?: string;
771
+ studio_sql_snippet_name?: string;
772
+ studio_sql_snippet_name_placeholder?: string;
773
+ studio_sql_snippet_saved_local?: string;
774
+ studio_sql_cancel?: string;
775
+ studio_sql_dangerous_operation?: string;
776
+ studio_sql_dangerous_operation_body?: string;
777
+ studio_sql_snippet_saved?: string;
778
+ studio_sql_markdown_copied?: string;
779
+ studio_sql_markdown_copy_failed?: string;
780
+ studio_sql_row_updated?: string;
781
+ studio_sql_cannot_edit_missing_query?: string;
782
+ studio_sql_cannot_resolve_table?: string;
783
+ studio_sql_missing_pk?: string;
784
+ studio_sql_update_failed?: string;
785
+ studio_sql_execution_not_supported?: string;
786
+ studio_sql_error_executing?: string;
787
+ studio_sql_error_explaining?: string;
788
+ studio_sql_save_first_to_favorite?: string;
789
+ studio_sql_collections_label?: string;
790
+ studio_sql_admin_collections_tooltip?: string;
791
+ studio_sql_edit_entity?: string;
792
+ studio_sql_sql_not_supported?: string;
793
+ studio_sql_fetch_error?: string;
794
+ studio_sql_unexpected_format?: string;
795
+ studio_sql_no_tables?: string;
796
+ studio_sql_schema_fetch_error?: string;
797
+ studio_sql_sidebar_snippets?: string;
798
+ studio_sql_sidebar_history?: string;
799
+ studio_sql_sidebar_schema?: string;
800
+ studio_sql_sidebar_no_snippets?: string;
801
+ studio_sql_sidebar_save_snippet_hint?: string;
802
+ studio_sql_sidebar_no_history?: string;
803
+ studio_sql_sidebar_history_hint?: string;
804
+ studio_sql_sidebar_delete_snippet?: string;
805
+ studio_schema_tables?: string;
806
+ studio_schema_loading?: string;
807
+ studio_schema_no_tables?: string;
808
+ studio_schema_retry?: string;
809
+ studio_schema_primary_key?: string;
810
+ studio_schema_select_all?: string;
811
+ studio_schema_insert_into?: string;
812
+ studio_schema_update?: string;
813
+ studio_schema_delete_from?: string;
814
+ studio_schema_columns?: string;
815
+ studio_rls_title?: string;
816
+ studio_rls_description?: string;
817
+ studio_rls_enabled?: string;
818
+ studio_rls_disabled?: string;
819
+ studio_rls_no_rls?: string;
820
+ studio_rls_enable_rls?: string;
821
+ studio_rls_disable_rls?: string;
822
+ studio_rls_create_policy?: string;
823
+ studio_rls_policies?: string;
824
+ studio_rls_no_policies?: string;
825
+ studio_rls_no_policies_desc?: string;
826
+ studio_rls_add_first_policy?: string;
827
+ studio_rls_force_rls?: string;
828
+ studio_rls_force_rls_desc?: string;
829
+ studio_rls_enable_force_rls?: string;
830
+ studio_rls_disable_force_rls?: string;
831
+ studio_rls_edit?: string;
832
+ studio_rls_delete?: string;
833
+ studio_rls_confirm_delete_title?: string;
834
+ studio_rls_confirm_delete_body?: string;
835
+ studio_rls_confirm_enable_title?: string;
836
+ studio_rls_confirm_enable_body?: string;
837
+ studio_rls_confirm_disable_title?: string;
838
+ studio_rls_confirm_disable_body?: string;
839
+ studio_rls_select_table?: string;
840
+ studio_rls_no_tables?: string;
841
+ studio_rls_error?: string;
842
+ studio_rls_retry?: string;
843
+ studio_rls_loading?: string;
844
+ studio_policy_edit?: string;
845
+ studio_policy_create?: string;
846
+ studio_policy_defining_rules?: string;
847
+ studio_policy_cancel?: string;
848
+ studio_policy_save?: string;
849
+ studio_policy_template?: string;
850
+ studio_policy_select_template?: string;
851
+ studio_policy_name?: string;
852
+ studio_policy_name_placeholder?: string;
853
+ studio_policy_behavior?: string;
854
+ studio_policy_permissive?: string;
855
+ studio_policy_permissive_desc?: string;
856
+ studio_policy_restrictive?: string;
857
+ studio_policy_restrictive_desc?: string;
858
+ studio_policy_command?: string;
859
+ studio_policy_target_roles?: string;
860
+ studio_policy_roles_placeholder?: string;
861
+ studio_policy_using_expr?: string;
862
+ studio_policy_using_expr_desc?: string;
863
+ studio_policy_check_expr?: string;
864
+ studio_policy_check_expr_desc?: string;
865
+ studio_policy_help_title?: string;
866
+ studio_policy_help_intro?: string;
867
+ studio_policy_help_step1_title: string;
868
+ studio_policy_help_step1_desc: string;
869
+ studio_policy_help_step2_title: string;
870
+ studio_policy_help_step2_desc: string;
871
+ studio_policy_help_role_public?: string;
872
+ studio_policy_help_role_authenticated?: string;
873
+ studio_policy_help_role_anon?: string;
874
+ studio_policy_help_step3_title: string;
875
+ studio_policy_help_step3_desc: string;
876
+ studio_policy_help_step3_example: string;
877
+ studio_policy_help_step4_title: string;
878
+ studio_policy_help_step4_desc: string;
879
+ studio_policy_help_step4_example: string;
880
+ studio_policy_help_auth_vars_title?: string;
881
+ studio_policy_help_auth_vars_desc?: string;
882
+ studio_policy_help_auth_uid?: string;
883
+ studio_policy_help_auth_jwt?: string;
884
+ studio_policy_help_auth_roles?: string;
885
+ studio_policy_help_docs_cta?: string;
886
+ studio_policy_help_read_docs?: string;
887
+ studio_policy_help_got_it?: string;
888
+ studio_add_kanban_column?: string;
889
+ studio_add_kanban_column_title?: string;
890
+ studio_add_kanban_column_name?: string;
891
+ studio_add_kanban_column_name_placeholder?: string;
892
+ studio_add_kanban_column_add?: string;
893
+ studio_add_kanban_column_cancel?: string;
894
+ studio_collection_view_sql?: string;
895
+ studio_collection_view_admin?: string;
896
+ studio_editor_collection_tooltip?: string;
897
+ studio_editor_collection_no_permission?: string;
898
+ studio_editor_collection_start_tooltip?: string;
899
+ studio_editor_collection_start_no_permission?: string;
900
+ studio_editor_collection_start_copied?: string;
901
+ studio_editor_entity_tooltip?: string;
902
+ studio_editor_entity_no_permission?: string;
903
+ studio_home_edit_collection?: string;
904
+ studio_home_delete_collection?: string;
905
+ studio_home_confirm_delete_title?: string;
906
+ studio_home_confirm_delete_body?: string;
907
+ studio_kanban_setup?: string;
908
+ studio_missing_reference?: string;
909
+ studio_missing_reference_create?: string;
910
+ studio_new_collection?: string;
911
+ studio_new_collection_card?: string;
912
+ studio_new_collection_no_permission?: string;
913
+ studio_property_add_column?: string;
914
+ studio_property_add_column_no_permission?: string;
915
+ studio_add_kanban_column_desc?: string;
916
+ studio_add_kanban_column_adding?: string;
917
+ studio_collection_view_edit?: string;
918
+ studio_editor_collection_disabled?: string;
919
+ studio_editor_collection_edit?: string;
920
+ studio_editor_entity_save_first?: string;
921
+ studio_editor_entity_edit_schema?: string;
922
+ studio_editor_collection_start_save_filter?: string;
923
+ studio_editor_collection_start_clear_filter?: string;
924
+ studio_editor_collection_start_reset_filter?: string;
925
+ studio_editor_collection_start_saved?: string;
926
+ studio_home_duplicate_collection?: string;
927
+ studio_home_delete?: string;
928
+ studio_home_confirm_delete_no_data?: string;
929
+ studio_home_collection_deleted?: string;
930
+ studio_kanban_configure?: string;
931
+ studio_missing_reference_error?: string;
932
+ studio_new_collection_add?: string;
933
+ db_column_type?: string;
934
+ primary_key_unique_id?: string;
935
+ spread_children_as_columns?: string;
936
+ mode?: string;
937
+ timezone?: string;
938
+ target_collection?: string;
939
+ storage_file_name?: string;
940
+ storage_path?: string;
941
+ storage_max_size?: string;
942
+ storage_resize_mode?: string;
943
+ storage_output_format?: string;
944
+ storage_max_width?: string;
945
+ storage_max_height?: string;
946
+ storage_quality?: string;
947
+ storage_file_upload_config?: string;
948
+ storage_image_resize_config?: string;
949
+ storage_all_file_types?: string;
950
+ storage_allowed_file_types?: string;
951
+ storage_include_bucket_url?: string;
952
+ storage_save_url?: string;
953
+ datetime_automatic_value?: string;
954
+ markdown_paste_behavior?: string;
955
+ markdown_strip_html?: string;
956
+ markdown_convert_pasted?: string;
957
+ /** Save state shown in the entity header once a record has no pending edits */
958
+ entity_saved?: string;
959
+ /** Overflow menu button in the entity header */
960
+ more_actions?: string;
961
+ /** Overflow menu entry opening the revision history */
962
+ record_history?: string;
963
+ /** Overflow menu entry opening the raw values panel */
964
+ inspect_record?: string;
965
+ /** Title of the panel holding the raw values and the revision history */
966
+ inspect?: string;
967
+ /** Close button of that panel */
968
+ close_inspector?: string;
969
+ /** Overflow menu entry opening this record on the live site */
970
+ open_in_live_site?: string;
971
+ /** Tooltip on the revert button of a revision */
972
+ history_revert?: string;
973
+ /** Confirmation title before reverting */
974
+ history_revert_title?: string;
975
+ /** Snackbar after a successful revert */
976
+ history_reverted?: string;
977
+ /** Snackbar when the revert fails */
978
+ history_revert_error?: string;
979
+ /** Refused because the form has unsaved edits */
980
+ history_revert_dirty?: string;
981
+ /** Empty state of the history panel */
982
+ history_empty?: string;
983
+ /** Explains what fills the history panel */
984
+ history_empty_description?: string;
985
+ /** History is meaningless for a record that does not exist yet */
986
+ history_new_entity?: string;
987
+ /** End of the paginated revision list */
988
+ history_no_more?: string;
989
+ }