@umituz/react-native-design-system 1.3.1 → 1.3.3

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 (350) hide show
  1. package/README.md +1 -1
  2. package/lib/domains/icons/domain/config/IconLibraryConfig.d.ts +91 -0
  3. package/lib/domains/icons/domain/config/IconLibraryConfig.d.ts.map +1 -0
  4. package/lib/domains/icons/domain/config/IconLibraryConfig.js +85 -0
  5. package/lib/domains/icons/domain/config/IconLibraryConfig.js.map +1 -0
  6. package/lib/domains/icons/domain/entities/Icon.d.ts +111 -0
  7. package/lib/domains/icons/domain/entities/Icon.d.ts.map +1 -0
  8. package/lib/domains/icons/domain/entities/Icon.js +87 -0
  9. package/lib/domains/icons/domain/entities/Icon.js.map +1 -0
  10. package/lib/domains/icons/domain/interfaces/IIconAdapter.d.ts +114 -0
  11. package/lib/domains/icons/domain/interfaces/IIconAdapter.d.ts.map +1 -0
  12. package/lib/domains/icons/domain/interfaces/IIconAdapter.js +17 -0
  13. package/lib/domains/icons/domain/interfaces/IIconAdapter.js.map +1 -0
  14. package/lib/domains/icons/index.d.ts +84 -0
  15. package/lib/domains/icons/index.d.ts.map +1 -0
  16. package/lib/domains/icons/index.js +89 -0
  17. package/lib/domains/icons/index.js.map +1 -0
  18. package/lib/domains/icons/infrastructure/adapters/LucideAdapter.d.ts +24 -0
  19. package/lib/domains/icons/infrastructure/adapters/LucideAdapter.d.ts.map +1 -0
  20. package/lib/domains/icons/infrastructure/adapters/LucideAdapter.js +85 -0
  21. package/lib/domains/icons/infrastructure/adapters/LucideAdapter.js.map +1 -0
  22. package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.d.ts +23 -0
  23. package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.d.ts.map +1 -0
  24. package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.js +178 -0
  25. package/lib/domains/icons/infrastructure/registries/ExpoIconRegistry.js.map +1 -0
  26. package/lib/domains/icons/presentation/components/Icon.d.ts +42 -0
  27. package/lib/domains/icons/presentation/components/Icon.d.ts.map +1 -0
  28. package/lib/domains/icons/presentation/components/Icon.js +86 -0
  29. package/lib/domains/icons/presentation/components/Icon.js.map +1 -0
  30. package/lib/domains/icons/presentation/hooks/useIconLibrary.d.ts +38 -0
  31. package/lib/domains/icons/presentation/hooks/useIconLibrary.d.ts.map +1 -0
  32. package/lib/domains/icons/presentation/hooks/useIconLibrary.js +114 -0
  33. package/lib/domains/icons/presentation/hooks/useIconLibrary.js.map +1 -0
  34. package/lib/index.d.ts +66 -0
  35. package/lib/index.d.ts.map +1 -0
  36. package/lib/index.js +106 -0
  37. package/lib/index.js.map +1 -0
  38. package/lib/infrastructure/theme/globalThemeStore.d.ts +42 -0
  39. package/lib/infrastructure/theme/globalThemeStore.d.ts.map +1 -0
  40. package/lib/infrastructure/theme/globalThemeStore.js +38 -0
  41. package/lib/infrastructure/theme/globalThemeStore.js.map +1 -0
  42. package/lib/presentation/atoms/AtomicAvatar.d.ts +48 -0
  43. package/lib/presentation/atoms/AtomicAvatar.d.ts.map +1 -0
  44. package/lib/presentation/atoms/AtomicAvatar.js +85 -0
  45. package/lib/presentation/atoms/AtomicAvatar.js.map +1 -0
  46. package/lib/presentation/atoms/AtomicAvatarGroup.d.ts +56 -0
  47. package/lib/presentation/atoms/AtomicAvatarGroup.d.ts.map +1 -0
  48. package/lib/presentation/atoms/AtomicAvatarGroup.js +83 -0
  49. package/lib/presentation/atoms/AtomicAvatarGroup.js.map +1 -0
  50. package/lib/presentation/atoms/AtomicBadge.d.ts +42 -0
  51. package/lib/presentation/atoms/AtomicBadge.d.ts.map +1 -0
  52. package/lib/presentation/atoms/AtomicBadge.js +168 -0
  53. package/lib/presentation/atoms/AtomicBadge.js.map +1 -0
  54. package/lib/presentation/atoms/AtomicButton.d.ts +22 -0
  55. package/lib/presentation/atoms/AtomicButton.d.ts.map +1 -0
  56. package/lib/presentation/atoms/AtomicButton.js +193 -0
  57. package/lib/presentation/atoms/AtomicButton.js.map +1 -0
  58. package/lib/presentation/atoms/AtomicCard.d.ts +15 -0
  59. package/lib/presentation/atoms/AtomicCard.d.ts.map +1 -0
  60. package/lib/presentation/atoms/AtomicCard.js +89 -0
  61. package/lib/presentation/atoms/AtomicCard.js.map +1 -0
  62. package/lib/presentation/atoms/AtomicChip.d.ts +53 -0
  63. package/lib/presentation/atoms/AtomicChip.d.ts.map +1 -0
  64. package/lib/presentation/atoms/AtomicChip.js +131 -0
  65. package/lib/presentation/atoms/AtomicChip.js.map +1 -0
  66. package/lib/presentation/atoms/AtomicDatePicker.d.ts +75 -0
  67. package/lib/presentation/atoms/AtomicDatePicker.d.ts.map +1 -0
  68. package/lib/presentation/atoms/AtomicDatePicker.js +246 -0
  69. package/lib/presentation/atoms/AtomicDatePicker.js.map +1 -0
  70. package/lib/presentation/atoms/AtomicDivider.d.ts +45 -0
  71. package/lib/presentation/atoms/AtomicDivider.d.ts.map +1 -0
  72. package/lib/presentation/atoms/AtomicDivider.js +58 -0
  73. package/lib/presentation/atoms/AtomicDivider.js.map +1 -0
  74. package/lib/presentation/atoms/AtomicFab.d.ts +38 -0
  75. package/lib/presentation/atoms/AtomicFab.d.ts.map +1 -0
  76. package/lib/presentation/atoms/AtomicFab.js +69 -0
  77. package/lib/presentation/atoms/AtomicFab.js.map +1 -0
  78. package/lib/presentation/atoms/AtomicFilter.d.ts +37 -0
  79. package/lib/presentation/atoms/AtomicFilter.d.ts.map +1 -0
  80. package/lib/presentation/atoms/AtomicFilter.js +104 -0
  81. package/lib/presentation/atoms/AtomicFilter.js.map +1 -0
  82. package/lib/presentation/atoms/AtomicFormError.d.ts +30 -0
  83. package/lib/presentation/atoms/AtomicFormError.d.ts.map +1 -0
  84. package/lib/presentation/atoms/AtomicFormError.js +64 -0
  85. package/lib/presentation/atoms/AtomicFormError.js.map +1 -0
  86. package/lib/presentation/atoms/AtomicIcon.d.ts +36 -0
  87. package/lib/presentation/atoms/AtomicIcon.d.ts.map +1 -0
  88. package/lib/presentation/atoms/AtomicIcon.js +30 -0
  89. package/lib/presentation/atoms/AtomicIcon.js.map +1 -0
  90. package/lib/presentation/atoms/AtomicImage.d.ts +40 -0
  91. package/lib/presentation/atoms/AtomicImage.d.ts.map +1 -0
  92. package/lib/presentation/atoms/AtomicImage.js +92 -0
  93. package/lib/presentation/atoms/AtomicImage.js.map +1 -0
  94. package/lib/presentation/atoms/AtomicInput.d.ts +71 -0
  95. package/lib/presentation/atoms/AtomicInput.d.ts.map +1 -0
  96. package/lib/presentation/atoms/AtomicInput.js +196 -0
  97. package/lib/presentation/atoms/AtomicInput.js.map +1 -0
  98. package/lib/presentation/atoms/AtomicNumberInput.d.ts +69 -0
  99. package/lib/presentation/atoms/AtomicNumberInput.d.ts.map +1 -0
  100. package/lib/presentation/atoms/AtomicNumberInput.js +125 -0
  101. package/lib/presentation/atoms/AtomicNumberInput.js.map +1 -0
  102. package/lib/presentation/atoms/AtomicPicker.d.ts +52 -0
  103. package/lib/presentation/atoms/AtomicPicker.d.ts.map +1 -0
  104. package/lib/presentation/atoms/AtomicPicker.js +299 -0
  105. package/lib/presentation/atoms/AtomicPicker.js.map +1 -0
  106. package/lib/presentation/atoms/AtomicProgress.d.ts +47 -0
  107. package/lib/presentation/atoms/AtomicProgress.d.ts.map +1 -0
  108. package/lib/presentation/atoms/AtomicProgress.js +81 -0
  109. package/lib/presentation/atoms/AtomicProgress.js.map +1 -0
  110. package/lib/presentation/atoms/AtomicSearchBar.d.ts +19 -0
  111. package/lib/presentation/atoms/AtomicSearchBar.d.ts.map +1 -0
  112. package/lib/presentation/atoms/AtomicSearchBar.js +46 -0
  113. package/lib/presentation/atoms/AtomicSearchBar.js.map +1 -0
  114. package/lib/presentation/atoms/AtomicSkeleton.d.ts +43 -0
  115. package/lib/presentation/atoms/AtomicSkeleton.d.ts.map +1 -0
  116. package/lib/presentation/atoms/AtomicSkeleton.js +84 -0
  117. package/lib/presentation/atoms/AtomicSkeleton.js.map +1 -0
  118. package/lib/presentation/atoms/AtomicSort.d.ts +72 -0
  119. package/lib/presentation/atoms/AtomicSort.d.ts.map +1 -0
  120. package/lib/presentation/atoms/AtomicSort.js +77 -0
  121. package/lib/presentation/atoms/AtomicSort.js.map +1 -0
  122. package/lib/presentation/atoms/AtomicSwitch.d.ts +43 -0
  123. package/lib/presentation/atoms/AtomicSwitch.d.ts.map +1 -0
  124. package/lib/presentation/atoms/AtomicSwitch.js +104 -0
  125. package/lib/presentation/atoms/AtomicSwitch.js.map +1 -0
  126. package/lib/presentation/atoms/AtomicText.d.ts +14 -0
  127. package/lib/presentation/atoms/AtomicText.d.ts.map +1 -0
  128. package/lib/presentation/atoms/AtomicText.js +36 -0
  129. package/lib/presentation/atoms/AtomicText.js.map +1 -0
  130. package/lib/presentation/atoms/AtomicTextArea.d.ts +85 -0
  131. package/lib/presentation/atoms/AtomicTextArea.d.ts.map +1 -0
  132. package/lib/presentation/atoms/AtomicTextArea.js +196 -0
  133. package/lib/presentation/atoms/AtomicTextArea.js.map +1 -0
  134. package/lib/presentation/atoms/AtomicTouchable.d.ts +87 -0
  135. package/lib/presentation/atoms/AtomicTouchable.d.ts.map +1 -0
  136. package/lib/presentation/atoms/AtomicTouchable.js +151 -0
  137. package/lib/presentation/atoms/AtomicTouchable.js.map +1 -0
  138. package/lib/presentation/atoms/fab/styles/fabStyles.d.ts +23 -0
  139. package/lib/presentation/atoms/fab/styles/fabStyles.d.ts.map +1 -0
  140. package/lib/presentation/atoms/fab/styles/fabStyles.js +63 -0
  141. package/lib/presentation/atoms/fab/styles/fabStyles.js.map +1 -0
  142. package/lib/presentation/atoms/fab/types/index.d.ts +76 -0
  143. package/lib/presentation/atoms/fab/types/index.d.ts.map +1 -0
  144. package/lib/presentation/atoms/fab/types/index.js +2 -0
  145. package/lib/presentation/atoms/fab/types/index.js.map +1 -0
  146. package/lib/presentation/atoms/filter/styles/filterStyles.d.ts +15 -0
  147. package/lib/presentation/atoms/filter/styles/filterStyles.d.ts.map +1 -0
  148. package/lib/presentation/atoms/filter/styles/filterStyles.js +29 -0
  149. package/lib/presentation/atoms/filter/styles/filterStyles.js.map +1 -0
  150. package/lib/presentation/atoms/filter/types/index.d.ts +76 -0
  151. package/lib/presentation/atoms/filter/types/index.d.ts.map +1 -0
  152. package/lib/presentation/atoms/filter/types/index.js +2 -0
  153. package/lib/presentation/atoms/filter/types/index.js.map +1 -0
  154. package/lib/presentation/atoms/index.d.ts +276 -0
  155. package/lib/presentation/atoms/index.d.ts.map +1 -0
  156. package/lib/presentation/atoms/index.js +149 -0
  157. package/lib/presentation/atoms/index.js.map +1 -0
  158. package/lib/presentation/atoms/input/hooks/useInputState.d.ts +7 -0
  159. package/lib/presentation/atoms/input/hooks/useInputState.d.ts.map +1 -0
  160. package/lib/presentation/atoms/input/hooks/useInputState.js +13 -0
  161. package/lib/presentation/atoms/input/hooks/useInputState.js.map +1 -0
  162. package/lib/presentation/atoms/input/styles/inputStyles.d.ts +13 -0
  163. package/lib/presentation/atoms/input/styles/inputStyles.d.ts.map +1 -0
  164. package/lib/presentation/atoms/input/styles/inputStyles.js +59 -0
  165. package/lib/presentation/atoms/input/styles/inputStyles.js.map +1 -0
  166. package/lib/presentation/atoms/input/types/index.d.ts +24 -0
  167. package/lib/presentation/atoms/input/types/index.d.ts.map +1 -0
  168. package/lib/presentation/atoms/input/types/index.js +2 -0
  169. package/lib/presentation/atoms/input/types/index.js.map +1 -0
  170. package/lib/presentation/atoms/picker/styles/pickerStyles.d.ts +96 -0
  171. package/lib/presentation/atoms/picker/styles/pickerStyles.d.ts.map +1 -0
  172. package/lib/presentation/atoms/picker/styles/pickerStyles.js +177 -0
  173. package/lib/presentation/atoms/picker/styles/pickerStyles.js.map +1 -0
  174. package/lib/presentation/atoms/picker/types/index.d.ts +38 -0
  175. package/lib/presentation/atoms/picker/types/index.d.ts.map +1 -0
  176. package/lib/presentation/atoms/picker/types/index.js +2 -0
  177. package/lib/presentation/atoms/picker/types/index.js.map +1 -0
  178. package/lib/presentation/atoms/touchable/styles/touchableStyles.d.ts +36 -0
  179. package/lib/presentation/atoms/touchable/styles/touchableStyles.d.ts.map +1 -0
  180. package/lib/presentation/atoms/touchable/styles/touchableStyles.js +62 -0
  181. package/lib/presentation/atoms/touchable/styles/touchableStyles.js.map +1 -0
  182. package/lib/presentation/atoms/touchable/types/index.d.ts +140 -0
  183. package/lib/presentation/atoms/touchable/types/index.d.ts.map +1 -0
  184. package/lib/presentation/atoms/touchable/types/index.js +2 -0
  185. package/lib/presentation/atoms/touchable/types/index.js.map +1 -0
  186. package/lib/presentation/hooks/useAppDesignTokens.d.ts +34 -0
  187. package/lib/presentation/hooks/useAppDesignTokens.d.ts.map +1 -0
  188. package/lib/presentation/hooks/useAppDesignTokens.js +39 -0
  189. package/lib/presentation/hooks/useAppDesignTokens.js.map +1 -0
  190. package/lib/presentation/hooks/useResponsive.d.ts +80 -0
  191. package/lib/presentation/hooks/useResponsive.d.ts.map +1 -0
  192. package/lib/presentation/hooks/useResponsive.js +82 -0
  193. package/lib/presentation/hooks/useResponsive.js.map +1 -0
  194. package/lib/presentation/loading/index.d.ts +23 -0
  195. package/lib/presentation/loading/index.d.ts.map +1 -0
  196. package/lib/presentation/loading/index.js +26 -0
  197. package/lib/presentation/loading/index.js.map +1 -0
  198. package/lib/presentation/loading/presentation/components/LoadingSpinner.d.ts +28 -0
  199. package/lib/presentation/loading/presentation/components/LoadingSpinner.d.ts.map +1 -0
  200. package/lib/presentation/loading/presentation/components/LoadingSpinner.js +77 -0
  201. package/lib/presentation/loading/presentation/components/LoadingSpinner.js.map +1 -0
  202. package/lib/presentation/loading/presentation/components/LoadingState.d.ts +39 -0
  203. package/lib/presentation/loading/presentation/components/LoadingState.d.ts.map +1 -0
  204. package/lib/presentation/loading/presentation/components/LoadingState.js +123 -0
  205. package/lib/presentation/loading/presentation/components/LoadingState.js.map +1 -0
  206. package/lib/presentation/loading/presentation/hooks/useLoading.d.ts +50 -0
  207. package/lib/presentation/loading/presentation/hooks/useLoading.d.ts.map +1 -0
  208. package/lib/presentation/loading/presentation/hooks/useLoading.js +49 -0
  209. package/lib/presentation/loading/presentation/hooks/useLoading.js.map +1 -0
  210. package/lib/presentation/molecules/AtomicConfirmationModal.d.ts +73 -0
  211. package/lib/presentation/molecules/AtomicConfirmationModal.d.ts.map +1 -0
  212. package/lib/presentation/molecules/AtomicConfirmationModal.js +172 -0
  213. package/lib/presentation/molecules/AtomicConfirmationModal.js.map +1 -0
  214. package/lib/presentation/molecules/EmptyState.d.ts +41 -0
  215. package/lib/presentation/molecules/EmptyState.d.ts.map +1 -0
  216. package/lib/presentation/molecules/EmptyState.js +68 -0
  217. package/lib/presentation/molecules/EmptyState.js.map +1 -0
  218. package/lib/presentation/molecules/FormField.d.ts +22 -0
  219. package/lib/presentation/molecules/FormField.d.ts.map +1 -0
  220. package/lib/presentation/molecules/FormField.js +76 -0
  221. package/lib/presentation/molecules/FormField.js.map +1 -0
  222. package/lib/presentation/molecules/GridContainer.d.ts +40 -0
  223. package/lib/presentation/molecules/GridContainer.d.ts.map +1 -0
  224. package/lib/presentation/molecules/GridContainer.js +77 -0
  225. package/lib/presentation/molecules/GridContainer.js.map +1 -0
  226. package/lib/presentation/molecules/IconContainer.d.ts +29 -0
  227. package/lib/presentation/molecules/IconContainer.d.ts.map +1 -0
  228. package/lib/presentation/molecules/IconContainer.js +60 -0
  229. package/lib/presentation/molecules/IconContainer.js.map +1 -0
  230. package/lib/presentation/molecules/LanguageSwitcher.d.ts +10 -0
  231. package/lib/presentation/molecules/LanguageSwitcher.d.ts.map +1 -0
  232. package/lib/presentation/molecules/LanguageSwitcher.js +24 -0
  233. package/lib/presentation/molecules/LanguageSwitcher.js.map +1 -0
  234. package/lib/presentation/molecules/ListItem.d.ts +5 -0
  235. package/lib/presentation/molecules/ListItem.d.ts.map +1 -0
  236. package/lib/presentation/molecules/ListItem.js +24 -0
  237. package/lib/presentation/molecules/ListItem.js.map +1 -0
  238. package/lib/presentation/molecules/ScreenHeader.d.ts +55 -0
  239. package/lib/presentation/molecules/ScreenHeader.d.ts.map +1 -0
  240. package/lib/presentation/molecules/ScreenHeader.js +94 -0
  241. package/lib/presentation/molecules/ScreenHeader.js.map +1 -0
  242. package/lib/presentation/molecules/SearchBar.d.ts +18 -0
  243. package/lib/presentation/molecules/SearchBar.d.ts.map +1 -0
  244. package/lib/presentation/molecules/SearchBar.js +47 -0
  245. package/lib/presentation/molecules/SearchBar.js.map +1 -0
  246. package/lib/presentation/molecules/SectionCard.d.ts +25 -0
  247. package/lib/presentation/molecules/SectionCard.d.ts.map +1 -0
  248. package/lib/presentation/molecules/SectionCard.js +47 -0
  249. package/lib/presentation/molecules/SectionCard.js.map +1 -0
  250. package/lib/presentation/molecules/SectionContainer.d.ts +33 -0
  251. package/lib/presentation/molecules/SectionContainer.d.ts.map +1 -0
  252. package/lib/presentation/molecules/SectionContainer.js +64 -0
  253. package/lib/presentation/molecules/SectionContainer.js.map +1 -0
  254. package/lib/presentation/molecules/SectionHeader.d.ts +37 -0
  255. package/lib/presentation/molecules/SectionHeader.d.ts.map +1 -0
  256. package/lib/presentation/molecules/SectionHeader.js +73 -0
  257. package/lib/presentation/molecules/SectionHeader.js.map +1 -0
  258. package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.d.ts +50 -0
  259. package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.d.ts.map +1 -0
  260. package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.js +115 -0
  261. package/lib/presentation/molecules/confirmation-modal/styles/confirmationModalStyles.js.map +1 -0
  262. package/lib/presentation/molecules/confirmation-modal/types/index.d.ts +88 -0
  263. package/lib/presentation/molecules/confirmation-modal/types/index.d.ts.map +1 -0
  264. package/lib/presentation/molecules/confirmation-modal/types/index.js +7 -0
  265. package/lib/presentation/molecules/confirmation-modal/types/index.js.map +1 -0
  266. package/lib/presentation/molecules/index.d.ts +28 -0
  267. package/lib/presentation/molecules/index.d.ts.map +1 -0
  268. package/lib/presentation/molecules/index.js +18 -0
  269. package/lib/presentation/molecules/index.js.map +1 -0
  270. package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.d.ts +11 -0
  271. package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.d.ts.map +1 -0
  272. package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.js +6 -0
  273. package/lib/presentation/molecules/languageswitcher/config/languageSwitcherConfig.js.map +1 -0
  274. package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.d.ts +5 -0
  275. package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.d.ts.map +1 -0
  276. package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.js +12 -0
  277. package/lib/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.js.map +1 -0
  278. package/lib/presentation/molecules/listitem/styles/listItemStyles.d.ts +12 -0
  279. package/lib/presentation/molecules/listitem/styles/listItemStyles.d.ts.map +1 -0
  280. package/lib/presentation/molecules/listitem/styles/listItemStyles.js +15 -0
  281. package/lib/presentation/molecules/listitem/styles/listItemStyles.js.map +1 -0
  282. package/lib/presentation/molecules/listitem/types/index.d.ts +17 -0
  283. package/lib/presentation/molecules/listitem/types/index.d.ts.map +1 -0
  284. package/lib/presentation/molecules/listitem/types/index.js +2 -0
  285. package/lib/presentation/molecules/listitem/types/index.js.map +1 -0
  286. package/lib/presentation/organisms/AppHeader.d.ts +30 -0
  287. package/lib/presentation/organisms/AppHeader.d.ts.map +1 -0
  288. package/lib/presentation/organisms/AppHeader.js +78 -0
  289. package/lib/presentation/organisms/AppHeader.js.map +1 -0
  290. package/lib/presentation/organisms/FormContainer.d.ts +76 -0
  291. package/lib/presentation/organisms/FormContainer.d.ts.map +1 -0
  292. package/lib/presentation/organisms/FormContainer.js +127 -0
  293. package/lib/presentation/organisms/FormContainer.js.map +1 -0
  294. package/lib/presentation/organisms/ScreenLayout.d.ts +99 -0
  295. package/lib/presentation/organisms/ScreenLayout.d.ts.map +1 -0
  296. package/lib/presentation/organisms/ScreenLayout.js +78 -0
  297. package/lib/presentation/organisms/ScreenLayout.js.map +1 -0
  298. package/lib/presentation/organisms/index.d.ts +16 -0
  299. package/lib/presentation/organisms/index.d.ts.map +1 -0
  300. package/lib/presentation/organisms/index.js +14 -0
  301. package/lib/presentation/organisms/index.js.map +1 -0
  302. package/lib/presentation/tokens/AppDesignTokens.d.ts +14 -0
  303. package/lib/presentation/tokens/AppDesignTokens.d.ts.map +1 -0
  304. package/lib/presentation/tokens/AppDesignTokens.js +23 -0
  305. package/lib/presentation/tokens/AppDesignTokens.js.map +1 -0
  306. package/lib/presentation/tokens/commonStyles.d.ts +122 -0
  307. package/lib/presentation/tokens/commonStyles.d.ts.map +1 -0
  308. package/lib/presentation/tokens/commonStyles.js +220 -0
  309. package/lib/presentation/tokens/commonStyles.js.map +1 -0
  310. package/lib/presentation/tokens/core/BaseTokens.d.ts +337 -0
  311. package/lib/presentation/tokens/core/BaseTokens.d.ts.map +1 -0
  312. package/lib/presentation/tokens/core/BaseTokens.js +322 -0
  313. package/lib/presentation/tokens/core/BaseTokens.js.map +1 -0
  314. package/lib/presentation/tokens/core/ColorPalette.d.ts +216 -0
  315. package/lib/presentation/tokens/core/ColorPalette.d.ts.map +1 -0
  316. package/lib/presentation/tokens/core/ColorPalette.js +330 -0
  317. package/lib/presentation/tokens/core/ColorPalette.js.map +1 -0
  318. package/lib/presentation/tokens/core/TokenFactory.d.ts +229 -0
  319. package/lib/presentation/tokens/core/TokenFactory.d.ts.map +1 -0
  320. package/lib/presentation/tokens/core/TokenFactory.js +87 -0
  321. package/lib/presentation/tokens/core/TokenFactory.js.map +1 -0
  322. package/lib/presentation/utils/platformConstants.d.ts +100 -0
  323. package/lib/presentation/utils/platformConstants.d.ts.map +1 -0
  324. package/lib/presentation/utils/platformConstants.js +114 -0
  325. package/lib/presentation/utils/platformConstants.js.map +1 -0
  326. package/lib/presentation/utils/responsive.d.ts +218 -0
  327. package/lib/presentation/utils/responsive.d.ts.map +1 -0
  328. package/lib/presentation/utils/responsive.js +452 -0
  329. package/lib/presentation/utils/responsive.js.map +1 -0
  330. package/lib/presentation/utils/variants/compound.d.ts +10 -0
  331. package/lib/presentation/utils/variants/compound.d.ts.map +1 -0
  332. package/lib/presentation/utils/variants/compound.js +16 -0
  333. package/lib/presentation/utils/variants/compound.js.map +1 -0
  334. package/lib/presentation/utils/variants/core.d.ts +15 -0
  335. package/lib/presentation/utils/variants/core.d.ts.map +1 -0
  336. package/lib/presentation/utils/variants/core.js +23 -0
  337. package/lib/presentation/utils/variants/core.js.map +1 -0
  338. package/lib/presentation/utils/variants/helpers.d.ts +5 -0
  339. package/lib/presentation/utils/variants/helpers.d.ts.map +1 -0
  340. package/lib/presentation/utils/variants/helpers.js +10 -0
  341. package/lib/presentation/utils/variants/helpers.js.map +1 -0
  342. package/lib/presentation/utils/variants.d.ts +4 -0
  343. package/lib/presentation/utils/variants.d.ts.map +1 -0
  344. package/lib/presentation/utils/variants.js +4 -0
  345. package/lib/presentation/utils/variants.js.map +1 -0
  346. package/package.json +40 -4
  347. package/src/domains/icons/domain/interfaces/IIconAdapter.ts +5 -3
  348. package/src/domains/icons/infrastructure/adapters/LucideAdapter.ts +1 -1
  349. package/src/presentation/molecules/AtomicConfirmationModal.tsx +1 -1
  350. package/src/presentation/molecules/languageswitcher/hooks/useLanguageNavigation.ts +1 -2
@@ -0,0 +1,337 @@
1
+ /**
2
+ * BASE DESIGN TOKENS - SINGLE SOURCE OF TRUTH
3
+ *
4
+ * ✅ STATIC tokens that don't change with theme
5
+ * ✅ DRY Principle - Each value defined ONCE
6
+ * ✅ Type-safe with full TypeScript support
7
+ * ✅ Factory-first design for 100+ generated apps
8
+ *
9
+ * @module BaseTokens
10
+ */
11
+ import { TextStyle } from 'react-native';
12
+ export declare const spacing: {
13
+ readonly xs: 4;
14
+ readonly sm: 8;
15
+ readonly md: 16;
16
+ readonly lg: 24;
17
+ readonly xl: 32;
18
+ readonly xxl: 48;
19
+ readonly xxxl: 64;
20
+ readonly screenPadding: 20;
21
+ readonly cardPadding: 16;
22
+ readonly buttonPadding: 16;
23
+ readonly inputPadding: 8;
24
+ readonly sectionSpacing: 24;
25
+ readonly iconSizeSmall: 16;
26
+ readonly iconSizeMedium: 20;
27
+ readonly iconSizeLarge: 24;
28
+ readonly iconSizeXLarge: 32;
29
+ readonly iconSizeHero: 64;
30
+ readonly buttonHeight: 48;
31
+ readonly inputHeight: 48;
32
+ readonly appBarHeight: 56;
33
+ readonly tabBarHeight: 60;
34
+ };
35
+ export declare const typography: {
36
+ readonly fontPrimary: "System";
37
+ readonly fontSecondary: "System";
38
+ readonly fontMono: "Courier New";
39
+ readonly xs: 12;
40
+ readonly sm: 14;
41
+ readonly md: 16;
42
+ readonly lg: 18;
43
+ readonly xl: 20;
44
+ readonly xxl: 24;
45
+ readonly xxxl: 32;
46
+ readonly light: "300";
47
+ readonly regular: "400";
48
+ readonly medium: "500";
49
+ readonly semibold: "600";
50
+ readonly bold: "700";
51
+ readonly lineHeightTight: 1.2;
52
+ readonly lineHeightNormal: 1.5;
53
+ readonly lineHeightRelaxed: 1.7;
54
+ readonly displayLarge: TextStyle;
55
+ readonly displayMedium: TextStyle;
56
+ readonly displaySmall: TextStyle;
57
+ readonly headlineLarge: TextStyle;
58
+ readonly headlineMedium: TextStyle;
59
+ readonly headlineSmall: TextStyle;
60
+ readonly titleLarge: TextStyle;
61
+ readonly titleMedium: TextStyle;
62
+ readonly titleSmall: TextStyle;
63
+ readonly bodyLarge: TextStyle;
64
+ readonly bodyMedium: TextStyle;
65
+ readonly bodySmall: TextStyle;
66
+ readonly labelLarge: TextStyle;
67
+ readonly labelMedium: TextStyle;
68
+ readonly labelSmall: TextStyle;
69
+ readonly headingLarge: TextStyle;
70
+ readonly headingMedium: TextStyle;
71
+ readonly headingSmall: TextStyle;
72
+ readonly button: TextStyle;
73
+ readonly caption: TextStyle;
74
+ readonly overline: TextStyle;
75
+ };
76
+ export declare const animations: {
77
+ readonly fastest: 150;
78
+ readonly fast: 150;
79
+ readonly normal: 300;
80
+ readonly slow: 500;
81
+ readonly slower: 750;
82
+ readonly slowest: 1000;
83
+ readonly easeInOut: "ease-in-out";
84
+ readonly easeIn: "ease-in";
85
+ readonly easeOut: "ease-out";
86
+ readonly linear: "linear";
87
+ };
88
+ export declare const opacity: {
89
+ readonly disabled: 0.6;
90
+ readonly subtle: 0.8;
91
+ readonly medium: 0.5;
92
+ readonly light: 0.3;
93
+ readonly veryLight: 0.1;
94
+ };
95
+ export declare const borders: {
96
+ readonly radius: {
97
+ readonly none: 0;
98
+ readonly xs: 2;
99
+ readonly sm: 4;
100
+ readonly md: 8;
101
+ readonly lg: 12;
102
+ readonly xl: 16;
103
+ readonly xxl: 24;
104
+ readonly full: 9999;
105
+ };
106
+ readonly width: {
107
+ readonly none: 0;
108
+ readonly thin: 1;
109
+ readonly medium: 2;
110
+ readonly thick: 4;
111
+ };
112
+ readonly button: {
113
+ readonly borderRadius: 8;
114
+ readonly borderWidth: 0;
115
+ };
116
+ readonly card: {
117
+ readonly borderRadius: 12;
118
+ readonly borderWidth: 1;
119
+ };
120
+ readonly input: {
121
+ readonly borderRadius: 8;
122
+ readonly borderWidth: 1;
123
+ };
124
+ readonly pill: {
125
+ readonly borderRadius: 9999;
126
+ readonly borderWidth: 0;
127
+ };
128
+ };
129
+ export declare const sizes: {
130
+ readonly touchTarget: 44;
131
+ readonly touchTargetSmall: 36;
132
+ readonly touchTargetLarge: 56;
133
+ readonly buttonHeight: {
134
+ readonly sm: 40;
135
+ readonly md: 48;
136
+ readonly lg: 56;
137
+ readonly xl: 64;
138
+ };
139
+ readonly dot: {
140
+ readonly inactive: 8;
141
+ readonly active: 24;
142
+ };
143
+ readonly progressBar: {
144
+ readonly thin: 2;
145
+ readonly normal: 4;
146
+ readonly thick: 6;
147
+ };
148
+ readonly divider: 1;
149
+ readonly separator: 2;
150
+ };
151
+ export declare const iconSizes: {
152
+ readonly xs: 12;
153
+ readonly sm: 16;
154
+ readonly md: 20;
155
+ readonly lg: 24;
156
+ readonly xl: 32;
157
+ readonly xxl: 40;
158
+ };
159
+ export declare const avatarSizes: {
160
+ readonly xs: 24;
161
+ readonly sm: 32;
162
+ readonly md: 40;
163
+ readonly lg: 48;
164
+ readonly xl: 64;
165
+ readonly xxl: 80;
166
+ };
167
+ /**
168
+ * All static design tokens in one place
169
+ * These values DON'T change with theme (light/dark)
170
+ */
171
+ export declare const BASE_TOKENS: {
172
+ readonly spacing: {
173
+ readonly xs: 4;
174
+ readonly sm: 8;
175
+ readonly md: 16;
176
+ readonly lg: 24;
177
+ readonly xl: 32;
178
+ readonly xxl: 48;
179
+ readonly xxxl: 64;
180
+ readonly screenPadding: 20;
181
+ readonly cardPadding: 16;
182
+ readonly buttonPadding: 16;
183
+ readonly inputPadding: 8;
184
+ readonly sectionSpacing: 24;
185
+ readonly iconSizeSmall: 16;
186
+ readonly iconSizeMedium: 20;
187
+ readonly iconSizeLarge: 24;
188
+ readonly iconSizeXLarge: 32;
189
+ readonly iconSizeHero: 64;
190
+ readonly buttonHeight: 48;
191
+ readonly inputHeight: 48;
192
+ readonly appBarHeight: 56;
193
+ readonly tabBarHeight: 60;
194
+ };
195
+ readonly typography: {
196
+ readonly fontPrimary: "System";
197
+ readonly fontSecondary: "System";
198
+ readonly fontMono: "Courier New";
199
+ readonly xs: 12;
200
+ readonly sm: 14;
201
+ readonly md: 16;
202
+ readonly lg: 18;
203
+ readonly xl: 20;
204
+ readonly xxl: 24;
205
+ readonly xxxl: 32;
206
+ readonly light: "300";
207
+ readonly regular: "400";
208
+ readonly medium: "500";
209
+ readonly semibold: "600";
210
+ readonly bold: "700";
211
+ readonly lineHeightTight: 1.2;
212
+ readonly lineHeightNormal: 1.5;
213
+ readonly lineHeightRelaxed: 1.7;
214
+ readonly displayLarge: TextStyle;
215
+ readonly displayMedium: TextStyle;
216
+ readonly displaySmall: TextStyle;
217
+ readonly headlineLarge: TextStyle;
218
+ readonly headlineMedium: TextStyle;
219
+ readonly headlineSmall: TextStyle;
220
+ readonly titleLarge: TextStyle;
221
+ readonly titleMedium: TextStyle;
222
+ readonly titleSmall: TextStyle;
223
+ readonly bodyLarge: TextStyle;
224
+ readonly bodyMedium: TextStyle;
225
+ readonly bodySmall: TextStyle;
226
+ readonly labelLarge: TextStyle;
227
+ readonly labelMedium: TextStyle;
228
+ readonly labelSmall: TextStyle;
229
+ readonly headingLarge: TextStyle;
230
+ readonly headingMedium: TextStyle;
231
+ readonly headingSmall: TextStyle;
232
+ readonly button: TextStyle;
233
+ readonly caption: TextStyle;
234
+ readonly overline: TextStyle;
235
+ };
236
+ readonly animations: {
237
+ readonly fastest: 150;
238
+ readonly fast: 150;
239
+ readonly normal: 300;
240
+ readonly slow: 500;
241
+ readonly slower: 750;
242
+ readonly slowest: 1000;
243
+ readonly easeInOut: "ease-in-out";
244
+ readonly easeIn: "ease-in";
245
+ readonly easeOut: "ease-out";
246
+ readonly linear: "linear";
247
+ };
248
+ readonly opacity: {
249
+ readonly disabled: 0.6;
250
+ readonly subtle: 0.8;
251
+ readonly medium: 0.5;
252
+ readonly light: 0.3;
253
+ readonly veryLight: 0.1;
254
+ };
255
+ readonly borders: {
256
+ readonly radius: {
257
+ readonly none: 0;
258
+ readonly xs: 2;
259
+ readonly sm: 4;
260
+ readonly md: 8;
261
+ readonly lg: 12;
262
+ readonly xl: 16;
263
+ readonly xxl: 24;
264
+ readonly full: 9999;
265
+ };
266
+ readonly width: {
267
+ readonly none: 0;
268
+ readonly thin: 1;
269
+ readonly medium: 2;
270
+ readonly thick: 4;
271
+ };
272
+ readonly button: {
273
+ readonly borderRadius: 8;
274
+ readonly borderWidth: 0;
275
+ };
276
+ readonly card: {
277
+ readonly borderRadius: 12;
278
+ readonly borderWidth: 1;
279
+ };
280
+ readonly input: {
281
+ readonly borderRadius: 8;
282
+ readonly borderWidth: 1;
283
+ };
284
+ readonly pill: {
285
+ readonly borderRadius: 9999;
286
+ readonly borderWidth: 0;
287
+ };
288
+ };
289
+ readonly sizes: {
290
+ readonly touchTarget: 44;
291
+ readonly touchTargetSmall: 36;
292
+ readonly touchTargetLarge: 56;
293
+ readonly buttonHeight: {
294
+ readonly sm: 40;
295
+ readonly md: 48;
296
+ readonly lg: 56;
297
+ readonly xl: 64;
298
+ };
299
+ readonly dot: {
300
+ readonly inactive: 8;
301
+ readonly active: 24;
302
+ };
303
+ readonly progressBar: {
304
+ readonly thin: 2;
305
+ readonly normal: 4;
306
+ readonly thick: 6;
307
+ };
308
+ readonly divider: 1;
309
+ readonly separator: 2;
310
+ };
311
+ readonly iconSizes: {
312
+ readonly xs: 12;
313
+ readonly sm: 16;
314
+ readonly md: 20;
315
+ readonly lg: 24;
316
+ readonly xl: 32;
317
+ readonly xxl: 40;
318
+ };
319
+ readonly avatarSizes: {
320
+ readonly xs: 24;
321
+ readonly sm: 32;
322
+ readonly md: 40;
323
+ readonly lg: 48;
324
+ readonly xl: 64;
325
+ readonly xxl: 80;
326
+ };
327
+ };
328
+ export type Spacing = typeof spacing;
329
+ export type Typography = typeof typography;
330
+ export type Animations = typeof animations;
331
+ export type Opacity = typeof opacity;
332
+ export type Borders = typeof borders;
333
+ export type Sizes = typeof sizes;
334
+ export type IconSizes = typeof iconSizes;
335
+ export type AvatarSizes = typeof avatarSizes;
336
+ export type BaseTokens = typeof BASE_TOKENS;
337
+ //# sourceMappingURL=BaseTokens.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BaseTokens.d.ts","sourceRoot":"","sources":["../../../../src/presentation/tokens/core/BaseTokens.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAMzC,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;CA6BV,CAAC;AAMX,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;2BAoChB,SAAS;4BAMT,SAAS;2BAMT,SAAS;4BAOT,SAAS;6BAMT,SAAS;4BAMT,SAAS;yBAOT,SAAS;0BAMT,SAAS;yBAMT,SAAS;wBAOT,SAAS;yBAMT,SAAS;wBAMT,SAAS;yBAOT,SAAS;0BAMT,SAAS;yBAMT,SAAS;2BAUT,SAAS;4BAMT,SAAS;2BAMT,SAAS;qBAMT,SAAS;sBAMT,SAAS;uBAQT,SAAS;CACN,CAAC;AAMX,eAAO,MAAM,UAAU;;;;;;;;;;;CAcb,CAAC;AAMX,eAAO,MAAM,OAAO;;;;;;CAMV,CAAC;AAMX,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyCV,CAAC;AAMX,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;CA8BR,CAAC;AAMX,eAAO,MAAM,SAAS;;;;;;;CAOZ,CAAC;AAMX,eAAO,MAAM,WAAW;;;;;;;CAOd,CAAC;AAMX;;;GAGG;AACH,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BA1RjB,SAAS;gCAMT,SAAS;+BAMT,SAAS;gCAOT,SAAS;iCAMT,SAAS;gCAMT,SAAS;6BAOT,SAAS;8BAMT,SAAS;6BAMT,SAAS;4BAOT,SAAS;6BAMT,SAAS;4BAMT,SAAS;6BAOT,SAAS;8BAMT,SAAS;6BAMT,SAAS;+BAUT,SAAS;gCAMT,SAAS;+BAMT,SAAS;yBAMT,SAAS;0BAMT,SAAS;2BAQT,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiKN,CAAC;AAMX,MAAM,MAAM,OAAO,GAAG,OAAO,OAAO,CAAC;AACrC,MAAM,MAAM,UAAU,GAAG,OAAO,UAAU,CAAC;AAC3C,MAAM,MAAM,UAAU,GAAG,OAAO,UAAU,CAAC;AAC3C,MAAM,MAAM,OAAO,GAAG,OAAO,OAAO,CAAC;AACrC,MAAM,MAAM,OAAO,GAAG,OAAO,OAAO,CAAC;AACrC,MAAM,MAAM,KAAK,GAAG,OAAO,KAAK,CAAC;AACjC,MAAM,MAAM,SAAS,GAAG,OAAO,SAAS,CAAC;AACzC,MAAM,MAAM,WAAW,GAAG,OAAO,WAAW,CAAC;AAC7C,MAAM,MAAM,UAAU,GAAG,OAAO,WAAW,CAAC"}
@@ -0,0 +1,322 @@
1
+ /**
2
+ * BASE DESIGN TOKENS - SINGLE SOURCE OF TRUTH
3
+ *
4
+ * ✅ STATIC tokens that don't change with theme
5
+ * ✅ DRY Principle - Each value defined ONCE
6
+ * ✅ Type-safe with full TypeScript support
7
+ * ✅ Factory-first design for 100+ generated apps
8
+ *
9
+ * @module BaseTokens
10
+ */
11
+ // =============================================================================
12
+ // SPACING TOKENS
13
+ // =============================================================================
14
+ export const spacing = {
15
+ // Base spacing scale
16
+ xs: 4,
17
+ sm: 8,
18
+ md: 16,
19
+ lg: 24,
20
+ xl: 32,
21
+ xxl: 48,
22
+ xxxl: 64,
23
+ // Component-specific spacing
24
+ screenPadding: 20,
25
+ cardPadding: 16,
26
+ buttonPadding: 16,
27
+ inputPadding: 8,
28
+ sectionSpacing: 24,
29
+ // Icon sizes
30
+ iconSizeSmall: 16,
31
+ iconSizeMedium: 20,
32
+ iconSizeLarge: 24,
33
+ iconSizeXLarge: 32,
34
+ iconSizeHero: 64,
35
+ // Component heights
36
+ buttonHeight: 48,
37
+ inputHeight: 48,
38
+ appBarHeight: 56,
39
+ tabBarHeight: 60,
40
+ };
41
+ // =============================================================================
42
+ // TYPOGRAPHY TOKENS
43
+ // =============================================================================
44
+ export const typography = {
45
+ // Font families
46
+ fontPrimary: 'System',
47
+ fontSecondary: 'System',
48
+ fontMono: 'Courier New',
49
+ // Font sizes
50
+ xs: 12,
51
+ sm: 14,
52
+ md: 16,
53
+ lg: 18,
54
+ xl: 20,
55
+ xxl: 24,
56
+ xxxl: 32,
57
+ // Font weights
58
+ light: '300',
59
+ regular: '400',
60
+ medium: '500',
61
+ semibold: '600',
62
+ bold: '700',
63
+ // Line heights
64
+ lineHeightTight: 1.2,
65
+ lineHeightNormal: 1.5,
66
+ lineHeightRelaxed: 1.7,
67
+ // =============================================================================
68
+ // MATERIAL DESIGN 3 TYPE SCALE
69
+ // =============================================================================
70
+ // Display styles (largest)
71
+ displayLarge: {
72
+ fontSize: 57,
73
+ fontWeight: '400',
74
+ lineHeight: 64,
75
+ },
76
+ displayMedium: {
77
+ fontSize: 45,
78
+ fontWeight: '400',
79
+ lineHeight: 52,
80
+ },
81
+ displaySmall: {
82
+ fontSize: 36,
83
+ fontWeight: '400',
84
+ lineHeight: 44,
85
+ },
86
+ // Headline styles
87
+ headlineLarge: {
88
+ fontSize: 32,
89
+ fontWeight: '400',
90
+ lineHeight: 40,
91
+ },
92
+ headlineMedium: {
93
+ fontSize: 28,
94
+ fontWeight: '400',
95
+ lineHeight: 36,
96
+ },
97
+ headlineSmall: {
98
+ fontSize: 24,
99
+ fontWeight: '400',
100
+ lineHeight: 32,
101
+ },
102
+ // Title styles
103
+ titleLarge: {
104
+ fontSize: 22,
105
+ fontWeight: '400',
106
+ lineHeight: 28,
107
+ },
108
+ titleMedium: {
109
+ fontSize: 16,
110
+ fontWeight: '500',
111
+ lineHeight: 24,
112
+ },
113
+ titleSmall: {
114
+ fontSize: 14,
115
+ fontWeight: '500',
116
+ lineHeight: 20,
117
+ },
118
+ // Body styles
119
+ bodyLarge: {
120
+ fontSize: 18,
121
+ fontWeight: '400',
122
+ lineHeight: 27,
123
+ },
124
+ bodyMedium: {
125
+ fontSize: 16,
126
+ fontWeight: '400',
127
+ lineHeight: 24,
128
+ },
129
+ bodySmall: {
130
+ fontSize: 14,
131
+ fontWeight: '400',
132
+ lineHeight: 21,
133
+ },
134
+ // Label styles
135
+ labelLarge: {
136
+ fontSize: 16,
137
+ fontWeight: '500',
138
+ lineHeight: 19.2,
139
+ },
140
+ labelMedium: {
141
+ fontSize: 14,
142
+ fontWeight: '500',
143
+ lineHeight: 16.8,
144
+ },
145
+ labelSmall: {
146
+ fontSize: 12,
147
+ fontWeight: '500',
148
+ lineHeight: 14.4,
149
+ },
150
+ // =============================================================================
151
+ // LEGACY SUPPORT (backwards compatibility)
152
+ // =============================================================================
153
+ headingLarge: {
154
+ fontSize: 32,
155
+ fontWeight: '700',
156
+ lineHeight: 38.4,
157
+ },
158
+ headingMedium: {
159
+ fontSize: 24,
160
+ fontWeight: '600',
161
+ lineHeight: 28.8,
162
+ },
163
+ headingSmall: {
164
+ fontSize: 20,
165
+ fontWeight: '600',
166
+ lineHeight: 24,
167
+ },
168
+ button: {
169
+ fontSize: 16,
170
+ fontWeight: '600',
171
+ lineHeight: 19.2,
172
+ },
173
+ caption: {
174
+ fontSize: 12,
175
+ fontWeight: '400',
176
+ lineHeight: 18,
177
+ },
178
+ overline: {
179
+ fontSize: 12,
180
+ fontWeight: '500',
181
+ lineHeight: 18,
182
+ textTransform: 'uppercase',
183
+ letterSpacing: 1,
184
+ },
185
+ };
186
+ // =============================================================================
187
+ // ANIMATION TOKENS
188
+ // =============================================================================
189
+ export const animations = {
190
+ // Duration scale (milliseconds)
191
+ fastest: 150,
192
+ fast: 150,
193
+ normal: 300,
194
+ slow: 500,
195
+ slower: 750,
196
+ slowest: 1000,
197
+ // Easing functions
198
+ easeInOut: 'ease-in-out',
199
+ easeIn: 'ease-in',
200
+ easeOut: 'ease-out',
201
+ linear: 'linear',
202
+ };
203
+ // =============================================================================
204
+ // OPACITY TOKENS
205
+ // =============================================================================
206
+ export const opacity = {
207
+ disabled: 0.6,
208
+ subtle: 0.8,
209
+ medium: 0.5,
210
+ light: 0.3,
211
+ veryLight: 0.1,
212
+ };
213
+ // =============================================================================
214
+ // BORDER TOKENS
215
+ // =============================================================================
216
+ export const borders = {
217
+ // Radius scale
218
+ radius: {
219
+ none: 0,
220
+ xs: 2,
221
+ sm: 4,
222
+ md: 8,
223
+ lg: 12,
224
+ xl: 16,
225
+ xxl: 24,
226
+ full: 9999,
227
+ },
228
+ // Width scale
229
+ width: {
230
+ none: 0,
231
+ thin: 1,
232
+ medium: 2,
233
+ thick: 4,
234
+ },
235
+ // Component-specific borders (without colors - colors injected by TokenFactory)
236
+ button: {
237
+ borderRadius: 8,
238
+ borderWidth: 0,
239
+ },
240
+ card: {
241
+ borderRadius: 12,
242
+ borderWidth: 1,
243
+ },
244
+ input: {
245
+ borderRadius: 8,
246
+ borderWidth: 1,
247
+ },
248
+ pill: {
249
+ borderRadius: 9999,
250
+ borderWidth: 0,
251
+ },
252
+ };
253
+ // =============================================================================
254
+ // COMPONENT SIZES (Touch Targets, Buttons, UI Elements)
255
+ // =============================================================================
256
+ export const sizes = {
257
+ // Touch targets (Apple HIG minimum: 44x44)
258
+ touchTarget: 44,
259
+ touchTargetSmall: 36,
260
+ touchTargetLarge: 56,
261
+ // Button heights
262
+ buttonHeight: {
263
+ sm: 40,
264
+ md: 48,
265
+ lg: 56,
266
+ xl: 64,
267
+ },
268
+ // Pagination dots (onboarding, carousels)
269
+ dot: {
270
+ inactive: 8,
271
+ active: 24,
272
+ },
273
+ // Progress bars
274
+ progressBar: {
275
+ thin: 2,
276
+ normal: 4,
277
+ thick: 6,
278
+ },
279
+ // Common UI element sizes
280
+ divider: 1,
281
+ separator: 2,
282
+ };
283
+ // =============================================================================
284
+ // ICON SIZES
285
+ // =============================================================================
286
+ export const iconSizes = {
287
+ xs: 12,
288
+ sm: 16,
289
+ md: 20,
290
+ lg: 24,
291
+ xl: 32,
292
+ xxl: 40,
293
+ };
294
+ // =============================================================================
295
+ // AVATAR SIZES
296
+ // =============================================================================
297
+ export const avatarSizes = {
298
+ xs: 24,
299
+ sm: 32,
300
+ md: 40,
301
+ lg: 48,
302
+ xl: 64,
303
+ xxl: 80,
304
+ };
305
+ // =============================================================================
306
+ // CONSOLIDATED STATIC TOKENS
307
+ // =============================================================================
308
+ /**
309
+ * All static design tokens in one place
310
+ * These values DON'T change with theme (light/dark)
311
+ */
312
+ export const BASE_TOKENS = {
313
+ spacing,
314
+ typography,
315
+ animations,
316
+ opacity,
317
+ borders,
318
+ sizes,
319
+ iconSizes,
320
+ avatarSizes,
321
+ };
322
+ //# sourceMappingURL=BaseTokens.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BaseTokens.js","sourceRoot":"","sources":["../../../../src/presentation/tokens/core/BaseTokens.ts"],"names":[],"mappings":"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"}