@pitcher/js-api 1.22.0 → 1.23.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.
- package/js-api.esm.js +52 -43
- package/js-api.esm.js.map +1 -1
- package/js-api.umd.min.js +9 -9
- package/js-api.umd.min.js.map +1 -1
- package/lib/apps/browser/stores/api.d.ts +0 -12
- package/lib/apps/canvas-builder/App.vue.d.ts +256 -177
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentActionToolbar.vue.d.ts +0 -2
- package/lib/apps/canvas-builder/components/ui/Block/Block.vue.d.ts +11 -0
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/composables/tracking.use.d.ts +4 -0
- package/lib/apps/canvas-builder/components/ui/CollectionPlayer/utils/type.util.d.ts +4 -4
- package/lib/apps/canvas-builder/components/ui/SectionList/Execution/SectionListExecution.vue.d.ts +10 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorItem.vue.d.ts +3 -0
- package/lib/apps/canvas-builder/components/ui/SectionList/SectionSelectorToolbar.vue.d.ts +2 -2
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +570 -0
- package/lib/apps/canvas-builder/composables/useCanvasBlocks.d.ts +837 -0
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +126 -0
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +9 -5
- package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +23 -4
- package/lib/apps/canvas-builder/types/canvas.d.ts +40 -4
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +6 -2
- package/lib/apps/canvas-selector/stores/app.d.ts +14 -0
- package/lib/apps/content-selector/appTypes.d.ts +2 -0
- package/lib/apps/content-selector/stores/app.d.ts +1 -0
- package/lib/components/CApexChart/CApexChartLine.vue.d.ts +7 -3
- package/lib/components/CConfigEditor/CConfigEditor.validators.d.ts +3 -1
- package/lib/components/CConfigEditor/CConfigEditor.vue.d.ts +3 -0
- package/lib/components/{CCreateTemplateOrSectionModal/CCreateTemplateOrSectionModal.vue.d.ts → CCreateTemplateSectionBlockModal/CCreateTemplateSectionBlockModal.vue.d.ts} +2 -1
- package/lib/components/CEntitySelector/CEntitySelector.vue.d.ts +4 -0
- package/lib/components/CFilePanel/CFilePanel.use.d.ts +12 -0
- package/lib/components/CFilePanel/CFilePanel.vue.d.ts +14 -0
- package/lib/components/CFileViewer/CFileViewer.vue.d.ts +196 -6
- package/lib/components/CFileViewer/CFileViewerTop.vue.d.ts +6 -4
- package/lib/components/CFileViewer/pdf/CFileViewer.pageThumbMetadata.pdf.use.d.ts +8 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.annotations.use.d.ts +2 -0
- package/lib/components/CFileViewer/pdf/CFileViewer.pdf.use.d.ts +4 -2
- package/lib/components/CFileViewer/pdf/CFileViewerBottom.pdf.vue.d.ts +5 -4
- package/lib/components/CFileViewer/pdf/CFileViewerCopyPagesMetadata.pdf.vue.d.ts +13 -0
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawer.pdf.vue.d.ts +26 -0
- package/lib/components/CFileViewer/pdf/CFileViewerPageDrawerSelectPage.vue.d.ts +15 -0
- package/lib/components/CInfoBadge/CInfoBadge.vue.d.ts +5 -2
- package/lib/components/CJsonEditor/CJsonEditor.vue.d.ts +5 -1
- package/lib/components/CRichTextEditor/components/CContentLinkToolbar.vue.d.ts +10 -0
- package/lib/components/CRichTextEditor/components/CInsertDropdown.vue.d.ts +2 -0
- package/lib/components/CRichTextEditor/extensions/contentLink.d.ts +22 -0
- package/lib/components/CSearch/CSearch.vue.d.ts +2 -0
- package/lib/components/CSingleFileSelector/CSingleFileSelector.vue.d.ts +28 -0
- package/lib/components/CTableInput/CTableInput.vue.d.ts +2 -0
- package/lib/components/CTags/CTags.vue.d.ts +1 -0
- package/lib/components/CVideo/CVideo.types.d.ts +7 -0
- package/lib/components/CVideo/CVideo.vue.d.ts +3 -7
- package/lib/components/canvas-blocks/CBlockManagement.vue.d.ts +253 -0
- package/lib/components/canvas-blocks/CBlockManagementActionsCell.vue.d.ts +32 -0
- package/lib/components/canvas-blocks/CBlockManagementToolbar.vue.d.ts +60 -0
- package/lib/components/canvas-templates/CTemplateManagement.vue.d.ts +2 -2
- package/lib/components/savedCanvases/CSavedCanvasesManagementIndicatorsCell.vue.d.ts +7 -0
- package/lib/components/savedCanvases/smartFolders/SmartFolders.use.d.ts +9 -12
- package/lib/constants/cdp.const.d.ts +1 -0
- package/lib/main.lib.d.ts +4 -1
- package/lib/sdk/api/HighLevelApi.d.ts +5 -0
- package/lib/sdk/api/modules/canvas.d.ts +26 -1
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +10 -0
- package/lib/sdk/api/modules/ui/index.d.ts +1 -0
- package/lib/sdk/api/modules/ui/post-call.ui.d.ts +1 -1
- package/lib/sdk/api/modules/ui/types.ui.d.ts +1 -0
- package/lib/sdk/main.d.ts +18 -0
- package/lib/types/app.d.ts +1 -1
- package/lib/types/canvases.d.ts +10 -1
- package/lib/types/file.types.d.ts +15 -0
- package/lib/types/launchDarkly.types.d.ts +3 -1
- package/lib/types/organizationSettings.types.d.ts +8 -0
- package/package.json +1 -1
- package/types/openapi/index.d.ts +1 -0
- package/types/openapi/models/Canvas.d.ts +1 -0
- package/types/openapi/models/CanvasCreate.d.ts +1 -0
- package/types/openapi/models/CanvasCreateRequest.d.ts +1 -0
- package/types/openapi/models/CanvasRetrieve.d.ts +1 -0
- package/types/openapi/models/CanvasUpdate.d.ts +1 -0
- package/types/openapi/models/CanvasUpdateRequest.d.ts +1 -0
- package/types/openapi/models/DeletedCanvas.d.ts +1 -0
- package/types/openapi/models/PatchedCanvasIndicatorsRequest.d.ts +3 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +1 -0
- package/lib/apps/browser/components/Content/Panel/FilePanel/FilePanel.vue.d.ts +0 -2
- /package/lib/apps/canvas-builder/components/ui/CollectionPlayer/components/{PreviewImage.vue.d.ts → MainImage.vue.d.ts} +0 -0
- /package/lib/apps/canvas-builder/components/ui/CollectionPlayer/composables/{cache.use.d.ts → image-cache.use.d.ts} +0 -0
- /package/lib/{apps/browser/components/Content/Panel/FilePanel → components/CFilePanel}/BasicInfo.vue.d.ts +0 -0
- /package/lib/{apps/browser/components/Content/Panel/FilePanel → components/CFilePanel}/Details.vue.d.ts +0 -0
- /package/lib/{apps/browser/components/Content/Panel/FilePanel → components/CFilePanel}/Metadata.vue.d.ts +0 -0
- /package/lib/{apps/browser/components/Content/Panel/FilePanel → components/CFilePanel}/Tags.vue.d.ts +0 -0
- /package/lib/components/CFileViewer/pdf/{CFileViewer.pageFavorite.pdf.use.d.ts → CFileViewer.pageThumbFavorite.pdf.use.d.ts} +0 -0
package/lib/sdk/main.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export declare function useUi(): {
|
|
|
35
35
|
updateCanvas(payload: import('./api/modules/ui/types.ui').UiUpdateCanvasRequest): Promise<import('../main.lib').CanvasRetrieve>;
|
|
36
36
|
appLoaded(): Promise<void>;
|
|
37
37
|
appResize(payload: import('./api/modules/ui/types.ui').UiAppResizeRequest): Promise<void>;
|
|
38
|
+
closeCanvasSectionExecution(): Promise<void>;
|
|
38
39
|
canvasNavigateNextPage(): Promise<void>;
|
|
39
40
|
canvasNavigatePreviousPage(): Promise<void>;
|
|
40
41
|
canvasNavigatePage(payload: import('./api/modules/ui/types.ui').UiCanvasNavigatePageRequest): Promise<void>;
|
|
@@ -189,6 +190,11 @@ export declare function useApi(options?: ApiOptions): {
|
|
|
189
190
|
instance_id?: import('../main.lib').Instance["id"];
|
|
190
191
|
fields?: string;
|
|
191
192
|
}): Promise<import('../main.lib').CanvasRetrieve>;
|
|
193
|
+
updateCanvasIndicators(payload: {
|
|
194
|
+
indicators: Record<string, import('../main.lib').CanvasIndicator>;
|
|
195
|
+
id: import('../main.lib').CanvasRetrieve["id"];
|
|
196
|
+
instance_id?: import('../main.lib').Instance["id"];
|
|
197
|
+
}): Promise<import('../main.lib').CanvasRetrieve>;
|
|
192
198
|
getCanvas(payload: {
|
|
193
199
|
id: import('../main.lib').CanvasRetrieve["id"];
|
|
194
200
|
fields?: string;
|
|
@@ -353,6 +359,7 @@ export declare function useApi(options?: ApiOptions): {
|
|
|
353
359
|
updateCanvas(payload: import('./api/modules/ui/types.ui').UiUpdateCanvasRequest): Promise<import('../main.lib').CanvasRetrieve>;
|
|
354
360
|
appLoaded(): Promise<void>;
|
|
355
361
|
appResize(payload: import('./api/modules/ui/types.ui').UiAppResizeRequest): Promise<void>;
|
|
362
|
+
closeCanvasSectionExecution(): Promise<void>;
|
|
356
363
|
canvasNavigateNextPage(): Promise<void>;
|
|
357
364
|
canvasNavigatePreviousPage(): Promise<void>;
|
|
358
365
|
canvasNavigatePage(payload: import('./api/modules/ui/types.ui').UiCanvasNavigatePageRequest): Promise<void>;
|
|
@@ -417,6 +424,11 @@ export declare function useApi(options?: ApiOptions): {
|
|
|
417
424
|
instance_id?: import('../main.lib').Instance["id"];
|
|
418
425
|
fields?: string;
|
|
419
426
|
}): Promise<import('../main.lib').CanvasRetrieve>;
|
|
427
|
+
updateCanvasIndicators(payload: {
|
|
428
|
+
indicators: Record<string, import('../main.lib').CanvasIndicator>;
|
|
429
|
+
id: import('../main.lib').CanvasRetrieve["id"];
|
|
430
|
+
instance_id?: import('../main.lib').Instance["id"];
|
|
431
|
+
}): Promise<import('../main.lib').CanvasRetrieve>;
|
|
420
432
|
getCanvas(payload: {
|
|
421
433
|
id: import('../main.lib').CanvasRetrieve["id"];
|
|
422
434
|
fields?: string;
|
|
@@ -533,6 +545,7 @@ export declare function useApi(options?: ApiOptions): {
|
|
|
533
545
|
updateCanvas(payload: import('./api/modules/ui/types.ui').UiUpdateCanvasRequest): Promise<import('../main.lib').CanvasRetrieve>;
|
|
534
546
|
appLoaded(): Promise<void>;
|
|
535
547
|
appResize(payload: import('./api/modules/ui/types.ui').UiAppResizeRequest): Promise<void>;
|
|
548
|
+
closeCanvasSectionExecution(): Promise<void>;
|
|
536
549
|
canvasNavigateNextPage(): Promise<void>;
|
|
537
550
|
canvasNavigatePreviousPage(): Promise<void>;
|
|
538
551
|
canvasNavigatePage(payload: import('./api/modules/ui/types.ui').UiCanvasNavigatePageRequest): Promise<void>;
|
|
@@ -588,6 +601,11 @@ export declare function useApi(options?: ApiOptions): {
|
|
|
588
601
|
deleteCanvas(payload: {
|
|
589
602
|
id: import('../main.lib').CanvasRetrieve["id"];
|
|
590
603
|
}): Promise<import('../main.lib').CanvasRetrieve>;
|
|
604
|
+
updateCanvasIndicators(payload: {
|
|
605
|
+
indicators: Record<string, import('../main.lib').CanvasIndicator>;
|
|
606
|
+
id: import('../main.lib').CanvasRetrieve["id"];
|
|
607
|
+
instance_id?: import('../main.lib').Instance["id"];
|
|
608
|
+
}): Promise<import('../main.lib').CanvasRetrieve>;
|
|
591
609
|
getCanvas(payload: {
|
|
592
610
|
id: import('../main.lib').CanvasRetrieve["id"];
|
|
593
611
|
fields?: string;
|
package/lib/types/app.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { File, MetadataTemplateFieldTypeEnum } from '../../types/openapi';
|
|
2
|
-
export type EmbedLocation = 'ui_app' | 'canvas' | 'dsr' | 'admin_instance' | 'overlay_app';
|
|
2
|
+
export type EmbedLocation = 'ui_app' | 'canvas' | 'dsr' | 'admin_instance' | 'overlay_app' | 'canvas_section_execution';
|
|
3
3
|
export type ModuleSettingsOption = {
|
|
4
4
|
label: string;
|
|
5
5
|
value: string;
|
package/lib/types/canvases.d.ts
CHANGED
|
@@ -21,4 +21,13 @@ export declare enum CanvasStatus {
|
|
|
21
21
|
READY = "ready",
|
|
22
22
|
DRAFT = "draft"
|
|
23
23
|
}
|
|
24
|
-
export type CanvasType = 'template' | 'section-template' | 'section' | 'canvas';
|
|
24
|
+
export type CanvasType = 'template' | 'section-template' | 'section' | 'canvas' | 'block';
|
|
25
|
+
export interface CanvasIndicator {
|
|
26
|
+
icon: string;
|
|
27
|
+
key: string;
|
|
28
|
+
text: string;
|
|
29
|
+
type?: 'default' | 'primary' | 'info' | 'success' | 'warning' | 'error';
|
|
30
|
+
background_color?: string;
|
|
31
|
+
color?: string;
|
|
32
|
+
tooltip_text?: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { FileRetrieve } from '../../types/openapi';
|
|
2
|
+
export type FilePageInfo = {
|
|
3
|
+
name?: string | null;
|
|
4
|
+
tags?: string[];
|
|
5
|
+
};
|
|
6
|
+
export type FilePageMetadata = Record<string, any>;
|
|
7
|
+
export type FileMetadata = {
|
|
8
|
+
pagesInfo?: Record<string, FilePageInfo>;
|
|
9
|
+
pagesMetadata?: Record<string, Record<string, any>>;
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
};
|
|
12
|
+
export interface PitcherFile extends Omit<FileRetrieve, 'metadata'> {
|
|
13
|
+
isDeleted?: boolean;
|
|
14
|
+
metadata: FileMetadata;
|
|
15
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type LaunchDarklyBooleanFlagKey = 'allow_ai_prompts_in_canvas_text' | 'allow_bulk_actions_canvases_files' | 'allow_canvas_duplication' | 'allow_canvas_history' | 'allow_canvas_ownership_change' | 'allow_content_grid_autofill' | 'allow_creating_canvas_with_no_template' | 'allow_embeddable_hiding' | 'allow_note_taking' | 'allow_rep_canvas_metadata_edit' | 'allow_rep_file_rating' | 'allow_rep_file_upload' | 'are_sections_system_controlled' | 'copy_context_to_canvas' | 'copy_template_metadata_to_canvas' | 'disable_canvas_edit_for_reps' | 'disable_file_edit_content' | 'disable_fullscreen_canvas_builder' | 'disable_impact_web_browser_fullscreen' | 'display_section_list_name' | 'enable_analytics' | 'enable_bulk_update_file_attributes' | 'enable_canvas_node_debugging' | 'enable_canvas_tokens' | 'enable_experimental_canvas_builder_dnd' | 'enable_knock_notifications' | 'enable_metadata_in_file_uploads_with_default_values' | 'enable_pipe_character_multi_search' | 'enable_section_selector_drag_n_drop' | 'hide_asset_uploader' | 'interpolate_rep_canvases_on_edit_mode' | 'is_fe_sentry_enabled' | 'is_meeting_bar_account_selection_disabled' | 'is_meeting_bar_hidden' | 'is_rep_canvas_creation_disabled' | 'is_shared_link_creation_disabled' | 'is_timeline_component_allowed' | 'launch_in_full_screen_on_present_mode' | 'launch_in_present_mode_on_creation' | 'reorder_component_in_drawer' | 'show_asset_manager_for_multimedia' | 'show_content_selector_list_view' | 'show_popularity_icons' | 'show_system_filters' | 'allow_canvases_tables_columns_settings' | 'prefer_online_handlers' | 'use_short_url_for_shared_link' | 'enable_suggested_tags' | 'enable_folder_details_edit' | 'enable_file_revisions' | 'show_clear_all_annotations_button' | 'allow_saving_annotations_in_personal_layer' | 'enable_embedded_video' | 'enable_embedded_video_autoplay' | 'enable_app_developer_role' | 'enable_instance_editor_role' | 'include_files_content_in_print' | 'enable_multimedia_component_ai_images' | 'enable_smart_folders' | 'enable_revamped_component_toolbar';
|
|
1
|
+
export type LaunchDarklyBooleanFlagKey = 'allow_ai_prompts_in_canvas_text' | 'allow_bulk_actions_canvases_files' | 'allow_canvas_duplication' | 'allow_canvas_history' | 'allow_canvas_ownership_change' | 'allow_content_grid_autofill' | 'allow_creating_canvas_with_no_template' | 'allow_embeddable_hiding' | 'allow_note_taking' | 'allow_rep_canvas_metadata_edit' | 'allow_rep_file_rating' | 'allow_rep_file_upload' | 'are_sections_system_controlled' | 'copy_context_to_canvas' | 'copy_template_metadata_to_canvas' | 'disable_canvas_edit_for_reps' | 'disable_file_edit_content' | 'disable_fullscreen_canvas_builder' | 'disable_impact_web_browser_fullscreen' | 'display_section_list_name' | 'enable_analytics' | 'enable_bulk_update_file_attributes' | 'enable_canvas_node_debugging' | 'enable_canvas_tokens' | 'enable_experimental_canvas_builder_dnd' | 'enable_knock_notifications' | 'enable_metadata_in_file_uploads_with_default_values' | 'enable_pipe_character_multi_search' | 'enable_section_selector_drag_n_drop' | 'hide_asset_uploader' | 'interpolate_rep_canvases_on_edit_mode' | 'is_fe_sentry_enabled' | 'is_meeting_bar_account_selection_disabled' | 'is_meeting_bar_hidden' | 'is_rep_canvas_creation_disabled' | 'is_shared_link_creation_disabled' | 'is_timeline_component_allowed' | 'launch_in_full_screen_on_present_mode' | 'launch_in_present_mode_on_creation' | 'reorder_component_in_drawer' | 'show_asset_manager_for_multimedia' | 'show_content_selector_list_view' | 'show_popularity_icons' | 'show_system_filters' | 'allow_canvases_tables_columns_settings' | 'prefer_online_handlers' | 'use_short_url_for_shared_link' | 'enable_suggested_tags' | 'enable_folder_details_edit' | 'enable_file_revisions' | 'show_clear_all_annotations_button' | 'allow_saving_annotations_in_personal_layer' | 'enable_embedded_video' | 'enable_embedded_video_autoplay' | 'enable_app_developer_role' | 'enable_instance_editor_role' | 'include_files_content_in_print' | 'enable_multimedia_component_ai_images' | 'enable_smart_folders' | 'enable_revamped_component_toolbar' | 'enable_create_section_from_section_template' | 'enable_canvas_blocks' | 'enable_enhanced_indicators' | 'enable_file_pages_metadata';
|
|
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_table_pagination: CanvasTablePagination;
|
|
@@ -11,6 +11,8 @@ declare const LaunchDarklyStringFlags: {
|
|
|
11
11
|
readonly section_list_mode: readonly ["pagination", "collapsibles"];
|
|
12
12
|
readonly canvas_component_grouping: readonly ["page", "page_break", "none"];
|
|
13
13
|
readonly batch_open_content_grid_ar_files: readonly ["off", "simultaneous", "swap"];
|
|
14
|
+
readonly section_selector_drag_n_drop_batch_add_style: readonly ["button", "buttons", "dropdown"];
|
|
15
|
+
readonly pspdfkit_client_version: readonly ["2024.6.0", "2024.7.0"];
|
|
14
16
|
};
|
|
15
17
|
type LaunchDarklyStringFlagValue<K extends LaunchDarklyStringFlagKey = LaunchDarklyStringFlagKey> = K extends LaunchDarklyStringFlagKey ? (typeof LaunchDarklyStringFlags)[K][number] : never;
|
|
16
18
|
type CanvasManagerVisibility = {
|
|
@@ -7,6 +7,7 @@ type SmartFolderRuleAttribute = {
|
|
|
7
7
|
display_name: string;
|
|
8
8
|
};
|
|
9
9
|
type SmartFolderRuleAttributes = {
|
|
10
|
+
sync?: boolean;
|
|
10
11
|
max_sync_limit?: number;
|
|
11
12
|
sync_chunk_size?: number;
|
|
12
13
|
files?: SmartFolderRuleAttribute[];
|
|
@@ -26,7 +27,14 @@ export type OrganizationSettings = {
|
|
|
26
27
|
section_thumbnail_url_transformer?: string;
|
|
27
28
|
pipe_multi_search_separator?: string;
|
|
28
29
|
enable_crm_privacy_mode?: boolean;
|
|
30
|
+
enable_indicators?: boolean;
|
|
29
31
|
smart_folder_rule_attributes?: SmartFolderRuleAttributes;
|
|
30
32
|
ios?: OrganizationSettings;
|
|
33
|
+
full_text_search_config?: string;
|
|
34
|
+
use_full_text_search_for_search_filter?: boolean;
|
|
35
|
+
include_file_content_in_full_text_search?: boolean;
|
|
36
|
+
include_file_metadata_in_full_text_search?: boolean;
|
|
37
|
+
include_canvas_content_in_full_text_search?: boolean;
|
|
38
|
+
include_canvas_metadata_in_full_text_search?: boolean;
|
|
31
39
|
};
|
|
32
40
|
export {};
|
package/package.json
CHANGED
package/types/openapi/index.d.ts
CHANGED
|
@@ -203,6 +203,7 @@ export type { PaginatedRevisionList } from './models/PaginatedRevisionList';
|
|
|
203
203
|
export type { PaginatedSearchResultList } from './models/PaginatedSearchResultList';
|
|
204
204
|
export type { PaginatedStorageRegionList } from './models/PaginatedStorageRegionList';
|
|
205
205
|
export type { PaginatedUserList } from './models/PaginatedUserList';
|
|
206
|
+
export type { PatchedCanvasIndicatorsRequest } from './models/PatchedCanvasIndicatorsRequest';
|
|
206
207
|
export type { PatchedCanvasUpdateRequest } from './models/PatchedCanvasUpdateRequest';
|
|
207
208
|
export type { PatchedCollaborationRequest } from './models/PatchedCollaborationRequest';
|
|
208
209
|
export type { PatchedContentDistributionGroupRequest } from './models/PatchedContentDistributionGroupRequest';
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/lib/{apps/browser/components/Content/Panel/FilePanel → components/CFilePanel}/Tags.vue.d.ts
RENAMED
|
File without changes
|