index.tsx 817 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. export {
  2. getNCoreUIKitVersion,
  3. setupNCoreUIKit
  4. } from "./core";
  5. export {
  6. NCoreUIKitLocalize,
  7. NCoreUIKitModal,
  8. NCoreUIKitTheme
  9. } from "./core/hooks";
  10. export {
  11. PageContainer,
  12. BottomSheet,
  13. TextInput,
  14. SelectBox,
  15. Loading,
  16. // Dialog,
  17. Button,
  18. Modal,
  19. Text
  20. } from "./components";
  21. export type {
  22. IBottomSheetRef,
  23. // IDialogRef,
  24. IModalRef
  25. } from "./components";
  26. export {
  27. ChevronRightIcon,
  28. LoadingIcon,
  29. CleanIcon
  30. } from "./assets/svg";
  31. export type {
  32. PortalizedComponentProps,
  33. INCoreUIKitIconProps,
  34. GapPropagationType,
  35. NCoreUIKitConfig,
  36. RecursiveRecord,
  37. NCoreUIKitIcon,
  38. ModalDataType,
  39. SharpnessType,
  40. LocalizeType,
  41. PaletteType,
  42. ThemesType,
  43. LocaleType,
  44. ThemeType,
  45. ModalType
  46. } from "./types";