@remotion/animated-emoji 4.0.363 → 4.0.365
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/package.json +3 -3
- package/.turbo/turbo-formatting.log +0 -4
- package/.turbo/turbo-lint.log +0 -15
- package/.turbo/turbo-make.log +0 -2
- package/bundle.ts +0 -18
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/eslint.config.mjs +0 -7
- package/src/AnimatedEmoji.tsx +0 -50
- package/src/calculate-emoji-src.ts +0 -21
- package/src/emoji-data.ts +0 -3346
- package/src/get-available-emoji.ts +0 -7
- package/src/index.ts +0 -3
- package/src/is-webkit.ts +0 -12
- package/tsconfig.json +0 -11
package/src/index.ts
DELETED
package/src/is-webkit.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export const isWebkit = () => {
|
|
2
|
-
if (typeof window === 'undefined') {
|
|
3
|
-
return false;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
const isSafariUserAgent = Boolean(
|
|
7
|
-
navigator.userAgent.match(/Version\/[\d.]+.*Safari/),
|
|
8
|
-
);
|
|
9
|
-
|
|
10
|
-
const isChrome = Boolean(navigator.userAgent.match(/CriOS\//));
|
|
11
|
-
return isSafariUserAgent || isChrome;
|
|
12
|
-
};
|
package/tsconfig.json
DELETED