feat: release v0.0.1

This commit is contained in:
2026-02-27 09:50:13 +03:00
parent ed30903f96
commit 8f2c799235
321 changed files with 23986 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import { type ReactNode, type Ref } from "react";
import { IBaseComponentProps } from "../../shared/types";
interface IPlayerExtensionProps extends IBaseComponentProps {
className?: string;
children: ReactNode;
conteinerRef?: Ref<any>;
}
declare const PlayerExtension: ({ className, children, conteinerRef, ...rest }: IPlayerExtensionProps) => import("react/jsx-runtime").JSX.Element;
export default PlayerExtension;
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/react/video-player/components/player-extension/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,KAAK,SAAS,EAAE,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AAKxD,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AAEzD,UAAU,qBAAsB,SAAQ,mBAAmB;IAC1D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,SAAS,CAAC;IACpB,YAAY,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC;CACxB;AAED,QAAA,MAAM,eAAe,GAAI,gDAKtB,qBAAqB,4CAUvB,CAAC;AAEF,eAAe,eAAe,CAAC"}

View File

@@ -0,0 +1,8 @@
import { jsx as _jsx } from "react/jsx-runtime";
import cn from "classnames";
import baseStyles from "../../video.module.scss";
const PlayerExtension = ({ className, children, conteinerRef, ...rest }) => {
return (_jsx("div", { ref: conteinerRef, className: cn([baseStyles.videoMain, className]), ...rest, children: children }));
};
export default PlayerExtension;
//# sourceMappingURL=index.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/react/video-player/components/player-extension/index.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,MAAM,YAAY,CAAC;AAE5B,OAAO,UAAU,MAAM,yBAAyB,CAAC;AASjD,MAAM,eAAe,GAAG,CAAC,EACxB,SAAS,EACT,QAAQ,EACR,YAAY,EACZ,GAAG,IAAI,EACgB,EAAE,EAAE;IAC3B,OAAO,CACN,cACC,GAAG,EAAE,YAAY,EACjB,SAAS,EAAE,EAAE,CAAC,CAAC,UAAU,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC,KAC5C,IAAI,YAEP,QAAQ,GACJ,CACN,CAAC;AACH,CAAC,CAAC;AAEF,eAAe,eAAe,CAAC"}