@pitcher/js-api 1.26.0-beta.2 → 1.26.0-beta.4
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 +13 -1
- 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/canvas-builder/components/container/CanvasContent/pageWrapper.paginated.vue.d.ts +21 -9
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponent.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/components/container/EditableComponent/EditableComponentContent.vue.d.ts +2 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +20 -12
- package/lib/apps/canvas-builder/util/print.util.d.ts +29 -0
- package/lib/components/CContactSelector/CContactAccountListItem.vue.d.ts +1 -0
- package/lib/components/CContactSelector/CContactSelector.vue.d.ts +2 -0
- package/lib/components/CContactSelector/CContactSelectorAccountsWithContacts.vue.d.ts +11 -0
- package/lib/components/CContentError/CContentError.vue.d.ts +8 -0
- package/lib/composables/useCollectionPlayerOverlay.d.ts +18 -0
- package/lib/custom-naive-locales/pt-br.d.ts +124 -0
- package/lib/main.lib.d.ts +3 -0
- package/lib/sdk/api/modules/admin/canvas.admin.d.ts +24 -1
- package/lib/sdk/api/modules/admin/index.d.ts +1 -0
- package/lib/sdk/api/modules/admin/types.admin.d.ts +13 -0
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +35 -1
- package/lib/sdk/api/modules/ui/index.d.ts +1 -0
- package/lib/sdk/api/modules/ui/types.ui.d.ts +20 -0
- package/lib/sdk/main.d.ts +5 -0
- package/lib/types/canvases.d.ts +1 -0
- package/lib/types/i18n.types.d.ts +1 -1
- package/lib/types/organizationSettings.types.d.ts +3 -3
- package/lib/utils/iframeInitialize.d.ts +1 -1
- package/package.json +1 -1
|
@@ -83,9 +83,9 @@ export type OrganizationSettings = {
|
|
|
83
83
|
enable_quick_filters_for_search_metadata_filters?: boolean;
|
|
84
84
|
enable_thumbnails_for_templates_and_blocks?: boolean;
|
|
85
85
|
default_pdf_page_dimensions?: {
|
|
86
|
-
width?: number;
|
|
87
|
-
height?: number;
|
|
88
|
-
|
|
86
|
+
width?: number | string;
|
|
87
|
+
height?: number | string;
|
|
88
|
+
print_scale?: number;
|
|
89
89
|
};
|
|
90
90
|
disable_browser_search_context?: boolean;
|
|
91
91
|
location_prompt_type?: 'warning' | 'block';
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @param callback - Callback function to handle the response
|
|
6
6
|
* @param options - Additional options for initialization
|
|
7
7
|
*/
|
|
8
|
-
export declare function waitForIframeInitialize<InitT = any, CbT = any>(iframeRef: HTMLIFrameElement | null, initData: InitT, callback?: (data?: CbT) => void, options?: {
|
|
8
|
+
export declare function waitForIframeInitialize<InitT = any, CbT = any>(iframeRef: HTMLIFrameElement | null, initData: InitT, embedLocation: string, callback?: (data?: CbT) => void, options?: {
|
|
9
9
|
maxAttempts?: number;
|
|
10
10
|
retryInterval?: number;
|
|
11
11
|
componentName?: string;
|