pixelize-design-library 2.3.21 → 2.4.1-beta.1

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 (676) hide show
  1. package/.claude/settings.local.json +51 -0
  2. package/.cursor/modules/account-management/MODULE.md +18 -0
  3. package/.cursor/modules/buttons/MODULE.md +34 -0
  4. package/.cursor/modules/cards/MODULE.md +42 -0
  5. package/.cursor/modules/charts/MODULE.md +28 -1
  6. package/.cursor/modules/common/MODULE.md +23 -0
  7. package/.cursor/modules/contact-auth/MODULE.md +6 -0
  8. package/.cursor/modules/data-display/MODULE.md +22 -0
  9. package/.cursor/modules/feedback/MODULE.md +18 -0
  10. package/.cursor/modules/inputs-basic/MODULE.md +29 -0
  11. package/.cursor/modules/inputs-date-file/MODULE.md +37 -1
  12. package/.cursor/modules/inputs-select/MODULE.md +12 -0
  13. package/.cursor/modules/inputs-toggle/MODULE.md +5 -0
  14. package/.cursor/modules/kanban/MODULE.md +8 -0
  15. package/.cursor/modules/layout-navigation/MODULE.md +186 -20
  16. package/.cursor/modules/overlays/MODULE.md +39 -0
  17. package/.cursor/modules/playground/MODULE.md +13 -0
  18. package/.cursor/modules/table/MODULE.md +63 -0
  19. package/.cursor/modules/theme/MODULE.md +304 -5
  20. package/.cursor/modules/utility-ui/MODULE.md +35 -0
  21. package/.cursor/modules/utils-hooks/MODULE.md +12 -0
  22. package/.cursor/plans/current.theme-tokens-dark-mode.md +77 -0
  23. package/.cursor/plans/current.theme-tokens-dark.md +155 -0
  24. package/CLAUDE.md +29 -3
  25. package/README.md +77 -10
  26. package/__mocks__/styleMock.js +8 -0
  27. package/coverage/clover.xml +405 -0
  28. package/coverage/coverage-final.json +16 -0
  29. package/coverage/coverage-summary.json +50 -0
  30. package/coverage/lcov-report/Button/Button.tsx.html +244 -0
  31. package/coverage/lcov-report/Button/index.html +116 -0
  32. package/coverage/lcov-report/Checkbox/Checkbox.tsx.html +433 -0
  33. package/coverage/lcov-report/Checkbox/index.html +116 -0
  34. package/coverage/lcov-report/Common/ErrorMessage.tsx.html +148 -0
  35. package/coverage/lcov-report/Common/FormLabel.tsx.html +331 -0
  36. package/coverage/lcov-report/Common/HelperText.tsx.html +124 -0
  37. package/coverage/lcov-report/Common/index.html +146 -0
  38. package/coverage/lcov-report/Components/Button/Button.tsx.html +244 -0
  39. package/coverage/lcov-report/Components/Button/index.html +116 -0
  40. package/coverage/lcov-report/Components/Checkbox/Checkbox.tsx.html +433 -0
  41. package/coverage/lcov-report/Components/Checkbox/index.html +116 -0
  42. package/coverage/lcov-report/Components/Common/ErrorMessage.tsx.html +148 -0
  43. package/coverage/lcov-report/Components/Common/FormLabel.tsx.html +331 -0
  44. package/coverage/lcov-report/Components/Common/HelperText.tsx.html +124 -0
  45. package/coverage/lcov-report/Components/Common/index.html +146 -0
  46. package/coverage/lcov-report/Components/CustomModulesTable/CustomModulesTable.tsx.html +712 -0
  47. package/coverage/lcov-report/Components/CustomModulesTable/DeleteModuleModal.tsx.html +343 -0
  48. package/coverage/lcov-report/Components/CustomModulesTable/EditModuleModal.tsx.html +313 -0
  49. package/coverage/lcov-report/Components/CustomModulesTable/index.html +146 -0
  50. package/coverage/lcov-report/Components/Divider/Divider.tsx.html +133 -0
  51. package/coverage/lcov-report/Components/Divider/index.html +116 -0
  52. package/coverage/lcov-report/Components/Dropdown/DropDown.tsx.html +994 -0
  53. package/coverage/lcov-report/Components/Dropdown/index.html +116 -0
  54. package/coverage/lcov-report/Components/EmptyState/EmptyState.tsx.html +466 -0
  55. package/coverage/lcov-report/Components/EmptyState/index.html +116 -0
  56. package/coverage/lcov-report/Components/Header/HeaderActions.tsx.html +373 -0
  57. package/coverage/lcov-report/Components/Header/index.html +116 -0
  58. package/coverage/lcov-report/Components/Input/TextInput.tsx.html +487 -0
  59. package/coverage/lcov-report/Components/Input/index.html +116 -0
  60. package/coverage/lcov-report/Components/Input/textInputIconSize.ts.html +205 -0
  61. package/coverage/lcov-report/Components/KanbanBoard/AccountCard.tsx.html +547 -0
  62. package/coverage/lcov-report/Components/KanbanBoard/AccountRow.tsx.html +190 -0
  63. package/coverage/lcov-report/Components/KanbanBoard/KanbanActions/KanbanActions.tsx.html +247 -0
  64. package/coverage/lcov-report/Components/KanbanBoard/KanbanActions/index.html +116 -0
  65. package/coverage/lcov-report/Components/KanbanBoard/KanbanBoard.tsx.html +3598 -0
  66. package/coverage/lcov-report/Components/KanbanBoard/MeasuredItem.tsx.html +283 -0
  67. package/coverage/lcov-report/Components/KanbanBoard/index.html +161 -0
  68. package/coverage/lcov-report/Components/OrganizationDetails/CreateOrgModal.tsx.html +511 -0
  69. package/coverage/lcov-report/Components/OrganizationDetails/DeleteOrgModal.tsx.html +334 -0
  70. package/coverage/lcov-report/Components/OrganizationDetails/OrganizationDetails.tsx.html +1519 -0
  71. package/coverage/lcov-report/Components/OrganizationDetails/index.html +146 -0
  72. package/coverage/lcov-report/Components/RolesPermission/DeleteRoleModal.tsx.html +328 -0
  73. package/coverage/lcov-report/Components/RolesPermission/RolesPermission.tsx.html +1732 -0
  74. package/coverage/lcov-report/Components/RolesPermission/index.html +131 -0
  75. package/coverage/lcov-report/Components/SearchSelect/SearchSelect.tsx.html +2575 -0
  76. package/coverage/lcov-report/Components/SearchSelect/SelectTruncatedLabel.tsx.html +202 -0
  77. package/coverage/lcov-report/Components/SearchSelect/index.html +146 -0
  78. package/coverage/lcov-report/Components/SearchSelect/searchSelectSize.ts.html +496 -0
  79. package/coverage/lcov-report/Components/Select/Select.tsx.html +361 -0
  80. package/coverage/lcov-report/Components/Select/index.html +116 -0
  81. package/coverage/lcov-report/Components/SideBar/components/OtherApps.tsx.html +562 -0
  82. package/coverage/lcov-report/Components/SideBar/components/OverflowTooltipText.tsx.html +346 -0
  83. package/coverage/lcov-report/Components/SideBar/components/index.html +116 -0
  84. package/coverage/lcov-report/Components/SignInActivityTable/SignInActivityTable.tsx.html +490 -0
  85. package/coverage/lcov-report/Components/SignInActivityTable/index.html +116 -0
  86. package/coverage/lcov-report/Components/Table/components/TableActions.tsx.html +595 -0
  87. package/coverage/lcov-report/Components/Table/components/TableBody.tsx.html +2212 -0
  88. package/coverage/lcov-report/Components/Table/components/TableGroupRow.tsx.html +358 -0
  89. package/coverage/lcov-report/Components/Table/components/TableLoading.tsx.html +358 -0
  90. package/coverage/lcov-report/Components/Table/components/index.html +161 -0
  91. package/coverage/lcov-report/Components/Table/settings/ManageColumns.tsx.html +856 -0
  92. package/coverage/lcov-report/Components/Table/settings/index.html +116 -0
  93. package/coverage/lcov-report/Components/Tag/Tag.styles.tsx.html +331 -0
  94. package/coverage/lcov-report/Components/Tag/Tag.tsx.html +256 -0
  95. package/coverage/lcov-report/Components/Tag/index.html +131 -0
  96. package/coverage/lcov-report/Components/ToolTip/ToolTip.tsx.html +286 -0
  97. package/coverage/lcov-report/Components/ToolTip/index.html +116 -0
  98. package/coverage/lcov-report/Components/UserDetails/AddUserModal.tsx.html +709 -0
  99. package/coverage/lcov-report/Components/UserDetails/ChangeRoleModal.tsx.html +505 -0
  100. package/coverage/lcov-report/Components/UserDetails/DeactivateConfirmModal.tsx.html +379 -0
  101. package/coverage/lcov-report/Components/UserDetails/UserDetails.tsx.html +1900 -0
  102. package/coverage/lcov-report/Components/UserDetails/index.html +161 -0
  103. package/coverage/lcov-report/EmptyState/EmptyState.tsx.html +466 -0
  104. package/coverage/lcov-report/EmptyState/index.html +116 -0
  105. package/coverage/lcov-report/Hooks/index.html +116 -0
  106. package/coverage/lcov-report/Hooks/usePreferences.ts.html +421 -0
  107. package/coverage/lcov-report/Input/TextInput.tsx.html +487 -0
  108. package/coverage/lcov-report/Input/index.html +131 -0
  109. package/coverage/lcov-report/Input/textInputIconSize.ts.html +205 -0
  110. package/coverage/lcov-report/KanbanBoard.tsx.html +3481 -0
  111. package/coverage/lcov-report/OrganizationDetails/CreateOrgModal.tsx.html +511 -0
  112. package/coverage/lcov-report/OrganizationDetails/DeleteOrgModal.tsx.html +334 -0
  113. package/coverage/lcov-report/OrganizationDetails/OrganizationDetails.tsx.html +1519 -0
  114. package/coverage/lcov-report/OrganizationDetails/index.html +146 -0
  115. package/coverage/lcov-report/RolesPermission/DeleteRoleModal.tsx.html +328 -0
  116. package/coverage/lcov-report/RolesPermission/RolesPermission.tsx.html +1732 -0
  117. package/coverage/lcov-report/RolesPermission/index.html +116 -0
  118. package/coverage/lcov-report/SearchSelect/SearchSelect.tsx.html +2575 -0
  119. package/coverage/lcov-report/SearchSelect/SelectTruncatedLabel.tsx.html +202 -0
  120. package/coverage/lcov-report/SearchSelect/index.html +146 -0
  121. package/coverage/lcov-report/SearchSelect/searchSelectSize.ts.html +496 -0
  122. package/coverage/lcov-report/Table/CompactSelect.tsx.html +379 -0
  123. package/coverage/lcov-report/Table/Components/ActiveFilters.tsx.html +514 -0
  124. package/coverage/lcov-report/Table/Components/HeaderActions.tsx.html +373 -0
  125. package/coverage/lcov-report/Table/Components/Pagination.tsx.html +574 -0
  126. package/coverage/lcov-report/Table/Components/TableActions.tsx.html +574 -0
  127. package/coverage/lcov-report/Table/Components/TableBody.tsx.html +1027 -0
  128. package/coverage/lcov-report/Table/Components/TableFilters.tsx.html +397 -0
  129. package/coverage/lcov-report/Table/Components/TableHeader.tsx.html +1060 -0
  130. package/coverage/lcov-report/Table/Components/TableLoading.tsx.html +361 -0
  131. package/coverage/lcov-report/Table/Components/TableSearch.tsx.html +337 -0
  132. package/coverage/lcov-report/Table/Components/index.html +266 -0
  133. package/coverage/lcov-report/Table/Components/useDebounce.ts.html +178 -0
  134. package/coverage/lcov-report/Table/Components/useTable.ts.html +778 -0
  135. package/coverage/lcov-report/Table/LeftFilterPane.tsx.html +1810 -0
  136. package/coverage/lcov-report/Table/SelectOperationControls.tsx.html +178 -0
  137. package/coverage/lcov-report/Table/Table.tsx.html +1567 -0
  138. package/coverage/lcov-report/Table/TableProps.tsx.html +658 -0
  139. package/coverage/lcov-report/Table/TableSettings/ManageColumns.tsx.html +619 -0
  140. package/coverage/lcov-report/Table/TableSettings/TableFilters.tsx.html +229 -0
  141. package/coverage/lcov-report/Table/TableSettings/TableSettings.tsx.html +532 -0
  142. package/coverage/lcov-report/Table/TableSettings/index.html +146 -0
  143. package/coverage/lcov-report/Table/TableToDo.tsx.html +973 -0
  144. package/coverage/lcov-report/Table/TextOperationControls.tsx.html +271 -0
  145. package/coverage/lcov-report/Table/filterTypes.ts.html +97 -0
  146. package/coverage/lcov-report/Table/index.html +176 -0
  147. package/coverage/lcov-report/Table/settings/ManageColumns.tsx.html +856 -0
  148. package/coverage/lcov-report/Table/settings/index.html +116 -0
  149. package/coverage/lcov-report/Tag/Tag.tsx.html +256 -0
  150. package/coverage/lcov-report/Tag/index.html +116 -0
  151. package/coverage/lcov-report/Theme/buildBrandTokens.ts.html +175 -0
  152. package/coverage/lcov-report/Theme/chartColorsFromTheme.ts.html +214 -0
  153. package/coverage/lcov-report/Theme/index.html +131 -0
  154. package/coverage/lcov-report/Theme/useCustomTheme.ts.html +100 -0
  155. package/coverage/lcov-report/ToolTip/ToolTip.tsx.html +286 -0
  156. package/coverage/lcov-report/ToolTip/index.html +116 -0
  157. package/coverage/lcov-report/UserDetails/AddUserModal.tsx.html +709 -0
  158. package/coverage/lcov-report/UserDetails/ChangeRoleModal.tsx.html +505 -0
  159. package/coverage/lcov-report/UserDetails/index.html +116 -0
  160. package/coverage/lcov-report/Utils/functions.ts.html +106 -0
  161. package/coverage/lcov-report/Utils/index.html +116 -0
  162. package/coverage/lcov-report/Utils/table.ts.html +1189 -0
  163. package/coverage/lcov-report/base.css +224 -0
  164. package/coverage/lcov-report/block-navigation.js +87 -0
  165. package/coverage/lcov-report/favicon.png +0 -0
  166. package/coverage/lcov-report/index.html +251 -0
  167. package/coverage/lcov-report/prettify.css +1 -0
  168. package/coverage/lcov-report/prettify.js +2 -0
  169. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  170. package/coverage/lcov-report/sorter.js +210 -0
  171. package/coverage/lcov.info +981 -0
  172. package/dist/App.d.ts +4 -0
  173. package/dist/App.d.ts.map +1 -1
  174. package/dist/App.js +95 -0
  175. package/dist/Assets/defaultLogo.tsx +30 -0
  176. package/dist/Components/Accordion/Accordion.d.ts.map +1 -1
  177. package/dist/Components/Accordion/Accordion.js +15 -12
  178. package/dist/Components/Accordion/accordionColors.d.ts +6 -0
  179. package/dist/Components/Accordion/accordionColors.d.ts.map +1 -0
  180. package/dist/Components/Accordion/accordionColors.js +20 -0
  181. package/dist/Components/AlertDialog/AlertDialog.d.ts.map +1 -1
  182. package/dist/Components/AlertDialog/AlertDialog.js +4 -1
  183. package/dist/Components/Apexcharts/ApexBarChart/ApexBarChart.d.ts.map +1 -1
  184. package/dist/Components/Apexcharts/ApexBarChart/ApexBarChart.js +5 -1
  185. package/dist/Components/Apexcharts/ApexLineChart/ApexLineChart.d.ts.map +1 -1
  186. package/dist/Components/Apexcharts/ApexLineChart/ApexLineChart.js +6 -4
  187. package/dist/Components/Apexcharts/ApexPieChart/ApexPieChart.d.ts.map +1 -1
  188. package/dist/Components/Apexcharts/ApexPieChart/ApexPieChart.js +5 -1
  189. package/dist/Components/Apexcharts/ApexPolarCharts/ApexPolarCharts.d.ts.map +1 -1
  190. package/dist/Components/Apexcharts/ApexPolarCharts/ApexPolarCharts.js +5 -1
  191. package/dist/Components/Button/Button.styles.d.ts.map +1 -1
  192. package/dist/Components/Button/Button.styles.js +100 -47
  193. package/dist/Components/ButtonGroupIcon/ButtonGroupIcon.d.ts.map +1 -1
  194. package/dist/Components/ButtonGroupIcon/ButtonGroupIcon.js +11 -3
  195. package/dist/Components/Card/PaymentCard/PaymentCard.d.ts.map +1 -1
  196. package/dist/Components/Card/PaymentCard/PaymentCard.js +17 -12
  197. package/dist/Components/Checkbox/Checkbox.d.ts.map +1 -1
  198. package/dist/Components/Checkbox/Checkbox.js +2 -1
  199. package/dist/Components/Common/ErrorComponent.d.ts.map +1 -1
  200. package/dist/Components/Common/ErrorComponent.js +7 -3
  201. package/dist/Components/Common/ErrorMessage.d.ts.map +1 -1
  202. package/dist/Components/Common/ErrorMessage.js +7 -1
  203. package/dist/Components/Common/FormLabel.d.ts.map +1 -1
  204. package/dist/Components/Common/FormLabel.js +7 -1
  205. package/dist/Components/Common/Label.d.ts.map +1 -1
  206. package/dist/Components/Common/Label.js +4 -2
  207. package/dist/Components/Common/fieldStyles.d.ts.map +1 -1
  208. package/dist/Components/Common/fieldStyles.js +3 -1
  209. package/dist/Components/CopyButton/CopyButton.d.ts.map +1 -1
  210. package/dist/Components/CopyButton/CopyButton.js +14 -6
  211. package/dist/Components/CustomModulesTable/CustomModulesTable.d.ts.map +1 -1
  212. package/dist/Components/CustomModulesTable/CustomModulesTable.js +9 -6
  213. package/dist/Components/CustomModulesTable/DeleteModuleModal.d.ts.map +1 -1
  214. package/dist/Components/CustomModulesTable/DeleteModuleModal.js +2 -2
  215. package/dist/Components/CustomModulesTable/EditModuleModal.d.ts.map +1 -1
  216. package/dist/Components/CustomModulesTable/EditModuleModal.js +2 -2
  217. package/dist/Components/DatePicker/CalendarPanel.js +1 -1
  218. package/dist/Components/DatePicker/DatePicker.js +1 -1
  219. package/dist/Components/DatePicker/RangeDatePicker.d.ts.map +1 -1
  220. package/dist/Components/DatePicker/RangeDatePicker.js +1 -1
  221. package/dist/Components/DatePicker/SingleDatePicker.d.ts.map +1 -1
  222. package/dist/Components/DatePicker/SingleDatePicker.js +1 -1
  223. package/dist/Components/DatePicker/TimeOnlyPicker.d.ts.map +1 -1
  224. package/dist/Components/DatePicker/TimeOnlyPicker.js +3 -1
  225. package/dist/Components/Drawer/Drawer.d.ts.map +1 -1
  226. package/dist/Components/Drawer/Drawer.js +4 -1
  227. package/dist/Components/Dropdown/DropDown.js +5 -5
  228. package/dist/Components/Editor/Editor.d.ts.map +1 -1
  229. package/dist/Components/Editor/Editor.js +32 -2
  230. package/dist/Components/Editor/joditThemeVars.d.ts +21 -0
  231. package/dist/Components/Editor/joditThemeVars.d.ts.map +1 -0
  232. package/dist/Components/Editor/joditThemeVars.js +70 -0
  233. package/dist/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtp.d.ts.map +1 -1
  234. package/dist/Components/EmailCards/VerifyEmailOtp/VerifyEmailOtp.js +5 -1
  235. package/dist/Components/EmptyState/EmptyState.js +3 -3
  236. package/dist/Components/FieldSelectModal/FieldSelectModal.d.ts.map +1 -1
  237. package/dist/Components/FieldSelectModal/FieldSelectModal.js +4 -2
  238. package/dist/Components/FilePreview/FilePreview.d.ts.map +1 -1
  239. package/dist/Components/FilePreview/FilePreview.js +7 -1
  240. package/dist/Components/FileUpload/FileUpload.js +4 -4
  241. package/dist/Components/FileUploader/FileUploader.d.ts.map +1 -1
  242. package/dist/Components/FileUploader/FileUploader.js +7 -2
  243. package/dist/Components/FilterSidebar/FilterSidebar.d.ts.map +1 -1
  244. package/dist/Components/FilterSidebar/FilterSidebar.js +166 -142
  245. package/dist/Components/FilterSidebar/filterHoverStyle.d.ts +12 -0
  246. package/dist/Components/FilterSidebar/filterHoverStyle.d.ts.map +1 -0
  247. package/dist/Components/FilterSidebar/filterHoverStyle.js +14 -0
  248. package/dist/Components/Form/FormWrapper.js +2 -2
  249. package/dist/Components/Header/Header.d.ts +17 -0
  250. package/dist/Components/Header/Header.d.ts.map +1 -1
  251. package/dist/Components/Header/Header.js +34 -6
  252. package/dist/Components/Header/HeaderActions.d.ts.map +1 -1
  253. package/dist/Components/Header/HeaderActions.js +3 -2
  254. package/dist/Components/Header/components/desktopMenu.d.ts.map +1 -1
  255. package/dist/Components/Header/components/desktopMenu.js +21 -5
  256. package/dist/Components/Input/Input/Input.d.ts.map +1 -1
  257. package/dist/Components/Input/Input/Input.js +6 -2
  258. package/dist/Components/Input/Switch/InputSwitch.d.ts.map +1 -1
  259. package/dist/Components/Input/Switch/InputSwitch.js +4 -2
  260. package/dist/Components/Input/TextInput.styles.d.ts.map +1 -1
  261. package/dist/Components/Input/TextInput.styles.js +6 -1
  262. package/dist/Components/InputTextArea/InputTextArea.style.d.ts.map +1 -1
  263. package/dist/Components/InputTextArea/InputTextArea.style.js +4 -1
  264. package/dist/Components/KanbanBoard/AccountCard.js +4 -4
  265. package/dist/Components/LazyWrapper/LazyWrapper.js +1 -2
  266. package/dist/Components/Modal/Modal.d.ts.map +1 -1
  267. package/dist/Components/Modal/Modal.js +4 -1
  268. package/dist/Components/MoreItems/MoreItems.d.ts.map +1 -1
  269. package/dist/Components/MoreItems/MoreItems.js +10 -4
  270. package/dist/Components/MultiSelect/MultiSelect.d.ts.map +1 -1
  271. package/dist/Components/MultiSelect/MultiSelect.js +5 -2
  272. package/dist/Components/NavigationBar/NavigationBar.d.ts.map +1 -1
  273. package/dist/Components/NavigationBar/NavigationBar.js +8 -2
  274. package/dist/Components/NoteTextArea/NoteTextArea.d.ts.map +1 -1
  275. package/dist/Components/NoteTextArea/NoteTextArea.js +5 -2
  276. package/dist/Components/Notification/Notification.d.ts.map +1 -1
  277. package/dist/Components/Notification/Notification.js +9 -5
  278. package/dist/Components/NumberInput/NumberInput.styles.d.ts.map +1 -1
  279. package/dist/Components/NumberInput/NumberInput.styles.js +4 -1
  280. package/dist/Components/OrgSwitcher/OrgSwitcher.d.ts.map +1 -1
  281. package/dist/Components/OrgSwitcher/OrgSwitcher.js +14 -7
  282. package/dist/Components/OrganizationDetails/CreateOrgModal.d.ts.map +1 -1
  283. package/dist/Components/OrganizationDetails/CreateOrgModal.js +1 -1
  284. package/dist/Components/OrganizationDetails/DeleteOrgModal.js +2 -2
  285. package/dist/Components/OrganizationDetails/OrganizationDetails.js +11 -11
  286. package/dist/Components/PdfViewer/PdfViewer.js +1 -2
  287. package/dist/Components/PinInput/PinInput.d.ts.map +1 -1
  288. package/dist/Components/PinInput/PinInput.js +5 -1
  289. package/dist/Components/PinInputs/PinInputs.d.ts.map +1 -1
  290. package/dist/Components/PinInputs/PinInputs.js +3 -1
  291. package/dist/Components/ProductCard/ProductCard.js +1 -1
  292. package/dist/Components/ProductCard/ProductPrice.d.ts.map +1 -1
  293. package/dist/Components/ProductCard/ProductPrice.js +7 -4
  294. package/dist/Components/ProductCard/ProductReview.d.ts.map +1 -1
  295. package/dist/Components/ProductCard/ProductReview.js +7 -3
  296. package/dist/Components/ProductCard/ProductTags.js +1 -1
  297. package/dist/Components/ProductDetails/ProductDtlPrice.d.ts.map +1 -1
  298. package/dist/Components/ProductDetails/ProductDtlPrice.js +4 -1
  299. package/dist/Components/ProductDetails/ProductImageSlider.js +4 -4
  300. package/dist/Components/ProfilePhotoViewer/ProfilePhotoViewer.d.ts.map +1 -1
  301. package/dist/Components/ProfilePhotoViewer/ProfilePhotoViewer.js +10 -7
  302. package/dist/Components/Reorder/Reorder.js +2 -1
  303. package/dist/Components/RolesPermission/DeleteRoleModal.d.ts.map +1 -1
  304. package/dist/Components/RolesPermission/DeleteRoleModal.js +4 -2
  305. package/dist/Components/RolesPermission/RolesPermission.js +6 -6
  306. package/dist/Components/SearchSelect/SearchSelect.d.ts.map +1 -1
  307. package/dist/Components/SearchSelect/SearchSelect.js +4 -4
  308. package/dist/Components/Select/Select.styles.d.ts.map +1 -1
  309. package/dist/Components/Select/Select.styles.js +4 -1
  310. package/dist/Components/SelectSearch/SelectSearch.d.ts.map +1 -1
  311. package/dist/Components/SelectSearch/SelectSearch.js +5 -3
  312. package/dist/Components/SideBar/SecondaryBar.d.ts.map +1 -1
  313. package/dist/Components/SideBar/SecondaryBar.js +14 -3
  314. package/dist/Components/SideBar/SideBar.d.ts.map +1 -1
  315. package/dist/Components/SideBar/SideBar.js +18 -4
  316. package/dist/Components/SideBar/components/MenuItemBox.d.ts.map +1 -1
  317. package/dist/Components/SideBar/components/MenuItemBox.js +13 -9
  318. package/dist/Components/SideBar/components/MenuPopoverContent.d.ts.map +1 -1
  319. package/dist/Components/SideBar/components/MenuPopoverContent.js +7 -2
  320. package/dist/Components/SideBar/sidebarAccentColors.d.ts +21 -0
  321. package/dist/Components/SideBar/sidebarAccentColors.d.ts.map +1 -0
  322. package/dist/Components/SideBar/sidebarAccentColors.js +36 -0
  323. package/dist/Components/SignInActivityTable/SignInActivityTable.d.ts.map +1 -1
  324. package/dist/Components/SignInActivityTable/SignInActivityTable.js +7 -6
  325. package/dist/Components/StageProgress/StageProgress.d.ts.map +1 -1
  326. package/dist/Components/StageProgress/StageProgress.js +9 -4
  327. package/dist/Components/StageProgress/StageProgressProps.d.ts.map +1 -1
  328. package/dist/Components/StageProgress/StageProgressProps.js +13 -4
  329. package/dist/Components/StageProgress/StepperStage.js +1 -1
  330. package/dist/Components/Switch/Switch.d.ts.map +1 -1
  331. package/dist/Components/Switch/Switch.js +5 -3
  332. package/dist/Components/Table/Table.d.ts.map +1 -1
  333. package/dist/Components/Table/Table.js +9 -9
  334. package/dist/Components/Table/TableProps.d.ts +1 -0
  335. package/dist/Components/Table/TableProps.d.ts.map +1 -1
  336. package/dist/Components/Table/components/HeaderActions.d.ts.map +1 -1
  337. package/dist/Components/Table/components/HeaderActions.js +2 -1
  338. package/dist/Components/Table/components/TableActions.js +1 -1
  339. package/dist/Components/Table/components/TableBody.d.ts.map +1 -1
  340. package/dist/Components/Table/components/TableBody.js +21 -15
  341. package/dist/Components/Table/components/TableHeader.d.ts.map +1 -1
  342. package/dist/Components/Table/components/TableHeader.js +7 -4
  343. package/dist/Components/Table/components/tableRowHoverStyle.d.ts +13 -0
  344. package/dist/Components/Table/components/tableRowHoverStyle.d.ts.map +1 -0
  345. package/dist/Components/Table/components/tableRowHoverStyle.js +26 -0
  346. package/dist/Components/Table/filters/CompactSelect.d.ts.map +1 -1
  347. package/dist/Components/Table/filters/CompactSelect.js +4 -1
  348. package/dist/Components/Table/filters/LeftFilterPane.d.ts.map +1 -1
  349. package/dist/Components/Table/filters/LeftFilterPane.js +5 -4
  350. package/dist/Components/Tag/Tag.styles.d.ts.map +1 -1
  351. package/dist/Components/Tag/Tag.styles.js +21 -8
  352. package/dist/Components/Timeline/Timeline.d.ts.map +1 -1
  353. package/dist/Components/Timeline/Timeline.js +18 -17
  354. package/dist/Components/Toaster/Toaster.d.ts.map +1 -1
  355. package/dist/Components/Toaster/Toaster.js +8 -5
  356. package/dist/Components/Toggle/TableToggle.js +2 -2
  357. package/dist/Components/ToolTip/ToolTip.d.ts.map +1 -1
  358. package/dist/Components/ToolTip/ToolTip.js +14 -2
  359. package/dist/Components/Trail/EditableCell.js +1 -1
  360. package/dist/Components/UpgradeButton/UpgradeButton.d.ts.map +1 -1
  361. package/dist/Components/UpgradeButton/UpgradeButton.js +9 -4
  362. package/dist/Components/UserDetails/AddUserModal.d.ts.map +1 -1
  363. package/dist/Components/UserDetails/AddUserModal.js +1 -1
  364. package/dist/Components/UserDetails/ChangeRoleModal.js +2 -2
  365. package/dist/Components/UserDetails/DeactivateConfirmModal.d.ts.map +1 -1
  366. package/dist/Components/UserDetails/DeactivateConfirmModal.js +5 -2
  367. package/dist/Components/UserDetails/UserDetails.d.ts.map +1 -1
  368. package/dist/Components/UserDetails/UserDetails.js +15 -8
  369. package/dist/Components/WorkspaceWindow/WorkspaceTrayPreview.d.ts.map +1 -1
  370. package/dist/Components/WorkspaceWindow/WorkspaceTrayPreview.js +3 -1
  371. package/dist/Components/WorkspaceWindow/WorkspaceWindow.d.ts.map +1 -1
  372. package/dist/Components/WorkspaceWindow/WorkspaceWindow.js +5 -1
  373. package/dist/Layout.d.ts +3 -0
  374. package/dist/Layout.js +286 -0
  375. package/dist/Pages/TInput.d.ts +3 -0
  376. package/dist/Pages/TInput.d.ts.map +1 -0
  377. package/dist/Pages/TInput.js +20 -0
  378. package/dist/Pages/accordion.d.ts +3 -0
  379. package/dist/Pages/accordion.d.ts.map +1 -0
  380. package/dist/Pages/accordion.js +21 -0
  381. package/dist/Pages/alertdialog.d.ts +3 -0
  382. package/dist/Pages/alertdialog.d.ts.map +1 -0
  383. package/dist/Pages/alertdialog.js +53 -0
  384. package/dist/Pages/button.d.ts +3 -0
  385. package/dist/Pages/button.d.ts.map +1 -0
  386. package/dist/Pages/button.js +32 -0
  387. package/dist/Pages/card.d.ts +3 -0
  388. package/dist/Pages/card.d.ts.map +1 -0
  389. package/dist/Pages/card.js +102 -0
  390. package/dist/Pages/chart.d.ts +4 -0
  391. package/dist/Pages/chart.d.ts.map +1 -0
  392. package/dist/Pages/chart.js +25 -0
  393. package/dist/Pages/checkbox.d.ts +3 -0
  394. package/dist/Pages/checkbox.d.ts.map +1 -0
  395. package/dist/Pages/checkbox.js +11 -0
  396. package/dist/Pages/contactForm.d.ts +3 -0
  397. package/dist/Pages/contactForm.d.ts.map +1 -0
  398. package/dist/Pages/contactForm.js +15 -0
  399. package/dist/Pages/customModulesTable.d.ts +4 -0
  400. package/dist/Pages/customModulesTable.d.ts.map +1 -0
  401. package/dist/Pages/customModulesTable.js +25 -0
  402. package/dist/Pages/datePick.d.ts +3 -0
  403. package/dist/Pages/datePick.d.ts.map +1 -0
  404. package/dist/Pages/datePick.js +49 -0
  405. package/dist/Pages/drawer.d.ts +3 -0
  406. package/dist/Pages/drawer.d.ts.map +1 -0
  407. package/dist/Pages/drawer.js +53 -0
  408. package/dist/Pages/dropdown.d.ts +3 -0
  409. package/dist/Pages/dropdown.d.ts.map +1 -0
  410. package/dist/Pages/dropdown.js +21 -0
  411. package/dist/Pages/editor.d.ts +3 -0
  412. package/dist/Pages/editor.d.ts.map +1 -0
  413. package/dist/Pages/editor.js +13 -0
  414. package/dist/Pages/feedback.d.ts +2 -0
  415. package/dist/Pages/feedback.d.ts.map +1 -0
  416. package/dist/Pages/feedback.js +12 -0
  417. package/dist/Pages/fileUpload.d.ts +2 -0
  418. package/dist/Pages/fileUpload.d.ts.map +1 -0
  419. package/dist/Pages/fileUpload.js +36 -0
  420. package/dist/Pages/input.d.ts +3 -0
  421. package/dist/Pages/input.d.ts.map +1 -0
  422. package/dist/Pages/input.js +48 -0
  423. package/dist/Pages/kanbanboard.d.ts +3 -0
  424. package/dist/Pages/kanbanboard.d.ts.map +1 -0
  425. package/dist/Pages/kanbanboard.js +182 -0
  426. package/dist/Pages/modal.d.ts +3 -0
  427. package/dist/Pages/modal.d.ts.map +1 -0
  428. package/dist/Pages/modal.js +61 -0
  429. package/dist/Pages/multiSelect.d.ts +3 -0
  430. package/dist/Pages/multiSelect.d.ts.map +1 -0
  431. package/dist/Pages/multiSelect.js +22 -0
  432. package/dist/Pages/noteArea.d.ts +3 -0
  433. package/dist/Pages/noteArea.d.ts.map +1 -0
  434. package/dist/Pages/noteArea.js +26 -0
  435. package/dist/Pages/notification.d.ts +3 -0
  436. package/dist/Pages/notification.d.ts.map +1 -0
  437. package/dist/Pages/notification.js +37 -0
  438. package/dist/Pages/numberInput.d.ts +3 -0
  439. package/dist/Pages/numberInput.d.ts.map +1 -0
  440. package/dist/Pages/numberInput.js +16 -0
  441. package/dist/Pages/orgSwitcher.d.ts +4 -0
  442. package/dist/Pages/orgSwitcher.d.ts.map +1 -0
  443. package/dist/Pages/orgSwitcher.js +36 -0
  444. package/dist/Pages/organizationDetails.d.ts +4 -0
  445. package/dist/Pages/organizationDetails.d.ts.map +1 -0
  446. package/dist/Pages/organizationDetails.js +64 -0
  447. package/dist/Pages/photoViewer.d.ts +3 -0
  448. package/dist/Pages/photoViewer.d.ts.map +1 -0
  449. package/dist/Pages/photoViewer.js +12 -0
  450. package/dist/Pages/pinInputs.d.ts +3 -0
  451. package/dist/Pages/pinInputs.d.ts.map +1 -0
  452. package/dist/Pages/pinInputs.js +11 -0
  453. package/dist/Pages/productCaard.d.ts +3 -0
  454. package/dist/Pages/productCaard.d.ts.map +1 -0
  455. package/dist/Pages/productCaard.js +311 -0
  456. package/dist/Pages/productDetailCard.d.ts +3 -0
  457. package/dist/Pages/productDetailCard.d.ts.map +1 -0
  458. package/dist/Pages/productDetailCard.js +78 -0
  459. package/dist/Pages/productFilter.d.ts +3 -0
  460. package/dist/Pages/productFilter.d.ts.map +1 -0
  461. package/dist/Pages/productFilter.js +148 -0
  462. package/dist/Pages/progressbar.d.ts +3 -0
  463. package/dist/Pages/progressbar.d.ts.map +1 -0
  464. package/dist/Pages/progressbar.js +11 -0
  465. package/dist/Pages/radioButton.d.ts +3 -0
  466. package/dist/Pages/radioButton.d.ts.map +1 -0
  467. package/dist/Pages/radioButton.js +18 -0
  468. package/dist/Pages/rolesPermission.d.ts +4 -0
  469. package/dist/Pages/rolesPermission.d.ts.map +1 -0
  470. package/dist/Pages/rolesPermission.js +144 -0
  471. package/dist/Pages/search.d.ts +3 -0
  472. package/dist/Pages/search.d.ts.map +1 -0
  473. package/dist/Pages/search.js +21 -0
  474. package/dist/Pages/searchSelect.d.ts +3 -0
  475. package/dist/Pages/searchSelect.d.ts.map +1 -0
  476. package/dist/Pages/searchSelect.js +97 -0
  477. package/dist/Pages/select.d.ts +3 -0
  478. package/dist/Pages/select.d.ts.map +1 -0
  479. package/dist/Pages/select.js +20 -0
  480. package/dist/Pages/selectSearch.d.ts +3 -0
  481. package/dist/Pages/selectSearch.d.ts.map +1 -0
  482. package/dist/Pages/selectSearch.js +58 -0
  483. package/dist/Pages/signInActivityTable.d.ts +4 -0
  484. package/dist/Pages/signInActivityTable.d.ts.map +1 -0
  485. package/dist/Pages/signInActivityTable.js +17 -0
  486. package/dist/Pages/skeleton.d.ts +3 -0
  487. package/dist/Pages/skeleton.d.ts.map +1 -0
  488. package/dist/Pages/skeleton.js +12 -0
  489. package/dist/Pages/stageProgress.d.ts +4 -0
  490. package/dist/Pages/stageProgress.d.ts.map +1 -0
  491. package/dist/Pages/stageProgress.js +31 -0
  492. package/dist/Pages/switch.d.ts +3 -0
  493. package/dist/Pages/switch.d.ts.map +1 -0
  494. package/dist/Pages/switch.js +17 -0
  495. package/dist/Pages/table.d.ts +3 -0
  496. package/dist/Pages/table.d.ts.map +1 -0
  497. package/dist/Pages/table.js +182 -0
  498. package/dist/Pages/tag.d.ts +3 -0
  499. package/dist/Pages/tag.d.ts.map +1 -0
  500. package/dist/Pages/tag.js +27 -0
  501. package/dist/Pages/textArea.d.ts +3 -0
  502. package/dist/Pages/textArea.d.ts.map +1 -0
  503. package/dist/Pages/textArea.js +14 -0
  504. package/dist/Pages/tier1.d.ts +4 -0
  505. package/dist/Pages/tier1.d.ts.map +1 -0
  506. package/dist/Pages/tier1.js +86 -0
  507. package/dist/Pages/timeline.d.ts +3 -0
  508. package/dist/Pages/timeline.d.ts.map +1 -0
  509. package/dist/Pages/timeline.js +73 -0
  510. package/dist/Pages/tooltip.d.ts +3 -0
  511. package/dist/Pages/tooltip.d.ts.map +1 -0
  512. package/dist/Pages/tooltip.js +11 -0
  513. package/dist/Pages/toster.d.ts +3 -0
  514. package/dist/Pages/toster.d.ts.map +1 -0
  515. package/dist/Pages/toster.js +53 -0
  516. package/dist/Pages/upgradeButton.d.ts +4 -0
  517. package/dist/Pages/upgradeButton.d.ts.map +1 -0
  518. package/dist/Pages/upgradeButton.js +17 -0
  519. package/dist/Pages/userDetails.d.ts +4 -0
  520. package/dist/Pages/userDetails.d.ts.map +1 -0
  521. package/dist/Pages/userDetails.js +79 -0
  522. package/dist/Pages/verifyEmail.d.ts +3 -0
  523. package/dist/Pages/verifyEmail.d.ts.map +1 -0
  524. package/dist/Pages/verifyEmail.js +17 -0
  525. package/dist/Theme/chakra/common.web.d.ts +171 -0
  526. package/dist/Theme/chakra/common.web.d.ts.map +1 -0
  527. package/dist/Theme/chakra/common.web.js +21 -0
  528. package/dist/Theme/chakra/componentStyles.d.ts +13 -0
  529. package/dist/Theme/chakra/componentStyles.d.ts.map +1 -0
  530. package/dist/Theme/chakra/componentStyles.js +88 -0
  531. package/dist/Theme/chakra/createBrandTheme.d.ts +18 -0
  532. package/dist/Theme/chakra/createBrandTheme.d.ts.map +1 -0
  533. package/dist/Theme/chakra/createBrandTheme.js +78 -0
  534. package/dist/Theme/chakra/fonts.web.d.ts +42 -0
  535. package/dist/Theme/chakra/fonts.web.d.ts.map +1 -0
  536. package/dist/Theme/chakra/fonts.web.js +15 -0
  537. package/dist/Theme/index.d.ts +29 -8
  538. package/dist/Theme/index.d.ts.map +1 -1
  539. package/dist/Theme/index.js +54 -22
  540. package/dist/Theme/provider/PixelizeThemeProvider.d.ts +36 -0
  541. package/dist/Theme/provider/PixelizeThemeProvider.d.ts.map +1 -0
  542. package/dist/Theme/provider/PixelizeThemeProvider.js +91 -0
  543. package/dist/Theme/provider/ThemeSwitcher.d.ts +8 -0
  544. package/dist/Theme/provider/ThemeSwitcher.d.ts.map +1 -0
  545. package/dist/Theme/provider/ThemeSwitcher.js +99 -0
  546. package/dist/Theme/provider/colorModeStorage.d.ts +10 -0
  547. package/dist/Theme/provider/colorModeStorage.d.ts.map +1 -0
  548. package/dist/Theme/provider/colorModeStorage.js +106 -0
  549. package/dist/Theme/provider/index.d.ts +6 -0
  550. package/dist/Theme/provider/index.d.ts.map +1 -0
  551. package/dist/Theme/provider/index.js +9 -0
  552. package/dist/Theme/provider/useThemeMode.d.ts +3 -0
  553. package/dist/Theme/provider/useThemeMode.d.ts.map +1 -0
  554. package/dist/Theme/provider/useThemeMode.js +13 -0
  555. package/dist/Theme/themeProps.d.ts +10 -373
  556. package/dist/Theme/themeProps.d.ts.map +1 -1
  557. package/dist/Theme/tokens/brands/emerald/palette.dark.d.ts +7 -0
  558. package/dist/Theme/tokens/brands/emerald/palette.dark.d.ts.map +1 -0
  559. package/dist/Theme/tokens/brands/emerald/palette.dark.js +13 -0
  560. package/dist/Theme/tokens/brands/emerald/palette.light.d.ts +375 -0
  561. package/dist/Theme/tokens/brands/emerald/palette.light.d.ts.map +1 -0
  562. package/dist/Theme/tokens/brands/emerald/palette.light.js +135 -0
  563. package/dist/Theme/tokens/brands/index.d.ts +28 -0
  564. package/dist/Theme/tokens/brands/index.d.ts.map +1 -0
  565. package/dist/Theme/tokens/brands/index.js +93 -0
  566. package/dist/Theme/tokens/brands/lavender/palette.dark.d.ts +7 -0
  567. package/dist/Theme/tokens/brands/lavender/palette.dark.d.ts.map +1 -0
  568. package/dist/Theme/tokens/brands/lavender/palette.dark.js +13 -0
  569. package/dist/Theme/tokens/brands/lavender/palette.light.d.ts +375 -0
  570. package/dist/Theme/tokens/brands/lavender/palette.light.d.ts.map +1 -0
  571. package/dist/Theme/tokens/brands/lavender/palette.light.js +316 -0
  572. package/dist/Theme/tokens/brands/meadow/palette.dark.d.ts +7 -0
  573. package/dist/Theme/tokens/brands/meadow/palette.dark.d.ts.map +1 -0
  574. package/dist/Theme/tokens/brands/meadow/palette.dark.js +13 -0
  575. package/dist/Theme/tokens/brands/meadow/palette.light.d.ts +375 -0
  576. package/dist/Theme/tokens/brands/meadow/palette.light.d.ts.map +1 -0
  577. package/dist/Theme/tokens/brands/meadow/palette.light.js +133 -0
  578. package/dist/Theme/tokens/brands/radiant/palette.dark.d.ts +7 -0
  579. package/dist/Theme/tokens/brands/radiant/palette.dark.d.ts.map +1 -0
  580. package/dist/Theme/tokens/brands/radiant/palette.dark.js +13 -0
  581. package/dist/Theme/tokens/brands/radiant/palette.light.d.ts +375 -0
  582. package/dist/Theme/tokens/brands/radiant/palette.light.d.ts.map +1 -0
  583. package/dist/Theme/tokens/brands/radiant/palette.light.js +135 -0
  584. package/dist/Theme/tokens/brands/rosewood/palette.dark.d.ts +7 -0
  585. package/dist/Theme/tokens/brands/rosewood/palette.dark.d.ts.map +1 -0
  586. package/dist/Theme/tokens/brands/rosewood/palette.dark.js +13 -0
  587. package/dist/Theme/tokens/brands/rosewood/palette.light.d.ts +375 -0
  588. package/dist/Theme/tokens/brands/rosewood/palette.light.d.ts.map +1 -0
  589. package/dist/Theme/tokens/brands/rosewood/palette.light.js +139 -0
  590. package/dist/Theme/tokens/brands/skyline/palette.dark.d.ts +7 -0
  591. package/dist/Theme/tokens/brands/skyline/palette.dark.d.ts.map +1 -0
  592. package/dist/Theme/tokens/brands/skyline/palette.dark.js +13 -0
  593. package/dist/Theme/tokens/brands/skyline/palette.light.d.ts +375 -0
  594. package/dist/Theme/tokens/brands/skyline/palette.light.d.ts.map +1 -0
  595. package/dist/Theme/tokens/brands/skyline/palette.light.js +133 -0
  596. package/dist/Theme/tokens/brands/slate/palette.dark.d.ts +7 -0
  597. package/dist/Theme/tokens/brands/slate/palette.dark.d.ts.map +1 -0
  598. package/dist/Theme/tokens/brands/slate/palette.dark.js +13 -0
  599. package/dist/Theme/tokens/brands/slate/palette.light.d.ts +375 -0
  600. package/dist/Theme/tokens/brands/slate/palette.light.d.ts.map +1 -0
  601. package/dist/Theme/tokens/brands/slate/palette.light.js +137 -0
  602. package/dist/Theme/tokens/brands/storefront/palette.dark.d.ts +7 -0
  603. package/dist/Theme/tokens/brands/storefront/palette.dark.d.ts.map +1 -0
  604. package/dist/Theme/tokens/brands/storefront/palette.dark.js +13 -0
  605. package/dist/Theme/tokens/brands/storefront/palette.light.d.ts +375 -0
  606. package/dist/Theme/tokens/brands/storefront/palette.light.d.ts.map +1 -0
  607. package/dist/Theme/tokens/brands/storefront/palette.light.js +127 -0
  608. package/dist/Theme/tokens/brands/zinc/palette.dark.d.ts +204 -0
  609. package/dist/Theme/tokens/brands/zinc/palette.dark.d.ts.map +1 -0
  610. package/dist/Theme/tokens/brands/zinc/palette.dark.js +204 -0
  611. package/dist/Theme/tokens/brands/zinc/palette.light.d.ts +375 -0
  612. package/dist/Theme/tokens/brands/zinc/palette.light.d.ts.map +1 -0
  613. package/dist/Theme/tokens/brands/zinc/palette.light.js +383 -0
  614. package/dist/Theme/tokens/builders/accentText.d.ts +56 -0
  615. package/dist/Theme/tokens/builders/accentText.d.ts.map +1 -0
  616. package/dist/Theme/tokens/builders/accentText.js +92 -0
  617. package/dist/Theme/tokens/builders/buildBrandTokens.d.ts +16 -0
  618. package/dist/Theme/tokens/builders/buildBrandTokens.d.ts.map +1 -0
  619. package/dist/Theme/tokens/builders/buildBrandTokens.js +33 -0
  620. package/dist/Theme/tokens/builders/buildDarkPalette.d.ts +23 -0
  621. package/dist/Theme/tokens/builders/buildDarkPalette.d.ts.map +1 -0
  622. package/dist/Theme/tokens/builders/buildDarkPalette.js +282 -0
  623. package/dist/Theme/tokens/builders/chartColorsFromTheme.d.ts +17 -0
  624. package/dist/Theme/tokens/builders/chartColorsFromTheme.d.ts.map +1 -0
  625. package/dist/Theme/tokens/builders/chartColorsFromTheme.js +26 -0
  626. package/dist/Theme/tokens/builders/color.d.ts +50 -0
  627. package/dist/Theme/tokens/builders/color.d.ts.map +1 -0
  628. package/dist/Theme/tokens/builders/color.js +156 -0
  629. package/dist/Theme/tokens/builders/index.d.ts +6 -0
  630. package/dist/Theme/tokens/builders/index.d.ts.map +1 -0
  631. package/dist/Theme/tokens/builders/index.js +21 -0
  632. package/dist/Theme/tokens/index.d.ts +15 -0
  633. package/dist/Theme/tokens/index.d.ts.map +1 -0
  634. package/dist/Theme/tokens/index.js +30 -0
  635. package/dist/Theme/tokens/primitives/breakpoints.d.ts +9 -0
  636. package/dist/Theme/tokens/primitives/breakpoints.d.ts.map +1 -0
  637. package/dist/Theme/tokens/primitives/breakpoints.js +10 -0
  638. package/dist/Theme/tokens/primitives/index.d.ts +10 -0
  639. package/dist/Theme/tokens/primitives/index.d.ts.map +1 -0
  640. package/dist/Theme/tokens/primitives/index.js +27 -0
  641. package/dist/Theme/tokens/primitives/letterSpacings.d.ts +10 -0
  642. package/dist/Theme/tokens/primitives/letterSpacings.d.ts.map +1 -0
  643. package/dist/Theme/tokens/primitives/letterSpacings.js +11 -0
  644. package/dist/Theme/tokens/primitives/lineHeights.d.ts +19 -0
  645. package/dist/Theme/tokens/primitives/lineHeights.d.ts.map +1 -0
  646. package/dist/Theme/tokens/primitives/lineHeights.js +20 -0
  647. package/dist/Theme/tokens/primitives/radii.d.ts +13 -0
  648. package/dist/Theme/tokens/primitives/radii.d.ts.map +1 -0
  649. package/dist/Theme/tokens/primitives/radii.js +14 -0
  650. package/dist/Theme/tokens/primitives/shadows.d.ts +16 -0
  651. package/dist/Theme/tokens/primitives/shadows.d.ts.map +1 -0
  652. package/dist/Theme/tokens/primitives/shadows.js +17 -0
  653. package/dist/Theme/tokens/primitives/sizes.d.ts +63 -0
  654. package/dist/Theme/tokens/primitives/sizes.d.ts.map +1 -0
  655. package/dist/Theme/tokens/primitives/sizes.js +39 -0
  656. package/dist/Theme/tokens/primitives/space.d.ts +34 -0
  657. package/dist/Theme/tokens/primitives/space.d.ts.map +1 -0
  658. package/dist/Theme/tokens/primitives/space.js +35 -0
  659. package/dist/Theme/tokens/primitives/typography.d.ts +73 -0
  660. package/dist/Theme/tokens/primitives/typography.d.ts.map +1 -0
  661. package/dist/Theme/tokens/primitives/typography.js +43 -0
  662. package/dist/Theme/tokens/primitives/zIndices.d.ts +17 -0
  663. package/dist/Theme/tokens/primitives/zIndices.d.ts.map +1 -0
  664. package/dist/Theme/tokens/primitives/zIndices.js +18 -0
  665. package/dist/Theme/tokens/types.d.ts +116 -0
  666. package/dist/Theme/tokens/types.d.ts.map +1 -0
  667. package/dist/Theme/tokens/types.js +8 -0
  668. package/dist/Utils/table.d.ts +9 -2
  669. package/dist/Utils/table.d.ts.map +1 -1
  670. package/dist/Utils/table.js +23 -7
  671. package/dist/bootstrap.d.ts +2 -0
  672. package/dist/bootstrap.js +16 -0
  673. package/dist/index.d.ts +10 -0
  674. package/dist/index.d.ts.map +1 -1
  675. package/dist/index.js +52 -1
  676. package/package.json +2 -2
@@ -0,0 +1,51 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(git ls-tree *)",
5
+ "Bash(npx --no-install tsc --noEmit)",
6
+ "Bash(git fsck *)",
7
+ "Bash(npx tsc *)",
8
+ "Bash(curl -s http://localhost:5174/ -o /dev/null -w \"HTTP %{http_code}\\\\n\")",
9
+ "Bash(curl -s \"http://localhost:5174/src/Components/Table/Components/TableBody.tsx\" -o /dev/null -w \"transform TableBody: HTTP %{http_code}\\\\n\")",
10
+ "Read(//private/tmp/**)",
11
+ "Bash(npx jest *)",
12
+ "Bash(pkill -f \"vite\")",
13
+ "Bash(grep -rln -E \"import\\\\s+\\\\w+\\\\s*\\(,\\\\s*\\\\{[^}]*\\\\}\\)?\\\\s*from\\\\s+['\\\\\"]pixelize-design-library['\\\\\"]\" src)",
14
+ "Bash(ps -p 44521 60411 -o pid,command)",
15
+ "Bash(node -e \"const p=require\\('./package.json'\\); console.log\\(JSON.stringify\\(p.scripts,null,2\\)\\)\")",
16
+ "Bash(echo \"=== total errors: $\\(npx tsc --noEmit -p tsconfig.json 2>&1)",
17
+ "Bash(echo \"=== total: $\\(npx tsc --noEmit -p tsconfig.json 2>&1)",
18
+ "Bash(echo \"exit=$?\")",
19
+ "Read(//tmp/**)",
20
+ "Bash(git mv *)",
21
+ "Bash(git rm *)",
22
+ "Bash(node -e \"console.log\\(require\\('@emotion/react/package.json'\\).version\\)\")",
23
+ "Bash(node -e \"console.log\\('jodit-react', require\\('jodit-react/package.json'\\).version\\); try{console.log\\('jodit', require\\('jodit/package.json'\\).version\\)}catch\\(e\\){}\")",
24
+ "Bash(node -e \"console.log\\('playwright', require\\('playwright/package.json'\\).version\\)\")",
25
+ "Bash(node -e \"console.log\\('puppeteer', require\\('puppeteer/package.json'\\).version\\)\")",
26
+ "Bash(node -e \"console.log\\('ws', require\\('ws/package.json'\\).version\\)\")",
27
+ "Bash(node -e \"console.log\\('node', process.version\\)\")",
28
+ "Bash(grep -E \"\\\\.tsx?$\")",
29
+ "Bash(node -e \"console.log\\(require.resolve\\('@chakra-ui/styled-system'\\)\\)\")",
30
+ "Bash(node -e \"const p=require.resolve\\('@chakra-ui/react'\\);console.log\\(p\\)\")",
31
+ "Bash(sed -n '31,45p' src/Pages/table.tsx)",
32
+ "Bash(perl -0pi -e 's/\\\\n\\\\s*content: \\\\\\(\\\\\\) => <>Hello<\\\\/>,?//' src/Pages/table.tsx)",
33
+ "Bash(cd /Users/mahesh/Applications/Pixelize/CRM/Micro-Components *)",
34
+ "Bash(node -e \"console.log\\(require\\('./node_modules/pixelize-design-library/package.json'\\).version\\)\")",
35
+ "Bash(node -e \"console.log\\(JSON.stringify\\(require\\('./node_modules/pixelize-authenticator/package.json'\\).dependencies\\)\\)\")",
36
+ "Bash(node -e \"console.log\\(require\\('./node_modules/pixelize-authenticator/package.json'\\).version\\)\")",
37
+ "Bash(node -e \"console.log\\(require\\('./node_modules/pixelize-authenticator/node_modules/pixelize-design-library/package.json'\\).version\\)\")",
38
+ "Bash(echo \"tsc exit code: $?\")",
39
+ "Bash(./node_modules/.bin/tsc --noEmit --skipLibCheck)",
40
+ "Bash(./node_modules/.bin/tsc --noEmit)",
41
+ "Bash(echo \"tsc exit: $?\")",
42
+ "Bash(echo \"local tsc exit: $?\")",
43
+ "Bash(ls -la src/pages/Tasks/TaskComponent/)",
44
+ "Bash(wc -l src/pages/Tasks/TaskComponent/*.tsx)"
45
+ ],
46
+ "additionalDirectories": [
47
+ "/private/tmp",
48
+ "/tmp"
49
+ ]
50
+ }
51
+ }
@@ -14,3 +14,21 @@ Account/admin-facing components: UserDetails, RolesPermission, CustomModulesTabl
14
14
  - UserDetails, RolesPermission, CustomModulesTable, OrganizationDetails bundle their own action modals (Add/Edit/Delete/ChangeRole) in the same folder
15
15
  - Each exports typed Props/Labels from `<Name>Props.tsx` via `src/index.ts` — keep props API-generic, no CRM/API logic in the library
16
16
  - Labels are injectable for i18n; consumers pass data and handlers (props in, events out)
17
+
18
+ ## Dark mode
19
+
20
+ - Every component here reads colors via `useCustomTheme()`, so all follow the active light/dark palette
21
+ - Tables/detail views alias tokens once at the top — `border`/`surface`/`muted`/`heading`/`headBg` from `boxborder[200]`/`background[50]`/`gray[500]`/`gray[800]`/`gray[50]`; reuse those names when adding UI
22
+ - `surface` reads `background[50]`, never `colors.white` — white is a foreground token and stays white in dark
23
+ - Remaining hex literals are `??` fallbacks, not live values: a hand-built palette may omit rungs (tests `jest.mock` a partial one), so keep the fallback when adding a token read
24
+ - Fixed by design, not palette-following: `avatarColor()`'s `AVATAR_COLORS` (OrgSwitcher — deterministic identity fill seeded by org name, white label on top) and `UpgradeButton`'s `iconColor` default (icon on a gradient fill). Colored fills/foregrounds, not canvas surfaces
25
+ - **OrgSwitcher popover bg bug (same class as the ButtonGroupIcon menu bug in `buttons`):** `PopoverContent` had no `bg=`, so it fell through to Chakra's baseStyle `var(--popper-bg)` — hardcoded to `colors.white`, gated behind Chakra's own `_dark` which this app's palette-swap dark mode never triggers — rendering a white popover in dark mode regardless of theme. Fixed with an explicit `bg={theme.colors.backgroundColor.light}`
26
+ - OrgSwitcher trigger border: `borderColor` switched from `gray[200]` to `boxborder?.[800] ?? gray[200]` — it styles a real `<button>`, so its border is a control boundary needing WCAG 1.4.11 (>=3.0 non-text contrast) against any surface up to `muted`, which `gray[200]` failed in dark. Org name/role text switched from `gray[800]`/`gray[500]` to `text[900]`/`text[500]` — mode-adaptive text tokens, the correct choice over mode-invariant gray literals for body text
27
+ - UserDetails avatar initials color: replaced the fixed `primary[600]` rung with `accentTextOnCanvas(colors.primary, avatarBg)` (guarded `colors?.primary ? accentTextOnCanvas(...) : "#4F46E5"` fallback) — picks contrast dynamically against the avatar bg instead of assuming one fixed rung clears AA 4.5 for every brand's dark palette
28
+ - **Modal surface bug (QA-caught, blocking) — 6 action modals:** `AddUserModal`,
29
+ `DeactivateConfirmModal`, `ChangeRoleModal` (UserDetails), `DeleteRoleModal` (RolesPermission),
30
+ `CreateOrgModal`, `DeleteOrgModal` (OrganizationDetails) all rendered a raw Chakra `ModalContent`
31
+ with no explicit `bg=`, hitting the same Chakra-hardcoded-`colors.white`-behind-`_dark` bug as
32
+ `Modal`/`AlertDialog` (overlays module) and `Drawer` (layout-navigation module). Fixed with
33
+ `bg={colors?.background?.[50]}` (`colors` was already destructured from `useCustomTheme()` in
34
+ every one of these files, so no new hook import was needed).
@@ -11,3 +11,37 @@ Button, ButtonGroupIcon, Buttons variants.
11
11
  ## Key rules
12
12
 
13
13
  - Match Chakra button theming via design tokens
14
+ - `Button.styles.ts` variants are `({ theme })` functions reading `theme.colors` — no hex
15
+ literals, so they follow whichever palette the theme carries (light or dark)
16
+ - Filled labels (`solid` bg, and `outline`/`ghost` hover/active fills) no longer hardcode
17
+ `theme.colors.white` — they pick ink via `onFilled(fill, white, black)`
18
+ (`Theme/tokens/builders/accentText.ts`), which provably clears AA 4.5 by preferring white and
19
+ falling back to black only when the fill itself can't carry white. Never use white for a button
20
+ *surface* either way
21
+
22
+ ## Dark mode
23
+
24
+ - `outline` / `ghost` / `link` text sits on the canvas, so it goes through
25
+ `accentTextOnCanvas(scale, colors.backgroundColor.main)` instead of `[500]` directly.
26
+ `[500]` is pinned dark enough to carry a white label on `solid`, leaving it ~4.2 as text on
27
+ the dark canvas; the helper steps to a lighter rung there to clear AA 4.5. Light canvases
28
+ return `[500]` unchanged, so existing apps are pixel-identical.
29
+ - **Ghost hover gotcha:** brand scales are *lifted* for dark, not reversed, so `primary[50]`
30
+ stays near-white — a white chip on a near-black canvas. On dark canvases the hover/active
31
+ tint uses the translucent `scale.opacity[16]` / `[24]` so it composites over the canvas.
32
+ Only brand scales carry `opacity`; utility scales (red, green…) fall back to `[50]`, which
33
+ is already dark because those scales *are* reversed for dark.
34
+ - **Solid/outline label-ink fix:** `Button.styles.ts` derives each state's label from *that
35
+ state's* fill (`labelFor`, per hover/active/loading) instead of assuming white always works —
36
+ some brands' dark `primary[500]` fails AA against white (radiant/emerald/rosewood measure
37
+ 4.37/3.38/3.46) and now fall back to black. `Button.styles.test.ts` verifies this with real
38
+ `contrastRatio` checks per brand rather than asserting a fixed white label.
39
+ - **ButtonGroupIcon menu bug (new, generalizable):** Chakra's `MenuItem` baseStyle renders
40
+ `background: var(--menu-bg)` at rest, and `MenuList`'s baseStyle hardcodes that var to `#fff`
41
+ behind `_dark` — which this app's theme-swap dark mode (palette swapped, Chakra `colorMode`
42
+ stays `"light"`) never triggers. Setting `bg=` on `MenuList` alone recolors the list but not the
43
+ inherited var, so items rendered white at rest until hover/focus masked it. Fixed here via
44
+ `sx={{ "--menu-bg": theme.colors.backgroundColor.light }}` alongside `bg=`.
45
+ - **Known gap:** any other Chakra `Menu`/`Popover` usage is at risk of the same bug. A known
46
+ remaining instance — `Trail`/`EditableCell.tsx` (data-display module) — is **not fixed** in
47
+ this pass.
@@ -11,3 +11,45 @@ Card, PaymentCard, ProfileCard, ProductCard, ProductDetails.
11
11
  ## Key rules
12
12
 
13
13
  - ProfileCard has Header/Body/Footer subcomponents
14
+
15
+ ## Dark mode
16
+
17
+ PaymentCard, ProductCard, ProductPrice, ProductDtlPrice and ProductImageSlider read their colors
18
+ from `useCustomTheme()` instead of hex literals, so they follow the active light/dark palette.
19
+
20
+ - Surfaces use `colors.background[50]`, never `colors.white` — `white` is a foreground token and
21
+ stays white in dark. Covers the card body, the ProductPrice dropdown panel and its radio dot,
22
+ the unselected pack chip in ProductDtlPrice, and the play-button circle in ProductImageSlider.
23
+ - PaymentCard's badge/button label no longer hardcodes `colors.white` — it's picked per
24
+ `buttonColor` via `onFilled()` (`Theme/tokens/builders/accentText`), which falls back to
25
+ `colors.black` when white would fail AA on that fill. Guarantees WCAG AA across the
26
+ active/upgrade/popular/default button colors instead of assuming white always works.
27
+ - The product components keep Chakra literals for offer/pack chrome (`red.50`, `orange.50`,
28
+ `green.100`). Those are dark-aware already — the theme carries the palette as `colors`, and
29
+ `buildDarkPalette` reverses utility hue ramps so index roles survive (`red.50` = pale badge
30
+ background in light, deep in dark). They track the hue, not the brand accent.
31
+ - ProductPrice's struck-through original price bumped `gray.400` → `gray.500` (still a raw
32
+ Chakra literal, not a theme token) for AA contrast against the card surface.
33
+ - ProductTags' label swapped `colors.black` → `colors.text[900]` (mode-adaptive ink token) so it
34
+ stays legible in dark mode.
35
+ - **Known gap:** ProductReview's rating chip (`bg="teal.50"` / `color="teal.900"`) and its star
36
+ fill (`RATING_STAR_FILL`, a pinned `#ECC94B` hex — see in-file comment) are still raw
37
+ Chakra/hex literals, not `useCustomTheme()` tokens. Pre-existing pattern, not worsened by this
38
+ pass, but won't track brand hue or dark mode — needs a mode-stable "rating gold" token added to
39
+ `pixelize-design-library` before this can move off literals.
40
+
41
+ ## WCAG contrast pass (Wave D, QA-driven)
42
+
43
+ - **ProductPrice.tsx** — dropdown-arrow `red.400` (on `red.50` canvas) and discounted/final-price
44
+ `red.500` text (on `red.50`/`background[50]` depending on selection state) failed AA (2.6-3.7:1).
45
+ Fixed via `accentTextOnCanvas(theme.colors.red, <the actual local canvas>)` at each of the 3
46
+ call sites, matching the canvas each already renders on (including the existing `isSelected`
47
+ bg ternary). The dot-fill `bg="red.500"` (a filled swatch, not text) was left unchanged — it
48
+ clears the 3:1 non-text bar against `background[50]`.
49
+ - **ProductDtlPrice.tsx** — price `Text` hardcoded `theme.colors.red[500]` (≈3.46:1 vs the page
50
+ canvas, fails) and the pack-swatch `color="orange.600"` (≈2.47-2.67:1 vs either bg state,
51
+ fails) both routed through `accentTextOnCanvas`. `borderColor`/`bg` on the swatch button are
52
+ decorative and were left alone.
53
+ - **ProductImageSlider.tsx** — checked, not changed: all 6 `theme.colors.red[500]` Play-icon
54
+ usages sit on an opaque `background[50]` circular scrim (not the raw image), so the applicable
55
+ bar is 3:1 (graphical object, not text) — clears at ≈3.68:1 light / ≈6.48:1 dark.
@@ -7,7 +7,34 @@ Apexcharts wrappers: Bar, Line, Pie, Polar.
7
7
  ## Key paths
8
8
 
9
9
  - `src/Components/Apexcharts/ApexBarChart/`, `ApexLineChart/`, `ApexPieChart/`, `ApexPolarCharts/`
10
+ - `src/Theme/tokens/builders/chartColorsFromTheme.ts` — shared chart color helpers (+ test)
10
11
 
11
12
  ## Key rules
12
13
 
13
- - react-apexcharts; colors from theme chart tokens
14
+ - react-apexcharts; every color is a theme token, never a literal. Shared helpers:
15
+ `getDefaultSeriesColors` (primary / error / success / orange `500`), `mergeChartTitleStyle`
16
+ (title → `primary[500]`), `chartAxisLabelColor` (`gray[700]`). The rest read `palette` directly:
17
+ legend `text[900]` (Pie/Polar), Bar data labels `primary[500]`, Polar stroke `white`.
18
+ - All four read `useTheme().colors` (cast to `CustomThemeProps["colors"]`) rather than styling via
19
+ Chakra props, because ApexCharts `options` need resolved hex **strings**.
20
+ - The helper sits in the pure token layer: type-only imports, never Chakra/React (see CLAUDE.md).
21
+
22
+ ## Dark mode
23
+
24
+ - Dark-aware for free — the theme swaps in the dark palette and these tokens re-resolve. No hex
25
+ literals remain under `Apexcharts/`.
26
+ - Caller color props (`barColor`, `lineColors`, `chartColor`/`donutColors`, `chartColors`,
27
+ `titleStyle`, `legendStyle`) override the token defaults and are **not** dark-aware: a consumer
28
+ passing a hardcoded hex keeps it in both modes.
29
+ - ApexPolarCharts `basic`/`monochrome` stroke slice borders with `colors.white` — foreground on a
30
+ filled slice, so it correctly stays white; not a missed `background[50]` surface.
31
+ - All four now also set ApexCharts' own `options.theme.mode` (`"dark"`/`"light"`) from
32
+ `isDarkCanvas(palette.backgroundColor.main)` (`Theme/tokens/builders/accentText.ts`), so
33
+ ApexCharts' internal chrome (gridlines, built-in tooltip, etc.) follows the active canvas too,
34
+ not just the token-driven series/title/legend colors. No change to any chart's data/options
35
+ prop contract.
36
+ - Removed `chartTooltipBackground`/`chartTooltipForeground` from `chartColorsFromTheme.ts` (they
37
+ always resolved to a hardcoded dark-styled tooltip — `gray[700]`/`white` — regardless of mode,
38
+ now unused repo-wide). `ApexLineChart`'s title-truncation `ToolTip` no longer overrides
39
+ `bg`/`color`; it defers to `ToolTip`'s own theme-aware default instead.
40
+ - Known gap: titles/legends use `primary[500]` / `text[900]`, not the AA-safe `accentText` token.
@@ -11,3 +11,26 @@ Internal shared helpers under `Components/Common/` — not all exported from ind
11
11
  ## Key rules
12
12
 
13
13
  - Internal use by other components; export only if needed publicly
14
+
15
+ ## Dark mode
16
+
17
+ - **FormLabel** (`TextLabel`): both tooltips (`showTooltip` / `isInformation`) swapped
18
+ Chakra's own `Tooltip` for the library's `ToolTip` (`../ToolTip/ToolTip`), dropping the
19
+ hardcoded `bg={gray[600]}` / `color={white}` — `ToolTip` owns its own theme-aware
20
+ contrast (see `overlays` MODULE.md). No `TextLabel` prop changes.
21
+ - **fieldStyles.ts** (`getFieldStateStyles`): idle border bumped `boxborder[500]` →
22
+ `boxborder[800]` — `[500]` failed WCAG 1.4.11 (>=3:1 non-text contrast) against
23
+ surfaces up to `muted`; `[800]` clears with margin. Focus/error ring colors and the
24
+ function signature are unchanged.
25
+ - **ErrorMessage.tsx**, **ErrorComponent.tsx**, **FormLabel.tsx** (required-asterisk), **Label.tsx**:
26
+ error text color switched from a hardcoded `theme.colors.red[500]` / `semantic.error[500]` to
27
+ `accentTextOnCanvas(scale, canvas)` (`../../Theme/tokens/builders/accentText`) — `red[500]` alone
28
+ fails AA (~3.4:1) against the page canvas in every brand; see `theme` MODULE.md "Wave D" for why
29
+ this couldn't be a token retune. No prop/API changes.
30
+ - **ErrorComponent.tsx's SVG mark ink (code-review catch):** the circle/rect/dot marks drawn on
31
+ top of the `errorFill` circle were hardcoded `theme.colors.white`. `errorFill` is tuned for
32
+ text-on-page-canvas contrast, not for "carries a white mark on top of itself" — those are
33
+ different constraints, and nothing guaranteed white would keep clearing AA there if the token
34
+ ever changed (it happened to today). Replaced with
35
+ `onFilled(errorFill, theme.colors.white, theme.colors.black)`, the same provably-always-safe
36
+ ink-on-a-filled-swatch helper used by FilterSidebar's checkmark and PaymentCard.
@@ -11,3 +11,9 @@ ContactForm, VerifyEmailOtp (EmailCards).
11
11
  ## Key rules
12
12
 
13
13
  - OTP flow UI only — API wiring in consumer apps
14
+
15
+ ## Dark mode
16
+
17
+ - **VerifyEmailOtp**: `PinInputField` idle border bumped `boxborder[300]` → `boxborder[800]` —
18
+ `[300]` failed WCAG 1.4.11 (>=3:1 non-text contrast) against surfaces up to `muted`; `[800]`
19
+ clears with margin. Already theme-token-driven before this change; no prop/signature changes.
@@ -18,3 +18,25 @@ Tag, Timeline, Reorder, Divider, Trail.
18
18
  - Tag styling lives in `Tag.styles.tsx` (Chakra component theme), not hardcoded in `Tag.tsx`
19
19
  - Tag sizes: `xs | sm | md | lg`; variants: `solid | outline | subtle`
20
20
  - Tag colors are token-driven from the active theme via `colorScheme` (brand `primary/secondary/tertiary` + global scales); palette resolution falls back to `gray` so a missing scale never throws
21
+ - Tag `solid` variant label color is now `onFilled(fill, white, black)` (per state: base/hover/active), not a hardcoded `white` — picks whichever of white/black clears WCAG AA against that swatch, so it stays readable on light brand fills too
22
+
23
+ ## WCAG / dark-mode pass (this session)
24
+
25
+ - **Tag.styles.tsx** — `solid` variant's foreground swapped from hardcoded `theme.colors?.white` to
26
+ `onFilled(fill, white, black)`, computed per bg (base `500`, hover `600`, active `700`); verified
27
+ against WCAG AA.
28
+ - **Trail/EditableCell.tsx** — `priority` menu's `MenuButton` had a real hover-contrast fix: `bg`
29
+ `teal.500`/`color white` → `bg="teal.50"` / `color="teal.900"` (+ hover/active states). **Known
30
+ gap:** this uses raw Chakra `teal.*` literals, not `useCustomTheme()` tokens, so it won't track
31
+ brand hue or dark mode — needs a follow-up token pass.
32
+ - **Known gap (not fixed this pass):** the same `MenuList`/`MenuItem` still has no `bg=`/
33
+ `sx={{ "--menu-bg": ... }}` override, so Chakra's `--menu-bg` CSS var still resolves to its
34
+ hardcoded light-mode white regardless of this app's active dark mode — same root-cause bug
35
+ already fixed this session in `ButtonGroupIcon` (buttons module) and `NavigationBar`
36
+ (layout-navigation module). Deliberately deferred, not overlooked.
37
+
38
+ ## Dark mode
39
+
40
+ - Timeline takes every color from `useCustomTheme()`, so it follows whichever palette the theme carries. Dark works by swapping the palette — there is no `_dark`/`semanticTokens` layer, so a hardcoded value would stay light forever.
41
+ - White surfaces use `colors.background[50]`, **not** `colors.white` — `white` is a *foreground* token (label on a filled button) and stays white in dark. Covers Timeline's event card, date chip, and the node ring that punches each node out of the spine. (Timeline's inline `NoteTextArea` is owned by `inputs-basic`.)
42
+ - Timeline's remaining `?? "#fff"` fallbacks are defensive only — every brand palette defines `background[50]` (dark included, derived by `buildDarkPalette`).
@@ -12,3 +12,21 @@ Loading, Skeletons, ProgressBar, Notification, FeedbackForm.
12
12
  ## Key rules
13
13
 
14
14
  - FeedbackForm may POST to account API in consumer apps — keep props generic
15
+
16
+ ## Dark mode
17
+
18
+ - **Notification**: default `bgColor` switched `theme.colors.white` → `theme.colors.background[50]`
19
+ — `white` is a foreground token (label ink, stays white in dark) and was being used as the card
20
+ surface; `background[50]` is the correct dark-mode-aware white-surface token. Real bug fix (was
21
+ forcing a white card in dark mode), not a plain refactor. Consumers passing `colors.bgColor`
22
+ explicitly are unaffected.
23
+ - **`warningColor`/`errorColor`/`successColor` object-vs-string bug (QA-adjacent, real correctness
24
+ bug, not WCAG):** `NotificationProps` types these as hex strings, but the defaults were an
25
+ un-indexed whole `ColorScale` object (`theme.colors.semantic.warning` instead of
26
+ `theme.colors.semantic.warning[500]`) — Chakra silently can't render an object as a `bg=` color,
27
+ so the default (no-override) case was broken. Fixed by indexing `[500]` on all three defaults.
28
+ - **Time-elapsed icon/label AA gap:** the "time ago" `Icon`/`Text` defaulted to `orange.400`/
29
+ `orange.500`, which fail AA (~1.9–2.2:1) against `bgColor` in every brand — same class of bug as
30
+ the `error`/`red[500]` gap (theme module). Fixed by routing both through
31
+ `accentTextOnCanvas(theme.colors.orange, bgColor)` (`Theme/tokens/builders/accentText`) instead
32
+ of a fixed rung.
@@ -11,3 +11,32 @@ TextInput, PhoneNumberInput, InputTextArea, NoteTextArea, NumberInput, PinInput,
11
11
  ## Key rules
12
12
 
13
13
  - InputSwitch in `Input/Switch/`
14
+
15
+ ## Dark mode
16
+
17
+ - No hex literals remain — every field follows the active palette, but by three paths, not one:
18
+ `useCustomTheme()` (TextInput, PhoneNumberInput, NoteTextArea, PinInput, InputSwitch), Chakra
19
+ `useTheme()` (Input/Input, PinInputs), and `componentStyles` `({ theme })` fns (InputTextArea,
20
+ NumberInput — no theme hook at all). The `?? "gray.300"` fallbacks in `*.styles.ts` are token
21
+ refs, not literals: `createBrandTheme` sets `colors: palette`, so they resolve against the
22
+ swapped palette.
23
+ - `NoteTextArea` was the only migration here: its 4 white surfaces moved `colors.white` →
24
+ `colors.background[50]`. `colors.white` is a **foreground** token (a label on a filled button)
25
+ and stays white in dark; a white *surface* needs `background[50]` (identical `#ffffff` in light).
26
+ - `InputSwitch` layers `useColorModeValue` over the palette swap — it picks a different *rung*
27
+ (`primary[500]`→`[300]`, `gray[300]`→`[600]`) of the already-dark palette, not a second palette.
28
+
29
+ ## Border contrast bump ([500]/[700] → [800])
30
+
31
+ - Follow-up fix: `boxborder` at `[500]`/`[700]` only cleared canvas-level surfaces (main/base)
32
+ and failed WCAG 1.4.11 (control boundary, >=3.0) against `muted`, the lightest named surface
33
+ (2.41-2.72). All seven fields — `Input/Input.tsx`, `TextInput.styles.ts`,
34
+ `InputTextArea.style.tsx`, `NumberInput.styles.ts`, `PinInput.tsx`, `PinInputs.tsx`,
35
+ `NoteTextArea.tsx` — now use `boxborder?.[800]` for the resting/default border, clearing all
36
+ 12 named surfaces (3.44-3.90) in both modes.
37
+ - `Input/Input.tsx` also swapped its label/accent color from `colors.secondary?.[500]` to
38
+ `accentTextOnCanvas(colors.secondary, colors.backgroundColor?.main)` — relies on the shared
39
+ `accentText.ts` guard (Theme module) for safety when rendered without a full Pixelize theme;
40
+ no separate fix was needed in this file.
41
+ - `Input/Input.tsx` is **not** exported from `src/index.ts` (internal, used only by
42
+ `src/Pages/TInput.tsx`) — low external impact.
@@ -11,10 +11,46 @@ ThemeDatePicker (Single/Range/Time variants), FileUpload, FileUploader, Editor (
11
11
 
12
12
  ## Key rules
13
13
 
14
- - DatePicker themed for brand tokens
14
+ - DatePicker themed for brand tokens — `CalendarPanel` reads every color from `useCustomTheme()` (no hex literals), so it follows the active light/dark palette automatically.
15
+ - The month/year `<select>` uses `colors.background[50]`, not `colors.white`: it is a white *surface* and must darken in dark mode. The one remaining `colors.white` (day label on the filled `primary[500]` circle — selected / range start / range end) is a *foreground* and correctly stays white. Don't "fix" it.
16
+ - **Calendar/time popover surface bug (user-reported, blocking):** `SingleDatePicker.tsx`, `RangeDatePicker.tsx`, `TimeOnlyPicker.tsx`, and the legacy `DatePicker.tsx` (still reachable — consumed directly by `Table/filters/LeftFilterPane.tsx`, not just via the unused commented-out playground import) each rendered a `PopoverContent` with no explicit `bg=` — the same Chakra-hardcoded-`colors.white`-behind-`_dark` bug as `Modal`/`AlertDialog`/`Drawer` (overlays module). Because `CalendarPanel`'s day/weekday text (`text[700]`/`gray[400]`/`gray[500]`) is computed against the *intended* dark canvas, the panel rendered on Chakra's un-migrated white default while its text was tuned for a dark background — producing exactly the washed-out, near-invisible day numbers reported. Fixed with `bg={theme.colors.background[50]}` on all four `PopoverContent`s (`TimeOnlyPicker.tsx` didn't previously call `useCustomTheme()` at all — added the hook). Verified live via Playwright across all four variants (date-only, date+time, range, time-only).
17
+ - **FileUploader (QA-caught)** — its file-count and "Click here" text hardcoded `color="blue.500"`/
18
+ `"blue.400"`, which fail AA against the component's canvas (same class as the Notification
19
+ orange gap). Fixed via `accentTextOnCanvas(colors.blue, colors.backgroundColor?.main ?? "#ffffff")`
20
+ (`Theme/tokens/builders/accentText`), reused for both spots. Rest of the component (drag/drop
21
+ chrome, file-row chips) is still Chakra scale literals (`gray.*`), not migrated to
22
+ `useCustomTheme()` — out of scope for this pass since those are already dark-aware Chakra
23
+ literals (see table/account-management MODULE.md for why plain `gray.*` literals already track
24
+ the swapped palette).
25
+ - Editor is now theme-aware: it reads `theme.colors.backgroundColor?.main` (with a `"#ffffff"` fallback added after a code-review-caught crash risk) via `isDarkCanvas()` to switch Jodit's own internal `dark`/`default` editor theme — it does not restyle Jodit itself, just picks which built-in Jodit theme renders. FileUpload does use theme (`useCustomTheme()`: `gray`, `red`, `blue`, `background`, `secondary.opacity`) but was not migrated — **known gap**: `FileUpload.tsx:153` paints the uploaded-file row `bg={colors?.white}`, a *surface* on the foreground token, so it stays white in dark mode; should be `background[50]`.
26
+ - **Editor dark-mode "not black" bug (user-reported, fixed):** toggling Jodit's `config.theme` between `"dark"`/`"default"` only switches which of Jodit's OWN CSS selectors apply (`.jodit_theme_dark`, 180+ occurrences in `jodit.css`) — those selectors are still driven by Jodit's own hardcoded CSS custom properties (`--jd-dark-background-color: #575757`, a mid-gray, not black; `--jd-color-border-selected: #1e88e5`, generic blue), never fed this library's palette. Fixed in `Editor.tsx` by wrapping `<JoditEditor>` in a `<Box sx={...}>` carrying `getJoditThemeVars(theme.colors, isDark)` (`joditThemeVars.ts`) — inline CSS custom properties, scoped to this instance only (no `:root` leak onto other Jodit instances). Mapping: canvas/toolbar → `backgroundColor.main`/`.secondary`, ink → `text[900]`, icons → `text[700]`, hover/select-bg → `backgroundColor.muted`, border → `boxborder[500]`, accent → `primary[500]` — reusing the SAME role-stable tokens in both modes (`background[50]`/`text[900]` etc. already flip lightness internally per `buildDarkPalette.ts`, so no per-mode branching on VALUES, only on the `--jd-color-*` vs `--jd-dark-*` variable NAMES Jodit's default vs dark theme actually reads). Verified via Playwright: before showed `rgb(87,87,87)` (`#575757`, Jodit's default) on the canvas/toolbar in dark mode; after shows the brand's real near-black surface. Regression tests: `joditThemeVars.test.ts` (contrast + non-default-value assertions, lavender + rosewood).
27
+ - **Editor popup/dialog portal gap (user-reported follow-up on the fix above, fixed):** the "Known gap" this section used to note — Jodit appends dialogs and toolbar-dropdown popups (search & replace, image/link properties, font-size list, paragraph format, …) directly to `document.body` (`Dialog.destination` / `getPopupViewRoot` in jodit core), outside the CSS-variable wrapper's DOM subtree, so they kept rendering in Jodit's default (light, unthemed) styling even in dark mode — was reported again as "hovering [in the] editor is not following WCAG standards." Traced via `node_modules/jodit/es2021/jodit.css`: the main toolbar's own `:hover` rule (`.jodit_theme_dark .jodit-toolbar-button:hover`) already clears AA/AA-non-text comfortably once `--jd-dark-background-color`/`--jd-dark-icon-color` are mapped (verified numerically — computed contrast ~10:1+ across all 8 brands, not touched), so the actual gap was specifically the portalled popups never inheriting `themeVars` at all. Fixed by wiring Jodit's own `config.popupRoot` (a supported, documented option — `node_modules/jodit/esm/config.d.ts`: `popupRoot: Nullable<HTMLElement>`) to the wrapper `<Box>`'s own DOM node via a callback ref (`useState<HTMLElement | null>` + `ref={setPopupRoot}` on the `Box`), so `Dialog.destination` resolves to the themed wrapper instead of `document.body` and every popup/dialog now inherits the same CSS custom properties as the toolbar/canvas. Regression test: `Editor.test.tsx` (mocks `jodit-react` to assert `config.popupRoot` is a real DOM node, not `null`/`document.body`). One TS gotcha hit while wiring this: adding a literal `popupRoot` key alongside `...config` (typed `DeepPartial<Config>`, Jodit's huge recursive config type) triggered `TS2589: Type instantiation is excessively deep` — worked around by spreading `config` as `Record<string, unknown>` before the final `as EditorProps["config"]` assertion, since the plain literal-plus-spread pattern is otherwise unaffected (see comment in `Editor.tsx`).
28
+ - **Editor dialog inputs/search-panel/button-hover still unthemed (QA follow-up round, fixed):** the
29
+ `popupRoot` fix above got popups into the themed DOM subtree, but 3 more Jodit CSS variables were
30
+ still unmapped: `--jd-color-panel` (search & replace box background — only set in the light
31
+ branch, so dark mode fell to Jodit's own `#f9f9f9`, a near-white panel), `--jd-color-white` /
32
+ `--jd-color-gray` (`.jodit-ui-input__input` / `.jodit-ui-select__input` background — Jodit's own
33
+ raw white default, unmapped in either mode; `-gray` is what the `_theme_dark`-suffixed variant
34
+ reads instead of `-white`, and dialogs don't reliably get that modifier class). Traced each via
35
+ `node_modules/jodit/es2021/jodit.css` line-by-line before touching anything. Also found (via a
36
+ throwaway jest contrast computation, not assumed): the toolbar/dialog-button hover fill and the
37
+ `.jodit-select`/`.jodit-input` background both already mapped to `--jd-dark-background-ligher:
38
+ colors.backgroundColor.muted` — computed at ~1.3:1 against the canvas, a near-miss that had
39
+ actually shipped (both values sit within ~11 lightness points of each other down near L7-18, where
40
+ WCAG contrast collapses non-linearly) — this was the QA-reported "Insert button illegible on
41
+ hover." Fixed in `joditThemeVars.ts`: `--jd-color-panel` moved into `shared` (role-stable, same
42
+ `backgroundColor.secondary` expression already correct for light); `--jd-color-white:
43
+ background[50]` added to `shared`; `--jd-color-gray: background[50]` added to the dark branch;
44
+ `--jd-dark-background-ligher` changed to `background[900]` (this palette's dark-mode "bright
45
+ highlight" rung, ~9.7-10.7:1 against the canvas across brands — verified before applying, not
46
+ guessed). Confirmed via `node_modules/jodit/es2021/jodit.css` that `.jodit_theme_dark` /
47
+ `.jodit-dialog_theme_dark` already hardcode `--jd-color-border: #6b6b6b` themselves (a Jodit-owned
48
+ override we can't/don't need to touch), so this fix only had to cover panel/input backgrounds and
49
+ the hover fill. Regression tests added to `joditThemeVars.test.ts`.
15
50
  - Masked-input blur must not discard a valid value. `isMaskComplete()` only recognises numeric/`a` tokens, so text month formats (e.g. `MMM d, yyyy`) never look "complete" — `handleInputBlur`/`handleInputFocus` therefore keep any value that `parseValidatedValue()` can parse to a valid date, and only `requestClose(null)` (clear) on empty/unparseable input. The Clear button and emptied-mask paths remain the explicit ways to clear. Regression: `SingleDatePicker.blur.test.tsx`.
16
51
 
17
52
  ## Migration notes
18
53
 
19
54
  - DatePicker public export moved: `DatePicker/DatePicker` → `DatePicker/ThemeDatePicker` (exported as `DatePicker` from `src/index.ts`)
20
55
  - Split into Single/Range/Time picker variants under the same folder
56
+ - Picker tests build their Chakra theme from `Theme/tokens/brands/lavender/palette.light` (was `Theme/Default/palette`)
@@ -13,3 +13,15 @@ Select, SearchSelect, SelectSearch, MultiSelect, Dropdown, Search.
13
13
  - SearchSelect has performance tests; virtualize for large lists
14
14
  - Dropdown and SearchSelect main options menu are portaled to `<body>` (`position: fixed`) and clamp to the viewport — right-align/flip above when near edges
15
15
  - `insideSelect` prefix: mutually exclusive with main dropdown; menu uses `position: fixed`, flips above/below based on viewport space, and re-anchors on scroll/resize; supports `placeholder` when no value
16
+
17
+ ## Dark mode
18
+
19
+ SearchSelect and SelectSearch source every color from `useCustomTheme()` or a palette-backed Chakra scale literal — no hex in source — so they follow the active light/dark palette.
20
+
21
+ - Menu/panel surfaces use `colors.background[50]`, never `colors.white` — `white` is a foreground token (label on a filled button) and stays white in dark. The portaled menus are no exception: a portal escapes the DOM, not the theme
22
+ - Chakra scale literals (`gray.300`) are palette-backed — the Chakra theme's `colors` *is* the palette — but the literal `bg="white"` hits the same foreground-token trap as `colors.white`
23
+ - Lucide icons default to `currentColor` (a bare `<ChevronDown />` inherits the wrapper's `color`), but an explicit `color` prop is a raw CSS string — a scale name like `"gray.500"` won't resolve there; pass a token value
24
+ - Known gap: SearchSelect's "Remove All" X passes `colors.black`, which is untouched in dark, on a `gray[50]` control (L10 in dark) — near-invisible; needs a text token
25
+ - Control borders (`MultiSelect`, `Select.styles`, `SelectSearch`) bumped `boxborder` step [500]/[700] to **[800]**: WCAG 1.4.11 needs a 3:1 contrast ratio against any named surface up to `muted` (lightest) — [500]/[700] failed there, [800] clears all with margin (see inline comments at each call site)
26
+ - Known behavior change: SearchSelect's inside-select placeholder text dropped the `theme.colors.placeholder?.[500] ?? theme.colors.gray[500]` fallback for a flat `theme.colors.gray[500]` — still a valid token, but only the lavender brand defines a distinct `placeholder` scale (other brands inherit it via spread), so lavender's placeholder text loses its tint and now renders plain gray
27
+ - SearchSelect's "Remove All" tooltip dropped its explicit `bg`/`color` overrides, now rendering with ToolTip's own default styling instead of a forced `gray[600]`/`white`
@@ -11,3 +11,8 @@ Checkbox, RadioButton, Switch, Slider, Toggle/TableToggle.
11
11
  ## Key rules
12
12
 
13
13
  - RadioButtonGroup for grouped radios
14
+
15
+ ## Dark-mode / contrast fixes
16
+
17
+ - `Checkbox`: label tooltip now uses the shared `ToolTip` component instead of raw Chakra `Tooltip` with hardcoded `gray[600]`/`white` — `ToolTip` resolves a dark-mode-aware surface itself.
18
+ - `Toggle/TableToggle`: selected-tab label color changed from `theme.colors.black` (mode-invariant) to `theme.colors.text[900]` (mode-adaptive). Real bug fix: `black` was rendered on `background[50]`, which is near-black in dark mode — black-on-near-black was invisible; `text[900]` flips to near-white in dark mode.
@@ -12,3 +12,11 @@ KanbanBoard with drag-and-drop columns and KanbanActions.
12
12
  ## Key rules
13
13
 
14
14
  - Uses @hello-pangea/dnd; MeasuredItem for layout
15
+
16
+ ## Dark mode
17
+
18
+ - **KanbanBoard.test.tsx** mocked theme extended with a full `secondary` ramp (`600`-`900`) and
19
+ `backgroundColor.main`, for parity with other components' test mocks in this refactor pass.
20
+ **Known gap:** neither field is actually read by `KanbanBoard.tsx` or its subcomponents today —
21
+ this is inert test-fixture parity, not new dark-mode test coverage. KanbanBoard itself was not
22
+ touched in this pass.