@rxdrag/website-lib-core 0.0.88 → 0.0.90
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdrag/website-lib-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.90",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./index.ts"
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"@types/react-dom": "^19.1.0",
|
|
25
25
|
"eslint": "^7.32.0",
|
|
26
26
|
"typescript": "^5",
|
|
27
|
+
"@rxdrag/slate-preview": "1.2.61",
|
|
27
28
|
"@rxdrag/eslint-config-custom": "0.2.12",
|
|
28
|
-
"@rxdrag/tsconfig": "0.2.0"
|
|
29
|
-
"@rxdrag/slate-preview": "1.2.61"
|
|
29
|
+
"@rxdrag/tsconfig": "0.2.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@iconify/utils": "^3.0.2",
|
|
@@ -169,20 +169,20 @@ export const ReactVideoPlayer = forwardRef<HTMLDivElement, {
|
|
|
169
169
|
>
|
|
170
170
|
<div
|
|
171
171
|
className={clsx(
|
|
172
|
-
"flex items-center justify-center size-[130px] bg-white/15 rounded-full backdrop-blur-sm hover:shadow-md transition-all duration-300 hover:scale-110 group",
|
|
172
|
+
"flex items-center justify-center size-[90px] lg:size-[130px] bg-white/15 rounded-full backdrop-blur-sm hover:shadow-md transition-all duration-300 hover:scale-110 group",
|
|
173
173
|
classNames?.playButtonOuter
|
|
174
174
|
)}
|
|
175
175
|
>
|
|
176
176
|
<div
|
|
177
177
|
className={clsx(
|
|
178
|
-
"size-[90px] bg-white relative overflow-hidden rounded-full",
|
|
178
|
+
"size-[60px] lg:size-[90px] bg-white relative overflow-hidden rounded-full",
|
|
179
179
|
classNames?.playButtonInner
|
|
180
180
|
)}
|
|
181
181
|
>
|
|
182
182
|
<div className="absolute inset-0 cross-gradient box-shadow-1">
|
|
183
183
|
<div className="w-full h-full flex items-center justify-center">
|
|
184
184
|
<svg
|
|
185
|
-
className={clsx("size-8 text-gray-700", classNames?.playIcon)}
|
|
185
|
+
className={clsx("size-6 lg:size-8 text-gray-700", classNames?.playIcon)}
|
|
186
186
|
viewBox="0 0 30 32"
|
|
187
187
|
fill="currentColor"
|
|
188
188
|
xmlns="http://www.w3.org/2000/svg"
|