@ethlete/core 3.3.0 → 3.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/esm2022/lib/components/structured-data/structured-data.component.mjs +3 -3
- package/esm2022/lib/directives/animatable/animatable.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-lifecycle/animated-lifecycle.directive.mjs +3 -3
- package/esm2022/lib/directives/animated-overlay/animated-overlay.directive.mjs +3 -3
- package/esm2022/lib/directives/click-outside/click-outside.directive.mjs +3 -3
- package/esm2022/lib/directives/cursor-drag-scroll/cursor-drag-scroll.directive.mjs +3 -3
- package/esm2022/lib/directives/delayable/delayable.directive.mjs +3 -3
- package/esm2022/lib/directives/is-active-element/is-active-element.directive.mjs +3 -3
- package/esm2022/lib/directives/is-element/is-element.directive.mjs +3 -3
- package/esm2022/lib/directives/let/let.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-content/observe-content.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-resize/observe-resize.directive.mjs +3 -3
- package/esm2022/lib/directives/observe-scroll-state/observe-scroll-state.directive.mjs +3 -3
- package/esm2022/lib/directives/repeat/repeat.directive.mjs +4 -4
- package/esm2022/lib/directives/scroll-observer-first-element/scroll-observer-first-element.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-ignore-target/scroll-observer-ignore-target.directive.mjs +3 -3
- package/esm2022/lib/directives/scroll-observer-last-element/scroll-observer-last-element.directive.mjs +3 -3
- package/esm2022/lib/directives/seo/seo.directive.mjs +3 -3
- package/esm2022/lib/pipes/normalize-game-result-type/normalize-game-result-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-participants/normalize-match-participants.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-score/normalize-match-score.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-state/normalize-match-state.pipe.mjs +3 -3
- package/esm2022/lib/pipes/normalize-match-type/normalize-match-type.pipe.mjs +3 -3
- package/esm2022/lib/pipes/to-array/to-array.pipe.mjs +3 -3
- package/esm2022/lib/services/click-observer.service.mjs +6 -6
- package/esm2022/lib/services/content-observer.service.mjs +6 -6
- package/esm2022/lib/services/focus-visible.service.mjs +3 -3
- package/esm2022/lib/services/resize-observer.service.mjs +6 -6
- package/esm2022/lib/services/router-state.service.mjs +3 -3
- package/esm2022/lib/services/viewport.service.mjs +3 -3
- package/esm2022/lib/types/angular.types.mjs +1 -1
- package/esm2022/lib/utils/cookie.util.mjs +4 -4
- package/esm2022/lib/utils/smart-block-scroll-strategy.utils.mjs +1 -1
- package/fesm2022/ethlete-core.mjs +102 -102
- package/fesm2022/ethlete-core.mjs.map +1 -1
- package/lib/types/angular.types.d.ts +1 -1
- package/lib/utils/cookie.util.d.ts +2 -2
- package/package.json +5 -5
|
@@ -8,7 +8,7 @@ export type HostDirective = Type<unknown> | {
|
|
|
8
8
|
inputs?: string[];
|
|
9
9
|
outputs?: string[];
|
|
10
10
|
};
|
|
11
|
-
export declare class TypedQueryList<T> extends QueryList<T
|
|
11
|
+
export declare class TypedQueryList<T> extends QueryList<T> {
|
|
12
12
|
[Symbol.iterator]: () => Iterator<T>;
|
|
13
13
|
get changes(): Observable<TypedQueryList<T>>;
|
|
14
14
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const hasCookie: (name: string) => boolean;
|
|
2
2
|
export declare const getCookie: (name: string) => string | null | undefined;
|
|
3
|
-
export declare const setCookie: (name: string, data: string, expiresInDays?: number, domain?: string | null) => void;
|
|
4
|
-
export declare const deleteCookie: (name: string, path
|
|
3
|
+
export declare const setCookie: (name: string, data: string, expiresInDays?: number, domain?: string | null, path?: string) => void;
|
|
4
|
+
export declare const deleteCookie: (name: string, path?: string, domain?: string | null) => void;
|
|
5
5
|
export declare const getDomain: () => string | null;
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ethlete/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.5.0"
|
|
6
6
|
},
|
|
7
7
|
"peerDependencies": {
|
|
8
8
|
"@angular/common": "^15.2.1 || ^16.0.0",
|
|
9
9
|
"@angular/core": "^15.2.1 || ^16.0.0",
|
|
10
|
-
"@angular/platform-browser": "16.2.
|
|
10
|
+
"@angular/platform-browser": "16.2.3",
|
|
11
11
|
"@ethlete/types": "1.4.0",
|
|
12
12
|
"rxjs": "7.8.1",
|
|
13
|
-
"@angular/cdk": "16.2.
|
|
13
|
+
"@angular/cdk": "16.2.2",
|
|
14
14
|
"@floating-ui/dom": "1.5.1",
|
|
15
|
-
"@angular/router": "16.2.
|
|
16
|
-
"@angular/forms": "16.2.
|
|
15
|
+
"@angular/router": "16.2.3",
|
|
16
|
+
"@angular/forms": "16.2.3"
|
|
17
17
|
},
|
|
18
18
|
"module": "fesm2022/ethlete-core.mjs",
|
|
19
19
|
"typings": "index.d.ts",
|