@pairbo/ui-kit 0.4.15 → 0.4.16
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.
|
@@ -42,8 +42,6 @@ export default class PboEditorCardSlider extends PairboElement {
|
|
|
42
42
|
processedFileUrl: string | null;
|
|
43
43
|
};
|
|
44
44
|
type: EditorType;
|
|
45
|
-
allowPinchToToggle: boolean;
|
|
46
|
-
distance: null | number;
|
|
47
45
|
thumbnailCarousel: HTMLDivElement;
|
|
48
46
|
mainCarousel: HTMLDivElement;
|
|
49
47
|
zoomedPreview: PboDrawer;
|
|
@@ -55,7 +53,6 @@ export default class PboEditorCardSlider extends PairboElement {
|
|
|
55
53
|
mainImageTemplates: TemplateResult[];
|
|
56
54
|
handleCardChange(_: Card | null, newValue: Card | null): void;
|
|
57
55
|
handleFocusIndexChange(oldValue: number, newValue: number): void;
|
|
58
|
-
handleAllowPinchToToggle(): void;
|
|
59
56
|
/**
|
|
60
57
|
* Focus on a specific card.
|
|
61
58
|
*
|
|
@@ -65,9 +62,7 @@ export default class PboEditorCardSlider extends PairboElement {
|
|
|
65
62
|
focusOn(index: number): void;
|
|
66
63
|
closeZoomedPreview: () => void;
|
|
67
64
|
openZoomedPreview: () => void;
|
|
68
|
-
handleOpenZoomedClick: (
|
|
69
|
-
handleTouchMove: (e: TouchEvent) => void;
|
|
70
|
-
handleTouchEnd: () => void;
|
|
65
|
+
handleOpenZoomedClick: () => void;
|
|
71
66
|
get mainSlides(): TemplateResult<1> | never[];
|
|
72
67
|
private zoomIcon;
|
|
73
68
|
render(): TemplateResult<1>;
|