@acorex/components 5.1.0 → 5.1.1
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/esm2020/lib/carousel/carousel.class.mjs +1 -1
- package/esm2020/lib/carousel/carousel.component.mjs +1 -1
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/carousel/carousel.class.d.ts +2 -2
- package/lib/carousel/carousel.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -20,8 +20,8 @@ export interface AXCarousel {
|
|
|
20
20
|
gap: number;
|
|
21
21
|
focusChange: EventEmitter<number>;
|
|
22
22
|
focus: number;
|
|
23
|
-
dragChange: EventEmitter<
|
|
24
|
-
drag:
|
|
23
|
+
dragChange: EventEmitter<any>;
|
|
24
|
+
drag: any;
|
|
25
25
|
wheelChange: EventEmitter<boolean>;
|
|
26
26
|
wheel: boolean;
|
|
27
27
|
widthChange: EventEmitter<string>;
|
|
@@ -45,7 +45,7 @@ export declare class AXCarouselComponent extends AXBaseComponentMixin implements
|
|
|
45
45
|
private _autoWidth;
|
|
46
46
|
get autoWidth(): boolean;
|
|
47
47
|
set autoWidth(v: boolean);
|
|
48
|
-
dragChange: EventEmitter<
|
|
48
|
+
dragChange: EventEmitter<any>;
|
|
49
49
|
private _drag;
|
|
50
50
|
get drag(): any;
|
|
51
51
|
set drag(v: any);
|