@sirsluginston/sharedui 2.0.26 → 2.0.27

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/index.d.ts CHANGED
@@ -199,6 +199,14 @@ declare interface FooterProps {
199
199
  poweredBy?: string;
200
200
  }
201
201
 
202
+ export declare const GridLayout: ({ children, columns, gap }: GridLayoutProps) => JSX_2.Element;
203
+
204
+ declare interface GridLayoutProps {
205
+ children: default_2.ReactNode;
206
+ columns?: number;
207
+ gap?: string;
208
+ }
209
+
202
210
  export declare const Header: default_2.FC<HeaderProps>;
203
211
 
204
212
  declare interface HeaderProps {
@@ -289,6 +297,13 @@ export declare interface NavItem {
289
297
  children?: NavItem[];
290
298
  }
291
299
 
300
+ export declare const PageContainer: ({ children, darkMode }: PageContainerProps) => JSX_2.Element;
301
+
302
+ declare interface PageContainerProps {
303
+ children: default_2.ReactNode;
304
+ darkMode?: boolean;
305
+ }
306
+
292
307
  export declare interface RecentEvent {
293
308
  event_id: string;
294
309
  event_title: string;
@@ -367,6 +382,16 @@ declare interface SpinnerProps {
367
382
  color?: string;
368
383
  }
369
384
 
385
+ export declare const StatCard: ({ label, value, icon, className, style }: StatCardProps) => JSX_2.Element;
386
+
387
+ declare interface StatCardProps {
388
+ label: string;
389
+ value: string | number;
390
+ icon?: default_2.ReactNode;
391
+ className?: string;
392
+ style?: default_2.CSSProperties;
393
+ }
394
+
370
395
  export declare const StatePage: default_2.FC<StatePageProps>;
371
396
 
372
397
  export declare interface StatePageData {