feat: release v0.0.1
This commit is contained in:
3
dist/react/video-player/shared/math.d.ts
vendored
Normal file
3
dist/react/video-player/shared/math.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export declare const gcd: (a: number, b: number) => number;
|
||||
export declare const numWord: (value: number, words: [string, string, string]) => string;
|
||||
//# sourceMappingURL=math.d.ts.map
|
||||
1
dist/react/video-player/shared/math.d.ts.map
vendored
Normal file
1
dist/react/video-player/shared/math.d.ts.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"math.d.ts","sourceRoot":"","sources":["../../../../src/react/video-player/shared/math.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,GAAG,GAAI,GAAG,MAAM,EAAE,GAAG,MAAM,KAAG,MAE1C,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,OAAO,MAAM,EAAE,OAAO,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,WAiBrE,CAAC"}
|
||||
18
dist/react/video-player/shared/math.js
vendored
Normal file
18
dist/react/video-player/shared/math.js
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
export const gcd = (a, b) => {
|
||||
return b === 0 ? a : gcd(b, a % b);
|
||||
};
|
||||
export const numWord = (value, words) => {
|
||||
const normalized = Math.abs(value) % 100;
|
||||
const remainder = normalized % 10;
|
||||
if (normalized > 10 && normalized < 20) {
|
||||
return words[2];
|
||||
}
|
||||
if (remainder > 1 && remainder < 5) {
|
||||
return words[1];
|
||||
}
|
||||
if (remainder === 1) {
|
||||
return words[0];
|
||||
}
|
||||
return words[2];
|
||||
};
|
||||
//# sourceMappingURL=math.js.map
|
||||
1
dist/react/video-player/shared/math.js.map
vendored
Normal file
1
dist/react/video-player/shared/math.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"math.js","sourceRoot":"","sources":["../../../../src/react/video-player/shared/math.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC,CAAS,EAAE,CAAS,EAAU,EAAE;IACnD,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;AACpC,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,KAAa,EAAE,KAA+B,EAAE,EAAE;IACzE,MAAM,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC;IACzC,MAAM,SAAS,GAAG,UAAU,GAAG,EAAE,CAAC;IAElC,IAAI,UAAU,GAAG,EAAE,IAAI,UAAU,GAAG,EAAE,EAAE,CAAC;QACxC,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC;IACjB,CAAC;IAED,IAAI,SAAS,GAAG,CAAC,IAAI,SAAS,GAAG,CAAC,EAAE,CAAC;QACpC,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC;IACjB,CAAC;IAED,IAAI,SAAS,KAAK,CAAC,EAAE,CAAC;QACrB,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC;IACjB,CAAC;IAED,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC;AACjB,CAAC,CAAC"}
|
||||
4
dist/react/video-player/shared/types.d.ts
vendored
Normal file
4
dist/react/video-player/shared/types.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
import type { HTMLAttributes } from "react";
|
||||
export interface IBaseComponentProps extends HTMLAttributes<HTMLDivElement> {
|
||||
}
|
||||
//# sourceMappingURL=types.d.ts.map
|
||||
1
dist/react/video-player/shared/types.d.ts.map
vendored
Normal file
1
dist/react/video-player/shared/types.d.ts.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/react/video-player/shared/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAE5C,MAAM,WAAW,mBAAoB,SAAQ,cAAc,CAAC,cAAc,CAAC;CAAG"}
|
||||
2
dist/react/video-player/shared/types.js
vendored
Normal file
2
dist/react/video-player/shared/types.js
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export {};
|
||||
//# sourceMappingURL=types.js.map
|
||||
1
dist/react/video-player/shared/types.js.map
vendored
Normal file
1
dist/react/video-player/shared/types.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/react/video-player/shared/types.ts"],"names":[],"mappings":""}
|
||||
4
dist/react/video-player/shared/ui/content-skeleton.d.ts
vendored
Normal file
4
dist/react/video-player/shared/ui/content-skeleton.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
import { type HTMLAttributes } from "react";
|
||||
declare const ContentSkeleton: ({ className, ...props }: HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
|
||||
export default ContentSkeleton;
|
||||
//# sourceMappingURL=content-skeleton.d.ts.map
|
||||
1
dist/react/video-player/shared/ui/content-skeleton.d.ts.map
vendored
Normal file
1
dist/react/video-player/shared/ui/content-skeleton.d.ts.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"content-skeleton.d.ts","sourceRoot":"","sources":["../../../../../src/react/video-player/shared/ui/content-skeleton.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,KAAK,cAAc,EAAE,MAAM,OAAO,CAAC;AAEnD,QAAA,MAAM,eAAe,GAAI,yBAAyB,cAAc,CAAC,cAAc,CAAC,4CAE/E,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
||||
6
dist/react/video-player/shared/ui/content-skeleton.js
vendored
Normal file
6
dist/react/video-player/shared/ui/content-skeleton.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { jsx as _jsx } from "react/jsx-runtime";
|
||||
const ContentSkeleton = ({ className, ...props }) => {
|
||||
return _jsx("div", { className: className, "aria-busy": "true", ...props });
|
||||
};
|
||||
export default ContentSkeleton;
|
||||
//# sourceMappingURL=content-skeleton.js.map
|
||||
1
dist/react/video-player/shared/ui/content-skeleton.js.map
vendored
Normal file
1
dist/react/video-player/shared/ui/content-skeleton.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"content-skeleton.js","sourceRoot":"","sources":["../../../../../src/react/video-player/shared/ui/content-skeleton.tsx"],"names":[],"mappings":";AAEA,MAAM,eAAe,GAAG,CAAC,EAAE,SAAS,EAAE,GAAG,KAAK,EAAkC,EAAE,EAAE;IACnF,OAAO,cAAK,SAAS,EAAE,SAAS,eAAY,MAAM,KAAK,KAAK,GAAI,CAAC;AAClE,CAAC,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
||||
Reference in New Issue
Block a user