@tirth_jasoliya/ui 1.0.4 → 1.0.5

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.cts CHANGED
@@ -1,5 +1,5 @@
1
- import * as react from 'react';
2
- import react__default, { ReactNode } from 'react';
1
+ import * as React$1 from 'react';
2
+ import React__default, { ReactNode } from 'react';
3
3
  import { ColumnDef, Table } from '@tanstack/react-table';
4
4
  import { LucideIcon } from 'lucide-react';
5
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
@@ -71,32 +71,32 @@ type DataTableProps<TData> = {
71
71
  children?: (table: Table<TData>) => React.ReactNode;
72
72
  };
73
73
 
74
- declare function DataTable<T>({ data, columns: initialColumns, filters, pagination, settings, header, footer, className, maxHeight, loading, error, emptyMessage, onRowSelectionChange, onExport, onRefresh, onTableReady, children, }: DataTableProps<T>): react.JSX.Element;
74
+ declare function DataTable<T>({ data, columns: initialColumns, filters, pagination, settings, header, footer, className, maxHeight, loading, error, emptyMessage, onRowSelectionChange, onExport, onRefresh, onTableReady, children, }: DataTableProps<T>): React$1.JSX.Element;
75
75
 
76
76
  declare const buttonVariants: (props?: ({
77
77
  variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
78
78
  size?: "default" | "sm" | "lg" | "icon" | null | undefined;
79
79
  } & class_variance_authority_types.ClassProp) | undefined) => string;
80
- declare function Button({ className, variant, size, asChild, ...props }: react.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
80
+ declare function Button({ className, variant, size, asChild, ...props }: React$1.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
81
81
  asChild?: boolean;
82
- }): react.JSX.Element;
82
+ }): React$1.JSX.Element;
83
83
 
84
- interface DataTableActionBarProps<TData> extends react.ComponentProps<typeof motion.div> {
84
+ interface DataTableActionBarProps<TData> extends React$1.ComponentProps<typeof motion.div> {
85
85
  table: Table<TData> | null;
86
86
  visible?: boolean;
87
87
  container?: Element | DocumentFragment | null;
88
- children: react.ReactNode;
88
+ children: React$1.ReactNode;
89
89
  }
90
- declare function DataTableActionBar<TData>({ table, visible: visibleProp, container: containerProp, children, className, ...props }: DataTableActionBarProps<TData>): react.ReactPortal | null;
91
- interface DataTableActionBarActionProps extends react.ComponentProps<typeof Button> {
90
+ declare function DataTableActionBar<TData>({ table, visible: visibleProp, container: containerProp, children, className, ...props }: DataTableActionBarProps<TData>): React$1.ReactPortal | null;
91
+ interface DataTableActionBarActionProps extends React$1.ComponentProps<typeof Button> {
92
92
  tooltip?: string;
93
93
  isPending?: boolean;
94
94
  }
95
- declare function DataTableActionBarAction({ size, tooltip, isPending, disabled, className, children, ...props }: DataTableActionBarActionProps): react.JSX.Element;
95
+ declare function DataTableActionBarAction({ size, tooltip, isPending, disabled, className, children, ...props }: DataTableActionBarActionProps): React$1.JSX.Element;
96
96
  interface DataTableActionBarSelectionProps<TData> {
97
97
  table: Table<TData> | null;
98
98
  }
99
- declare function DataTableActionBarSelection<TData>({ table }: DataTableActionBarSelectionProps<TData>): react.JSX.Element | null;
99
+ declare function DataTableActionBarSelection<TData>({ table }: DataTableActionBarSelectionProps<TData>): React$1.JSX.Element | null;
100
100
 
101
101
  type DataTemplateField<T> = {
102
102
  key: keyof T;
@@ -180,7 +180,7 @@ type DataTemplateActionBarProps<T> = {
180
180
  controller: DataTemplateController<T>;
181
181
  visible?: boolean;
182
182
  container?: Element | DocumentFragment | null;
183
- children: react__default.ReactNode;
183
+ children: React__default.ReactNode;
184
184
  className?: string;
185
185
  };
186
186
  type DataTemplateActionBarActionProps = {
@@ -190,18 +190,18 @@ type DataTemplateActionBarActionProps = {
190
190
  variant?: "default" | "secondary" | "outline" | "ghost";
191
191
  disabled?: boolean;
192
192
  className?: string;
193
- children: react__default.ReactNode;
193
+ children: React__default.ReactNode;
194
194
  onClick?: () => void;
195
195
  };
196
196
 
197
- declare function DataTemplate<T extends Record<string, any>>({ data, template, fields, filters, pagination, settings, header, footer, className, loading, error, emptyMessage, emptyIcon, onSelectionChange, onExport, onRefresh, onTemplateReady, children, }: DataTemplateProps<T>): react.JSX.Element;
197
+ declare function DataTemplate<T extends Record<string, any>>({ data, template, fields, filters, pagination, settings, header, footer, className, loading, error, emptyMessage, emptyIcon, onSelectionChange, onExport, onRefresh, onTemplateReady, children, }: DataTemplateProps<T>): React$1.JSX.Element;
198
198
 
199
- declare function DataTemplateActionBar<T>({ controller, visible: visibleProp, container: containerProp, children, className, ...props }: DataTemplateActionBarProps<T> & react.ComponentProps<typeof motion.div>): react.ReactPortal | null;
200
- declare function DataTemplateActionBarAction({ size, variant, tooltip, isPending, disabled, className, children, onClick, ...props }: DataTemplateActionBarActionProps): react.JSX.Element;
199
+ declare function DataTemplateActionBar<T>({ controller, visible: visibleProp, container: containerProp, children, className, ...props }: DataTemplateActionBarProps<T> & React$1.ComponentProps<typeof motion.div>): React$1.ReactPortal | null;
200
+ declare function DataTemplateActionBarAction({ size, variant, tooltip, isPending, disabled, className, children, onClick, ...props }: DataTemplateActionBarActionProps): React$1.JSX.Element;
201
201
  interface DataTemplateActionBarSelectionProps<T> {
202
202
  controller: DataTemplateController<T>;
203
203
  }
204
- declare function DataTemplateActionBarSelection<T>({ controller }: DataTemplateActionBarSelectionProps<T>): react.JSX.Element | null;
204
+ declare function DataTemplateActionBarSelection<T>({ controller }: DataTemplateActionBarSelectionProps<T>): React$1.JSX.Element | null;
205
205
 
206
206
  type SpacingSize = 'none' | 'tight' | 'default' | 'loose' | 'extra-loose';
207
207
  type AppContainerProps = {
@@ -258,13 +258,13 @@ type AppMetaContextType<TRoute extends string = string> = {
258
258
 
259
259
  declare const AppMetaProvider: ({ children }: {
260
260
  children: ReactNode;
261
- }) => react.JSX.Element;
261
+ }) => React$1.JSX.Element;
262
262
  declare function createTypedAppMetaContext<TRoute extends string>(): {
263
263
  TypedAppMetaProvider: ({ children }: {
264
264
  children: ReactNode;
265
- }) => react.JSX.Element;
265
+ }) => React$1.JSX.Element;
266
266
  useTypedAppMeta: () => AppMetaContextType<TRoute>;
267
- TypedAppMetaContext: react.Context<AppMetaContextType<TRoute> | undefined>;
267
+ TypedAppMetaContext: React$1.Context<AppMetaContextType<TRoute> | undefined>;
268
268
  };
269
269
 
270
270
  declare function createPageTemplateHook<TRoute extends string>({ useTypedAppMeta, }: {
@@ -290,11 +290,11 @@ type SplitRatio = "one-half" | "one-third" | "two-third" | "one-fourth" | "three
290
290
  type SheetSide = "right" | "bottom" | "left" | "top";
291
291
  type SheetMode = "fullscreen" | "container";
292
292
  type BaseAppContentProps = {
293
- children: react__default.ReactNode;
293
+ children: React__default.ReactNode;
294
294
  className?: string;
295
295
  variant?: "default" | "card" | "border" | "transparent";
296
- header?: react__default.ReactNode;
297
- footer?: react__default.ReactNode;
296
+ header?: React__default.ReactNode;
297
+ footer?: React__default.ReactNode;
298
298
  headerClassName?: string;
299
299
  footerClassName?: string;
300
300
  parentContainer?: boolean;
@@ -309,7 +309,7 @@ type SplitLayoutProps = BaseAppContentProps & {
309
309
  reverse?: boolean;
310
310
  };
311
311
  type SheetOptions = {
312
- sheetContent: react__default.ReactNode;
312
+ sheetContent: React__default.ReactNode;
313
313
  sheetWidth?: SplitRatio;
314
314
  sheetSide?: SheetSide;
315
315
  sheetMode?: SheetMode;
@@ -318,7 +318,7 @@ type SheetOptions = {
318
318
  sheetClassName?: string;
319
319
  isSheetOpen?: boolean;
320
320
  onSheetOpenChange?: (open: boolean) => void;
321
- sheetTrigger?: react__default.ReactNode;
321
+ sheetTrigger?: React__default.ReactNode;
322
322
  disableOverlay?: boolean;
323
323
  };
324
324
  type WithSheetLayoutProps = BaseAppContentProps & {
@@ -341,10 +341,10 @@ type AppFooterProps = {
341
341
  declare function createLayoutComponents<TRoute extends string>({ useTypedAppMeta, }: {
342
342
  useTypedAppMeta: () => AppMetaContextType<TRoute>;
343
343
  }): {
344
- AppHeader: (props: Omit<AppHeaderProps, "meta">) => react.JSX.Element;
345
- AppFooter: (props: Omit<AppFooterProps, "meta">) => react.JSX.Element;
346
- AppContent: (props: AppContentProps) => react.JSX.Element;
347
- AppContainer: (props: AppContainerProps) => react.JSX.Element;
344
+ AppHeader: (props: Omit<AppHeaderProps, "meta">) => React$1.JSX.Element;
345
+ AppFooter: (props: Omit<AppFooterProps, "meta">) => React$1.JSX.Element;
346
+ AppContent: (props: AppContentProps) => React$1.JSX.Element;
347
+ AppContainer: (props: AppContainerProps) => React$1.JSX.Element;
348
348
  };
349
349
 
350
350
  type CopyToClipboardProps = {
@@ -384,7 +384,7 @@ declare class GeneralHelper {
384
384
  private static compactFormatter;
385
385
  private static MONTH_NAMES_SHORT;
386
386
  static copyToClipboard(text: string): Promise<void>;
387
- static CopyToClipboard: ({ text, children, className, size, variant, }: CopyToClipboardProps) => react.JSX.Element;
387
+ static CopyToClipboard: ({ text, children, className, size, variant, }: CopyToClipboardProps) => React$1.JSX.Element;
388
388
  static formatINR(amount: number, options?: FormatINROptions): string;
389
389
  static formatDate(input: string | number | Date, options?: FormatDateOptions): string;
390
390
  static toProperCase(text: string): string;
@@ -392,15 +392,19 @@ declare class GeneralHelper {
392
392
  static StatusBadge: ({ status, className, showDot, capitalize, size, variant, customColors, icon, trueMessage, falseMessage, }: StatusBadgeProps & {
393
393
  trueMessage?: string;
394
394
  falseMessage?: string;
395
- }) => react.JSX.Element;
395
+ }) => React$1.JSX.Element;
396
396
  }
397
397
 
398
- interface CheckmarkProps {
399
- size?: number;
400
- strokeWidth?: number;
401
- color?: string;
402
- className?: string;
403
- }
404
- declare function Checkmark({ size, strokeWidth, color, className }: CheckmarkProps): react.JSX.Element;
398
+ declare const ErrorComponent: () => React$1.JSX.Element;
399
+
400
+ declare function CurrencyTransfer(): React$1.JSX.Element;
401
+
402
+ declare const Loader: () => React$1.JSX.Element;
403
+
404
+ declare const NotFound: () => React$1.JSX.Element;
405
+
406
+ declare const OfflineUI: () => React$1.JSX.Element;
407
+
408
+ declare const Unauthorized: () => React$1.JSX.Element;
405
409
 
406
- export { type AppMeta, AppMetaProvider, Checkmark, DataTable, DataTableActionBar, DataTableActionBarAction, DataTableActionBarSelection, type DataTableProps, DataTemplate, DataTemplateActionBar, DataTemplateActionBarAction, DataTemplateActionBarSelection, type DataTemplateProps, GeneralHelper, type GroupColumnDef, createLayoutComponents, createPageTemplateHook, createTypedAppMetaContext };
410
+ export { type AppMeta, AppMetaProvider, CurrencyTransfer, DataTable, DataTableActionBar, DataTableActionBarAction, DataTableActionBarSelection, type DataTableProps, DataTemplate, DataTemplateActionBar, DataTemplateActionBarAction, DataTemplateActionBarSelection, type DataTemplateProps, ErrorComponent, GeneralHelper, type GroupColumnDef, Loader, NotFound, OfflineUI, Unauthorized, createLayoutComponents, createPageTemplateHook, createTypedAppMetaContext };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import * as react from 'react';
2
- import react__default, { ReactNode } from 'react';
1
+ import * as React$1 from 'react';
2
+ import React__default, { ReactNode } from 'react';
3
3
  import { ColumnDef, Table } from '@tanstack/react-table';
4
4
  import { LucideIcon } from 'lucide-react';
5
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
@@ -71,32 +71,32 @@ type DataTableProps<TData> = {
71
71
  children?: (table: Table<TData>) => React.ReactNode;
72
72
  };
73
73
 
74
- declare function DataTable<T>({ data, columns: initialColumns, filters, pagination, settings, header, footer, className, maxHeight, loading, error, emptyMessage, onRowSelectionChange, onExport, onRefresh, onTableReady, children, }: DataTableProps<T>): react.JSX.Element;
74
+ declare function DataTable<T>({ data, columns: initialColumns, filters, pagination, settings, header, footer, className, maxHeight, loading, error, emptyMessage, onRowSelectionChange, onExport, onRefresh, onTableReady, children, }: DataTableProps<T>): React$1.JSX.Element;
75
75
 
76
76
  declare const buttonVariants: (props?: ({
77
77
  variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
78
78
  size?: "default" | "sm" | "lg" | "icon" | null | undefined;
79
79
  } & class_variance_authority_types.ClassProp) | undefined) => string;
80
- declare function Button({ className, variant, size, asChild, ...props }: react.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
80
+ declare function Button({ className, variant, size, asChild, ...props }: React$1.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
81
81
  asChild?: boolean;
82
- }): react.JSX.Element;
82
+ }): React$1.JSX.Element;
83
83
 
84
- interface DataTableActionBarProps<TData> extends react.ComponentProps<typeof motion.div> {
84
+ interface DataTableActionBarProps<TData> extends React$1.ComponentProps<typeof motion.div> {
85
85
  table: Table<TData> | null;
86
86
  visible?: boolean;
87
87
  container?: Element | DocumentFragment | null;
88
- children: react.ReactNode;
88
+ children: React$1.ReactNode;
89
89
  }
90
- declare function DataTableActionBar<TData>({ table, visible: visibleProp, container: containerProp, children, className, ...props }: DataTableActionBarProps<TData>): react.ReactPortal | null;
91
- interface DataTableActionBarActionProps extends react.ComponentProps<typeof Button> {
90
+ declare function DataTableActionBar<TData>({ table, visible: visibleProp, container: containerProp, children, className, ...props }: DataTableActionBarProps<TData>): React$1.ReactPortal | null;
91
+ interface DataTableActionBarActionProps extends React$1.ComponentProps<typeof Button> {
92
92
  tooltip?: string;
93
93
  isPending?: boolean;
94
94
  }
95
- declare function DataTableActionBarAction({ size, tooltip, isPending, disabled, className, children, ...props }: DataTableActionBarActionProps): react.JSX.Element;
95
+ declare function DataTableActionBarAction({ size, tooltip, isPending, disabled, className, children, ...props }: DataTableActionBarActionProps): React$1.JSX.Element;
96
96
  interface DataTableActionBarSelectionProps<TData> {
97
97
  table: Table<TData> | null;
98
98
  }
99
- declare function DataTableActionBarSelection<TData>({ table }: DataTableActionBarSelectionProps<TData>): react.JSX.Element | null;
99
+ declare function DataTableActionBarSelection<TData>({ table }: DataTableActionBarSelectionProps<TData>): React$1.JSX.Element | null;
100
100
 
101
101
  type DataTemplateField<T> = {
102
102
  key: keyof T;
@@ -180,7 +180,7 @@ type DataTemplateActionBarProps<T> = {
180
180
  controller: DataTemplateController<T>;
181
181
  visible?: boolean;
182
182
  container?: Element | DocumentFragment | null;
183
- children: react__default.ReactNode;
183
+ children: React__default.ReactNode;
184
184
  className?: string;
185
185
  };
186
186
  type DataTemplateActionBarActionProps = {
@@ -190,18 +190,18 @@ type DataTemplateActionBarActionProps = {
190
190
  variant?: "default" | "secondary" | "outline" | "ghost";
191
191
  disabled?: boolean;
192
192
  className?: string;
193
- children: react__default.ReactNode;
193
+ children: React__default.ReactNode;
194
194
  onClick?: () => void;
195
195
  };
196
196
 
197
- declare function DataTemplate<T extends Record<string, any>>({ data, template, fields, filters, pagination, settings, header, footer, className, loading, error, emptyMessage, emptyIcon, onSelectionChange, onExport, onRefresh, onTemplateReady, children, }: DataTemplateProps<T>): react.JSX.Element;
197
+ declare function DataTemplate<T extends Record<string, any>>({ data, template, fields, filters, pagination, settings, header, footer, className, loading, error, emptyMessage, emptyIcon, onSelectionChange, onExport, onRefresh, onTemplateReady, children, }: DataTemplateProps<T>): React$1.JSX.Element;
198
198
 
199
- declare function DataTemplateActionBar<T>({ controller, visible: visibleProp, container: containerProp, children, className, ...props }: DataTemplateActionBarProps<T> & react.ComponentProps<typeof motion.div>): react.ReactPortal | null;
200
- declare function DataTemplateActionBarAction({ size, variant, tooltip, isPending, disabled, className, children, onClick, ...props }: DataTemplateActionBarActionProps): react.JSX.Element;
199
+ declare function DataTemplateActionBar<T>({ controller, visible: visibleProp, container: containerProp, children, className, ...props }: DataTemplateActionBarProps<T> & React$1.ComponentProps<typeof motion.div>): React$1.ReactPortal | null;
200
+ declare function DataTemplateActionBarAction({ size, variant, tooltip, isPending, disabled, className, children, onClick, ...props }: DataTemplateActionBarActionProps): React$1.JSX.Element;
201
201
  interface DataTemplateActionBarSelectionProps<T> {
202
202
  controller: DataTemplateController<T>;
203
203
  }
204
- declare function DataTemplateActionBarSelection<T>({ controller }: DataTemplateActionBarSelectionProps<T>): react.JSX.Element | null;
204
+ declare function DataTemplateActionBarSelection<T>({ controller }: DataTemplateActionBarSelectionProps<T>): React$1.JSX.Element | null;
205
205
 
206
206
  type SpacingSize = 'none' | 'tight' | 'default' | 'loose' | 'extra-loose';
207
207
  type AppContainerProps = {
@@ -258,13 +258,13 @@ type AppMetaContextType<TRoute extends string = string> = {
258
258
 
259
259
  declare const AppMetaProvider: ({ children }: {
260
260
  children: ReactNode;
261
- }) => react.JSX.Element;
261
+ }) => React$1.JSX.Element;
262
262
  declare function createTypedAppMetaContext<TRoute extends string>(): {
263
263
  TypedAppMetaProvider: ({ children }: {
264
264
  children: ReactNode;
265
- }) => react.JSX.Element;
265
+ }) => React$1.JSX.Element;
266
266
  useTypedAppMeta: () => AppMetaContextType<TRoute>;
267
- TypedAppMetaContext: react.Context<AppMetaContextType<TRoute> | undefined>;
267
+ TypedAppMetaContext: React$1.Context<AppMetaContextType<TRoute> | undefined>;
268
268
  };
269
269
 
270
270
  declare function createPageTemplateHook<TRoute extends string>({ useTypedAppMeta, }: {
@@ -290,11 +290,11 @@ type SplitRatio = "one-half" | "one-third" | "two-third" | "one-fourth" | "three
290
290
  type SheetSide = "right" | "bottom" | "left" | "top";
291
291
  type SheetMode = "fullscreen" | "container";
292
292
  type BaseAppContentProps = {
293
- children: react__default.ReactNode;
293
+ children: React__default.ReactNode;
294
294
  className?: string;
295
295
  variant?: "default" | "card" | "border" | "transparent";
296
- header?: react__default.ReactNode;
297
- footer?: react__default.ReactNode;
296
+ header?: React__default.ReactNode;
297
+ footer?: React__default.ReactNode;
298
298
  headerClassName?: string;
299
299
  footerClassName?: string;
300
300
  parentContainer?: boolean;
@@ -309,7 +309,7 @@ type SplitLayoutProps = BaseAppContentProps & {
309
309
  reverse?: boolean;
310
310
  };
311
311
  type SheetOptions = {
312
- sheetContent: react__default.ReactNode;
312
+ sheetContent: React__default.ReactNode;
313
313
  sheetWidth?: SplitRatio;
314
314
  sheetSide?: SheetSide;
315
315
  sheetMode?: SheetMode;
@@ -318,7 +318,7 @@ type SheetOptions = {
318
318
  sheetClassName?: string;
319
319
  isSheetOpen?: boolean;
320
320
  onSheetOpenChange?: (open: boolean) => void;
321
- sheetTrigger?: react__default.ReactNode;
321
+ sheetTrigger?: React__default.ReactNode;
322
322
  disableOverlay?: boolean;
323
323
  };
324
324
  type WithSheetLayoutProps = BaseAppContentProps & {
@@ -341,10 +341,10 @@ type AppFooterProps = {
341
341
  declare function createLayoutComponents<TRoute extends string>({ useTypedAppMeta, }: {
342
342
  useTypedAppMeta: () => AppMetaContextType<TRoute>;
343
343
  }): {
344
- AppHeader: (props: Omit<AppHeaderProps, "meta">) => react.JSX.Element;
345
- AppFooter: (props: Omit<AppFooterProps, "meta">) => react.JSX.Element;
346
- AppContent: (props: AppContentProps) => react.JSX.Element;
347
- AppContainer: (props: AppContainerProps) => react.JSX.Element;
344
+ AppHeader: (props: Omit<AppHeaderProps, "meta">) => React$1.JSX.Element;
345
+ AppFooter: (props: Omit<AppFooterProps, "meta">) => React$1.JSX.Element;
346
+ AppContent: (props: AppContentProps) => React$1.JSX.Element;
347
+ AppContainer: (props: AppContainerProps) => React$1.JSX.Element;
348
348
  };
349
349
 
350
350
  type CopyToClipboardProps = {
@@ -384,7 +384,7 @@ declare class GeneralHelper {
384
384
  private static compactFormatter;
385
385
  private static MONTH_NAMES_SHORT;
386
386
  static copyToClipboard(text: string): Promise<void>;
387
- static CopyToClipboard: ({ text, children, className, size, variant, }: CopyToClipboardProps) => react.JSX.Element;
387
+ static CopyToClipboard: ({ text, children, className, size, variant, }: CopyToClipboardProps) => React$1.JSX.Element;
388
388
  static formatINR(amount: number, options?: FormatINROptions): string;
389
389
  static formatDate(input: string | number | Date, options?: FormatDateOptions): string;
390
390
  static toProperCase(text: string): string;
@@ -392,15 +392,19 @@ declare class GeneralHelper {
392
392
  static StatusBadge: ({ status, className, showDot, capitalize, size, variant, customColors, icon, trueMessage, falseMessage, }: StatusBadgeProps & {
393
393
  trueMessage?: string;
394
394
  falseMessage?: string;
395
- }) => react.JSX.Element;
395
+ }) => React$1.JSX.Element;
396
396
  }
397
397
 
398
- interface CheckmarkProps {
399
- size?: number;
400
- strokeWidth?: number;
401
- color?: string;
402
- className?: string;
403
- }
404
- declare function Checkmark({ size, strokeWidth, color, className }: CheckmarkProps): react.JSX.Element;
398
+ declare const ErrorComponent: () => React$1.JSX.Element;
399
+
400
+ declare function CurrencyTransfer(): React$1.JSX.Element;
401
+
402
+ declare const Loader: () => React$1.JSX.Element;
403
+
404
+ declare const NotFound: () => React$1.JSX.Element;
405
+
406
+ declare const OfflineUI: () => React$1.JSX.Element;
407
+
408
+ declare const Unauthorized: () => React$1.JSX.Element;
405
409
 
406
- export { type AppMeta, AppMetaProvider, Checkmark, DataTable, DataTableActionBar, DataTableActionBarAction, DataTableActionBarSelection, type DataTableProps, DataTemplate, DataTemplateActionBar, DataTemplateActionBarAction, DataTemplateActionBarSelection, type DataTemplateProps, GeneralHelper, type GroupColumnDef, createLayoutComponents, createPageTemplateHook, createTypedAppMetaContext };
410
+ export { type AppMeta, AppMetaProvider, CurrencyTransfer, DataTable, DataTableActionBar, DataTableActionBarAction, DataTableActionBarSelection, type DataTableProps, DataTemplate, DataTemplateActionBar, DataTemplateActionBarAction, DataTemplateActionBarSelection, type DataTemplateProps, ErrorComponent, GeneralHelper, type GroupColumnDef, Loader, NotFound, OfflineUI, Unauthorized, createLayoutComponents, createPageTemplateHook, createTypedAppMetaContext };