@sirsluginston/sharedui 2.0.27 → 2.0.29

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