@pitcher/canvas-ui 2026.1.21-153854 → 2026.1.22-122411-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/canvas-ui.css +21 -21
- package/canvas-ui.js +211 -36
- package/canvas-ui.js.map +1 -1
- package/lib/apps/agenda-selector/composables/move-item-modal.use.d.ts +4 -0
- package/lib/apps/browser/components/UploadFilesModal/UploadFilesModal.vue.d.ts +1 -0
- package/lib/apps/browser/stores/api.d.ts +9 -0
- package/lib/apps/browser/stores/upload.d.ts +4 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +54 -0
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/usePopupApps.d.ts +2 -0
- package/lib/apps/collection-selector/composables/move-slide-modal.use.d.ts +4 -0
- package/lib/apps/ppt-conversion-selector/composables/move-slide-modal.use.d.ts +2 -0
- package/lib/apps/ppt-conversion-selector/stores/app.store.d.ts +2 -0
- package/lib/components/CFileAttributes/CFileAttributes.vue.d.ts +7 -0
- package/lib/types/launchDarkly.types.d.ts +1 -1
- package/locale/el.json +6 -1
- package/locale/en.json +6 -1
- package/locale/es.json +7 -2
- package/locale/fr.json +6 -1
- package/package.json +2 -2
- package/types/openapi/models/FilePermission.d.ts +1 -0
- package/types/openapi/models/FilePermissionRequest.d.ts +1 -0
|
@@ -45,6 +45,7 @@ export default function useCanvasHistory(): {
|
|
|
45
45
|
can_download?: boolean | undefined;
|
|
46
46
|
can_share?: boolean | undefined;
|
|
47
47
|
can_be_divided?: boolean | undefined;
|
|
48
|
+
can_print?: boolean | undefined;
|
|
48
49
|
} | undefined;
|
|
49
50
|
tags?: Array<string> | undefined;
|
|
50
51
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -70,6 +71,7 @@ export default function useCanvasHistory(): {
|
|
|
70
71
|
can_download?: boolean | undefined;
|
|
71
72
|
can_share?: boolean | undefined;
|
|
72
73
|
can_be_divided?: boolean | undefined;
|
|
74
|
+
can_print?: boolean | undefined;
|
|
73
75
|
} | undefined;
|
|
74
76
|
tags?: Array<string> | undefined;
|
|
75
77
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -166,6 +168,7 @@ export default function useCanvasHistory(): {
|
|
|
166
168
|
can_download?: boolean | undefined;
|
|
167
169
|
can_share?: boolean | undefined;
|
|
168
170
|
can_be_divided?: boolean | undefined;
|
|
171
|
+
can_print?: boolean | undefined;
|
|
169
172
|
} | undefined;
|
|
170
173
|
tags?: string[] | undefined;
|
|
171
174
|
thumbnail_url?: import('../../../main.lib').FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -190,6 +193,7 @@ export default function useCanvasHistory(): {
|
|
|
190
193
|
can_download?: boolean | undefined;
|
|
191
194
|
can_share?: boolean | undefined;
|
|
192
195
|
can_be_divided?: boolean | undefined;
|
|
196
|
+
can_print?: boolean | undefined;
|
|
193
197
|
} | undefined;
|
|
194
198
|
tags?: string[] | undefined;
|
|
195
199
|
};
|
|
@@ -212,6 +216,7 @@ export default function useCanvasHistory(): {
|
|
|
212
216
|
can_download?: boolean | undefined;
|
|
213
217
|
can_share?: boolean | undefined;
|
|
214
218
|
can_be_divided?: boolean | undefined;
|
|
219
|
+
can_print?: boolean | undefined;
|
|
215
220
|
} | undefined;
|
|
216
221
|
tags?: string[] | undefined;
|
|
217
222
|
thumbnail_url?: import('../../../main.lib').FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -286,6 +291,7 @@ export default function useCanvasHistory(): {
|
|
|
286
291
|
can_download?: boolean | undefined;
|
|
287
292
|
can_share?: boolean | undefined;
|
|
288
293
|
can_be_divided?: boolean | undefined;
|
|
294
|
+
can_print?: boolean | undefined;
|
|
289
295
|
} | undefined;
|
|
290
296
|
metadata?: Record<string, any> | undefined;
|
|
291
297
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -488,6 +494,7 @@ export default function useCanvasHistory(): {
|
|
|
488
494
|
can_download?: boolean | undefined;
|
|
489
495
|
can_share?: boolean | undefined;
|
|
490
496
|
can_be_divided?: boolean | undefined;
|
|
497
|
+
can_print?: boolean | undefined;
|
|
491
498
|
} | undefined;
|
|
492
499
|
tags?: Array<string> | undefined;
|
|
493
500
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -513,6 +520,7 @@ export default function useCanvasHistory(): {
|
|
|
513
520
|
can_download?: boolean | undefined;
|
|
514
521
|
can_share?: boolean | undefined;
|
|
515
522
|
can_be_divided?: boolean | undefined;
|
|
523
|
+
can_print?: boolean | undefined;
|
|
516
524
|
} | undefined;
|
|
517
525
|
tags?: Array<string> | undefined;
|
|
518
526
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -609,6 +617,7 @@ export default function useCanvasHistory(): {
|
|
|
609
617
|
can_download?: boolean | undefined;
|
|
610
618
|
can_share?: boolean | undefined;
|
|
611
619
|
can_be_divided?: boolean | undefined;
|
|
620
|
+
can_print?: boolean | undefined;
|
|
612
621
|
} | undefined;
|
|
613
622
|
tags?: string[] | undefined;
|
|
614
623
|
thumbnail_url?: import('../../../main.lib').FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -633,6 +642,7 @@ export default function useCanvasHistory(): {
|
|
|
633
642
|
can_download?: boolean | undefined;
|
|
634
643
|
can_share?: boolean | undefined;
|
|
635
644
|
can_be_divided?: boolean | undefined;
|
|
645
|
+
can_print?: boolean | undefined;
|
|
636
646
|
} | undefined;
|
|
637
647
|
tags?: string[] | undefined;
|
|
638
648
|
};
|
|
@@ -655,6 +665,7 @@ export default function useCanvasHistory(): {
|
|
|
655
665
|
can_download?: boolean | undefined;
|
|
656
666
|
can_share?: boolean | undefined;
|
|
657
667
|
can_be_divided?: boolean | undefined;
|
|
668
|
+
can_print?: boolean | undefined;
|
|
658
669
|
} | undefined;
|
|
659
670
|
tags?: string[] | undefined;
|
|
660
671
|
thumbnail_url?: import('../../../main.lib').FileRetrieve["thumbnail_url"] | undefined;
|
|
@@ -729,6 +740,7 @@ export default function useCanvasHistory(): {
|
|
|
729
740
|
can_download?: boolean | undefined;
|
|
730
741
|
can_share?: boolean | undefined;
|
|
731
742
|
can_be_divided?: boolean | undefined;
|
|
743
|
+
can_print?: boolean | undefined;
|
|
732
744
|
} | undefined;
|
|
733
745
|
metadata?: Record<string, any> | undefined;
|
|
734
746
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -327,6 +327,7 @@ export default function useCanvasTheme(): {
|
|
|
327
327
|
can_download?: boolean | undefined;
|
|
328
328
|
can_share?: boolean | undefined;
|
|
329
329
|
can_be_divided?: boolean | undefined;
|
|
330
|
+
can_print?: boolean | undefined;
|
|
330
331
|
} | undefined;
|
|
331
332
|
metadata?: Record<string, any> | undefined;
|
|
332
333
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -383,6 +384,7 @@ export default function useCanvasTheme(): {
|
|
|
383
384
|
can_download?: boolean | undefined;
|
|
384
385
|
can_share?: boolean | undefined;
|
|
385
386
|
can_be_divided?: boolean | undefined;
|
|
387
|
+
can_print?: boolean | undefined;
|
|
386
388
|
} | undefined;
|
|
387
389
|
metadata?: Record<string, any> | undefined;
|
|
388
390
|
app_metadata?: Record<string, any> | undefined;
|
|
@@ -25,6 +25,7 @@ export declare function usePopupApps(): {
|
|
|
25
25
|
can_download?: boolean | undefined;
|
|
26
26
|
can_share?: boolean | undefined;
|
|
27
27
|
can_be_divided?: boolean | undefined;
|
|
28
|
+
can_print?: boolean | undefined;
|
|
28
29
|
} | undefined;
|
|
29
30
|
metadata?: Record<string, any> | undefined;
|
|
30
31
|
app_metadata?: {
|
|
@@ -471,6 +472,7 @@ export declare function usePopupApps(): {
|
|
|
471
472
|
can_download?: boolean | undefined;
|
|
472
473
|
can_share?: boolean | undefined;
|
|
473
474
|
can_be_divided?: boolean | undefined;
|
|
475
|
+
can_print?: boolean | undefined;
|
|
474
476
|
} | undefined;
|
|
475
477
|
metadata?: Record<string, any> | undefined;
|
|
476
478
|
app_metadata?: {
|
|
@@ -25,6 +25,7 @@ export declare function provideMoveSlideModal(): {
|
|
|
25
25
|
can_download?: boolean | undefined;
|
|
26
26
|
can_share?: boolean | undefined;
|
|
27
27
|
can_be_divided?: boolean | undefined;
|
|
28
|
+
can_print?: boolean | undefined;
|
|
28
29
|
} | undefined;
|
|
29
30
|
tags?: Array<string> | undefined;
|
|
30
31
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -50,6 +51,7 @@ export declare function provideMoveSlideModal(): {
|
|
|
50
51
|
can_download?: boolean | undefined;
|
|
51
52
|
can_share?: boolean | undefined;
|
|
52
53
|
can_be_divided?: boolean | undefined;
|
|
54
|
+
can_print?: boolean | undefined;
|
|
53
55
|
} | undefined;
|
|
54
56
|
tags?: Array<string> | undefined;
|
|
55
57
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -74,6 +76,7 @@ export declare function provideMoveSlideModal(): {
|
|
|
74
76
|
can_download?: boolean | undefined;
|
|
75
77
|
can_share?: boolean | undefined;
|
|
76
78
|
can_be_divided?: boolean | undefined;
|
|
79
|
+
can_print?: boolean | undefined;
|
|
77
80
|
} | undefined;
|
|
78
81
|
tags?: Array<string> | undefined;
|
|
79
82
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -99,6 +102,7 @@ export declare function provideMoveSlideModal(): {
|
|
|
99
102
|
can_download?: boolean | undefined;
|
|
100
103
|
can_share?: boolean | undefined;
|
|
101
104
|
can_be_divided?: boolean | undefined;
|
|
105
|
+
can_print?: boolean | undefined;
|
|
102
106
|
} | undefined;
|
|
103
107
|
tags?: Array<string> | undefined;
|
|
104
108
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -25,6 +25,7 @@ export declare function provideMoveSlideModal(): {
|
|
|
25
25
|
can_download?: boolean | undefined;
|
|
26
26
|
can_share?: boolean | undefined;
|
|
27
27
|
can_be_divided?: boolean | undefined;
|
|
28
|
+
can_print?: boolean | undefined;
|
|
28
29
|
} | undefined;
|
|
29
30
|
tags?: Array<string> | undefined;
|
|
30
31
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -53,6 +54,7 @@ export declare function provideMoveSlideModal(): {
|
|
|
53
54
|
can_download?: boolean | undefined;
|
|
54
55
|
can_share?: boolean | undefined;
|
|
55
56
|
can_be_divided?: boolean | undefined;
|
|
57
|
+
can_print?: boolean | undefined;
|
|
56
58
|
} | undefined;
|
|
57
59
|
tags?: Array<string> | undefined;
|
|
58
60
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -81,6 +81,7 @@ export declare function provideAppStore({ initialCollection, t, confirmation, zI
|
|
|
81
81
|
can_download?: boolean | undefined;
|
|
82
82
|
can_share?: boolean | undefined;
|
|
83
83
|
can_be_divided?: boolean | undefined;
|
|
84
|
+
can_print?: boolean | undefined;
|
|
84
85
|
} | undefined;
|
|
85
86
|
tags?: Array<string> | undefined;
|
|
86
87
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -114,6 +115,7 @@ export declare function provideAppStore({ initialCollection, t, confirmation, zI
|
|
|
114
115
|
can_download?: boolean | undefined;
|
|
115
116
|
can_share?: boolean | undefined;
|
|
116
117
|
can_be_divided?: boolean | undefined;
|
|
118
|
+
can_print?: boolean | undefined;
|
|
117
119
|
} | undefined;
|
|
118
120
|
tags?: Array<string> | undefined;
|
|
119
121
|
readonly pspdfkit_auth_payload: Record<string, any> | null;
|
|
@@ -8,6 +8,13 @@ export interface Form {
|
|
|
8
8
|
permissions?: {
|
|
9
9
|
can_share?: boolean;
|
|
10
10
|
can_be_divided?: boolean;
|
|
11
|
+
can_print?: boolean;
|
|
12
|
+
};
|
|
13
|
+
metadata?: {
|
|
14
|
+
pitcher?: {
|
|
15
|
+
can_print?: boolean;
|
|
16
|
+
};
|
|
17
|
+
[key: string]: any;
|
|
11
18
|
};
|
|
12
19
|
tags?: string[];
|
|
13
20
|
tagUpdateOperation?: 'add' | 'remove' | 'replace' | 'clear';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type LaunchDarklyBooleanFlagKey = 'ai_code_generation_model' | 'ai_text_generation_model' | 'ai_image_generation_model' | 'ai_video_generation_model' | 'allow_ai_prompts_in_canvas_text' | 'allow_bulk_actions_canvases_files' | 'allow_content_grid_autofill' | 'allow_canvas_duplication' | 'allow_canvases_tables_columns_settings' | 'allow_table_column_resizing' | 'allow_creating_canvas_with_no_template' | 'allow_dynamic_data_table_for_scribble_component' | 'allow_html_for_scribble_component' | 'allow_embeddable_for_scribble_component' | 'allow_embeddable_hiding' | 'allow_multimedia_for_scribble_component' | 'allow_note_taking' | 'allow_rep_canvas_metadata_edit' | 'allow_rep_file_distributions' | 'allow_rep_file_rating' | 'allow_rep_file_upload' | 'allow_saving_annotations_in_personal_layer' | 'allow_user_to_edit_font_size_and_color_in_canvas_tokens' | 'are_sections_system_controlled' | 'enable_canvas_core_distributions' | 'enable_file_core_distributions' | 'copy_context_to_canvas' | 'copy_template_metadata_to_canvas' | 'disable_canvas_edit_for_reps' | 'disable_custom_tooltips' | 'disable_file_edit_content' | 'disable_fullscreen_canvas_builder' | 'disable_impact_web_browser_fullscreen' | 'display_section_list_name' | 'disable_download_canvas' | 'enable_ai_generated_thumbnails' | 'enable_analytics' | 'enable_app_developer_role' | 'enable_algolia_search' | 'enable_background_image_theme_options' | 'enable_better_canvas_builder_control_bars_on_zoom' | 'enable_bulk_update_file_attributes' | 'enable_canvas_as_home' | 'enable_canvas_blocks' | 'enable_canvas_node_debugging' | 'enable_canvas_locks' | 'enable_canvas_template_edit_in_impact' | 'enable_canvas_tokens' | 'enable_collaborations' | 'enable_collection_player_data_accessor' | 'enable_content_grid_data_accessor' | 'enable_content_type_change_in_content_selector' | 'enable_cross_tab_instance_reload_for_ld_sync' | 'enable_create_section_from_section_template' | 'enable_custom_display_overrides' | 'enable_default_crm_shape' | 'enable_detailed_date_format' | 'enable_dsr_readonly_annotations' | 'enable_dynamic_data_table_component' | 'enable_custom_data_tables' | 'enable_embedded_video_autoplay' | 'enable_embedded_video' | 'enable_enhanced_canvas_drawer_app' | 'enable_enhanced_indicators' | 'enable_enhanced_section_execution_states' | 'enable_experimental_canvas_builder_dnd' | 'enable_extra_file_data' | 'enable_file_pages_metadata' | 'enable_file_revisions' | 'enable_file_divisible_permission' | 'enable_folder_details_edit' | 'enable_handlebar_template_support' | 'enable_height_in_component_theming' | 'enable_hotspot_visibility' | 'enable_improved_canvas_node_updating' | 'enable_individual_users_in_file_distribution' | 'enable_insearch_in_section_selector' | 'enable_instance_cloner' | 'enable_advanced_cloner' | 'enable_instance_editor_role' | 'enable_instance_navigation_from_management' | 'enable_knock_notifications' | 'enable_maintain_section_theme_control' | 'enable_metadata_in_file_uploads_with_default_values' | 'enable_more_intuitive_component_spacing' | 'enable_multimedia_component_ai_images' | 'enable_new_meeting_bar' | 'enable_original_pdf_link' | 'enable_scale_content' | 'enable_sorting_in_tiptap_table' | 'enable_theme_assets' | 'enable_toc_enhancements_to_support_same_section_in_section_list' | 'enable_pia_assistant' | 'enable_pipe_character_multi_search' | 'enable_popup_apps' | 'enable_reorder_search' | 'enable_reorder_scribble_isolation' | 'enable_reorder_component_options_menu' | 'enable_resizable_multimedia_component' | 'enable_responsive_scribble_component' | 'enable_saved_canvases_filters' | 'enable_short_tag_column_in_tables' | 'enable_scribble_component' | 'enable_scribble_content_as_background' | 'enable_search_and_filters_in_multimedia_component' | 'enable_section_context_in_dsr' | 'enable_selectors_dnd' | 'enable_section_selector_edit_section' | 'enable_smart_folders' | 'enable_smart_folders_for_sections' | 'enable_smart_folders_in_section_selector' | 'enable_smart_folders_in_files' | 'enable_sorting_in_sections' | 'enable_suggested_tags' | 'enable_template_component_permissions' | 'enable_template_folders' | 'enable_theme_options_border_radius' | 'enable_themes' | 'hide_asset_uploader' | 'include_files_content_in_print' | 'interpolate_rep_canvases_on_edit_mode' | 'is_fe_sentry_enabled' | 'is_timeline_component_allowed' | 'launch_in_full_screen_on_present_mode' | 'prefer_online_handlers' | 'restrict_owned_files_from_admins' | 'show_asset_manager_for_multimedia' | 'show_clear_all_annotations_button' | 'show_content_selector_list_view' | 'show_metadata_filters_in_all_canvas_things' | 'show_only_preview_mode_for_html_component' | 'show_popularity_icons' | 'use_core_endpoint_for_analytics' | 'convert_pptx_to_section_with_scribble_pdfjs' | 'use_short_url_for_shared_link' | 'use_zoho_instead_of_ms_wopi' | 'enable_new_section_list' | 'enable_sharebox_apps' | 'enable_sharebox_bulk_filtering' | 'enable_back_to_previous_location_in_canvas' | 'enable_crm_shape_for_external_links' | 'enable_adaptive_popup_apps' | 'enable_file_version_polling' | 'skip_pspdfkit_wait_for_high_res_thumbs' | 'enable_reactive_scribble_component_toolbar' | 'enable_embeddable_full_screen_mode' | 'enable_enhanced_user_management' | 'keep_static_pptx_editable' | 'enable_canvas_pdf_dimensions' | 'enable_editable_pptx_of_canvas' | 'enable_canvas_control_bars_collapse' | 'enable_rep_app_visibility_order';
|
|
1
|
+
export type LaunchDarklyBooleanFlagKey = 'ai_code_generation_model' | 'ai_text_generation_model' | 'ai_image_generation_model' | 'ai_video_generation_model' | 'allow_ai_prompts_in_canvas_text' | 'allow_bulk_actions_canvases_files' | 'allow_content_grid_autofill' | 'allow_canvas_duplication' | 'allow_canvases_tables_columns_settings' | 'allow_table_column_resizing' | 'allow_creating_canvas_with_no_template' | 'allow_dynamic_data_table_for_scribble_component' | 'allow_html_for_scribble_component' | 'allow_embeddable_for_scribble_component' | 'allow_embeddable_hiding' | 'allow_multimedia_for_scribble_component' | 'allow_note_taking' | 'allow_rep_canvas_metadata_edit' | 'allow_rep_file_distributions' | 'allow_rep_file_rating' | 'allow_rep_file_upload' | 'allow_saving_annotations_in_personal_layer' | 'allow_user_to_edit_font_size_and_color_in_canvas_tokens' | 'are_sections_system_controlled' | 'enable_canvas_core_distributions' | 'enable_file_core_distributions' | 'copy_context_to_canvas' | 'copy_template_metadata_to_canvas' | 'disable_canvas_edit_for_reps' | 'disable_custom_tooltips' | 'disable_file_edit_content' | 'disable_fullscreen_canvas_builder' | 'disable_impact_web_browser_fullscreen' | 'display_section_list_name' | 'disable_download_canvas' | 'enable_ai_generated_thumbnails' | 'enable_analytics' | 'enable_app_developer_role' | 'enable_algolia_search' | 'enable_background_image_theme_options' | 'enable_better_canvas_builder_control_bars_on_zoom' | 'enable_bulk_update_file_attributes' | 'enable_canvas_as_home' | 'enable_canvas_blocks' | 'enable_canvas_node_debugging' | 'enable_canvas_locks' | 'enable_canvas_template_edit_in_impact' | 'enable_canvas_tokens' | 'enable_collaborations' | 'enable_collection_player_data_accessor' | 'enable_content_grid_data_accessor' | 'enable_content_type_change_in_content_selector' | 'enable_cross_tab_instance_reload_for_ld_sync' | 'enable_create_section_from_section_template' | 'enable_custom_display_overrides' | 'enable_default_crm_shape' | 'enable_detailed_date_format' | 'enable_dsr_readonly_annotations' | 'enable_dynamic_data_table_component' | 'enable_custom_data_tables' | 'enable_embedded_video_autoplay' | 'enable_embedded_video' | 'enable_enhanced_canvas_drawer_app' | 'enable_enhanced_indicators' | 'enable_enhanced_section_execution_states' | 'enable_experimental_canvas_builder_dnd' | 'enable_extra_file_data' | 'enable_file_pages_metadata' | 'enable_file_revisions' | 'enable_file_divisible_permission' | 'enable_folder_details_edit' | 'enable_handlebar_template_support' | 'enable_height_in_component_theming' | 'enable_hotspot_visibility' | 'enable_improved_canvas_node_updating' | 'enable_individual_users_in_file_distribution' | 'enable_insearch_in_section_selector' | 'enable_instance_cloner' | 'enable_advanced_cloner' | 'enable_instance_editor_role' | 'enable_instance_navigation_from_management' | 'enable_knock_notifications' | 'enable_maintain_section_theme_control' | 'enable_metadata_in_file_uploads_with_default_values' | 'enable_more_intuitive_component_spacing' | 'enable_multimedia_component_ai_images' | 'enable_new_meeting_bar' | 'enable_original_pdf_link' | 'enable_scale_content' | 'enable_sorting_in_tiptap_table' | 'enable_theme_assets' | 'enable_toc_enhancements_to_support_same_section_in_section_list' | 'enable_pia_assistant' | 'enable_pipe_character_multi_search' | 'enable_popup_apps' | 'enable_reorder_search' | 'enable_reorder_scribble_isolation' | 'enable_reorder_component_options_menu' | 'enable_resizable_multimedia_component' | 'enable_responsive_scribble_component' | 'enable_saved_canvases_filters' | 'enable_short_tag_column_in_tables' | 'enable_scribble_component' | 'enable_scribble_content_as_background' | 'enable_search_and_filters_in_multimedia_component' | 'enable_section_context_in_dsr' | 'enable_selectors_dnd' | 'enable_section_selector_edit_section' | 'enable_smart_folders' | 'enable_smart_folders_for_sections' | 'enable_smart_folders_in_section_selector' | 'enable_smart_folders_in_files' | 'enable_sorting_in_sections' | 'enable_suggested_tags' | 'enable_template_component_permissions' | 'enable_template_folders' | 'enable_theme_options_border_radius' | 'enable_themes' | 'hide_asset_uploader' | 'include_files_content_in_print' | 'interpolate_rep_canvases_on_edit_mode' | 'is_fe_sentry_enabled' | 'is_timeline_component_allowed' | 'launch_in_full_screen_on_present_mode' | 'prefer_online_handlers' | 'restrict_owned_files_from_admins' | 'show_asset_manager_for_multimedia' | 'show_clear_all_annotations_button' | 'show_content_selector_list_view' | 'show_metadata_filters_in_all_canvas_things' | 'show_only_preview_mode_for_html_component' | 'show_popularity_icons' | 'use_core_endpoint_for_analytics' | 'convert_pptx_to_section_with_scribble_pdfjs' | 'use_short_url_for_shared_link' | 'use_zoho_instead_of_ms_wopi' | 'enable_new_section_list' | 'enable_sharebox_apps' | 'enable_sharebox_bulk_filtering' | 'enable_back_to_previous_location_in_canvas' | 'enable_crm_shape_for_external_links' | 'enable_adaptive_popup_apps' | 'enable_file_version_polling' | 'skip_pspdfkit_wait_for_high_res_thumbs' | 'enable_reactive_scribble_component_toolbar' | 'enable_embeddable_full_screen_mode' | 'enable_enhanced_user_management' | 'keep_static_pptx_editable' | 'enable_canvas_pdf_dimensions' | 'enable_editable_pptx_of_canvas' | 'enable_canvas_control_bars_collapse' | 'enable_rep_app_visibility_order' | 'enable_file_sharing_print_permissions';
|
|
2
2
|
export type LaunchDarklyNumberFlagKey = 'canvas_section_selector_page_size' | 'canvas_section_selector_selected_items_with_thumbnail_size';
|
|
3
3
|
type LaunchDarklyObjectFlags = {
|
|
4
4
|
canvas_manager_table_columns: CanvasManagerTableColumns;
|
package/locale/el.json
CHANGED
|
@@ -1845,6 +1845,7 @@
|
|
|
1845
1845
|
"ContentGrid": {
|
|
1846
1846
|
"downloadFile": "Λήψη αρχείου",
|
|
1847
1847
|
"downloadSlide": "Λήψη αρχείου σελίδας",
|
|
1848
|
+
"printingDisabled": "Μη εκτυπώσιμο",
|
|
1848
1849
|
"sharingDisabled": "Δεν θα εμφανίζεται όταν αυτός ο καμβάς κοινοποιείται εκτός εφαρμογής"
|
|
1849
1850
|
},
|
|
1850
1851
|
"CPdfDimensionsSelector": {
|
|
@@ -2708,10 +2709,14 @@
|
|
|
2708
2709
|
"multipleFolders": "{count} φάκελοι",
|
|
2709
2710
|
"multipleSections": "{count} ενότητες",
|
|
2710
2711
|
"multipleTemplates": "{count} πρότυπα",
|
|
2712
|
+
"printingDisabled": "Μη εκτυπώσιμο",
|
|
2713
|
+
"notDivisible": "Μη διαιρετό",
|
|
2711
2714
|
"notDivisibleExpanded": "Το αρχείο δεν μπορεί να διαιρεθεί. Δεν μπορείτε να επιλέξετε μεμονωμένες σελίδες",
|
|
2712
2715
|
"notShareable": "Μη κοινοποιήσιμο",
|
|
2713
2716
|
"preparing": "Προετοιμασία...",
|
|
2714
2717
|
"sharing": {
|
|
2718
|
+
"allowExternalSharing": "Επιτρέπεται η εξωτερική κοινοποίηση του αρχείου",
|
|
2719
|
+
"allowPrint": "Επιτρέπεται η εκτύπωση του αρχείου",
|
|
2715
2720
|
"options": {
|
|
2716
2721
|
"allowed": "Ενεργή",
|
|
2717
2722
|
"disabled": "Απενεργοποιημένη"
|
|
@@ -2836,4 +2841,4 @@
|
|
|
2836
2841
|
"invalidNumber": "Μη έγκυρος αριθμός"
|
|
2837
2842
|
}
|
|
2838
2843
|
}
|
|
2839
|
-
}
|
|
2844
|
+
}
|
package/locale/en.json
CHANGED
|
@@ -1845,6 +1845,7 @@
|
|
|
1845
1845
|
"ContentGrid": {
|
|
1846
1846
|
"downloadFile": "Download file",
|
|
1847
1847
|
"downloadSlide": "Download slide's file",
|
|
1848
|
+
"printingDisabled": "Not printable",
|
|
1848
1849
|
"sharingDisabled": "It will not be visible when this canvas is shared with an external party"
|
|
1849
1850
|
},
|
|
1850
1851
|
"CPdfDimensionsSelector": {
|
|
@@ -2708,10 +2709,14 @@
|
|
|
2708
2709
|
"multipleFolders": "{count} folders",
|
|
2709
2710
|
"multipleSections": "{count} sections",
|
|
2710
2711
|
"multipleTemplates": "{count} templates",
|
|
2712
|
+
"printingDisabled": "Not printable",
|
|
2713
|
+
"notDivisible": "Not divisible",
|
|
2711
2714
|
"notDivisibleExpanded": "File not dividable. You cannot select individual page(s)",
|
|
2712
2715
|
"notShareable": "Not shareable",
|
|
2713
2716
|
"preparing": "Preparing",
|
|
2714
2717
|
"sharing": {
|
|
2718
|
+
"allowExternalSharing": "Allow file to be shared externally",
|
|
2719
|
+
"allowPrint": "Allow file to be printed",
|
|
2715
2720
|
"options": {
|
|
2716
2721
|
"allowed": "Allowed",
|
|
2717
2722
|
"disabled": "Disabled"
|
|
@@ -2836,4 +2841,4 @@
|
|
|
2836
2841
|
"invalidNumber": "Invalid number"
|
|
2837
2842
|
}
|
|
2838
2843
|
}
|
|
2839
|
-
}
|
|
2844
|
+
}
|
package/locale/es.json
CHANGED
|
@@ -1845,6 +1845,7 @@
|
|
|
1845
1845
|
"ContentGrid": {
|
|
1846
1846
|
"downloadFile": "Descargar archivo",
|
|
1847
1847
|
"downloadSlide": "Descargar archivo de la diapositiva",
|
|
1848
|
+
"printingDisabled": "No imprimible",
|
|
1848
1849
|
"sharingDisabled": "No será visible cuando este lienzo se comparta con una parte externa"
|
|
1849
1850
|
},
|
|
1850
1851
|
"CPdfDimensionsSelector": {
|
|
@@ -2708,10 +2709,14 @@
|
|
|
2708
2709
|
"multipleFolders": "{count} carpetas",
|
|
2709
2710
|
"multipleSections": "{count} secciones",
|
|
2710
2711
|
"multipleTemplates": "{count} plantillas",
|
|
2711
|
-
"notDivisibleExpanded": "El archivo no se puede dividir. No puede seleccionar página(s) individual(es)",
|
|
2712
2712
|
"notShareable": "No compartible",
|
|
2713
|
+
"printingDisabled": "No imprimible",
|
|
2714
|
+
"notDivisible": "No divisible",
|
|
2715
|
+
"notDivisibleExpanded": "El archivo no se puede dividir. No puede seleccionar página(s) individual(es)",
|
|
2713
2716
|
"preparing": "Preparando",
|
|
2714
2717
|
"sharing": {
|
|
2718
|
+
"allowExternalSharing": "Permitir que el archivo se comparta externamente",
|
|
2719
|
+
"allowPrint": "Permitir que el archivo se imprima",
|
|
2715
2720
|
"options": {
|
|
2716
2721
|
"allowed": "Permitido",
|
|
2717
2722
|
"disabled": "Deshabilitado"
|
|
@@ -2836,4 +2841,4 @@
|
|
|
2836
2841
|
"invalidNumber": "Número inválido"
|
|
2837
2842
|
}
|
|
2838
2843
|
}
|
|
2839
|
-
}
|
|
2844
|
+
}
|
package/locale/fr.json
CHANGED
|
@@ -1845,6 +1845,7 @@
|
|
|
1845
1845
|
"ContentGrid": {
|
|
1846
1846
|
"downloadFile": "Télécharger le fichier",
|
|
1847
1847
|
"downloadSlide": "Télécharger le fichier de la diapositive",
|
|
1848
|
+
"printingDisabled": "Non imprimable",
|
|
1848
1849
|
"sharingDisabled": "Il ne sera pas visible lorsque ce canvas sera partagé avec une partie externe"
|
|
1849
1850
|
},
|
|
1850
1851
|
"CPdfDimensionsSelector": {
|
|
@@ -2708,10 +2709,14 @@
|
|
|
2708
2709
|
"multipleFolders": "{count} dossiers",
|
|
2709
2710
|
"multipleSections": "{count} sections",
|
|
2710
2711
|
"multipleTemplates": "{count} templates",
|
|
2712
|
+
"printingDisabled": "Non imprimable",
|
|
2713
|
+
"notDivisible": "Non divisible",
|
|
2711
2714
|
"notDivisibleExpanded": "Fichier non divisible. Vous ne pouvez pas sélectionner de page(s) individuelle(s)",
|
|
2712
2715
|
"notShareable": "Non partageable",
|
|
2713
2716
|
"preparing": "Préparation",
|
|
2714
2717
|
"sharing": {
|
|
2718
|
+
"allowExternalSharing": "Autoriser le partage externe du fichier",
|
|
2719
|
+
"allowPrint": "Autoriser l'impression du fichier",
|
|
2715
2720
|
"options": {
|
|
2716
2721
|
"allowed": "Autorisé",
|
|
2717
2722
|
"disabled": "Désactivé"
|
|
@@ -2836,4 +2841,4 @@
|
|
|
2836
2841
|
"invalidNumber": "Nombre invalide"
|
|
2837
2842
|
}
|
|
2838
2843
|
}
|
|
2839
|
-
}
|
|
2844
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pitcher/canvas-ui",
|
|
3
|
-
"version": "2026.1.
|
|
3
|
+
"version": "2026.1.22-122411-beta",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"core-js": "~3.39.0",
|
|
47
47
|
"dayjs": "^1.11.13",
|
|
48
48
|
"handlebars": "^4.7.8",
|
|
49
|
-
"lodash-es": "^4.17.
|
|
49
|
+
"lodash-es": "^4.17.23",
|
|
50
50
|
"uuid": "^13.0.0",
|
|
51
51
|
"vue": "3.5.13",
|
|
52
52
|
"vue-draggable-plus": "^0.6.0",
|