@synnaxlabs/media 0.48.0 → 0.50.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/dist/src/Logo/index.d.ts +3 -3
- package/package.json +10 -10
package/dist/src/Logo/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Logo as
|
|
1
|
+
import { Logo as BaseLogo } from './Logo';
|
|
2
2
|
import { LogoWatermark } from './LogoWatermark';
|
|
3
3
|
export { type LogoProps } from './Logo';
|
|
4
|
-
type
|
|
5
|
-
export interface LogoType extends
|
|
4
|
+
type BaseLogoType = typeof BaseLogo;
|
|
5
|
+
export interface LogoType extends BaseLogoType {
|
|
6
6
|
Watermark: typeof LogoWatermark;
|
|
7
7
|
}
|
|
8
8
|
export declare const Logo: LogoType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synnaxlabs/media",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.50.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Media Assets for Synnax Labs",
|
|
6
6
|
"repository": "https://github.com/synnaxlabs/synnax/tree/main/x/media",
|
|
@@ -14,20 +14,20 @@
|
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"clsx": "^2.1.1",
|
|
17
|
-
"react": "^19.2.
|
|
17
|
+
"react": "^19.2.3",
|
|
18
18
|
"react-icons": "^5.5.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/node": "^
|
|
22
|
-
"@types/react": "^19.2.
|
|
23
|
-
"@vitejs/plugin-react": "^5.1.
|
|
24
|
-
"eslint": "^9.39.
|
|
21
|
+
"@types/node": "^25.0.2",
|
|
22
|
+
"@types/react": "^19.2.7",
|
|
23
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
24
|
+
"eslint": "^9.39.2",
|
|
25
25
|
"madge": "^8.0.0",
|
|
26
26
|
"typescript": "^5.9.3",
|
|
27
|
-
"vite": "^7.
|
|
28
|
-
"
|
|
29
|
-
"@synnaxlabs/vite-plugin": "^0.
|
|
30
|
-
"
|
|
27
|
+
"vite": "^7.2.7",
|
|
28
|
+
"@synnaxlabs/tsconfig": "^0.50.0",
|
|
29
|
+
"@synnaxlabs/vite-plugin": "^0.50.0",
|
|
30
|
+
"eslint-config-synnaxlabs": "^0.50.0"
|
|
31
31
|
},
|
|
32
32
|
"files": [
|
|
33
33
|
"dist"
|