index.tsx 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. export {
  2. getNCoreUIKitVersion,
  3. setupNCoreUIKit
  4. } from "./core";
  5. export {
  6. NCoreUIKitBottomSheet,
  7. NCoreUIKitLocalize,
  8. NCoreUIKitSnackBar,
  9. NCoreUIKitDialog,
  10. NCoreUIKitModal,
  11. NCoreUIKitTheme,
  12. NCoreUIKitToast
  13. } from "./core/hooks";
  14. export {
  15. PageContainer,
  16. TextAreaInput,
  17. BottomSheet,
  18. SelectSheet,
  19. TextInput,
  20. SelectBox,
  21. SnackBar,
  22. CheckBox,
  23. Loading,
  24. Dialog,
  25. Button,
  26. Modal,
  27. Toast,
  28. Text
  29. } from "./components";
  30. export type {
  31. IBottomSheetRef,
  32. IDialogRef,
  33. IModalRef
  34. } from "./components";
  35. export {
  36. ChevronRightIcon,
  37. LoadingIcon,
  38. CleanIcon
  39. } from "./assets/svg";
  40. export type {
  41. PortalizedComponentProps,
  42. INCoreUIKitIconProps,
  43. GapPropagationType,
  44. NCoreUIKitConfig,
  45. RecursiveRecord,
  46. NCoreUIKitIcon,
  47. ModalDataType,
  48. SharpnessType,
  49. LocalizeType,
  50. PaletteType,
  51. ThemesType,
  52. LocaleType,
  53. ThemeType,
  54. ModalType,
  55. Mutable
  56. } from "./types";
  57. export {
  58. Portal,
  59. Host
  60. } from "./helpers/portalize";