@bizy/core 21.8.5 → 21.8.6
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/fesm2022/bizy-core.mjs +22 -38
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -1
- package/types/bizy-core.d.ts +5 -7
package/package.json
CHANGED
package/types/bizy-core.d.ts
CHANGED
|
@@ -2627,16 +2627,14 @@ declare class BizyLoadingDirective {
|
|
|
2627
2627
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BizyLoadingDirective, "[bizyLoading]", never, { "bizyLoading": { "alias": "bizyLoading"; "required": false; }; "bizyLoadingType": { "alias": "bizyLoadingType"; "required": false; }; }, {}, never, never, true, never>;
|
|
2628
2628
|
}
|
|
2629
2629
|
|
|
2630
|
-
declare class BizyLongPressDirective implements OnDestroy {
|
|
2630
|
+
declare class BizyLongPressDirective implements AfterViewInit, OnDestroy {
|
|
2631
2631
|
#private;
|
|
2632
|
-
|
|
2633
|
-
bizyLongPress: EventEmitter<
|
|
2634
|
-
|
|
2635
|
-
onPressEnd(): void;
|
|
2636
|
-
private clearTimeout;
|
|
2632
|
+
bizyLongPressThreshold: number;
|
|
2633
|
+
bizyLongPress: EventEmitter<void>;
|
|
2634
|
+
ngAfterViewInit(): void;
|
|
2637
2635
|
ngOnDestroy(): void;
|
|
2638
2636
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyLongPressDirective, never>;
|
|
2639
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<BizyLongPressDirective, "[bizyLongPress]", never, { "
|
|
2637
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BizyLongPressDirective, "[bizyLongPress]", never, { "bizyLongPressThreshold": { "alias": "bizyLongPressThreshold"; "required": false; }; }, { "bizyLongPress": "bizyLongPress"; }, never, never, true, never>;
|
|
2640
2638
|
}
|
|
2641
2639
|
|
|
2642
2640
|
declare class BizyOnlyNumbersDirective {
|