@sirsluginston/sharedui 2.0.25 → 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
@@ -33,6 +33,8 @@ declare interface BadgeProps {
33
33
  size?: 'sm' | 'md';
34
34
  }
35
35
 
36
+ export declare const BellIcon: ({ size, color, className, style }: IconProps) => JSX_2.Element;
37
+
36
38
  /**
37
39
  * Brand Configuration
38
40
  *
@@ -197,6 +199,14 @@ declare interface FooterProps {
197
199
  poweredBy?: string;
198
200
  }
199
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
+
200
210
  export declare const Header: default_2.FC<HeaderProps>;
201
211
 
202
212
  declare interface HeaderProps {
@@ -221,6 +231,13 @@ declare interface HeroProps {
221
231
  };
222
232
  }
223
233
 
234
+ declare interface IconProps {
235
+ size?: number;
236
+ color?: string;
237
+ className?: string;
238
+ style?: default_2.CSSProperties;
239
+ }
240
+
224
241
  export declare const InfoSidebar: default_2.FC<InfoSidebarProps>;
225
242
 
226
243
  declare interface InfoSidebarProps {
@@ -255,6 +272,8 @@ declare interface ModalProps {
255
272
  showCloseButton?: boolean;
256
273
  }
257
274
 
275
+ export declare const MoonIcon: ({ size, color, className, style }: IconProps) => JSX_2.Element;
276
+
258
277
  export declare const NationPage: default_2.FC<NationPageProps>;
259
278
 
260
279
  export declare interface NationPageData {
@@ -278,6 +297,13 @@ export declare interface NavItem {
278
297
  children?: NavItem[];
279
298
  }
280
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
+
281
307
  export declare interface RecentEvent {
282
308
  event_id: string;
283
309
  event_title: string;
@@ -307,6 +333,8 @@ export declare interface ScoreConfig {
307
333
  betaDisclaimer?: boolean;
308
334
  }
309
335
 
336
+ export declare const SettingsIcon: ({ size, color, className, style }: IconProps) => JSX_2.Element;
337
+
310
338
  export declare const Shell: default_2.FC<ShellProps>;
311
339
 
312
340
  declare interface ShellProps {
@@ -354,6 +382,16 @@ declare interface SpinnerProps {
354
382
  color?: string;
355
383
  }
356
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
+
357
395
  export declare const StatePage: default_2.FC<StatePageProps>;
358
396
 
359
397
  export declare interface StatePageData {
@@ -378,6 +416,8 @@ declare interface StatGridProps {
378
416
  columns?: 2 | 3 | 4;
379
417
  }
380
418
 
419
+ export declare const SunIcon: ({ size, color, className, style }: IconProps) => JSX_2.Element;
420
+
381
421
  declare interface Tab {
382
422
  id: string;
383
423
  label: string;
@@ -414,6 +454,8 @@ declare interface TooltipProps {
414
454
  delay?: number;
415
455
  }
416
456
 
457
+ export declare const UserIcon: ({ size, color, className, style }: IconProps) => JSX_2.Element;
458
+
417
459
  export declare function useTheme(brandConfig: BrandConfig): {
418
460
  darkMode: boolean;
419
461
  toggleDarkMode: () => void;