index.tsx 738 B

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