@umituz/react-native-design-system 1.3.0 → 1.3.2

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.
Files changed (351) hide show
  1. package/lib/domains/icons/domain/config/IconLibraryConfig.d.ts +91 -0
  2. package/lib/domains/icons/domain/config/IconLibraryConfig.d.ts.map +1 -0
  3. package/lib/domains/icons/domain/config/IconLibraryConfig.js +85 -0
  4. package/lib/domains/icons/domain/config/IconLibraryConfig.js.map +1 -0
  5. package/lib/domains/icons/domain/entities/Icon.d.ts +111 -0
  6. package/lib/domains/icons/domain/entities/Icon.d.ts.map +1 -0
  7. package/lib/domains/icons/domain/entities/Icon.js +87 -0
  8. package/lib/domains/icons/domain/entities/Icon.js.map +1 -0
  9. package/lib/domains/icons/domain/interfaces/IIconAdapter.d.ts +114 -0
  10. package/lib/domains/icons/domain/interfaces/IIconAdapter.d.ts.map +1 -0
  11. package/lib/domains/icons/domain/interfaces/IIconAdapter.js +17 -0
  12. package/lib/domains/icons/domain/interfaces/IIconAdapter.js.map +1 -0
  13. package/lib/domains/icons/index.d.ts +84 -0
  14. package/lib/domains/icons/index.d.ts.map +1 -0
  15. package/lib/domains/icons/index.js +89 -0
  16. package/lib/domains/icons/index.js.map +1 -0
  17. package/lib/domains/icons/infrastructure/adapters/LucideAdapter.d.ts +24 -0
  18. package/lib/domains/icons/infrastructure/adapters/LucideAdapter.d.ts.map +1 -0
  19. package/lib/domains/icons/infrastructure/adapters/LucideAdapter.js +85 -0
  20. package/lib/domains/icons/infrastructure/adapters/LucideAdapter.js.map +1 -0
  21. package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.d.ts +23 -0
  22. package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.d.ts.map +1 -0
  23. package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.js +178 -0
  24. package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.js.map +1 -0
  25. package/lib/domains/icons/presentation/components/Icon.d.ts +42 -0
  26. package/lib/domains/icons/presentation/components/Icon.d.ts.map +1 -0
  27. package/lib/domains/icons/presentation/components/Icon.js +86 -0
  28. package/lib/domains/icons/presentation/components/Icon.js.map +1 -0
  29. package/lib/domains/icons/presentation/hooks/useIconLibrary.d.ts +38 -0
  30. package/lib/domains/icons/presentation/hooks/useIconLibrary.d.ts.map +1 -0
  31. package/lib/domains/icons/presentation/hooks/useIconLibrary.js +114 -0
  32. package/lib/domains/icons/presentation/hooks/useIconLibrary.js.map +1 -0
  33. package/lib/index.d.ts +66 -0
  34. package/lib/index.d.ts.map +1 -0
  35. package/lib/index.js +106 -0
  36. package/lib/index.js.map +1 -0
  37. package/lib/infrastructure/theme/globalThemeStore.d.ts +42 -0
  38. package/lib/infrastructure/theme/globalThemeStore.d.ts.map +1 -0
  39. package/lib/infrastructure/theme/globalThemeStore.js +38 -0
  40. package/lib/infrastructure/theme/globalThemeStore.js.map +1 -0
  41. package/lib/presentation/atoms/AtomicAvatar.d.ts +48 -0
  42. package/lib/presentation/atoms/AtomicAvatar.d.ts.map +1 -0
  43. package/lib/presentation/atoms/AtomicAvatar.js +85 -0
  44. package/lib/presentation/atoms/AtomicAvatar.js.map +1 -0
  45. package/lib/presentation/atoms/AtomicAvatarGroup.d.ts +56 -0
  46. package/lib/presentation/atoms/AtomicAvatarGroup.d.ts.map +1 -0
  47. package/lib/presentation/atoms/AtomicAvatarGroup.js +83 -0
  48. package/lib/presentation/atoms/AtomicAvatarGroup.js.map +1 -0
  49. package/lib/presentation/atoms/AtomicBadge.d.ts +42 -0
  50. package/lib/presentation/atoms/AtomicBadge.d.ts.map +1 -0
  51. package/lib/presentation/atoms/AtomicBadge.js +168 -0
  52. package/lib/presentation/atoms/AtomicBadge.js.map +1 -0
  53. package/lib/presentation/atoms/AtomicButton.d.ts +22 -0
  54. package/lib/presentation/atoms/AtomicButton.d.ts.map +1 -0
  55. package/lib/presentation/atoms/AtomicButton.js +193 -0
  56. package/lib/presentation/atoms/AtomicButton.js.map +1 -0
  57. package/lib/presentation/atoms/AtomicCard.d.ts +15 -0
  58. package/lib/presentation/atoms/AtomicCard.d.ts.map +1 -0
  59. package/lib/presentation/atoms/AtomicCard.js +89 -0
  60. package/lib/presentation/atoms/AtomicCard.js.map +1 -0
  61. package/lib/presentation/atoms/AtomicChip.d.ts +53 -0
  62. package/lib/presentation/atoms/AtomicChip.d.ts.map +1 -0
  63. package/lib/presentation/atoms/AtomicChip.js +131 -0
  64. package/lib/presentation/atoms/AtomicChip.js.map +1 -0
  65. package/lib/presentation/atoms/AtomicDatePicker.d.ts +75 -0
  66. package/lib/presentation/atoms/AtomicDatePicker.d.ts.map +1 -0
  67. package/lib/presentation/atoms/AtomicDatePicker.js +246 -0
  68. package/lib/presentation/atoms/AtomicDatePicker.js.map +1 -0
  69. package/lib/presentation/atoms/AtomicDivider.d.ts +45 -0
  70. package/lib/presentation/atoms/AtomicDivider.d.ts.map +1 -0
  71. package/lib/presentation/atoms/AtomicDivider.js +58 -0
  72. package/lib/presentation/atoms/AtomicDivider.js.map +1 -0
  73. package/lib/presentation/atoms/AtomicFab.d.ts +38 -0
  74. package/lib/presentation/atoms/AtomicFab.d.ts.map +1 -0
  75. package/lib/presentation/atoms/AtomicFab.js +69 -0
  76. package/lib/presentation/atoms/AtomicFab.js.map +1 -0
  77. package/lib/presentation/atoms/AtomicFilter.d.ts +37 -0
  78. package/lib/presentation/atoms/AtomicFilter.d.ts.map +1 -0
  79. package/lib/presentation/atoms/AtomicFilter.js +104 -0
  80. package/lib/presentation/atoms/AtomicFilter.js.map +1 -0
  81. package/lib/presentation/atoms/AtomicFormError.d.ts +30 -0
  82. package/lib/presentation/atoms/AtomicFormError.d.ts.map +1 -0
  83. package/lib/presentation/atoms/AtomicFormError.js +64 -0
  84. package/lib/presentation/atoms/AtomicFormError.js.map +1 -0
  85. package/lib/presentation/atoms/AtomicIcon.d.ts +36 -0
  86. package/lib/presentation/atoms/AtomicIcon.d.ts.map +1 -0
  87. package/lib/presentation/atoms/AtomicIcon.js +30 -0
  88. package/lib/presentation/atoms/AtomicIcon.js.map +1 -0
  89. package/lib/presentation/atoms/AtomicImage.d.ts +40 -0
  90. package/lib/presentation/atoms/AtomicImage.d.ts.map +1 -0
  91. package/lib/presentation/atoms/AtomicImage.js +92 -0
  92. package/lib/presentation/atoms/AtomicImage.js.map +1 -0
  93. package/lib/presentation/atoms/AtomicInput.d.ts +71 -0
  94. package/lib/presentation/atoms/AtomicInput.d.ts.map +1 -0
  95. package/lib/presentation/atoms/AtomicInput.js +196 -0
  96. package/lib/presentation/atoms/AtomicInput.js.map +1 -0
  97. package/lib/presentation/atoms/AtomicNumberInput.d.ts +69 -0
  98. package/lib/presentation/atoms/AtomicNumberInput.d.ts.map +1 -0
  99. package/lib/presentation/atoms/AtomicNumberInput.js +125 -0
  100. package/lib/presentation/atoms/AtomicNumberInput.js.map +1 -0
  101. package/lib/presentation/atoms/AtomicPicker.d.ts +52 -0
  102. package/lib/presentation/atoms/AtomicPicker.d.ts.map +1 -0
  103. package/lib/presentation/atoms/AtomicPicker.js +299 -0
  104. package/lib/presentation/atoms/AtomicPicker.js.map +1 -0
  105. package/lib/presentation/atoms/AtomicProgress.d.ts +47 -0
  106. package/lib/presentation/atoms/AtomicProgress.d.ts.map +1 -0
  107. package/lib/presentation/atoms/AtomicProgress.js +81 -0
  108. package/lib/presentation/atoms/AtomicProgress.js.map +1 -0
  109. package/lib/presentation/atoms/AtomicSearchBar.d.ts +19 -0
  110. package/lib/presentation/atoms/AtomicSearchBar.d.ts.map +1 -0
  111. package/lib/presentation/atoms/AtomicSearchBar.js +46 -0
  112. package/lib/presentation/atoms/AtomicSearchBar.js.map +1 -0
  113. package/lib/presentation/atoms/AtomicSkeleton.d.ts +43 -0
  114. package/lib/presentation/atoms/AtomicSkeleton.d.ts.map +1 -0
  115. package/lib/presentation/atoms/AtomicSkeleton.js +84 -0
  116. package/lib/presentation/atoms/AtomicSkeleton.js.map +1 -0
  117. package/lib/presentation/atoms/AtomicSort.d.ts +72 -0
  118. package/lib/presentation/atoms/AtomicSort.d.ts.map +1 -0
  119. package/lib/presentation/atoms/AtomicSort.js +77 -0
  120. package/lib/presentation/atoms/AtomicSort.js.map +1 -0
  121. package/lib/presentation/atoms/AtomicSwitch.d.ts +43 -0
  122. package/lib/presentation/atoms/AtomicSwitch.d.ts.map +1 -0
  123. package/lib/presentation/atoms/AtomicSwitch.js +104 -0
  124. package/lib/presentation/atoms/AtomicSwitch.js.map +1 -0
  125. package/lib/presentation/atoms/AtomicText.d.ts +14 -0
  126. package/lib/presentation/atoms/AtomicText.d.ts.map +1 -0
  127. package/lib/presentation/atoms/AtomicText.js +36 -0
  128. package/lib/presentation/atoms/AtomicText.js.map +1 -0
  129. package/lib/presentation/atoms/AtomicTextArea.d.ts +85 -0
  130. package/lib/presentation/atoms/AtomicTextArea.d.ts.map +1 -0
  131. package/lib/presentation/atoms/AtomicTextArea.js +196 -0
  132. package/lib/presentation/atoms/AtomicTextArea.js.map +1 -0
  133. package/lib/presentation/atoms/AtomicTouchable.d.ts +87 -0
  134. package/lib/presentation/atoms/AtomicTouchable.d.ts.map +1 -0
  135. package/lib/presentation/atoms/AtomicTouchable.js +151 -0
  136. package/lib/presentation/atoms/AtomicTouchable.js.map +1 -0
  137. package/lib/presentation/atoms/fab/styles/fabStyles.d.ts +23 -0
  138. package/lib/presentation/atoms/fab/styles/fabStyles.d.ts.map +1 -0
  139. package/lib/presentation/atoms/fab/styles/fabStyles.js +63 -0
  140. package/lib/presentation/atoms/fab/styles/fabStyles.js.map +1 -0
  141. package/lib/presentation/atoms/fab/types/index.d.ts +76 -0
  142. package/lib/presentation/atoms/fab/types/index.d.ts.map +1 -0
  143. package/lib/presentation/atoms/fab/types/index.js +2 -0
  144. package/lib/presentation/atoms/fab/types/index.js.map +1 -0
  145. package/lib/presentation/atoms/filter/styles/filterStyles.d.ts +15 -0
  146. package/lib/presentation/atoms/filter/styles/filterStyles.d.ts.map +1 -0
  147. package/lib/presentation/atoms/filter/styles/filterStyles.js +29 -0
  148. package/lib/presentation/atoms/filter/styles/filterStyles.js.map +1 -0
  149. package/lib/presentation/atoms/filter/types/index.d.ts +76 -0
  150. package/lib/presentation/atoms/filter/types/index.d.ts.map +1 -0
  151. package/lib/presentation/atoms/filter/types/index.js +2 -0
  152. package/lib/presentation/atoms/filter/types/index.js.map +1 -0
  153. package/lib/presentation/atoms/index.d.ts +276 -0
  154. package/lib/presentation/atoms/index.d.ts.map +1 -0
  155. package/lib/presentation/atoms/index.js +149 -0
  156. package/lib/presentation/atoms/index.js.map +1 -0
  157. package/lib/presentation/atoms/input/hooks/useInputState.d.ts +7 -0
  158. package/lib/presentation/atoms/input/hooks/useInputState.d.ts.map +1 -0
  159. package/lib/presentation/atoms/input/hooks/useInputState.js +13 -0
  160. package/lib/presentation/atoms/input/hooks/useInputState.js.map +1 -0
  161. package/lib/presentation/atoms/input/styles/inputStyles.d.ts +13 -0
  162. package/lib/presentation/atoms/input/styles/inputStyles.d.ts.map +1 -0
  163. package/lib/presentation/atoms/input/styles/inputStyles.js +59 -0
  164. package/lib/presentation/atoms/input/styles/inputStyles.js.map +1 -0
  165. package/lib/presentation/atoms/input/types/index.d.ts +24 -0
  166. package/lib/presentation/atoms/input/types/index.d.ts.map +1 -0
  167. package/lib/presentation/atoms/input/types/index.js +2 -0
  168. package/lib/presentation/atoms/input/types/index.js.map +1 -0
  169. package/lib/presentation/atoms/picker/styles/pickerStyles.d.ts +96 -0
  170. package/lib/presentation/atoms/picker/styles/pickerStyles.d.ts.map +1 -0
  171. package/lib/presentation/atoms/picker/styles/pickerStyles.js +177 -0
  172. package/lib/presentation/atoms/picker/styles/pickerStyles.js.map +1 -0
  173. package/lib/presentation/atoms/picker/types/index.d.ts +38 -0
  174. package/lib/presentation/atoms/picker/types/index.d.ts.map +1 -0
  175. package/lib/presentation/atoms/picker/types/index.js +2 -0
  176. package/lib/presentation/atoms/picker/types/index.js.map +1 -0
  177. package/lib/presentation/atoms/touchable/styles/touchableStyles.d.ts +36 -0
  178. package/lib/presentation/atoms/touchable/styles/touchableStyles.d.ts.map +1 -0
  179. package/lib/presentation/atoms/touchable/styles/touchableStyles.js +62 -0
  180. package/lib/presentation/atoms/touchable/styles/touchableStyles.js.map +1 -0
  181. package/lib/presentation/atoms/touchable/types/index.d.ts +140 -0
  182. package/lib/presentation/atoms/touchable/types/index.d.ts.map +1 -0
  183. package/lib/presentation/atoms/touchable/types/index.js +2 -0
  184. package/lib/presentation/atoms/touchable/types/index.js.map +1 -0
  185. package/lib/presentation/hooks/useAppDesignTokens.d.ts +34 -0
  186. package/lib/presentation/hooks/useAppDesignTokens.d.ts.map +1 -0
  187. package/lib/presentation/hooks/useAppDesignTokens.js +39 -0
  188. package/lib/presentation/hooks/useAppDesignTokens.js.map +1 -0
  189. package/lib/presentation/hooks/useResponsive.d.ts +80 -0
  190. package/lib/presentation/hooks/useResponsive.d.ts.map +1 -0
  191. package/lib/presentation/hooks/useResponsive.js +82 -0
  192. package/lib/presentation/hooks/useResponsive.js.map +1 -0
  193. package/lib/presentation/loading/index.d.ts +23 -0
  194. package/lib/presentation/loading/index.d.ts.map +1 -0
  195. package/lib/presentation/loading/index.js +26 -0
  196. package/lib/presentation/loading/index.js.map +1 -0
  197. package/lib/presentation/loading/presentation/components/LoadingSpinner.d.ts +28 -0
  198. package/lib/presentation/loading/presentation/components/LoadingSpinner.d.ts.map +1 -0
  199. package/lib/presentation/loading/presentation/components/LoadingSpinner.js +77 -0
  200. package/lib/presentation/loading/presentation/components/LoadingSpinner.js.map +1 -0
  201. package/lib/presentation/loading/presentation/components/LoadingState.d.ts +39 -0
  202. package/lib/presentation/loading/presentation/components/LoadingState.d.ts.map +1 -0
  203. package/lib/presentation/loading/presentation/components/LoadingState.js +123 -0
  204. package/lib/presentation/loading/presentation/components/LoadingState.js.map +1 -0
  205. package/lib/presentation/loading/presentation/hooks/useLoading.d.ts +50 -0
  206. package/lib/presentation/loading/presentation/hooks/useLoading.d.ts.map +1 -0
  207. package/lib/presentation/loading/presentation/hooks/useLoading.js +49 -0
  208. package/lib/presentation/loading/presentation/hooks/useLoading.js.map +1 -0
  209. package/lib/presentation/molecules/AtomicConfirmationModal.d.ts +73 -0
  210. package/lib/presentation/molecules/AtomicConfirmationModal.d.ts.map +1 -0
  211. package/lib/presentation/molecules/AtomicConfirmationModal.js +172 -0
  212. package/lib/presentation/molecules/AtomicConfirmationModal.js.map +1 -0
  213. package/lib/presentation/molecules/EmptyState.d.ts +41 -0
  214. package/lib/presentation/molecules/EmptyState.d.ts.map +1 -0
  215. package/lib/presentation/molecules/EmptyState.js +68 -0
  216. package/lib/presentation/molecules/EmptyState.js.map +1 -0
  217. package/lib/presentation/molecules/FormField.d.ts +22 -0
  218. package/lib/presentation/molecules/FormField.d.ts.map +1 -0
  219. package/lib/presentation/molecules/FormField.js +76 -0
  220. package/lib/presentation/molecules/FormField.js.map +1 -0
  221. package/lib/presentation/molecules/GridContainer.d.ts +40 -0
  222. package/lib/presentation/molecules/GridContainer.d.ts.map +1 -0
  223. package/lib/presentation/molecules/GridContainer.js +77 -0
  224. package/lib/presentation/molecules/GridContainer.js.map +1 -0
  225. package/lib/presentation/molecules/IconContainer.d.ts +29 -0
  226. package/lib/presentation/molecules/IconContainer.d.ts.map +1 -0
  227. package/lib/presentation/molecules/IconContainer.js +60 -0
  228. package/lib/presentation/molecules/IconContainer.js.map +1 -0
  229. package/lib/presentation/molecules/LanguageSwitcher.d.ts +10 -0
  230. package/lib/presentation/molecules/LanguageSwitcher.d.ts.map +1 -0
  231. package/lib/presentation/molecules/LanguageSwitcher.js +24 -0
  232. package/lib/presentation/molecules/LanguageSwitcher.js.map +1 -0
  233. package/lib/presentation/molecules/ListItem.d.ts +5 -0
  234. package/lib/presentation/molecules/ListItem.d.ts.map +1 -0
  235. package/lib/presentation/molecules/ListItem.js +24 -0
  236. package/lib/presentation/molecules/ListItem.js.map +1 -0
  237. package/lib/presentation/molecules/ScreenHeader.d.ts +55 -0
  238. package/lib/presentation/molecules/ScreenHeader.d.ts.map +1 -0
  239. package/lib/presentation/molecules/ScreenHeader.js +94 -0
  240. package/lib/presentation/molecules/ScreenHeader.js.map +1 -0
  241. package/lib/presentation/molecules/SearchBar.d.ts +18 -0
  242. package/lib/presentation/molecules/SearchBar.d.ts.map +1 -0
  243. package/lib/presentation/molecules/SearchBar.js +47 -0
  244. package/lib/presentation/molecules/SearchBar.js.map +1 -0
  245. package/lib/presentation/molecules/SectionCard.d.ts +25 -0
  246. package/lib/presentation/molecules/SectionCard.d.ts.map +1 -0
  247. package/lib/presentation/molecules/SectionCard.js +47 -0
  248. package/lib/presentation/molecules/SectionCard.js.map +1 -0
  249. package/lib/presentation/molecules/SectionContainer.d.ts +33 -0
  250. package/lib/presentation/molecules/SectionContainer.d.ts.map +1 -0
  251. package/lib/presentation/molecules/SectionContainer.js +64 -0
  252. package/lib/presentation/molecules/SectionContainer.js.map +1 -0
  253. package/lib/presentation/molecules/SectionHeader.d.ts +37 -0
  254. package/lib/presentation/molecules/SectionHeader.d.ts.map +1 -0
  255. package/lib/presentation/molecules/SectionHeader.js +73 -0
  256. package/lib/presentation/molecules/SectionHeader.js.map +1 -0
  257. package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.d.ts +50 -0
  258. package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.d.ts.map +1 -0
  259. package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.js +115 -0
  260. package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.js.map +1 -0
  261. package/lib/presentation/molecules/confirmation-modal/types/index.d.ts +88 -0
  262. package/lib/presentation/molecules/confirmation-modal/types/index.d.ts.map +1 -0
  263. package/lib/presentation/molecules/confirmation-modal/types/index.js +7 -0
  264. package/lib/presentation/molecules/confirmation-modal/types/index.js.map +1 -0
  265. package/lib/presentation/molecules/index.d.ts +28 -0
  266. package/lib/presentation/molecules/index.d.ts.map +1 -0
  267. package/lib/presentation/molecules/index.js +18 -0
  268. package/lib/presentation/molecules/index.js.map +1 -0
  269. package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.d.ts +11 -0
  270. package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.d.ts.map +1 -0
  271. package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.js +6 -0
  272. package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.js.map +1 -0
  273. package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.d.ts +5 -0
  274. package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.d.ts.map +1 -0
  275. package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.js +12 -0
  276. package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.js.map +1 -0
  277. package/lib/presentation/molecules/listitem/styles/listItemStyles.d.ts +12 -0
  278. package/lib/presentation/molecules/listitem/styles/listItemStyles.d.ts.map +1 -0
  279. package/lib/presentation/molecules/listitem/styles/listItemStyles.js +15 -0
  280. package/lib/presentation/molecules/listitem/styles/listItemStyles.js.map +1 -0
  281. package/lib/presentation/molecules/listitem/types/index.d.ts +17 -0
  282. package/lib/presentation/molecules/listitem/types/index.d.ts.map +1 -0
  283. package/lib/presentation/molecules/listitem/types/index.js +2 -0
  284. package/lib/presentation/molecules/listitem/types/index.js.map +1 -0
  285. package/lib/presentation/organisms/AppHeader.d.ts +30 -0
  286. package/lib/presentation/organisms/AppHeader.d.ts.map +1 -0
  287. package/lib/presentation/organisms/AppHeader.js +78 -0
  288. package/lib/presentation/organisms/AppHeader.js.map +1 -0
  289. package/lib/presentation/organisms/FormContainer.d.ts +76 -0
  290. package/lib/presentation/organisms/FormContainer.d.ts.map +1 -0
  291. package/lib/presentation/organisms/FormContainer.js +127 -0
  292. package/lib/presentation/organisms/FormContainer.js.map +1 -0
  293. package/lib/presentation/organisms/ScreenLayout.d.ts +99 -0
  294. package/lib/presentation/organisms/ScreenLayout.d.ts.map +1 -0
  295. package/lib/presentation/organisms/ScreenLayout.js +78 -0
  296. package/lib/presentation/organisms/ScreenLayout.js.map +1 -0
  297. package/lib/presentation/organisms/index.d.ts +16 -0
  298. package/lib/presentation/organisms/index.d.ts.map +1 -0
  299. package/lib/presentation/organisms/index.js +14 -0
  300. package/lib/presentation/organisms/index.js.map +1 -0
  301. package/lib/presentation/tokens/AppDesignTokens.d.ts +14 -0
  302. package/lib/presentation/tokens/AppDesignTokens.d.ts.map +1 -0
  303. package/lib/presentation/tokens/AppDesignTokens.js +23 -0
  304. package/lib/presentation/tokens/AppDesignTokens.js.map +1 -0
  305. package/lib/presentation/tokens/commonStyles.d.ts +122 -0
  306. package/lib/presentation/tokens/commonStyles.d.ts.map +1 -0
  307. package/lib/presentation/tokens/commonStyles.js +220 -0
  308. package/lib/presentation/tokens/commonStyles.js.map +1 -0
  309. package/lib/presentation/tokens/core/BaseTokens.d.ts +337 -0
  310. package/lib/presentation/tokens/core/BaseTokens.d.ts.map +1 -0
  311. package/lib/presentation/tokens/core/BaseTokens.js +322 -0
  312. package/lib/presentation/tokens/core/BaseTokens.js.map +1 -0
  313. package/lib/presentation/tokens/core/ColorPalette.d.ts +216 -0
  314. package/lib/presentation/tokens/core/ColorPalette.d.ts.map +1 -0
  315. package/lib/presentation/tokens/core/ColorPalette.js +330 -0
  316. package/lib/presentation/tokens/core/ColorPalette.js.map +1 -0
  317. package/lib/presentation/tokens/core/TokenFactory.d.ts +229 -0
  318. package/lib/presentation/tokens/core/TokenFactory.d.ts.map +1 -0
  319. package/lib/presentation/tokens/core/TokenFactory.js +87 -0
  320. package/lib/presentation/tokens/core/TokenFactory.js.map +1 -0
  321. package/lib/presentation/utils/platformConstants.d.ts +100 -0
  322. package/lib/presentation/utils/platformConstants.d.ts.map +1 -0
  323. package/lib/presentation/utils/platformConstants.js +114 -0
  324. package/lib/presentation/utils/platformConstants.js.map +1 -0
  325. package/lib/presentation/utils/responsive.d.ts +218 -0
  326. package/lib/presentation/utils/responsive.d.ts.map +1 -0
  327. package/lib/presentation/utils/responsive.js +452 -0
  328. package/lib/presentation/utils/responsive.js.map +1 -0
  329. package/lib/presentation/utils/variants/compound.d.ts +10 -0
  330. package/lib/presentation/utils/variants/compound.d.ts.map +1 -0
  331. package/lib/presentation/utils/variants/compound.js +16 -0
  332. package/lib/presentation/utils/variants/compound.js.map +1 -0
  333. package/lib/presentation/utils/variants/core.d.ts +15 -0
  334. package/lib/presentation/utils/variants/core.d.ts.map +1 -0
  335. package/lib/presentation/utils/variants/core.js +23 -0
  336. package/lib/presentation/utils/variants/core.js.map +1 -0
  337. package/lib/presentation/utils/variants/helpers.d.ts +5 -0
  338. package/lib/presentation/utils/variants/helpers.d.ts.map +1 -0
  339. package/lib/presentation/utils/variants/helpers.js +10 -0
  340. package/lib/presentation/utils/variants/helpers.js.map +1 -0
  341. package/lib/presentation/utils/variants.d.ts +4 -0
  342. package/lib/presentation/utils/variants.d.ts.map +1 -0
  343. package/lib/presentation/utils/variants.js +4 -0
  344. package/lib/presentation/utils/variants.js.map +1 -0
  345. package/package.json +38 -4
  346. package/src/domains/icons/domain/interfaces/IIconAdapter.ts +6 -3
  347. package/src/domains/icons/infrastructure/adapters/LucideAdapter.ts +1 -1
  348. package/src/presentation/atoms/AtomicButton.tsx +1 -1
  349. package/src/presentation/molecules/AtomicConfirmationModal.tsx +1 -1
  350. package/src/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.ts +1 -2
  351. package/src/presentation/tokens/core/ColorPalette.ts +2 -0
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Organism Components Export Index
3
+ *
4
+ * Organisms are complex components composed of molecules and atoms
5
+ * Theme: {{THEME_NAME}} ({{CATEGORY}} category)
6
+ *
7
+ * Atomic Design Level: ORGANISMS
8
+ */
9
+ export { AppHeader } from './AppHeader';
10
+ export { ScreenLayout } from './ScreenLayout';
11
+ export type { AppHeaderProps } from './AppHeader';
12
+ export type { ScreenLayoutProps } from './ScreenLayout';
13
+ import type { AppHeaderProps } from './AppHeader';
14
+ import type { ScreenLayoutProps } from './ScreenLayout';
15
+ export type OrganismComponentProps = AppHeaderProps | ScreenLayoutProps;
16
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/presentation/organisms/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAGxC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAG9C,YAAY,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,YAAY,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAGxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAExD,MAAM,MAAM,sBAAsB,GAAG,cAAc,GAAG,iBAAiB,CAAC"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Organism Components Export Index
3
+ *
4
+ * Organisms are complex components composed of molecules and atoms
5
+ * Theme: {{THEME_NAME}} ({{CATEGORY}} category)
6
+ *
7
+ * Atomic Design Level: ORGANISMS
8
+ */
9
+ // Component exports
10
+ // AppHeader - Main application header with navigation
11
+ export { AppHeader } from './AppHeader';
12
+ // ScreenLayout - Universal screen container with consistent layout
13
+ export { ScreenLayout } from './ScreenLayout';
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/presentation/organisms/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,oBAAoB;AACpB,sDAAsD;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,mEAAmE;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * DESIGN TOKENS - PUBLIC API
3
+ *
4
+ * ✅ CLEAN BARREL EXPORT - Single source of truth
5
+ * ✅ ZERO DUPLICATION - All tokens from TokenFactory
6
+ * ✅ TYPE-SAFE - Full TypeScript support
7
+ * ✅ FACTORY-FIRST - Benefits all 100+ generated apps
8
+ *
9
+ * @module AppDesignTokens
10
+ */
11
+ export { createDesignTokens, STATIC_DESIGN_TOKENS, STATIC_TOKENS, withAlpha, type DesignTokens, type ThemeMode, type ColorPalette, } from './core/TokenFactory';
12
+ export { BASE_TOKENS, spacing, typography, animations, borders, iconSizes, opacity, avatarSizes, type Spacing, type Typography, type Animations, type Borders, type IconSizes, type Opacity, type AvatarSizes, type BaseTokens, } from './core/BaseTokens';
13
+ export { lightColors, darkColors, getColorPalette, } from './core/ColorPalette';
14
+ //# sourceMappingURL=AppDesignTokens.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AppDesignTokens.d.ts","sourceRoot":"","sources":["../../../src/presentation/tokens/AppDesignTokens.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAMH,OAAO,EACL,kBAAkB,EAClB,oBAAoB,EACpB,aAAa,EACb,SAAS,EACT,KAAK,YAAY,EACjB,KAAK,SAAS,EACd,KAAK,YAAY,GAClB,MAAM,qBAAqB,CAAC;AAM7B,OAAO,EACL,WAAW,EACX,OAAO,EACP,UAAU,EACV,UAAU,EACV,OAAO,EACP,SAAS,EACT,OAAO,EACP,WAAW,EACX,KAAK,OAAO,EACZ,KAAK,UAAU,EACf,KAAK,UAAU,EACf,KAAK,OAAO,EACZ,KAAK,SAAS,EACd,KAAK,OAAO,EACZ,KAAK,WAAW,EAChB,KAAK,UAAU,GAChB,MAAM,mBAAmB,CAAC;AAM3B,OAAO,EACL,WAAW,EACX,UAAU,EACV,eAAe,GAChB,MAAM,qBAAqB,CAAC"}
@@ -0,0 +1,23 @@
1
+ /**
2
+ * DESIGN TOKENS - PUBLIC API
3
+ *
4
+ * ✅ CLEAN BARREL EXPORT - Single source of truth
5
+ * ✅ ZERO DUPLICATION - All tokens from TokenFactory
6
+ * ✅ TYPE-SAFE - Full TypeScript support
7
+ * ✅ FACTORY-FIRST - Benefits all 100+ generated apps
8
+ *
9
+ * @module AppDesignTokens
10
+ */
11
+ // =============================================================================
12
+ // CORE EXPORTS (from TokenFactory)
13
+ // =============================================================================
14
+ export { createDesignTokens, STATIC_DESIGN_TOKENS, STATIC_TOKENS, withAlpha, } from './core/TokenFactory';
15
+ // =============================================================================
16
+ // BASE TOKEN EXPORTS
17
+ // =============================================================================
18
+ export { BASE_TOKENS, spacing, typography, animations, borders, iconSizes, opacity, avatarSizes, } from './core/BaseTokens';
19
+ // =============================================================================
20
+ // COLOR PALETTE EXPORTS
21
+ // =============================================================================
22
+ export { lightColors, darkColors, getColorPalette, } from './core/ColorPalette';
23
+ //# sourceMappingURL=AppDesignTokens.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AppDesignTokens.js","sourceRoot":"","sources":["../../../src/presentation/tokens/AppDesignTokens.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,gFAAgF;AAChF,mCAAmC;AACnC,gFAAgF;AAEhF,OAAO,EACL,kBAAkB,EAClB,oBAAoB,EACpB,aAAa,EACb,SAAS,GAIV,MAAM,qBAAqB,CAAC;AAE7B,gFAAgF;AAChF,qBAAqB;AACrB,gFAAgF;AAEhF,OAAO,EACL,WAAW,EACX,OAAO,EACP,UAAU,EACV,UAAU,EACV,OAAO,EACP,SAAS,EACT,OAAO,EACP,WAAW,GASZ,MAAM,mBAAmB,CAAC;AAE3B,gFAAgF;AAChF,wBAAwB;AACxB,gFAAgF;AAEhF,OAAO,EACL,WAAW,EACX,UAAU,EACV,eAAe,GAChB,MAAM,qBAAqB,CAAC"}
@@ -0,0 +1,122 @@
1
+ /**
2
+ * Common Styles - Reusable Style Patterns
3
+ *
4
+ * Centralized style utilities to reduce duplication across screens.
5
+ * These styles are composable and follow DRY principles.
6
+ *
7
+ * Usage:
8
+ * ```typescript
9
+ * import { useCommonStyles } from '@domains/design-system/commonStyles';
10
+ *
11
+ * const MyComponent = () => {
12
+ * const commonStyles = useCommonStyles();
13
+ * return <View style={commonStyles.screenContainer}>...</View>;
14
+ * };
15
+ * ```
16
+ */
17
+ import { ViewStyle, TextStyle } from 'react-native';
18
+ /**
19
+ * Hook to get common styles with dynamic theme support
20
+ */
21
+ export declare const useCommonStyles: () => {
22
+ /**
23
+ * Standard full-screen container
24
+ * Most common pattern: flex: 1 with background color
25
+ */
26
+ screenContainer: ViewStyle;
27
+ /**
28
+ * Basic flex container without background
29
+ * Use when background is set elsewhere or not needed
30
+ */
31
+ flexContainer: ViewStyle;
32
+ /**
33
+ * Screen container with secondary background
34
+ */
35
+ screenContainerSecondary: ViewStyle;
36
+ /**
37
+ * Standard ScrollView wrapper
38
+ */
39
+ scrollView: ViewStyle;
40
+ /**
41
+ * ScrollView content container with standard padding
42
+ */
43
+ scrollContent: ViewStyle;
44
+ /**
45
+ * ScrollView content that grows to fill available space
46
+ */
47
+ scrollContentGrow: ViewStyle;
48
+ /**
49
+ * Centered scroll content (for forms, onboarding screens)
50
+ */
51
+ scrollContentCentered: ViewStyle;
52
+ /**
53
+ * Centered container - both horizontal and vertical
54
+ * Perfect for empty states, loading screens, splash screens
55
+ */
56
+ centerContainer: ViewStyle;
57
+ /**
58
+ * Centered container with padding
59
+ */
60
+ centerContainerPadded: ViewStyle;
61
+ /**
62
+ * Horizontal row layout
63
+ */
64
+ row: ViewStyle;
65
+ /**
66
+ * Horizontal row with space between
67
+ */
68
+ rowBetween: ViewStyle;
69
+ /**
70
+ * Horizontal row centered
71
+ */
72
+ rowCenter: ViewStyle;
73
+ /**
74
+ * Standard horizontal padding
75
+ */
76
+ paddedHorizontal: ViewStyle;
77
+ /**
78
+ * Standard vertical padding
79
+ */
80
+ paddedVertical: ViewStyle;
81
+ /**
82
+ * Standard padding all sides
83
+ */
84
+ padded: ViewStyle;
85
+ /**
86
+ * Standard section container
87
+ */
88
+ section: ViewStyle;
89
+ /**
90
+ * Section with padding
91
+ */
92
+ sectionPadded: ViewStyle;
93
+ /**
94
+ * Screen title - primary heading
95
+ */
96
+ screenTitle: TextStyle;
97
+ /**
98
+ * Section title
99
+ */
100
+ sectionTitle: TextStyle;
101
+ /**
102
+ * Subtitle/description text
103
+ */
104
+ subtitle: TextStyle;
105
+ /**
106
+ * Body text
107
+ */
108
+ bodyText: TextStyle;
109
+ /**
110
+ * Secondary text (muted)
111
+ */
112
+ secondaryText: TextStyle;
113
+ /**
114
+ * Form container
115
+ */
116
+ form: ViewStyle;
117
+ /**
118
+ * Form header section
119
+ */
120
+ formHeader: ViewStyle;
121
+ };
122
+ //# sourceMappingURL=commonStyles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commonStyles.d.ts","sourceRoot":"","sources":["../../../src/presentation/tokens/commonStyles.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAGpD;;GAEG;AACH,eAAO,MAAM,eAAe;IAQxB;;;OAGG;qBAIE,SAAS;IAEd;;;OAGG;mBAGE,SAAS;IAEd;;OAEG;8BAIE,SAAS;IAMd;;OAEG;gBAGE,SAAS;IAEd;;OAEG;mBAIE,SAAS;IAEd;;OAEG;uBAIE,SAAS;IAEd;;OAEG;2BAKE,SAAS;IAMd;;;OAGG;qBAKE,SAAS;IAEd;;OAEG;2BAME,SAAS;IAEd;;OAEG;SAIE,SAAS;IAEd;;OAEG;gBAKE,SAAS;IAEd;;OAEG;eAKE,SAAS;IAMd;;OAEG;sBAGE,SAAS;IAEd;;OAEG;oBAGE,SAAS;IAEd;;OAEG;YAGE,SAAS;IAMd;;OAEG;aAGE,SAAS;IAEd;;OAEG;mBAIE,SAAS;IAMd;;OAEG;iBAKE,SAAS;IAEd;;OAEG;kBAKE,SAAS;IAEd;;OAEG;cAKE,SAAS;IAEd;;OAEG;cAIE,SAAS;IAEd;;OAEG;mBAIE,SAAS;IAMd;;OAEG;UAGE,SAAS;IAEd;;OAEG;gBAIE,SAAS;CAEjB,CAAC"}
@@ -0,0 +1,220 @@
1
+ /**
2
+ * Common Styles - Reusable Style Patterns
3
+ *
4
+ * Centralized style utilities to reduce duplication across screens.
5
+ * These styles are composable and follow DRY principles.
6
+ *
7
+ * Usage:
8
+ * ```typescript
9
+ * import { useCommonStyles } from '@domains/design-system/commonStyles';
10
+ *
11
+ * const MyComponent = () => {
12
+ * const commonStyles = useCommonStyles();
13
+ * return <View style={commonStyles.screenContainer}>...</View>;
14
+ * };
15
+ * ```
16
+ */
17
+ import { useAppDesignTokens } from '../hooks/useAppDesignTokens';
18
+ /**
19
+ * Hook to get common styles with dynamic theme support
20
+ */
21
+ export const useCommonStyles = () => {
22
+ const tokens = useAppDesignTokens();
23
+ return {
24
+ // ========================================================================
25
+ // SCREEN CONTAINERS
26
+ // ========================================================================
27
+ /**
28
+ * Standard full-screen container
29
+ * Most common pattern: flex: 1 with background color
30
+ */
31
+ screenContainer: {
32
+ flex: 1,
33
+ backgroundColor: tokens.colors.backgroundPrimary,
34
+ },
35
+ /**
36
+ * Basic flex container without background
37
+ * Use when background is set elsewhere or not needed
38
+ */
39
+ flexContainer: {
40
+ flex: 1,
41
+ },
42
+ /**
43
+ * Screen container with secondary background
44
+ */
45
+ screenContainerSecondary: {
46
+ flex: 1,
47
+ backgroundColor: tokens.colors.backgroundSecondary,
48
+ },
49
+ // ========================================================================
50
+ // SCROLL CONTAINERS
51
+ // ========================================================================
52
+ /**
53
+ * Standard ScrollView wrapper
54
+ */
55
+ scrollView: {
56
+ flex: 1,
57
+ },
58
+ /**
59
+ * ScrollView content container with standard padding
60
+ */
61
+ scrollContent: {
62
+ paddingHorizontal: tokens.spacing.lg,
63
+ paddingBottom: tokens.spacing.xl,
64
+ },
65
+ /**
66
+ * ScrollView content that grows to fill available space
67
+ */
68
+ scrollContentGrow: {
69
+ flexGrow: 1,
70
+ padding: tokens.spacing.lg,
71
+ },
72
+ /**
73
+ * Centered scroll content (for forms, onboarding screens)
74
+ */
75
+ scrollContentCentered: {
76
+ flexGrow: 1,
77
+ padding: tokens.spacing.lg,
78
+ justifyContent: 'center',
79
+ },
80
+ // ========================================================================
81
+ // LAYOUT UTILITIES
82
+ // ========================================================================
83
+ /**
84
+ * Centered container - both horizontal and vertical
85
+ * Perfect for empty states, loading screens, splash screens
86
+ */
87
+ centerContainer: {
88
+ flex: 1,
89
+ justifyContent: 'center',
90
+ alignItems: 'center',
91
+ },
92
+ /**
93
+ * Centered container with padding
94
+ */
95
+ centerContainerPadded: {
96
+ flex: 1,
97
+ justifyContent: 'center',
98
+ alignItems: 'center',
99
+ paddingHorizontal: tokens.spacing.xl,
100
+ },
101
+ /**
102
+ * Horizontal row layout
103
+ */
104
+ row: {
105
+ flexDirection: 'row',
106
+ alignItems: 'center',
107
+ },
108
+ /**
109
+ * Horizontal row with space between
110
+ */
111
+ rowBetween: {
112
+ flexDirection: 'row',
113
+ alignItems: 'center',
114
+ justifyContent: 'space-between',
115
+ },
116
+ /**
117
+ * Horizontal row centered
118
+ */
119
+ rowCenter: {
120
+ flexDirection: 'row',
121
+ alignItems: 'center',
122
+ justifyContent: 'center',
123
+ },
124
+ // ========================================================================
125
+ // PADDING UTILITIES
126
+ // ========================================================================
127
+ /**
128
+ * Standard horizontal padding
129
+ */
130
+ paddedHorizontal: {
131
+ paddingHorizontal: tokens.spacing.lg,
132
+ },
133
+ /**
134
+ * Standard vertical padding
135
+ */
136
+ paddedVertical: {
137
+ paddingVertical: tokens.spacing.lg,
138
+ },
139
+ /**
140
+ * Standard padding all sides
141
+ */
142
+ padded: {
143
+ padding: tokens.spacing.lg,
144
+ },
145
+ // ========================================================================
146
+ // SECTION STYLES
147
+ // ========================================================================
148
+ /**
149
+ * Standard section container
150
+ */
151
+ section: {
152
+ marginBottom: tokens.spacing.xl,
153
+ },
154
+ /**
155
+ * Section with padding
156
+ */
157
+ sectionPadded: {
158
+ marginBottom: tokens.spacing.xl,
159
+ paddingHorizontal: tokens.spacing.lg,
160
+ },
161
+ // ========================================================================
162
+ // TEXT STYLES
163
+ // ========================================================================
164
+ /**
165
+ * Screen title - primary heading
166
+ */
167
+ screenTitle: {
168
+ ...tokens.typography.headingLarge,
169
+ color: tokens.colors.textPrimary,
170
+ marginBottom: tokens.spacing.sm,
171
+ },
172
+ /**
173
+ * Section title
174
+ */
175
+ sectionTitle: {
176
+ ...tokens.typography.headingMedium,
177
+ color: tokens.colors.textPrimary,
178
+ marginBottom: tokens.spacing.md,
179
+ },
180
+ /**
181
+ * Subtitle/description text
182
+ */
183
+ subtitle: {
184
+ ...tokens.typography.bodyMedium,
185
+ color: tokens.colors.textSecondary,
186
+ textAlign: 'center',
187
+ },
188
+ /**
189
+ * Body text
190
+ */
191
+ bodyText: {
192
+ ...tokens.typography.bodyMedium,
193
+ color: tokens.colors.textPrimary,
194
+ },
195
+ /**
196
+ * Secondary text (muted)
197
+ */
198
+ secondaryText: {
199
+ ...tokens.typography.bodySmall,
200
+ color: tokens.colors.textSecondary,
201
+ },
202
+ // ========================================================================
203
+ // FORM STYLES
204
+ // ========================================================================
205
+ /**
206
+ * Form container
207
+ */
208
+ form: {
209
+ width: '100%',
210
+ },
211
+ /**
212
+ * Form header section
213
+ */
214
+ formHeader: {
215
+ alignItems: 'center',
216
+ marginBottom: tokens.spacing.xl,
217
+ },
218
+ };
219
+ };
220
+ //# sourceMappingURL=commonStyles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"commonStyles.js","sourceRoot":"","sources":["../../../src/presentation/tokens/commonStyles.ts"],"names":[],"mappings":"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"}