@ethlete/core 1.3.0 → 1.4.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/esm2020/lib/utils/public-api.mjs +2 -1
- package/esm2020/lib/utils/rxjs.utils.mjs +27 -0
- package/fesm2015/ethlete-core.mjs +24 -1
- package/fesm2015/ethlete-core.mjs.map +1 -1
- package/fesm2020/ethlete-core.mjs +27 -1
- package/fesm2020/ethlete-core.mjs.map +1 -1
- package/lib/utils/public-api.d.ts +1 -0
- package/lib/utils/rxjs.utils.d.ts +9 -0
- package/package.json +1 -1
|
@@ -827,6 +827,32 @@ const createReactiveBindings = (...values) => {
|
|
|
827
827
|
};
|
|
828
828
|
};
|
|
829
829
|
|
|
830
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
831
|
+
class BehaviorSubjectWithSubscriberCount extends BehaviorSubject {
|
|
832
|
+
constructor() {
|
|
833
|
+
super(...arguments);
|
|
834
|
+
this._subscriberCount = 0;
|
|
835
|
+
}
|
|
836
|
+
get subscriberCount() {
|
|
837
|
+
return this._subscriberCount;
|
|
838
|
+
}
|
|
839
|
+
subscribe(observerOrNext) {
|
|
840
|
+
this._subscriberCount++;
|
|
841
|
+
const sub = super.subscribe(observerOrNext);
|
|
842
|
+
return {
|
|
843
|
+
...sub,
|
|
844
|
+
unsubscribe: () => {
|
|
845
|
+
sub.unsubscribe();
|
|
846
|
+
this._subscriberCount--;
|
|
847
|
+
},
|
|
848
|
+
};
|
|
849
|
+
}
|
|
850
|
+
unsubscribe() {
|
|
851
|
+
this._subscriberCount--;
|
|
852
|
+
return super.unsubscribe();
|
|
853
|
+
}
|
|
854
|
+
}
|
|
855
|
+
|
|
830
856
|
const elementCanScroll = (element) => {
|
|
831
857
|
const { scrollHeight, clientHeight, scrollWidth, clientWidth } = element;
|
|
832
858
|
return scrollHeight > clientHeight || scrollWidth > clientWidth;
|
|
@@ -2537,5 +2563,5 @@ const Validators = {
|
|
|
2537
2563
|
* Generated bundle index. Do not edit.
|
|
2538
2564
|
*/
|
|
2539
2565
|
|
|
2540
|
-
export { ANIMATABLE_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AnimatableDirective, AnimatedLifecycleDirective, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEFAULT_VIEWPORT_CONFIG, DestroyService, FocusVisibleService, IS_ARRAY_NOT_EMPTY, IS_EMAIL, IsArrayNotEmpty, IsEmail, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RouterStateService, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SeoDirective, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, Validators, ViewportService, clamp, clone, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createReactiveBindings, deleteCookie, elementCanScroll, equal, forceReflow, fromNextFrame, getCookie, getDomain, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, isGroupMatch, isKnockoutMatch, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, routerDisableScrollTop, setCookie, toArray, toArrayTrackByFn };
|
|
2566
|
+
export { ANIMATABLE_TOKEN, ANIMATED_LIFECYCLE_TOKEN, AnimatableDirective, AnimatedLifecycleDirective, BehaviorSubjectWithSubscriberCount, ClickObserverFactory, ClickObserverService, ClickOutsideDirective, ContentObserverService, CursorDragScrollDirective, DEFAULT_VIEWPORT_CONFIG, DestroyService, FocusVisibleService, IS_ARRAY_NOT_EMPTY, IS_EMAIL, IsArrayNotEmpty, IsEmail, LetContext, LetDirective, MUST_MATCH, Memo, MustMatch, MutationObserverFactory, NormalizeGameResultTypePipe, NormalizeMatchParticipantsPipe, NormalizeMatchScorePipe, NormalizeMatchStatePipe, NormalizeMatchTypePipe, OBSERVE_SCROLL_STATE, ObserveContentDirective, ObserveResizeDirective, ObserveScrollStateDirective, RepeatDirective, ResizeObserverFactory, ResizeObserverService, RouterStateService, SCROLL_OBSERVER_FIRST_ELEMENT_CLASS, SCROLL_OBSERVER_IGNORE_TARGET_CLASS, SCROLL_OBSERVER_LAST_ELEMENT_CLASS, SEO_DIRECTIVE_TOKEN, ScrollObserverFirstElementDirective, ScrollObserverIgnoreTargetDirective, ScrollObserverLastElementDirective, SeoDirective, StructuredDataComponent, ToArrayPipe, TypedQueryList, VIEWPORT_CONFIG, Validators, ViewportService, clamp, clone, createFlipAnimation, createFlipAnimationGroup, createMediaQueryObservable, createReactiveBindings, deleteCookie, elementCanScroll, equal, forceReflow, fromNextFrame, getCookie, getDomain, getGroupMatchPoints, getGroupMatchScore, getKnockoutMatchScore, getMatchScoreSubLine, hasCookie, isGroupMatch, isKnockoutMatch, mergeSeoConfig, nextFrame, normalizeGameResultType, normalizeMatchParticipant, normalizeMatchParticipants, normalizeMatchScore, normalizeMatchState, normalizeMatchType, provideViewportConfig, routerDisableScrollTop, setCookie, toArray, toArrayTrackByFn };
|
|
2541
2567
|
//# sourceMappingURL=ethlete-core.mjs.map
|