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
package/CLAUDE.md CHANGED
@@ -40,10 +40,19 @@ No backend API in this repo. Demo pages may call dev APIs for playground only.
40
40
  Micro-Components/
41
41
  ├── package.json, tsconfig.json, vite.config.ts
42
42
  ├── src/
43
- │ ├── index.ts public exports (~80)
44
- │ ├── withTheme.tsx HOC wrapper
43
+ │ ├── index.ts public exports (~110)
44
+ │ ├── withTheme.tsx legacy HOC wrapper (light-only, unchanged)
45
45
  │ ├── Components/ 73 component families
46
- │ ├── Theme/ 8 brand presets + useCustomTheme
46
+ │ ├── Theme/
47
+ │ │ ├── tokens/ PURE, platform-agnostic — shared with the mobile lib
48
+ │ │ │ ├── types.ts PaletteProps, ThemeName, ColorMode
49
+ │ │ │ ├── primitives/ space, sizes, radii, shadows, typography, …
50
+ │ │ │ ├── builders/ buildDarkPalette, buildBrandTokens, color math
51
+ │ │ │ └── brands/<brand>/palette.light.ts + palette.dark.ts (7 brands)
52
+ │ │ ├── chakra/ WEB-ONLY binding (createBrandTheme, componentStyles, fonts)
53
+ │ │ ├── provider/ PixelizeThemeProvider, useThemeMode, ThemeSwitcher
54
+ │ │ ├── useCustomTheme.ts hook used by ~127 components
55
+ │ │ └── index.ts ThemesList (light) + brandThemes (light+dark)
47
56
  │ ├── Pages/ 49 Vite demo/playground pages
48
57
  │ ├── Utils/, Hooks/, services/, types/
49
58
  │ └── App.tsx, Layout.tsx playground shell
@@ -51,6 +60,23 @@ Micro-Components/
51
60
  └── .cursor/modules/ MODULE.md per component domain (22 domains)
52
61
  ```
53
62
 
63
+ ### Theme rules (read before touching color)
64
+
65
+ - **`Theme/tokens/**` must never import Chakra, React, or CSS.** It is copy-paste portable to the
66
+ mobile design library; one CSS/Chakra import breaks that. Web-only concerns (the Inter font-face
67
+ import, Chakra's `cssVarPrefix`) live in `Theme/chakra/`.
68
+ - **Dark mode works by swapping which palette the theme carries** — not via `_dark`/`semanticTokens`.
69
+ `componentStyles` variants are functions of `({ theme })` and `useCustomTheme()` reads
70
+ `theme.colors`, so both follow the active palette automatically.
71
+ - **Never hardcode a hex in a component.** Read tokens from `useCustomTheme()`, or the component
72
+ will be stuck in light mode.
73
+ - **`colors.white` is a foreground token** (the label on a filled button) and stays white in dark.
74
+ For a white *surface* use `colors.background[50]` — identical `#ffffff` in light, dark-aware.
75
+ - Dark palettes are **derived** (`buildDarkPalette`) from each brand's own light palette, so brand
76
+ hue carries through. Override per brand in that brand's `palette.dark.ts` if ever needed.
77
+ - `withTheme` stays **light-only** so existing apps are visually unchanged; dark is opt-in via
78
+ `PixelizeThemeProvider` (defaults to `system`).
79
+
54
80
  ## 5. Dev commands
55
81
 
56
82
  ```bash
package/README.md CHANGED
@@ -191,17 +191,84 @@ function DataTable() {
191
191
 
192
192
  ## Theming
193
193
 
194
- The library supports custom theming through CSS variables:
195
-
196
- ```css
197
- :root {
198
- --primary-color: #007bff;
199
- --secondary-color: #6c757d;
200
- --success-color: #28a745;
201
- --danger-color: #dc3545;
202
- --warning-color: #ffc107;
203
- --info-color: #17a2b8;
194
+ The library ships **7 brand themes** (`lavender`, `meadow`, `radiant`, `skyline`, `slate`,
195
+ `emerald`, `rosewood`), each with a **light and a dark palette**.
196
+
197
+ ### Existing apps (unchanged)
198
+
199
+ `withTheme` is the original default export and still renders **light only**. Upgrading the package
200
+ changes nothing visually:
201
+
202
+ ```tsx
203
+ import withTheme, { ThemesList } from 'pixelize-design-library';
204
+
205
+ export default withTheme(App, ThemesList.lavender);
206
+ ```
207
+
208
+ ### Opting into light / dark / system
209
+
210
+ Wrap the app in `PixelizeThemeProvider` instead. It defaults to **`system`** (follows the OS) and
211
+ persists the user's choice to `localStorage`.
212
+
213
+ ```tsx
214
+ import { PixelizeThemeProvider, ThemeSwitcher } from 'pixelize-design-library';
215
+
216
+ function Root() {
217
+ return (
218
+ <PixelizeThemeProvider brand="lavender" defaultMode="system">
219
+ <App />
220
+ </PixelizeThemeProvider>
221
+ );
204
222
  }
223
+
224
+ // Drop the switcher anywhere inside the provider:
225
+ <ThemeSwitcher /> // icon toggle
226
+ <ThemeSwitcher variant="segmented" /> // Light / System / Dark
227
+ <ThemeSwitcher variant="menu" showBrandPicker /> // + brand picker
228
+ ```
229
+
230
+ | `PixelizeThemeProvider` prop | Default | Meaning |
231
+ | ---------------------------- | ------- | ------- |
232
+ | `brand` | `"lavender"` | Which brand theme to use |
233
+ | `defaultMode` | `"system"` | `"light"` \| `"dark"` \| `"system"` |
234
+ | `storageKey` | `"pixelize-theme"` | localStorage key |
235
+ | `disablePersistence` | `false` | Don't read/write localStorage |
236
+
237
+ ### Reading or changing the theme in code
238
+
239
+ ```tsx
240
+ import { useThemeMode, useCustomTheme } from 'pixelize-design-library';
241
+
242
+ const { mode, resolvedMode, setMode, toggle, brand, setBrand } = useThemeMode();
243
+ const theme = useCustomTheme(); // returns the palette for the ACTIVE color mode
244
+ ```
245
+
246
+ `useCustomTheme()` returns the dark palette automatically in dark mode, so components that read
247
+ their colors from it are dark-aware with no extra work.
248
+
249
+ ### Building components
250
+
251
+ Read colors from the theme — never hardcode a hex, or the component will be stuck in light mode:
252
+
253
+ ```tsx
254
+ const theme = useCustomTheme();
255
+ <Box bg={theme.colors.background[50]} color={theme.colors.text[900]} /> // ✅ adapts
256
+ <Box bg="#ffffff" color="#26213c" /> // ❌ breaks in dark
257
+ ```
258
+
259
+ `colors.white` is a **foreground** token (the label on a filled button) and stays white in dark
260
+ mode. For a white **surface**, use `colors.background[50]`.
261
+
262
+ ### Design tokens (shared with the mobile library)
263
+
264
+ `lightPalettes`, `darkPalettes`, `palettes`, `themeNames`, and `buildDarkPalette` are exported for
265
+ apps that build custom themes. The token source (`src/Theme/tokens/`) is pure TypeScript with no
266
+ Chakra, React, or CSS imports, so it is portable to React Native.
267
+
268
+ ```ts
269
+ import { lightPalettes, buildDarkPalette } from 'pixelize-design-library';
270
+
271
+ const myDark = buildDarkPalette(lightPalettes.emerald);
205
272
  ```
206
273
 
207
274
  ## TypeScript Support
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Stub for CSS/SCSS imports under Jest (see `moduleNameMapper` in package.json).
3
+ *
4
+ * jest.moduleNameMapper has always referenced this file, but it did not exist — no test
5
+ * imported a stylesheet (even transitively) until the public-API guard began importing
6
+ * `src/index.ts`, which pulls in the Inter font-face CSS via the theme.
7
+ */
8
+ module.exports = {};
@@ -0,0 +1,405 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <coverage generated="1781346355410" clover="3.2.0">
3
+ <project timestamp="1781346355410" name="All files">
4
+ <metrics statements="324" coveredstatements="262" conditionals="336" coveredconditionals="233" methods="93" coveredmethods="73" elements="753" coveredelements="568" complexity="0" loc="324" ncloc="324" packages="10" files="15" classes="15"/>
5
+ <package name="Components.Button">
6
+ <metrics statements="1" coveredstatements="1" conditionals="8" coveredconditionals="7" methods="1" coveredmethods="1"/>
7
+ <file name="Button.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Button/Button.tsx">
8
+ <metrics statements="1" coveredstatements="1" conditionals="8" coveredconditionals="7" methods="1" coveredmethods="1"/>
9
+ <line num="27" count="2" type="stmt"/>
10
+ </file>
11
+ </package>
12
+ <package name="Components.Common">
13
+ <metrics statements="10" coveredstatements="3" conditionals="25" coveredconditionals="0" methods="3" coveredmethods="0"/>
14
+ <file name="ErrorMessage.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Common/ErrorMessage.tsx">
15
+ <metrics statements="3" coveredstatements="1" conditionals="2" coveredconditionals="0" methods="1" coveredmethods="0"/>
16
+ <line num="5" count="1" type="stmt"/>
17
+ <line num="7" count="0" type="stmt"/>
18
+ <line num="8" count="0" type="stmt"/>
19
+ </file>
20
+ <file name="FormLabel.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Common/FormLabel.tsx">
21
+ <metrics statements="4" coveredstatements="1" conditionals="23" coveredconditionals="0" methods="1" coveredmethods="0"/>
22
+ <line num="6" count="1" type="stmt"/>
23
+ <line num="31" count="0" type="stmt"/>
24
+ <line num="32" count="0" type="cond" truecount="0" falsecount="2"/>
25
+ <line num="41" count="0" type="stmt"/>
26
+ </file>
27
+ <file name="HelperText.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Common/HelperText.tsx">
28
+ <metrics statements="3" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
29
+ <line num="4" count="1" type="stmt"/>
30
+ <line num="5" count="0" type="stmt"/>
31
+ <line num="6" count="0" type="stmt"/>
32
+ </file>
33
+ </package>
34
+ <package name="Components.Divider">
35
+ <metrics statements="3" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
36
+ <file name="Divider.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Divider/Divider.tsx">
37
+ <metrics statements="3" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
38
+ <line num="4" count="1" type="stmt"/>
39
+ <line num="5" count="0" type="stmt"/>
40
+ <line num="6" count="0" type="stmt"/>
41
+ </file>
42
+ </package>
43
+ <package name="Components.Header">
44
+ <metrics statements="14" coveredstatements="11" conditionals="16" coveredconditionals="12" methods="5" coveredmethods="2"/>
45
+ <file name="HeaderActions.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Header/HeaderActions.tsx">
46
+ <metrics statements="14" coveredstatements="11" conditionals="16" coveredconditionals="12" methods="5" coveredmethods="2"/>
47
+ <line num="9" count="1" type="stmt"/>
48
+ <line num="33" count="77" type="stmt"/>
49
+ <line num="35" count="77" type="stmt"/>
50
+ <line num="37" count="77" type="cond" truecount="2" falsecount="0"/>
51
+ <line num="38" count="2" type="stmt"/>
52
+ <line num="44" count="0" type="stmt"/>
53
+ <line num="51" count="77" type="cond" truecount="2" falsecount="0"/>
54
+ <line num="52" count="2" type="stmt"/>
55
+ <line num="60" count="0" type="stmt"/>
56
+ <line num="68" count="77" type="cond" truecount="2" falsecount="0"/>
57
+ <line num="69" count="2" type="stmt"/>
58
+ <line num="77" count="0" type="stmt"/>
59
+ <line num="85" count="77" type="stmt"/>
60
+ <line num="88" count="6" type="stmt"/>
61
+ </file>
62
+ </package>
63
+ <package name="Components.Input">
64
+ <metrics statements="5" coveredstatements="3" conditionals="4" coveredconditionals="2" methods="2" coveredmethods="1"/>
65
+ <file name="textInputIconSize.ts" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Input/textInputIconSize.ts">
66
+ <metrics statements="5" coveredstatements="3" conditionals="4" coveredconditionals="2" methods="2" coveredmethods="1"/>
67
+ <line num="4" count="1" type="stmt"/>
68
+ <line num="16" count="2" type="cond" truecount="1" falsecount="1"/>
69
+ <line num="17" count="2" type="cond" truecount="1" falsecount="1"/>
70
+ <line num="27" count="0" type="stmt"/>
71
+ <line num="28" count="0" type="stmt"/>
72
+ </file>
73
+ </package>
74
+ <package name="Components.KanbanBoard">
75
+ <metrics statements="256" coveredstatements="213" conditionals="236" coveredconditionals="185" methods="69" coveredmethods="59"/>
76
+ <file name="AccountCard.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/KanbanBoard/AccountCard.tsx">
77
+ <metrics statements="14" coveredstatements="14" conditionals="22" coveredconditionals="21" methods="8" coveredmethods="8"/>
78
+ <line num="17" count="1" type="stmt"/>
79
+ <line num="19" count="1" type="stmt"/>
80
+ <line num="35" count="109" type="stmt"/>
81
+ <line num="37" count="109" type="stmt"/>
82
+ <line num="38" count="54" type="stmt"/>
83
+ <line num="39" count="165" type="cond" truecount="2" falsecount="0"/>
84
+ <line num="43" count="109" type="cond" truecount="2" falsecount="0"/>
85
+ <line num="45" count="109" type="stmt"/>
86
+ <line num="46" count="2" type="stmt"/>
87
+ <line num="49" count="109" type="stmt"/>
88
+ <line num="74" count="225" type="stmt"/>
89
+ <line num="76" count="225" type="stmt"/>
90
+ <line num="124" count="1" type="stmt"/>
91
+ <line num="141" count="1" type="stmt"/>
92
+ </file>
93
+ <file name="AccountRow.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/KanbanBoard/AccountRow.tsx">
94
+ <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
95
+ <line num="9" count="1" type="stmt"/>
96
+ <line num="10" count="225" type="stmt"/>
97
+ <line num="11" count="225" type="stmt"/>
98
+ </file>
99
+ <file name="KanbanBoard.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/KanbanBoard/KanbanBoard.tsx">
100
+ <metrics statements="209" coveredstatements="171" conditionals="196" coveredconditionals="153" methods="54" coveredmethods="45"/>
101
+ <line num="52" count="1" type="stmt"/>
102
+ <line num="66" count="1" type="stmt"/>
103
+ <line num="69" count="1" type="stmt"/>
104
+ <line num="71" count="1" type="stmt"/>
105
+ <line num="72" count="4" type="stmt"/>
106
+ <line num="73" count="4" type="stmt"/>
107
+ <line num="75" count="4" type="cond" truecount="1" falsecount="1"/>
108
+ <line num="76" count="0" type="stmt"/>
109
+ <line num="79" count="4" type="stmt"/>
110
+ <line num="82" count="0" type="stmt"/>
111
+ <line num="90" count="4" type="stmt"/>
112
+ <line num="105" count="0" type="stmt"/>
113
+ <line num="119" count="1" type="stmt"/>
114
+ <line num="124" count="4" type="stmt"/>
115
+ <line num="140" count="1" type="stmt"/>
116
+ <line num="153" count="1" type="stmt"/>
117
+ <line num="154" count="1" type="stmt"/>
118
+ <line num="155" count="1" type="stmt"/>
119
+ <line num="156" count="1" type="stmt"/>
120
+ <line num="159" count="1" type="stmt"/>
121
+ <line num="188" count="81" type="stmt"/>
122
+ <line num="190" count="81" type="stmt"/>
123
+ <line num="191" count="81" type="stmt"/>
124
+ <line num="192" count="81" type="stmt"/>
125
+ <line num="193" count="81" type="stmt"/>
126
+ <line num="195" count="81" type="stmt"/>
127
+ <line num="196" count="35" type="cond" truecount="2" falsecount="0"/>
128
+ <line num="201" count="81" type="stmt"/>
129
+ <line num="210" count="81" type="stmt"/>
130
+ <line num="219" count="81" type="stmt"/>
131
+ <line num="220" count="51" type="cond" truecount="2" falsecount="0"/>
132
+ <line num="221" count="3" type="stmt"/>
133
+ <line num="223" count="48" type="stmt"/>
134
+ <line num="226" count="81" type="stmt"/>
135
+ <line num="227" count="81" type="stmt"/>
136
+ <line num="230" count="81" type="cond" truecount="3" falsecount="0"/>
137
+ <line num="233" count="81" type="stmt"/>
138
+ <line num="234" count="81" type="stmt"/>
139
+ <line num="235" count="81" type="stmt"/>
140
+ <line num="237" count="81" type="stmt"/>
141
+ <line num="238" count="35" type="stmt"/>
142
+ <line num="242" count="81" type="stmt"/>
143
+ <line num="249" count="81" type="stmt"/>
144
+ <line num="251" count="81" type="stmt"/>
145
+ <line num="253" count="34" type="stmt"/>
146
+ <line num="254" count="81" type="stmt"/>
147
+ <line num="256" count="81" type="stmt"/>
148
+ <line num="257" count="34" type="stmt"/>
149
+ <line num="265" count="81" type="stmt"/>
150
+ <line num="266" count="52" type="cond" truecount="5" falsecount="0"/>
151
+ <line num="267" count="48" type="stmt"/>
152
+ <line num="269" count="4" type="cond" truecount="2" falsecount="0"/>
153
+ <line num="270" count="1" type="stmt"/>
154
+ <line num="272" count="3" type="stmt"/>
155
+ <line num="273" count="3" type="cond" truecount="1" falsecount="1"/>
156
+ <line num="274" count="0" type="stmt"/>
157
+ <line num="276" count="3" type="cond" truecount="1" falsecount="1"/>
158
+ <line num="277" count="0" type="stmt"/>
159
+ <line num="278" count="0" type="stmt"/>
160
+ <line num="280" count="3" type="stmt"/>
161
+ <line num="281" count="3" type="cond" truecount="1" falsecount="1"/>
162
+ <line num="286" count="0" type="stmt"/>
163
+ <line num="287" count="0" type="stmt"/>
164
+ <line num="289" count="3" type="stmt"/>
165
+ <line num="290" count="3" type="stmt"/>
166
+ <line num="291" count="2" type="cond" truecount="3" falsecount="1"/>
167
+ <line num="292" count="2" type="stmt"/>
168
+ <line num="295" count="3" type="stmt"/>
169
+ <line num="299" count="3" type="stmt"/>
170
+ <line num="309" count="81" type="stmt"/>
171
+ <line num="310" count="35" type="cond" truecount="2" falsecount="0"/>
172
+ <line num="311" count="26" type="stmt"/>
173
+ <line num="313" count="9" type="stmt"/>
174
+ <line num="314" count="9" type="stmt"/>
175
+ <line num="315" count="9" type="stmt"/>
176
+ <line num="316" count="9" type="cond" truecount="1" falsecount="1"/>
177
+ <line num="317" count="9" type="stmt"/>
178
+ <line num="319" count="0" type="stmt"/>
179
+ <line num="320" count="0" type="stmt"/>
180
+ <line num="321" count="0" type="cond" truecount="0" falsecount="2"/>
181
+ <line num="322" count="0" type="stmt"/>
182
+ <line num="325" count="0" type="stmt"/>
183
+ <line num="329" count="81" type="stmt"/>
184
+ <line num="331" count="6" type="stmt"/>
185
+ <line num="332" count="6" type="stmt"/>
186
+ <line num="333" count="6" type="stmt"/>
187
+ <line num="334" count="6" type="stmt"/>
188
+ <line num="339" count="6" type="cond" truecount="4" falsecount="0"/>
189
+ <line num="340" count="2" type="stmt"/>
190
+ <line num="345" count="6" type="stmt"/>
191
+ <line num="357" count="81" type="stmt"/>
192
+ <line num="360" count="81" type="stmt"/>
193
+ <line num="361" count="81" type="stmt"/>
194
+ <line num="364" count="81" type="stmt"/>
195
+ <line num="365" count="81" type="stmt"/>
196
+ <line num="368" count="81" type="stmt"/>
197
+ <line num="369" count="35" type="cond" truecount="2" falsecount="0"/>
198
+ <line num="370" count="34" type="stmt"/>
199
+ <line num="371" count="34" type="stmt"/>
200
+ <line num="373" count="1" type="stmt"/>
201
+ <line num="374" count="1" type="cond" truecount="1" falsecount="1"/>
202
+ <line num="375" count="0" type="stmt"/>
203
+ <line num="376" count="0" type="stmt"/>
204
+ <line num="377" count="0" type="stmt"/>
205
+ <line num="378" count="0" type="stmt"/>
206
+ <line num="381" count="0" type="stmt"/>
207
+ <line num="382" count="0" type="stmt"/>
208
+ <line num="383" count="0" type="stmt"/>
209
+ <line num="384" count="0" type="cond" truecount="0" falsecount="2"/>
210
+ <line num="385" count="0" type="stmt"/>
211
+ <line num="387" count="0" type="stmt"/>
212
+ <line num="390" count="0" type="cond" truecount="0" falsecount="2"/>
213
+ <line num="395" count="81" type="stmt"/>
214
+ <line num="398" count="81" type="stmt"/>
215
+ <line num="399" count="0" type="stmt"/>
216
+ <line num="400" count="0" type="stmt"/>
217
+ <line num="401" count="0" type="cond" truecount="0" falsecount="2"/>
218
+ <line num="402" count="0" type="stmt"/>
219
+ <line num="405" count="0" type="cond" truecount="0" falsecount="2"/>
220
+ <line num="406" count="0" type="stmt"/>
221
+ <line num="410" count="81" type="stmt"/>
222
+ <line num="411" count="0" type="stmt"/>
223
+ <line num="412" count="0" type="cond" truecount="0" falsecount="4"/>
224
+ <line num="416" count="81" type="stmt"/>
225
+ <line num="417" count="34" type="stmt"/>
226
+ <line num="418" count="34" type="cond" truecount="2" falsecount="0"/>
227
+ <line num="419" count="33" type="stmt"/>
228
+ <line num="420" count="33" type="stmt"/>
229
+ <line num="424" count="34" type="stmt"/>
230
+ <line num="425" count="34" type="stmt"/>
231
+ <line num="427" count="34" type="stmt"/>
232
+ <line num="428" count="34" type="stmt"/>
233
+ <line num="434" count="81" type="stmt"/>
234
+ <line num="435" count="2" type="stmt"/>
235
+ <line num="436" count="2" type="stmt"/>
236
+ <line num="437" count="2" type="cond" truecount="1" falsecount="1"/>
237
+ <line num="438" count="0" type="stmt"/>
238
+ <line num="440" count="2" type="stmt"/>
239
+ <line num="445" count="81" type="stmt"/>
240
+ <line num="446" count="4" type="stmt"/>
241
+ <line num="447" count="4" type="cond" truecount="2" falsecount="0"/>
242
+ <line num="449" count="3" type="cond" truecount="2" falsecount="0"/>
243
+ <line num="450" count="1" type="cond" truecount="1" falsecount="1"/>
244
+ <line num="451" count="1" type="stmt"/>
245
+ <line num="452" count="1" type="stmt"/>
246
+ <line num="457" count="1" type="stmt"/>
247
+ <line num="461" count="1" type="stmt"/>
248
+ <line num="462" count="1" type="stmt"/>
249
+ <line num="463" count="1" type="stmt"/>
250
+ <line num="466" count="2" type="stmt"/>
251
+ <line num="467" count="2" type="stmt"/>
252
+ <line num="468" count="2" type="stmt"/>
253
+ <line num="469" count="2" type="cond" truecount="4" falsecount="1"/>
254
+ <line num="471" count="2" type="cond" truecount="2" falsecount="0"/>
255
+ <line num="472" count="1" type="stmt"/>
256
+ <line num="473" count="1" type="stmt"/>
257
+ <line num="474" count="1" type="stmt"/>
258
+ <line num="476" count="1" type="stmt"/>
259
+ <line num="481" count="1" type="stmt"/>
260
+ <line num="482" count="1" type="stmt"/>
261
+ <line num="491" count="1" type="stmt"/>
262
+ <line num="492" count="1" type="stmt"/>
263
+ <line num="493" count="1" type="stmt"/>
264
+ <line num="494" count="1" type="stmt"/>
265
+ <line num="496" count="1" type="stmt"/>
266
+ <line num="502" count="1" type="stmt"/>
267
+ <line num="503" count="1" type="stmt"/>
268
+ <line num="514" count="81" type="stmt"/>
269
+ <line num="515" count="2" type="cond" truecount="1" falsecount="1"/>
270
+ <line num="516" count="1" type="stmt"/>
271
+ <line num="519" count="81" type="stmt"/>
272
+ <line num="531" count="81" type="stmt"/>
273
+ <line num="532" count="37" type="stmt"/>
274
+ <line num="533" count="37" type="stmt"/>
275
+ <line num="534" count="40" type="stmt"/>
276
+ <line num="536" count="37" type="stmt"/>
277
+ <line num="539" count="81" type="stmt"/>
278
+ <line num="545" count="87" type="stmt"/>
279
+ <line num="550" count="0" type="stmt"/>
280
+ <line num="551" count="0" type="stmt"/>
281
+ <line num="571" count="0" type="stmt"/>
282
+ <line num="581" count="80" type="stmt"/>
283
+ <line num="602" count="6" type="stmt"/>
284
+ <line num="603" count="0" type="stmt"/>
285
+ <line num="664" count="2" type="stmt"/>
286
+ <line num="839" count="4" type="stmt"/>
287
+ <line num="851" count="1" type="stmt"/>
288
+ <line num="908" count="4" type="cond" truecount="2" falsecount="0"/>
289
+ <line num="916" count="0" type="stmt"/>
290
+ <line num="926" count="107" type="cond" truecount="2" falsecount="0"/>
291
+ <line num="934" count="107" type="stmt"/>
292
+ <line num="948" count="2" type="stmt"/>
293
+ <line num="969" count="81" type="cond" truecount="2" falsecount="0"/>
294
+ <line num="971" count="79" type="stmt"/>
295
+ <line num="972" count="79" type="stmt"/>
296
+ <line num="974" count="79" type="stmt"/>
297
+ <line num="995" count="79" type="cond" truecount="4" falsecount="0"/>
298
+ <line num="1008" count="1" type="stmt"/>
299
+ <line num="1019" count="79" type="stmt"/>
300
+ <line num="1022" count="87" type="cond" truecount="2" falsecount="0"/>
301
+ <line num="1023" count="87" type="cond" truecount="2" falsecount="0"/>
302
+ <line num="1024" count="4" type="stmt"/>
303
+ <line num="1027" count="4" type="stmt"/>
304
+ <line num="1049" count="83" type="stmt"/>
305
+ <line num="1053" count="79" type="stmt"/>
306
+ <line num="1054" count="395" type="stmt"/>
307
+ <line num="1068" count="79" type="stmt"/>
308
+ <line num="1106" count="1" type="stmt"/>
309
+ <line num="1134" count="2" type="stmt"/>
310
+ </file>
311
+ <file name="MeasuredItem.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/KanbanBoard/MeasuredItem.tsx">
312
+ <metrics statements="30" coveredstatements="25" conditionals="18" coveredconditionals="11" methods="6" coveredmethods="5"/>
313
+ <line num="9" count="1" type="stmt"/>
314
+ <line num="14" count="4" type="stmt"/>
315
+ <line num="15" count="4" type="stmt"/>
316
+ <line num="17" count="4" type="stmt"/>
317
+ <line num="18" count="4" type="stmt"/>
318
+ <line num="19" count="4" type="stmt"/>
319
+ <line num="20" count="4" type="stmt"/>
320
+ <line num="22" count="4" type="stmt"/>
321
+ <line num="23" count="2" type="cond" truecount="1" falsecount="1"/>
322
+ <line num="25" count="2" type="stmt"/>
323
+ <line num="26" count="2" type="cond" truecount="2" falsecount="2"/>
324
+ <line num="27" count="0" type="stmt"/>
325
+ <line num="28" count="0" type="stmt"/>
326
+ <line num="33" count="4" type="stmt"/>
327
+ <line num="34" count="2" type="stmt"/>
328
+ <line num="35" count="2" type="stmt"/>
329
+ <line num="37" count="2" type="stmt"/>
330
+ <line num="40" count="2" type="cond" truecount="3" falsecount="1"/>
331
+ <line num="41" count="2" type="stmt"/>
332
+ <line num="42" count="0" type="stmt"/>
333
+ <line num="44" count="2" type="stmt"/>
334
+ <line num="46" count="0" type="stmt"/>
335
+ <line num="49" count="2" type="stmt"/>
336
+ <line num="50" count="2" type="stmt"/>
337
+ <line num="51" count="2" type="cond" truecount="3" falsecount="1"/>
338
+ <line num="52" count="2" type="cond" truecount="1" falsecount="1"/>
339
+ <line num="57" count="4" type="stmt"/>
340
+ <line num="58" count="2" type="cond" truecount="1" falsecount="1"/>
341
+ <line num="59" count="0" type="stmt"/>
342
+ <line num="63" count="4" type="stmt"/>
343
+ </file>
344
+ </package>
345
+ <package name="Components.Select">
346
+ <metrics statements="13" coveredstatements="8" conditionals="26" coveredconditionals="12" methods="5" coveredmethods="3"/>
347
+ <file name="Select.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Select/Select.tsx">
348
+ <metrics statements="13" coveredstatements="8" conditionals="26" coveredconditionals="12" methods="5" coveredmethods="3"/>
349
+ <line num="34" count="2" type="cond" truecount="1" falsecount="1"/>
350
+ <line num="35" count="2" type="stmt"/>
351
+ <line num="37" count="2" type="stmt"/>
352
+ <line num="38" count="2" type="cond" truecount="1" falsecount="1"/>
353
+ <line num="39" count="2" type="stmt"/>
354
+ <line num="40" count="2" type="stmt"/>
355
+ <line num="46" count="2" type="stmt"/>
356
+ <line num="47" count="0" type="stmt"/>
357
+ <line num="48" count="0" type="stmt"/>
358
+ <line num="49" count="0" type="stmt"/>
359
+ <line num="51" count="0" type="cond" truecount="0" falsecount="4"/>
360
+ <line num="52" count="0" type="stmt"/>
361
+ <line num="56" count="2" type="stmt"/>
362
+ </file>
363
+ </package>
364
+ <package name="Components.SideBar.components">
365
+ <metrics statements="19" coveredstatements="19" conditionals="11" coveredconditionals="7" methods="4" coveredmethods="4"/>
366
+ <file name="OverflowTooltipText.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/SideBar/components/OverflowTooltipText.tsx">
367
+ <metrics statements="19" coveredstatements="19" conditionals="11" coveredconditionals="7" methods="4" coveredmethods="4"/>
368
+ <line num="12" count="1" type="stmt"/>
369
+ <line num="19" count="72" type="stmt"/>
370
+ <line num="20" count="72" type="stmt"/>
371
+ <line num="21" count="72" type="stmt"/>
372
+ <line num="23" count="72" type="stmt"/>
373
+ <line num="24" count="34" type="stmt"/>
374
+ <line num="25" count="34" type="stmt"/>
375
+ <line num="26" count="34" type="stmt"/>
376
+ <line num="28" count="34" type="cond" truecount="3" falsecount="1"/>
377
+ <line num="29" count="34" type="stmt"/>
378
+ <line num="30" count="34" type="stmt"/>
379
+ <line num="32" count="34" type="stmt"/>
380
+ <line num="36" count="34" type="stmt"/>
381
+ <line num="38" count="34" type="stmt"/>
382
+ <line num="39" count="34" type="cond" truecount="1" falsecount="1"/>
383
+ <line num="40" count="34" type="stmt"/>
384
+ <line num="43" count="34" type="stmt"/>
385
+ <line num="46" count="72" type="cond" truecount="1" falsecount="1"/>
386
+ <line num="48" count="72" type="stmt"/>
387
+ </file>
388
+ </package>
389
+ <package name="Components.ToolTip">
390
+ <metrics statements="1" coveredstatements="1" conditionals="10" coveredconditionals="8" methods="1" coveredmethods="1"/>
391
+ <file name="ToolTip.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/ToolTip/ToolTip.tsx">
392
+ <metrics statements="1" coveredstatements="1" conditionals="10" coveredconditionals="8" methods="1" coveredmethods="1"/>
393
+ <line num="31" count="72" type="stmt"/>
394
+ </file>
395
+ </package>
396
+ <package name="Utils">
397
+ <metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
398
+ <file name="functions.ts" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Utils/functions.ts">
399
+ <metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
400
+ <line num="2" count="225" type="stmt"/>
401
+ <line num="5" count="225" type="stmt"/>
402
+ </file>
403
+ </package>
404
+ </project>
405
+ </coverage>