@gallop.software/studio 2.0.0 → 2.0.1

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/app/layout.tsx CHANGED
@@ -1,4 +1,7 @@
1
+ /** @jsxRuntime automatic */
2
+ /** @jsxImportSource react */
1
3
  import type { Metadata } from 'next'
4
+ import type { ReactNode } from 'react'
2
5
 
3
6
  export const metadata: Metadata = {
4
7
  title: 'Studio - Media Manager',
@@ -8,11 +11,11 @@ export const metadata: Metadata = {
8
11
  export default function RootLayout({
9
12
  children,
10
13
  }: {
11
- children: React.ReactNode
14
+ children: ReactNode
12
15
  }) {
13
16
  return (
14
17
  <html lang="en">
15
- <body style={{ margin: 0, padding: 0 }}>
18
+ <body style={{ margin: 0, padding: 0, backgroundColor: '#0a0a0a' }}>
16
19
  {children}
17
20
  </body>
18
21
  </html>
package/app/page.tsx CHANGED
@@ -2,9 +2,17 @@
2
2
 
3
3
  import dynamic from 'next/dynamic'
4
4
  import { css } from '@emotion/react'
5
- import { colors, fontStack } from '../src/components/tokens'
6
5
 
7
- // Dynamically import StudioUI to avoid SSR issues with Emotion
6
+ const colors = {
7
+ background: '#0a0a0a',
8
+ primary: '#635bff',
9
+ border: '#2a2a2a',
10
+ textSecondary: '#888888',
11
+ }
12
+
13
+ const fontStack = `-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif`
14
+
15
+ // Dynamically import StudioUI from compiled dist
8
16
  const StudioUI = dynamic(() => import('../src/components/StudioUI'), {
9
17
  ssr: false,
10
18
  loading: () => <LoadingState />,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gallop.software/studio",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Standalone media manager for Gallop templates - upload, process, and sync images to CDN",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",