pixelize-design-library 2.2.197 → 2.3.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.
- package/.claude/settings.local.json +24 -0
- package/coverage/clover.xml +638 -0
- package/coverage/coverage-final.json +20 -0
- package/coverage/lcov-report/Table/CompactSelect.tsx.html +379 -0
- package/coverage/lcov-report/Table/Components/ActiveFilters.tsx.html +514 -0
- package/coverage/lcov-report/Table/Components/HeaderActions.tsx.html +373 -0
- package/coverage/lcov-report/Table/Components/Pagination.tsx.html +574 -0
- package/coverage/lcov-report/Table/Components/TableActions.tsx.html +574 -0
- package/coverage/lcov-report/Table/Components/TableBody.tsx.html +1027 -0
- package/coverage/lcov-report/Table/Components/TableFilters.tsx.html +397 -0
- package/coverage/lcov-report/Table/Components/TableHeader.tsx.html +1060 -0
- package/coverage/lcov-report/Table/Components/TableLoading.tsx.html +361 -0
- package/coverage/lcov-report/Table/Components/TableSearch.tsx.html +337 -0
- package/coverage/lcov-report/Table/Components/index.html +266 -0
- package/coverage/lcov-report/Table/Components/useDebounce.ts.html +178 -0
- package/coverage/lcov-report/Table/Components/useTable.ts.html +778 -0
- package/coverage/lcov-report/Table/LeftFilterPane.tsx.html +1810 -0
- package/coverage/lcov-report/Table/SelectOperationControls.tsx.html +178 -0
- package/coverage/lcov-report/Table/Table.tsx.html +1567 -0
- package/coverage/lcov-report/Table/TableProps.tsx.html +658 -0
- package/coverage/lcov-report/Table/TableSettings/ManageColumns.tsx.html +619 -0
- package/coverage/lcov-report/Table/TableSettings/TableFilters.tsx.html +229 -0
- package/coverage/lcov-report/Table/TableSettings/TableSettings.tsx.html +532 -0
- package/coverage/lcov-report/Table/TableSettings/index.html +146 -0
- package/coverage/lcov-report/Table/TableToDo.tsx.html +973 -0
- package/coverage/lcov-report/Table/TextOperationControls.tsx.html +271 -0
- package/coverage/lcov-report/Table/filterTypes.ts.html +97 -0
- package/coverage/lcov-report/Table/index.html +176 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +146 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +210 -0
- package/coverage/lcov.info +1836 -0
- package/dist/App.d.ts +4 -0
- package/dist/App.js +131 -0
- package/dist/Assets/defaultLogo.tsx +31 -0
- package/dist/Components/Button/Button.styles.js +44 -3
- package/dist/Components/Button/ButtonProps.d.ts +1 -1
- package/dist/Components/ButtonGroupIcon/ButtonGoupIconProps.d.ts +2 -2
- package/dist/Components/ButtonGroupIcon/ButtonGroupIcon.js +50 -38
- package/dist/Components/Checkbox/Checkbox.js +2 -2
- package/dist/Components/Checkbox/Checkbox.styles.js +2 -0
- package/dist/Components/Common/FormLabel.d.ts +2 -1
- package/dist/Components/Common/FormLabel.js +8 -9
- package/dist/Components/Common/fieldStyles.d.ts +22 -0
- package/dist/Components/Common/fieldStyles.js +42 -0
- package/dist/Components/DatePicker/CalendarPanel.d.ts +2 -0
- package/dist/Components/DatePicker/CalendarPanel.js +104 -65
- package/dist/Components/DatePicker/RangeDatePicker.js +37 -16
- package/dist/Components/DatePicker/SingleDatePicker.js +16 -16
- package/dist/Components/DatePicker/TimePicker.js +4 -4
- package/dist/Components/Input/Input/Input.d.ts +1 -1
- package/dist/Components/Input/Input/Input.js +5 -4
- package/dist/Components/Input/Input/InputProps.d.ts +2 -0
- package/dist/Components/Input/TextInput.styles.js +2 -1
- package/dist/Components/InputTextArea/InputTextArea.style.js +2 -1
- package/dist/Components/KanbanBoard/KanbanBoard.js +5 -5
- package/dist/Components/KanbanBoard/MeasuredItem.js +21 -8
- package/dist/Components/MultiSelect/MultiSelect.js +11 -12
- package/dist/Components/NavigationBar/NavigationBar.d.ts +1 -1
- package/dist/Components/NavigationBar/NavigationBar.js +54 -27
- package/dist/Components/NavigationBar/NavigationBarProps.d.ts +1 -0
- package/dist/Components/NoteTextArea/NoteTextArea.js +44 -40
- package/dist/Components/NumberInput/NumberInput.styles.js +2 -1
- package/dist/Components/PinInput/PinInput.d.ts +1 -1
- package/dist/Components/PinInput/PinInput.js +3 -2
- package/dist/Components/PinInput/PinInputProps.d.ts +4 -0
- package/dist/Components/RadioButton/RadioButton.js +1 -1
- package/dist/Components/SearchSelect/SearchSelect.d.ts +1 -1
- package/dist/Components/SearchSelect/SearchSelect.js +3 -3
- package/dist/Components/SearchSelect/SearchSelectProps.d.ts +2 -0
- package/dist/Components/Select/Select.styles.js +2 -1
- package/dist/Components/SelectSearch/SelectSearch.js +7 -4
- package/dist/Components/SideBar/SecondaryBar.js +20 -18
- package/dist/Components/SideBar/SideBar.d.ts +1 -1
- package/dist/Components/SideBar/SideBar.js +58 -43
- package/dist/Components/SideBar/SideBarProps.d.ts +14 -3
- package/dist/Components/SideBar/components/MenuItemBox.js +28 -24
- package/dist/Components/SideBar/components/MenuItems.js +16 -2
- package/dist/Components/SideBar/components/MenuPopoverContent.js +16 -16
- package/dist/Components/SideBar/components/OtherApps.js +16 -14
- package/dist/Components/Table/Components/TableBody.d.ts +5 -1
- package/dist/Components/Table/Components/TableBody.js +133 -31
- package/dist/Components/Table/Components/TableGroupRow.d.ts +15 -0
- package/dist/Components/Table/Components/TableGroupRow.js +27 -0
- package/dist/Components/Table/Components/TableHeader.js +23 -9
- package/dist/Components/Table/Table.d.ts +1 -1
- package/dist/Components/Table/Table.js +119 -38
- package/dist/Components/Table/TableProps.d.ts +34 -2
- package/dist/Components/Table/filters/ActiveFilters.d.ts +9 -0
- package/dist/Components/Table/filters/ActiveFilters.js +132 -0
- package/dist/Components/Table/filters/CompactSelect.d.ts +15 -0
- package/dist/Components/Table/filters/CompactSelect.js +69 -0
- package/dist/Components/Table/filters/LeftFilterPane.d.ts +36 -0
- package/dist/Components/Table/filters/LeftFilterPane.js +273 -0
- package/dist/Components/Table/filters/SelectOperationControls.d.ts +8 -0
- package/dist/Components/Table/filters/SelectOperationControls.js +15 -0
- package/dist/Components/Table/filters/TableFilters.d.ts +7 -0
- package/dist/Components/Table/filters/TableFilters.js +89 -0
- package/dist/Components/Table/filters/TextOperationControls.d.ts +12 -0
- package/dist/Components/Table/filters/TextOperationControls.js +29 -0
- package/dist/Components/Table/hooks/useDebounce.d.ts +2 -0
- package/dist/Components/Table/hooks/useDebounce.js +28 -0
- package/dist/Components/Table/hooks/useTable.d.ts +47 -0
- package/dist/Components/Table/hooks/useTable.js +219 -0
- package/dist/Components/Table/settings/ManageColumns.d.ts +12 -0
- package/dist/Components/Table/settings/ManageColumns.js +166 -0
- package/dist/Components/Table/settings/ManageColumns.test.d.ts +1 -0
- package/dist/Components/Table/settings/ManageColumns.test.js +146 -0
- package/dist/Components/Table/settings/TableSettings.d.ts +10 -0
- package/dist/Components/Table/settings/TableSettings.js +141 -0
- package/dist/Layout.d.ts +3 -0
- package/dist/Layout.js +292 -0
- package/dist/Pages/TInput.d.ts +3 -0
- package/dist/Pages/TInput.js +56 -0
- package/dist/Pages/accordion.d.ts +3 -0
- package/dist/Pages/accordion.js +42 -0
- package/dist/Pages/alertdialog.d.ts +3 -0
- package/dist/Pages/alertdialog.js +54 -0
- package/dist/Pages/button.d.ts +3 -0
- package/dist/Pages/button.js +46 -0
- package/dist/Pages/card.d.ts +3 -0
- package/dist/Pages/card.js +117 -0
- package/dist/Pages/chart.d.ts +4 -0
- package/dist/Pages/chart.js +40 -0
- package/dist/Pages/checkbox.d.ts +3 -0
- package/dist/Pages/checkbox.js +12 -0
- package/dist/Pages/contactForm.d.ts +3 -0
- package/dist/Pages/contactForm.js +16 -0
- package/dist/Pages/datePick.d.ts +3 -0
- package/dist/Pages/datePick.js +88 -0
- package/dist/Pages/drawer.d.ts +3 -0
- package/dist/Pages/drawer.js +58 -0
- package/dist/Pages/dropdown.d.ts +3 -0
- package/dist/Pages/dropdown.js +24 -0
- package/dist/Pages/editor.d.ts +3 -0
- package/dist/Pages/editor.js +14 -0
- package/dist/Pages/feedback.d.ts +2 -0
- package/dist/Pages/feedback.js +15 -0
- package/dist/Pages/fileUpload.d.ts +2 -0
- package/dist/Pages/fileUpload.js +82 -0
- package/dist/Pages/input.d.ts +3 -0
- package/dist/Pages/input.js +92 -0
- package/dist/Pages/kanbanboard.d.ts +3 -0
- package/dist/Pages/kanbanboard.js +224 -0
- package/dist/Pages/modal.d.ts +3 -0
- package/dist/Pages/modal.js +65 -0
- package/dist/Pages/multiSelect.d.ts +3 -0
- package/dist/Pages/multiSelect.js +55 -0
- package/dist/Pages/noteArea.d.ts +3 -0
- package/dist/Pages/noteArea.js +59 -0
- package/dist/Pages/notification.d.ts +3 -0
- package/dist/Pages/notification.js +25 -0
- package/dist/Pages/numberInput.d.ts +3 -0
- package/dist/Pages/numberInput.js +49 -0
- package/dist/Pages/photoViewer.d.ts +3 -0
- package/dist/Pages/photoViewer.js +12 -0
- package/dist/Pages/pinInputs.d.ts +3 -0
- package/dist/Pages/pinInputs.js +12 -0
- package/dist/Pages/productCaard.d.ts +3 -0
- package/dist/Pages/productCaard.js +311 -0
- package/dist/Pages/productDetailCard.d.ts +3 -0
- package/dist/Pages/productDetailCard.js +78 -0
- package/dist/Pages/productFilter.d.ts +3 -0
- package/dist/Pages/productFilter.js +202 -0
- package/dist/Pages/progressbar.d.ts +3 -0
- package/dist/Pages/progressbar.js +12 -0
- package/dist/Pages/radioButton.d.ts +3 -0
- package/dist/Pages/radioButton.js +54 -0
- package/dist/Pages/search.d.ts +3 -0
- package/dist/Pages/search.js +54 -0
- package/dist/Pages/searchSelect.d.ts +3 -0
- package/dist/Pages/searchSelect.js +133 -0
- package/dist/Pages/select.d.ts +3 -0
- package/dist/Pages/select.js +53 -0
- package/dist/Pages/selectSearch.d.ts +3 -0
- package/dist/Pages/selectSearch.js +103 -0
- package/dist/Pages/skeleton.d.ts +3 -0
- package/dist/Pages/skeleton.js +22 -0
- package/dist/Pages/switch.d.ts +3 -0
- package/dist/Pages/switch.js +50 -0
- package/dist/Pages/table.d.ts +3 -0
- package/dist/Pages/table.js +174 -0
- package/dist/Pages/textArea.d.ts +3 -0
- package/dist/Pages/textArea.js +15 -0
- package/dist/Pages/timeline.d.ts +3 -0
- package/dist/Pages/timeline.js +74 -0
- package/dist/Pages/tooltip.d.ts +3 -0
- package/dist/Pages/tooltip.js +12 -0
- package/dist/Pages/toster.d.ts +3 -0
- package/dist/Pages/toster.js +68 -0
- package/dist/Pages/verifyEmail.d.ts +3 -0
- package/dist/Pages/verifyEmail.js +18 -0
- package/dist/Theme/Dark/palette.d.ts +370 -0
- package/dist/Theme/Dark/palette.js +372 -0
- package/dist/Theme/Default/palette.d.ts +4 -0
- package/dist/Theme/Default/palette.js +3 -0
- package/dist/Theme/Emerald/palette.d.ts +4 -0
- package/dist/Theme/Emerald/palette.js +2 -1
- package/dist/Theme/Meadow/palette.d.ts +4 -0
- package/dist/Theme/Meadow/palette.js +2 -1
- package/dist/Theme/Radiant/palette.d.ts +4 -0
- package/dist/Theme/Radiant/palette.js +2 -1
- package/dist/Theme/Rosewood/palette.d.ts +4 -0
- package/dist/Theme/Rosewood/palette.js +2 -1
- package/dist/Theme/Skyline/palette.d.ts +4 -0
- package/dist/Theme/Skyline/palette.js +2 -1
- package/dist/Theme/Slate/palette.d.ts +4 -0
- package/dist/Theme/Slate/palette.js +2 -1
- package/dist/Theme/themeProps.d.ts +4 -0
- package/dist/Utils/table.d.ts +21 -0
- package/dist/Utils/table.js +98 -14
- package/dist/bootstrap.d.ts +1 -0
- package/dist/bootstrap.js +14 -0
- package/dist/components-v2/AlertDialog/AlertDialog.d.ts +23 -0
- package/dist/components-v2/AlertDialog/AlertDialog.js +98 -0
- package/dist/components-v2/Breadcrumbs/Breadcrumbs.d.ts +14 -0
- package/dist/components-v2/Breadcrumbs/Breadcrumbs.js +66 -0
- package/dist/components-v2/Charts/AreaChart.d.ts +23 -0
- package/dist/components-v2/Charts/AreaChart.js +63 -0
- package/dist/components-v2/Charts/BarChart.d.ts +25 -0
- package/dist/components-v2/Charts/BarChart.js +57 -0
- package/dist/components-v2/Charts/LineChart.d.ts +23 -0
- package/dist/components-v2/Charts/LineChart.js +55 -0
- package/dist/components-v2/Charts/PieChart.d.ts +15 -0
- package/dist/components-v2/Charts/PieChart.js +54 -0
- package/dist/components-v2/Charts/PolarChart.d.ts +14 -0
- package/dist/components-v2/Charts/PolarChart.js +54 -0
- package/dist/components-v2/Charts/chartOptions.d.ts +7 -0
- package/dist/components-v2/Charts/chartOptions.js +41 -0
- package/dist/components-v2/Charts/useChartTheme.d.ts +22 -0
- package/dist/components-v2/Charts/useChartTheme.js +106 -0
- package/dist/components-v2/ContactForm/ContactForm.d.ts +25 -0
- package/dist/components-v2/ContactForm/ContactForm.js +116 -0
- package/dist/components-v2/DatePicker/Calendar.d.ts +19 -0
- package/dist/components-v2/DatePicker/Calendar.js +212 -0
- package/dist/components-v2/DatePicker/DatePicker.d.ts +46 -0
- package/dist/components-v2/DatePicker/DatePicker.js +189 -0
- package/dist/components-v2/DatePicker/TimePicker.d.ts +12 -0
- package/dist/components-v2/DatePicker/TimePicker.js +105 -0
- package/dist/components-v2/DatePicker/utils.d.ts +31 -0
- package/dist/components-v2/DatePicker/utils.js +109 -0
- package/dist/components-v2/Drawer/Drawer.d.ts +27 -0
- package/dist/components-v2/Drawer/Drawer.js +132 -0
- package/dist/components-v2/FeedbackForm/FeedbackForm.d.ts +26 -0
- package/dist/components-v2/FeedbackForm/FeedbackForm.js +112 -0
- package/dist/components-v2/FileUploader/FileUploader.d.ts +28 -0
- package/dist/components-v2/FileUploader/FileUploader.js +127 -0
- package/dist/components-v2/Input/TextInput.d.ts +41 -0
- package/dist/components-v2/Input/TextInput.js +169 -0
- package/dist/components-v2/KanbanBoard/KanbanBoard.d.ts +39 -0
- package/dist/components-v2/KanbanBoard/KanbanBoard.js +101 -0
- package/dist/components-v2/Layout/AppLayout.d.ts +22 -0
- package/dist/components-v2/Layout/AppLayout.js +53 -0
- package/dist/components-v2/Loading/Loading.d.ts +19 -0
- package/dist/components-v2/Loading/Loading.js +55 -0
- package/dist/components-v2/Modal/Modal.d.ts +30 -0
- package/dist/components-v2/Modal/Modal.js +82 -0
- package/dist/components-v2/NavigationBar/NavigationBar.d.ts +47 -0
- package/dist/components-v2/NavigationBar/NavigationBar.js +148 -0
- package/dist/components-v2/Notification/Notification.d.ts +22 -0
- package/dist/components-v2/Notification/Notification.js +113 -0
- package/dist/components-v2/NumberInput/NumberInput.d.ts +37 -0
- package/dist/components-v2/NumberInput/NumberInput.js +210 -0
- package/dist/components-v2/PinInput/PinInput.d.ts +26 -0
- package/dist/components-v2/PinInput/PinInput.js +138 -0
- package/dist/components-v2/ProfilePhotoViewer/ProfilePhotoViewer.d.ts +18 -0
- package/dist/components-v2/ProfilePhotoViewer/ProfilePhotoViewer.js +91 -0
- package/dist/components-v2/Select/Select.d.ts +41 -0
- package/dist/components-v2/Select/Select.js +284 -0
- package/dist/components-v2/Sidebar/Sidebar.d.ts +41 -0
- package/dist/components-v2/Sidebar/Sidebar.js +182 -0
- package/dist/components-v2/Slider/Slider.d.ts +18 -0
- package/dist/components-v2/Slider/Slider.js +101 -0
- package/dist/components-v2/Table/Table.d.ts +7 -0
- package/dist/components-v2/Table/Table.js +172 -0
- package/dist/components-v2/Table/TableProps.d.ts +139 -0
- package/dist/components-v2/Table/TableProps.js +9 -0
- package/dist/components-v2/Table/components/ActiveFilters.d.ts +10 -0
- package/dist/components-v2/Table/components/ActiveFilters.js +70 -0
- package/dist/components-v2/Table/components/BulkActionBar.d.ts +11 -0
- package/dist/components-v2/Table/components/BulkActionBar.js +92 -0
- package/dist/components-v2/Table/components/ColumnResizeHandle.d.ts +7 -0
- package/dist/components-v2/Table/components/ColumnResizeHandle.js +41 -0
- package/dist/components-v2/Table/components/Pagination.d.ts +11 -0
- package/dist/components-v2/Table/components/Pagination.js +92 -0
- package/dist/components-v2/Table/components/TableBody.d.ts +23 -0
- package/dist/components-v2/Table/components/TableBody.js +69 -0
- package/dist/components-v2/Table/components/TableCell.d.ts +14 -0
- package/dist/components-v2/Table/components/TableCell.js +63 -0
- package/dist/components-v2/Table/components/TableEmptyState.d.ts +12 -0
- package/dist/components-v2/Table/components/TableEmptyState.js +55 -0
- package/dist/components-v2/Table/components/TableErrorState.d.ts +6 -0
- package/dist/components-v2/Table/components/TableErrorState.js +52 -0
- package/dist/components-v2/Table/components/TableHeader.d.ts +21 -0
- package/dist/components-v2/Table/components/TableHeader.js +94 -0
- package/dist/components-v2/Table/components/TableRow.d.ts +20 -0
- package/dist/components-v2/Table/components/TableRow.js +64 -0
- package/dist/components-v2/Table/components/TableSearch.d.ts +8 -0
- package/dist/components-v2/Table/components/TableSearch.js +47 -0
- package/dist/components-v2/Table/filters/FilterChips.d.ts +6 -0
- package/dist/components-v2/Table/filters/FilterChips.js +9 -0
- package/dist/components-v2/Table/filters/LeftFilterPane.d.ts +17 -0
- package/dist/components-v2/Table/filters/LeftFilterPane.js +105 -0
- package/dist/components-v2/Table/filters/TableFilters.d.ts +12 -0
- package/dist/components-v2/Table/filters/TableFilters.js +127 -0
- package/dist/components-v2/Table/hooks/useColumnResize.d.ts +15 -0
- package/dist/components-v2/Table/hooks/useColumnResize.js +104 -0
- package/dist/components-v2/Table/hooks/useTable.d.ts +58 -0
- package/dist/components-v2/Table/hooks/useTable.js +254 -0
- package/dist/components-v2/Table/hooks/useTableKeyboard.d.ts +25 -0
- package/dist/components-v2/Table/hooks/useTableKeyboard.js +112 -0
- package/dist/components-v2/Table/hooks/useVirtualScroll.d.ts +29 -0
- package/dist/components-v2/Table/hooks/useVirtualScroll.js +83 -0
- package/dist/components-v2/Table/settings/ManageColumns.d.ts +12 -0
- package/dist/components-v2/Table/settings/ManageColumns.js +59 -0
- package/dist/components-v2/Table/settings/TableSettings.d.ts +12 -0
- package/dist/components-v2/Table/settings/TableSettings.js +57 -0
- package/dist/components-v2/Table/utils/filterUtils.d.ts +7 -0
- package/dist/components-v2/Table/utils/filterUtils.js +149 -0
- package/dist/components-v2/Table/utils/sortUtils.d.ts +6 -0
- package/dist/components-v2/Table/utils/sortUtils.js +65 -0
- package/dist/components-v2/Tag/Tag.d.ts +15 -0
- package/dist/components-v2/Tag/Tag.js +87 -0
- package/dist/components-v2/Timeline/Timeline.d.ts +18 -0
- package/dist/components-v2/Timeline/Timeline.js +76 -0
- package/dist/components-v2/Toaster/Toaster.d.ts +61 -0
- package/dist/components-v2/Toaster/Toaster.js +63 -0
- package/dist/components-v2/Toggle/Toggle.d.ts +28 -0
- package/dist/components-v2/Toggle/Toggle.js +90 -0
- package/dist/components-v2/ui/accordion.d.ts +12 -0
- package/dist/components-v2/ui/accordion.js +104 -0
- package/dist/components-v2/ui/alert.d.ts +18 -0
- package/dist/components-v2/ui/alert.js +99 -0
- package/dist/components-v2/ui/avatar.d.ts +12 -0
- package/dist/components-v2/ui/avatar.js +80 -0
- package/dist/components-v2/ui/badge.d.ts +10 -0
- package/dist/components-v2/ui/badge.js +76 -0
- package/dist/components-v2/ui/button.d.ts +18 -0
- package/dist/components-v2/ui/button.js +97 -0
- package/dist/components-v2/ui/checkbox.d.ts +15 -0
- package/dist/components-v2/ui/checkbox.js +86 -0
- package/dist/components-v2/ui/dialog.d.ts +30 -0
- package/dist/components-v2/ui/dialog.js +115 -0
- package/dist/components-v2/ui/dropdown-menu.d.ts +26 -0
- package/dist/components-v2/ui/dropdown-menu.js +121 -0
- package/dist/components-v2/ui/field.d.ts +32 -0
- package/dist/components-v2/ui/field.js +62 -0
- package/dist/components-v2/ui/form-field.d.ts +25 -0
- package/dist/components-v2/ui/form-field.js +96 -0
- package/dist/components-v2/ui/input.d.ts +9 -0
- package/dist/components-v2/ui/input.js +73 -0
- package/dist/components-v2/ui/label.d.ts +10 -0
- package/dist/components-v2/ui/label.js +70 -0
- package/dist/components-v2/ui/popover.d.ts +9 -0
- package/dist/components-v2/ui/popover.js +60 -0
- package/dist/components-v2/ui/progress.d.ts +12 -0
- package/dist/components-v2/ui/progress.js +75 -0
- package/dist/components-v2/ui/radio-group.d.ts +17 -0
- package/dist/components-v2/ui/radio-group.js +91 -0
- package/dist/components-v2/ui/select.d.ts +24 -0
- package/dist/components-v2/ui/select.js +122 -0
- package/dist/components-v2/ui/separator.d.ts +5 -0
- package/dist/components-v2/ui/separator.js +55 -0
- package/dist/components-v2/ui/skeleton.d.ts +9 -0
- package/dist/components-v2/ui/skeleton.js +68 -0
- package/dist/components-v2/ui/spinner.d.ts +16 -0
- package/dist/components-v2/ui/spinner.js +64 -0
- package/dist/components-v2/ui/switch.d.ts +10 -0
- package/dist/components-v2/ui/switch.js +81 -0
- package/dist/components-v2/ui/tabs.d.ts +13 -0
- package/dist/components-v2/ui/tabs.js +95 -0
- package/dist/components-v2/ui/textarea.d.ts +10 -0
- package/dist/components-v2/ui/textarea.js +96 -0
- package/dist/components-v2/ui/tooltip.d.ts +17 -0
- package/dist/components-v2/ui/tooltip.js +75 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/lib/utils.js +8 -0
- package/dist/theme-v2/ThemeProvider.d.ts +19 -0
- package/dist/theme-v2/ThemeProvider.js +149 -0
- package/dist/theme-v2/dark.css +47 -0
- package/dist/theme-v2/tokens.css +72 -0
- package/package.json +2 -2
|
@@ -0,0 +1,638 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<coverage generated="1777115489609" clover="3.2.0">
|
|
3
|
+
<project timestamp="1777115489609" name="All files">
|
|
4
|
+
<metrics statements="566" coveredstatements="510" conditionals="641" coveredconditionals="477" methods="229" coveredmethods="189" elements="1436" coveredelements="1176" complexity="0" loc="566" ncloc="566" packages="3" files="19" classes="19"/>
|
|
5
|
+
<package name="Table">
|
|
6
|
+
<metrics statements="205" coveredstatements="181" conditionals="305" coveredconditionals="239" methods="85" coveredmethods="67"/>
|
|
7
|
+
<file name="CompactSelect.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/CompactSelect.tsx">
|
|
8
|
+
<metrics statements="15" coveredstatements="14" conditionals="19" coveredconditionals="14" methods="9" coveredmethods="8"/>
|
|
9
|
+
<line num="16" count="3" type="cond" truecount="3" falsecount="0"/>
|
|
10
|
+
<line num="17" count="4" type="stmt"/>
|
|
11
|
+
<line num="18" count="4" type="stmt"/>
|
|
12
|
+
<line num="19" count="4" type="stmt"/>
|
|
13
|
+
<line num="20" count="3" type="stmt"/>
|
|
14
|
+
<line num="21" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
15
|
+
<line num="22" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
16
|
+
<line num="25" count="4" type="stmt"/>
|
|
17
|
+
<line num="26" count="0" type="stmt"/>
|
|
18
|
+
<line num="42" count="1" type="stmt"/>
|
|
19
|
+
<line num="63" count="1" type="stmt"/>
|
|
20
|
+
<line num="68" count="7" type="stmt"/>
|
|
21
|
+
<line num="76" count="1" type="stmt"/>
|
|
22
|
+
<line num="77" count="1" type="stmt"/>
|
|
23
|
+
<line num="78" count="1" type="stmt"/>
|
|
24
|
+
</file>
|
|
25
|
+
<file name="LeftFilterPane.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/LeftFilterPane.tsx">
|
|
26
|
+
<metrics statements="120" coveredstatements="99" conditionals="154" coveredconditionals="103" methods="55" coveredmethods="40"/>
|
|
27
|
+
<line num="82" count="2" type="stmt"/>
|
|
28
|
+
<line num="85" count="25" type="cond" truecount="1" falsecount="1"/>
|
|
29
|
+
<line num="86" count="25" type="cond" truecount="2" falsecount="0"/>
|
|
30
|
+
<line num="88" count="4" type="stmt"/>
|
|
31
|
+
<line num="89" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
32
|
+
<line num="91" count="4" type="stmt"/>
|
|
33
|
+
<line num="92" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
34
|
+
<line num="93" count="4" type="stmt"/>
|
|
35
|
+
<line num="96" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
36
|
+
<line num="97" count="0" type="stmt"/>
|
|
37
|
+
<line num="100" count="4" type="stmt"/>
|
|
38
|
+
<line num="111" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
39
|
+
<line num="112" count="25" type="stmt"/>
|
|
40
|
+
<line num="114" count="25" type="stmt"/>
|
|
41
|
+
<line num="126" count="25" type="cond" truecount="2" falsecount="0"/>
|
|
42
|
+
<line num="128" count="4" type="stmt"/>
|
|
43
|
+
<line num="149" count="2" type="stmt"/>
|
|
44
|
+
<line num="150" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
45
|
+
<line num="152" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
46
|
+
<line num="153" count="0" type="stmt"/>
|
|
47
|
+
<line num="157" count="0" type="stmt"/>
|
|
48
|
+
<line num="162" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
49
|
+
<line num="163" count="1" type="stmt"/>
|
|
50
|
+
<line num="171" count="0" type="stmt"/>
|
|
51
|
+
<line num="172" count="0" type="stmt"/>
|
|
52
|
+
<line num="177" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
53
|
+
<line num="178" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
54
|
+
<line num="179" count="0" type="cond" truecount="0" falsecount="3"/>
|
|
55
|
+
<line num="180" count="0" type="stmt"/>
|
|
56
|
+
<line num="184" count="0" type="stmt"/>
|
|
57
|
+
<line num="196" count="0" type="stmt"/>
|
|
58
|
+
<line num="203" count="0" type="stmt"/>
|
|
59
|
+
<line num="215" count="2" type="stmt"/>
|
|
60
|
+
<line num="223" count="25" type="cond" truecount="2" falsecount="0"/>
|
|
61
|
+
<line num="224" count="3" type="stmt"/>
|
|
62
|
+
<line num="225" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
63
|
+
<line num="228" count="3" type="stmt"/>
|
|
64
|
+
<line num="233" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
65
|
+
<line num="234" count="1" type="stmt"/>
|
|
66
|
+
<line num="241" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
67
|
+
<line num="248" count="0" type="stmt"/>
|
|
68
|
+
<line num="262" count="22" type="stmt"/>
|
|
69
|
+
<line num="265" count="22" type="stmt"/>
|
|
70
|
+
<line num="266" count="22" type="cond" truecount="2" falsecount="0"/>
|
|
71
|
+
<line num="269" count="22" type="stmt"/>
|
|
72
|
+
<line num="270" count="22" type="stmt"/>
|
|
73
|
+
<line num="272" count="22" type="stmt"/>
|
|
74
|
+
<line num="281" count="2" type="stmt"/>
|
|
75
|
+
<line num="295" count="1" type="stmt"/>
|
|
76
|
+
<line num="308" count="0" type="stmt"/>
|
|
77
|
+
<line num="309" count="0" type="stmt"/>
|
|
78
|
+
<line num="316" count="0" type="stmt"/>
|
|
79
|
+
<line num="327" count="0" type="stmt"/>
|
|
80
|
+
<line num="341" count="2" type="stmt"/>
|
|
81
|
+
<line num="352" count="56" type="stmt"/>
|
|
82
|
+
<line num="355" count="56" type="stmt"/>
|
|
83
|
+
<line num="356" count="56" type="stmt"/>
|
|
84
|
+
<line num="358" count="56" type="stmt"/>
|
|
85
|
+
<line num="359" count="24" type="cond" truecount="2" falsecount="0"/>
|
|
86
|
+
<line num="360" count="24" type="cond" truecount="2" falsecount="2"/>
|
|
87
|
+
<line num="361" count="0" type="stmt"/>
|
|
88
|
+
<line num="365" count="56" type="cond" truecount="2" falsecount="0"/>
|
|
89
|
+
<line num="367" count="56" type="stmt"/>
|
|
90
|
+
<line num="368" count="5" type="cond" truecount="1" falsecount="1"/>
|
|
91
|
+
<line num="371" count="56" type="stmt"/>
|
|
92
|
+
<line num="372" count="1" type="stmt"/>
|
|
93
|
+
<line num="375" count="56" type="stmt"/>
|
|
94
|
+
<line num="376" count="1" type="stmt"/>
|
|
95
|
+
<line num="377" count="1" type="stmt"/>
|
|
96
|
+
<line num="378" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
97
|
+
<line num="381" count="1" type="stmt"/>
|
|
98
|
+
<line num="382" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
99
|
+
<line num="383" count="1" type="stmt"/>
|
|
100
|
+
<line num="384" count="1" type="stmt"/>
|
|
101
|
+
<line num="385" count="1" type="stmt"/>
|
|
102
|
+
<line num="389" count="56" type="stmt"/>
|
|
103
|
+
<line num="390" count="0" type="stmt"/>
|
|
104
|
+
<line num="392" count="56" type="stmt"/>
|
|
105
|
+
<line num="393" count="1" type="stmt"/>
|
|
106
|
+
<line num="395" count="56" type="stmt"/>
|
|
107
|
+
<line num="396" count="2" type="stmt"/>
|
|
108
|
+
<line num="397" count="2" type="stmt"/>
|
|
109
|
+
<line num="398" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
110
|
+
<line num="401" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
111
|
+
<line num="402" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
112
|
+
<line num="403" count="2" type="cond" truecount="3" falsecount="1"/>
|
|
113
|
+
<line num="404" count="2" type="stmt"/>
|
|
114
|
+
<line num="406" count="0" type="stmt"/>
|
|
115
|
+
<line num="410" count="56" type="stmt"/>
|
|
116
|
+
<line num="413" count="8" type="cond" truecount="2" falsecount="2"/>
|
|
117
|
+
<line num="417" count="56" type="stmt"/>
|
|
118
|
+
<line num="418" count="40" type="cond" truecount="2" falsecount="0"/>
|
|
119
|
+
<line num="419" count="1" type="stmt"/>
|
|
120
|
+
<line num="420" count="1" type="stmt"/>
|
|
121
|
+
<line num="421" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
122
|
+
<line num="422" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
123
|
+
<line num="425" count="56" type="stmt"/>
|
|
124
|
+
<line num="426" count="53" type="stmt"/>
|
|
125
|
+
<line num="427" count="9" type="cond" truecount="5" falsecount="0"/>
|
|
126
|
+
<line num="428" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
127
|
+
<line num="432" count="56" type="stmt"/>
|
|
128
|
+
<line num="434" count="56" type="stmt"/>
|
|
129
|
+
<line num="435" count="1" type="stmt"/>
|
|
130
|
+
<line num="436" count="1" type="stmt"/>
|
|
131
|
+
<line num="437" count="1" type="stmt"/>
|
|
132
|
+
<line num="438" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
133
|
+
<line num="441" count="56" type="stmt"/>
|
|
134
|
+
<line num="443" count="56" type="stmt"/>
|
|
135
|
+
<line num="444" count="56" type="cond" truecount="2" falsecount="0"/>
|
|
136
|
+
<line num="445" count="36" type="stmt"/>
|
|
137
|
+
<line num="452" count="20" type="cond" truecount="2" falsecount="0"/>
|
|
138
|
+
<line num="453" count="5" type="stmt"/>
|
|
139
|
+
<line num="456" count="10" type="cond" truecount="1" falsecount="1"/>
|
|
140
|
+
<line num="459" count="10" type="stmt"/>
|
|
141
|
+
<line num="475" count="15" type="stmt"/>
|
|
142
|
+
<line num="476" count="15" type="stmt"/>
|
|
143
|
+
<line num="487" count="56" type="stmt"/>
|
|
144
|
+
<line num="511" count="1" type="stmt"/>
|
|
145
|
+
<line num="530" count="1" type="stmt"/>
|
|
146
|
+
<line num="540" count="0" type="stmt"/>
|
|
147
|
+
</file>
|
|
148
|
+
<file name="SelectOperationControls.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/SelectOperationControls.tsx">
|
|
149
|
+
<metrics statements="2" coveredstatements="2" conditionals="3" coveredconditionals="3" methods="2" coveredmethods="2"/>
|
|
150
|
+
<line num="17" count="1" type="stmt"/>
|
|
151
|
+
<line num="22" count="1" type="stmt"/>
|
|
152
|
+
</file>
|
|
153
|
+
<file name="Table.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Table.tsx">
|
|
154
|
+
<metrics statements="61" coveredstatements="59" conditionals="122" coveredconditionals="112" methods="14" coveredmethods="12"/>
|
|
155
|
+
<line num="25" count="1" type="stmt"/>
|
|
156
|
+
<line num="69" count="41" type="stmt"/>
|
|
157
|
+
<line num="70" count="41" type="stmt"/>
|
|
158
|
+
<line num="71" count="41" type="stmt"/>
|
|
159
|
+
<line num="72" count="41" type="stmt"/>
|
|
160
|
+
<line num="73" count="41" type="cond" truecount="2" falsecount="0"/>
|
|
161
|
+
<line num="74" count="41" type="stmt"/>
|
|
162
|
+
<line num="76" count="41" type="stmt"/>
|
|
163
|
+
<line num="78" count="41" type="stmt"/>
|
|
164
|
+
<line num="87" count="41" type="stmt"/>
|
|
165
|
+
<line num="96" count="41" type="stmt"/>
|
|
166
|
+
<line num="97" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
167
|
+
<line num="100" count="41" type="stmt"/>
|
|
168
|
+
<line num="101" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
169
|
+
<line num="102" count="1" type="stmt"/>
|
|
170
|
+
<line num="104" count="17" type="stmt"/>
|
|
171
|
+
<line num="127" count="41" type="stmt"/>
|
|
172
|
+
<line num="142" count="41" type="stmt"/>
|
|
173
|
+
<line num="143" count="35" type="stmt"/>
|
|
174
|
+
<line num="146" count="41" type="stmt"/>
|
|
175
|
+
<line num="147" count="19" type="cond" truecount="2" falsecount="0"/>
|
|
176
|
+
<line num="148" count="2" type="stmt"/>
|
|
177
|
+
<line num="152" count="41" type="cond" truecount="4" falsecount="0"/>
|
|
178
|
+
<line num="153" count="41" type="stmt"/>
|
|
179
|
+
<line num="154" count="41" type="stmt"/>
|
|
180
|
+
<line num="155" count="41" type="stmt"/>
|
|
181
|
+
<line num="156" count="41" type="cond" truecount="1" falsecount="1"/>
|
|
182
|
+
<line num="157" count="41" type="cond" truecount="1" falsecount="1"/>
|
|
183
|
+
<line num="164" count="41" type="cond" truecount="3" falsecount="1"/>
|
|
184
|
+
<line num="165" count="41" type="stmt"/>
|
|
185
|
+
<line num="166" count="41" type="stmt"/>
|
|
186
|
+
<line num="167" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
187
|
+
<line num="168" count="1" type="stmt"/>
|
|
188
|
+
<line num="169" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
189
|
+
<line num="170" count="2" type="stmt"/>
|
|
190
|
+
<line num="171" count="2" type="stmt"/>
|
|
191
|
+
<line num="172" count="2" type="stmt"/>
|
|
192
|
+
<line num="175" count="1" type="stmt"/>
|
|
193
|
+
<line num="176" count="1" type="stmt"/>
|
|
194
|
+
<line num="177" count="1" type="stmt"/>
|
|
195
|
+
<line num="180" count="41" type="cond" truecount="2" falsecount="0"/>
|
|
196
|
+
<line num="181" count="41" type="cond" truecount="2" falsecount="0"/>
|
|
197
|
+
<line num="182" count="41" type="stmt"/>
|
|
198
|
+
<line num="183" count="41" type="stmt"/>
|
|
199
|
+
<line num="184" count="41" type="cond" truecount="2" falsecount="0"/>
|
|
200
|
+
<line num="185" count="41" type="cond" truecount="3" falsecount="1"/>
|
|
201
|
+
<line num="186" count="41" type="stmt"/>
|
|
202
|
+
<line num="187" count="41" type="cond" truecount="2" falsecount="0"/>
|
|
203
|
+
<line num="189" count="41" type="stmt"/>
|
|
204
|
+
<line num="190" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
205
|
+
<line num="191" count="5" type="stmt"/>
|
|
206
|
+
<line num="192" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
207
|
+
<line num="193" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
208
|
+
<line num="197" count="41" type="stmt"/>
|
|
209
|
+
<line num="213" count="1" type="stmt"/>
|
|
210
|
+
<line num="214" count="0" type="stmt"/>
|
|
211
|
+
<line num="283" count="2" type="stmt"/>
|
|
212
|
+
<line num="284" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
213
|
+
<line num="285" count="1" type="stmt"/>
|
|
214
|
+
<line num="287" count="1" type="stmt"/>
|
|
215
|
+
<line num="311" count="0" type="stmt"/>
|
|
216
|
+
</file>
|
|
217
|
+
<file name="TextOperationControls.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/TextOperationControls.tsx">
|
|
218
|
+
<metrics statements="7" coveredstatements="7" conditionals="7" coveredconditionals="7" methods="5" coveredmethods="5"/>
|
|
219
|
+
<line num="4" count="3" type="stmt"/>
|
|
220
|
+
<line num="15" count="3" type="stmt"/>
|
|
221
|
+
<line num="16" count="7" type="cond" truecount="2" falsecount="0"/>
|
|
222
|
+
<line num="35" count="5" type="stmt"/>
|
|
223
|
+
<line num="40" count="1" type="stmt"/>
|
|
224
|
+
<line num="45" count="40" type="stmt"/>
|
|
225
|
+
<line num="55" count="1" type="stmt"/>
|
|
226
|
+
</file>
|
|
227
|
+
</package>
|
|
228
|
+
<package name="Table.Components">
|
|
229
|
+
<metrics statements="288" coveredstatements="262" conditionals="297" coveredconditionals="208" methods="113" coveredmethods="95"/>
|
|
230
|
+
<file name="ActiveFilters.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/ActiveFilters.tsx">
|
|
231
|
+
<metrics statements="18" coveredstatements="15" conditionals="20" coveredconditionals="14" methods="9" coveredmethods="8"/>
|
|
232
|
+
<line num="16" count="2" type="stmt"/>
|
|
233
|
+
<line num="21" count="44" type="stmt"/>
|
|
234
|
+
<line num="24" count="44" type="stmt"/>
|
|
235
|
+
<line num="25" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
236
|
+
<line num="27" count="4" type="stmt"/>
|
|
237
|
+
<line num="28" count="3" type="stmt"/>
|
|
238
|
+
<line num="35" count="44" type="cond" truecount="2" falsecount="0"/>
|
|
239
|
+
<line num="36" count="42" type="stmt"/>
|
|
240
|
+
<line num="39" count="2" type="stmt"/>
|
|
241
|
+
<line num="40" count="1" type="stmt"/>
|
|
242
|
+
<line num="41" count="0" type="stmt"/>
|
|
243
|
+
<line num="42" count="0" type="stmt"/>
|
|
244
|
+
<line num="43" count="0" type="stmt"/>
|
|
245
|
+
<line num="47" count="2" type="stmt"/>
|
|
246
|
+
<line num="48" count="1" type="stmt"/>
|
|
247
|
+
<line num="51" count="2" type="stmt"/>
|
|
248
|
+
<line num="85" count="3" type="stmt"/>
|
|
249
|
+
<line num="107" count="1" type="stmt"/>
|
|
250
|
+
</file>
|
|
251
|
+
<file name="HeaderActions.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/HeaderActions.tsx">
|
|
252
|
+
<metrics statements="9" coveredstatements="9" conditionals="13" coveredconditionals="12" methods="4" coveredmethods="4"/>
|
|
253
|
+
<line num="7" count="2" type="stmt"/>
|
|
254
|
+
<line num="22" count="5" type="stmt"/>
|
|
255
|
+
<line num="24" count="5" type="stmt"/>
|
|
256
|
+
<line num="29" count="5" type="stmt"/>
|
|
257
|
+
<line num="35" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
258
|
+
<line num="50" count="2" type="stmt"/>
|
|
259
|
+
<line num="57" count="4" type="stmt"/>
|
|
260
|
+
<line num="59" count="4" type="stmt"/>
|
|
261
|
+
<line num="89" count="1" type="stmt"/>
|
|
262
|
+
</file>
|
|
263
|
+
<file name="Pagination.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/Pagination.tsx">
|
|
264
|
+
<metrics statements="10" coveredstatements="9" conditionals="36" coveredconditionals="31" methods="6" coveredmethods="5"/>
|
|
265
|
+
<line num="24" count="2" type="stmt"/>
|
|
266
|
+
<line num="36" count="18" type="cond" truecount="2" falsecount="2"/>
|
|
267
|
+
<line num="41" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
268
|
+
<line num="42" count="18" type="cond" truecount="2" falsecount="0"/>
|
|
269
|
+
<line num="44" count="18" type="stmt"/>
|
|
270
|
+
<line num="57" count="30" type="stmt"/>
|
|
271
|
+
<line num="117" count="1" type="stmt"/>
|
|
272
|
+
<line num="126" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
273
|
+
<line num="142" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
274
|
+
<line num="152" count="1" type="stmt"/>
|
|
275
|
+
</file>
|
|
276
|
+
<file name="TableActions.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/TableActions.tsx">
|
|
277
|
+
<metrics statements="26" coveredstatements="26" conditionals="22" coveredconditionals="16" methods="13" coveredmethods="12"/>
|
|
278
|
+
<line num="23" count="3" type="stmt"/>
|
|
279
|
+
<line num="24" count="6" type="stmt"/>
|
|
280
|
+
<line num="25" count="6" type="stmt"/>
|
|
281
|
+
<line num="26" count="6" type="stmt"/>
|
|
282
|
+
<line num="29" count="6" type="stmt"/>
|
|
283
|
+
<line num="30" count="3" type="stmt"/>
|
|
284
|
+
<line num="31" count="3" type="stmt"/>
|
|
285
|
+
<line num="32" count="3" type="stmt"/>
|
|
286
|
+
<line num="36" count="6" type="stmt"/>
|
|
287
|
+
<line num="37" count="6" type="stmt"/>
|
|
288
|
+
<line num="38" count="1" type="cond" truecount="3" falsecount="1"/>
|
|
289
|
+
<line num="39" count="1" type="stmt"/>
|
|
290
|
+
<line num="43" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
291
|
+
<line num="45" count="2" type="stmt"/>
|
|
292
|
+
<line num="48" count="6" type="stmt"/>
|
|
293
|
+
<line num="49" count="6" type="stmt"/>
|
|
294
|
+
<line num="53" count="6" type="stmt"/>
|
|
295
|
+
<line num="54" count="2" type="stmt"/>
|
|
296
|
+
<line num="55" count="2" type="stmt"/>
|
|
297
|
+
<line num="58" count="6" type="stmt"/>
|
|
298
|
+
<line num="61" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
299
|
+
<line num="63" count="5" type="stmt"/>
|
|
300
|
+
<line num="80" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
301
|
+
<line num="102" count="1" type="stmt"/>
|
|
302
|
+
<line num="119" count="1" type="stmt"/>
|
|
303
|
+
<line num="135" count="1" type="stmt"/>
|
|
304
|
+
</file>
|
|
305
|
+
<file name="TableBody.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/TableBody.tsx">
|
|
306
|
+
<metrics statements="39" coveredstatements="36" conditionals="79" coveredconditionals="51" methods="13" coveredmethods="11"/>
|
|
307
|
+
<line num="11" count="2" type="stmt"/>
|
|
308
|
+
<line num="29" count="46" type="stmt"/>
|
|
309
|
+
<line num="30" count="46" type="stmt"/>
|
|
310
|
+
<line num="32" count="46" type="stmt"/>
|
|
311
|
+
<line num="33" count="1" type="stmt"/>
|
|
312
|
+
<line num="34" count="1" type="stmt"/>
|
|
313
|
+
<line num="35" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
314
|
+
<line num="36" count="0" type="stmt"/>
|
|
315
|
+
<line num="38" count="1" type="stmt"/>
|
|
316
|
+
<line num="40" count="1" type="stmt"/>
|
|
317
|
+
<line num="44" count="46" type="stmt"/>
|
|
318
|
+
<line num="48" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
319
|
+
<line num="51" count="46" type="stmt"/>
|
|
320
|
+
<line num="53" count="4" type="stmt"/>
|
|
321
|
+
<line num="54" count="4" type="stmt"/>
|
|
322
|
+
<line num="73" count="0" type="stmt"/>
|
|
323
|
+
<line num="82" count="46" type="stmt"/>
|
|
324
|
+
<line num="92" count="2" type="stmt"/>
|
|
325
|
+
<line num="121" count="1" type="stmt"/>
|
|
326
|
+
<line num="131" count="46" type="stmt"/>
|
|
327
|
+
<line num="133" count="0" type="stmt"/>
|
|
328
|
+
<line num="161" count="86" type="stmt"/>
|
|
329
|
+
<line num="165" count="46" type="cond" truecount="2" falsecount="0"/>
|
|
330
|
+
<line num="166" count="3" type="stmt"/>
|
|
331
|
+
<line num="175" count="43" type="cond" truecount="2" falsecount="0"/>
|
|
332
|
+
<line num="176" count="3" type="stmt"/>
|
|
333
|
+
<line num="187" count="40" type="stmt"/>
|
|
334
|
+
<line num="190" count="77" type="stmt"/>
|
|
335
|
+
<line num="191" count="77" type="stmt"/>
|
|
336
|
+
<line num="192" count="77" type="stmt"/>
|
|
337
|
+
<line num="193" count="77" type="stmt"/>
|
|
338
|
+
<line num="194" count="77" type="stmt"/>
|
|
339
|
+
<line num="220" count="149" type="cond" truecount="1" falsecount="1"/>
|
|
340
|
+
<line num="221" count="149" type="stmt"/>
|
|
341
|
+
<line num="222" count="149" type="stmt"/>
|
|
342
|
+
<line num="232" count="149" type="stmt"/>
|
|
343
|
+
<line num="235" count="149" type="stmt"/>
|
|
344
|
+
<line num="237" count="149" type="stmt"/>
|
|
345
|
+
<line num="244" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
346
|
+
</file>
|
|
347
|
+
<file name="TableFilters.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/TableFilters.tsx">
|
|
348
|
+
<metrics statements="20" coveredstatements="17" conditionals="8" coveredconditionals="5" methods="9" coveredmethods="8"/>
|
|
349
|
+
<line num="19" count="3" type="stmt"/>
|
|
350
|
+
<line num="31" count="77" type="stmt"/>
|
|
351
|
+
<line num="32" count="77" type="stmt"/>
|
|
352
|
+
<line num="34" count="77" type="stmt"/>
|
|
353
|
+
<line num="36" count="77" type="stmt"/>
|
|
354
|
+
<line num="37" count="1" type="stmt"/>
|
|
355
|
+
<line num="40" count="77" type="stmt"/>
|
|
356
|
+
<line num="41" count="43" type="cond" truecount="2" falsecount="2"/>
|
|
357
|
+
<line num="42" count="0" type="stmt"/>
|
|
358
|
+
<line num="48" count="77" type="stmt"/>
|
|
359
|
+
<line num="49" count="42" type="cond" truecount="3" falsecount="1"/>
|
|
360
|
+
<line num="51" count="0" type="stmt"/>
|
|
361
|
+
<line num="52" count="0" type="stmt"/>
|
|
362
|
+
<line num="57" count="77" type="stmt"/>
|
|
363
|
+
<line num="58" count="1" type="stmt"/>
|
|
364
|
+
<line num="59" count="1" type="stmt"/>
|
|
365
|
+
<line num="62" count="77" type="stmt"/>
|
|
366
|
+
<line num="90" count="1" type="stmt"/>
|
|
367
|
+
<line num="91" count="1" type="stmt"/>
|
|
368
|
+
<line num="93" count="42" type="stmt"/>
|
|
369
|
+
</file>
|
|
370
|
+
<file name="TableHeader.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/TableHeader.tsx">
|
|
371
|
+
<metrics statements="53" coveredstatements="42" conditionals="54" coveredconditionals="28" methods="21" coveredmethods="12"/>
|
|
372
|
+
<line num="14" count="2" type="stmt"/>
|
|
373
|
+
<line num="35" count="39" type="stmt"/>
|
|
374
|
+
<line num="36" count="39" type="stmt"/>
|
|
375
|
+
<line num="38" count="39" type="stmt"/>
|
|
376
|
+
<line num="39" count="3" type="stmt"/>
|
|
377
|
+
<line num="59" count="0" type="stmt"/>
|
|
378
|
+
<line num="74" count="39" type="stmt"/>
|
|
379
|
+
<line num="75" count="0" type="stmt"/>
|
|
380
|
+
<line num="93" count="39" type="stmt"/>
|
|
381
|
+
<line num="94" count="0" type="stmt"/>
|
|
382
|
+
<line num="112" count="39" type="stmt"/>
|
|
383
|
+
<line num="117" count="74" type="cond" truecount="1" falsecount="1"/>
|
|
384
|
+
<line num="118" count="74" type="stmt"/>
|
|
385
|
+
<line num="147" count="2" type="stmt"/>
|
|
386
|
+
<line num="155" count="1" type="stmt"/>
|
|
387
|
+
<line num="156" count="1" type="stmt"/>
|
|
388
|
+
<line num="176" count="2" type="stmt"/>
|
|
389
|
+
<line num="196" count="74" type="stmt"/>
|
|
390
|
+
<line num="197" count="74" type="stmt"/>
|
|
391
|
+
<line num="199" count="74" type="stmt"/>
|
|
392
|
+
<line num="200" count="74" type="cond" truecount="1" falsecount="1"/>
|
|
393
|
+
<line num="203" count="74" type="cond" truecount="2" falsecount="0"/>
|
|
394
|
+
<line num="204" count="1" type="stmt"/>
|
|
395
|
+
<line num="209" count="74" type="stmt"/>
|
|
396
|
+
<line num="210" count="1" type="stmt"/>
|
|
397
|
+
<line num="213" count="1" type="stmt"/>
|
|
398
|
+
<line num="215" count="1" type="stmt"/>
|
|
399
|
+
<line num="216" count="1" type="stmt"/>
|
|
400
|
+
<line num="218" count="1" type="stmt"/>
|
|
401
|
+
<line num="219" count="1" type="stmt"/>
|
|
402
|
+
<line num="220" count="1" type="stmt"/>
|
|
403
|
+
<line num="223" count="1" type="stmt"/>
|
|
404
|
+
<line num="224" count="1" type="stmt"/>
|
|
405
|
+
<line num="225" count="1" type="stmt"/>
|
|
406
|
+
<line num="228" count="1" type="stmt"/>
|
|
407
|
+
<line num="229" count="1" type="stmt"/>
|
|
408
|
+
<line num="232" count="74" type="stmt"/>
|
|
409
|
+
<line num="234" count="1" type="stmt"/>
|
|
410
|
+
<line num="238" count="1" type="stmt"/>
|
|
411
|
+
<line num="239" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
412
|
+
<line num="240" count="1" type="stmt"/>
|
|
413
|
+
<line num="241" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
414
|
+
<line num="242" count="0" type="stmt"/>
|
|
415
|
+
<line num="244" count="1" type="stmt"/>
|
|
416
|
+
<line num="253" count="74" type="cond" truecount="3" falsecount="1"/>
|
|
417
|
+
<line num="256" count="74" type="stmt"/>
|
|
418
|
+
<line num="259" count="148" type="stmt"/>
|
|
419
|
+
<line num="277" count="0" type="stmt"/>
|
|
420
|
+
<line num="278" count="0" type="stmt"/>
|
|
421
|
+
<line num="305" count="0" type="stmt"/>
|
|
422
|
+
<line num="312" count="0" type="stmt"/>
|
|
423
|
+
<line num="313" count="0" type="stmt"/>
|
|
424
|
+
<line num="316" count="0" type="stmt"/>
|
|
425
|
+
</file>
|
|
426
|
+
<file name="TableLoading.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/TableLoading.tsx">
|
|
427
|
+
<metrics statements="6" coveredstatements="6" conditionals="2" coveredconditionals="1" methods="4" coveredmethods="4"/>
|
|
428
|
+
<line num="14" count="3" type="stmt"/>
|
|
429
|
+
<line num="15" count="1" type="stmt"/>
|
|
430
|
+
<line num="36" count="5" type="stmt"/>
|
|
431
|
+
<line num="59" count="3" type="stmt"/>
|
|
432
|
+
<line num="70" count="4" type="stmt"/>
|
|
433
|
+
<line num="73" count="14" type="stmt"/>
|
|
434
|
+
</file>
|
|
435
|
+
<file name="TableSearch.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/TableSearch.tsx">
|
|
436
|
+
<metrics statements="16" coveredstatements="16" conditionals="8" coveredconditionals="7" methods="5" coveredmethods="5"/>
|
|
437
|
+
<line num="17" count="2" type="stmt"/>
|
|
438
|
+
<line num="18" count="50" type="stmt"/>
|
|
439
|
+
<line num="19" count="50" type="stmt"/>
|
|
440
|
+
<line num="20" count="50" type="stmt"/>
|
|
441
|
+
<line num="22" count="50" type="stmt"/>
|
|
442
|
+
<line num="23" count="4" type="stmt"/>
|
|
443
|
+
<line num="24" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
444
|
+
<line num="25" count="1" type="stmt"/>
|
|
445
|
+
<line num="26" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
446
|
+
<line num="30" count="50" type="stmt"/>
|
|
447
|
+
<line num="31" count="3" type="stmt"/>
|
|
448
|
+
<line num="34" count="50" type="stmt"/>
|
|
449
|
+
<line num="35" count="3" type="stmt"/>
|
|
450
|
+
<line num="36" count="3" type="stmt"/>
|
|
451
|
+
<line num="38" count="3" type="stmt"/>
|
|
452
|
+
<line num="41" count="50" type="stmt"/>
|
|
453
|
+
</file>
|
|
454
|
+
<file name="useDebounce.ts" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/useDebounce.ts">
|
|
455
|
+
<metrics statements="12" coveredstatements="12" conditionals="4" coveredconditionals="3" methods="5" coveredmethods="5"/>
|
|
456
|
+
<line num="4" count="1" type="stmt"/>
|
|
457
|
+
<line num="5" count="2" type="stmt"/>
|
|
458
|
+
<line num="7" count="2" type="stmt"/>
|
|
459
|
+
<line num="8" count="1" type="stmt"/>
|
|
460
|
+
<line num="9" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
461
|
+
<line num="10" count="1" type="stmt"/>
|
|
462
|
+
<line num="15" count="2" type="stmt"/>
|
|
463
|
+
<line num="17" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
464
|
+
<line num="18" count="1" type="stmt"/>
|
|
465
|
+
<line num="21" count="2" type="stmt"/>
|
|
466
|
+
<line num="22" count="1" type="stmt"/>
|
|
467
|
+
<line num="28" count="2" type="stmt"/>
|
|
468
|
+
</file>
|
|
469
|
+
<file name="useTable.ts" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/Components/useTable.ts">
|
|
470
|
+
<metrics statements="79" coveredstatements="74" conditionals="51" coveredconditionals="40" methods="24" coveredmethods="21"/>
|
|
471
|
+
<line num="29" count="2" type="stmt"/>
|
|
472
|
+
<line num="31" count="2" type="stmt"/>
|
|
473
|
+
<line num="45" count="60" type="stmt"/>
|
|
474
|
+
<line num="47" count="60" type="stmt"/>
|
|
475
|
+
<line num="49" count="60" type="stmt"/>
|
|
476
|
+
<line num="50" count="60" type="stmt"/>
|
|
477
|
+
<line num="53" count="60" type="stmt"/>
|
|
478
|
+
<line num="54" count="60" type="stmt"/>
|
|
479
|
+
<line num="55" count="60" type="stmt"/>
|
|
480
|
+
<line num="59" count="60" type="stmt"/>
|
|
481
|
+
<line num="60" count="60" type="stmt"/>
|
|
482
|
+
<line num="61" count="60" type="stmt"/>
|
|
483
|
+
<line num="63" count="60" type="stmt"/>
|
|
484
|
+
<line num="64" count="37" type="cond" truecount="1" falsecount="1"/>
|
|
485
|
+
<line num="65" count="37" type="stmt"/>
|
|
486
|
+
<line num="66" count="37" type="cond" truecount="2" falsecount="0"/>
|
|
487
|
+
<line num="67" count="1" type="stmt"/>
|
|
488
|
+
<line num="72" count="60" type="stmt"/>
|
|
489
|
+
<line num="73" count="22" type="stmt"/>
|
|
490
|
+
<line num="76" count="60" type="stmt"/>
|
|
491
|
+
<line num="77" count="60" type="stmt"/>
|
|
492
|
+
<line num="88" count="60" type="stmt"/>
|
|
493
|
+
<line num="89" count="42" type="stmt"/>
|
|
494
|
+
<line num="92" count="60" type="stmt"/>
|
|
495
|
+
<line num="93" count="42" type="cond" truecount="3" falsecount="0"/>
|
|
496
|
+
<line num="97" count="60" type="stmt"/>
|
|
497
|
+
<line num="98" count="36" type="cond" truecount="2" falsecount="0"/>
|
|
498
|
+
<line num="99" count="22" type="stmt"/>
|
|
499
|
+
<line num="102" count="60" type="stmt"/>
|
|
500
|
+
<line num="103" count="24" type="cond" truecount="2" falsecount="0"/>
|
|
501
|
+
<line num="104" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
502
|
+
<line num="106" count="23" type="cond" truecount="2" falsecount="0"/>
|
|
503
|
+
<line num="115" count="60" type="stmt"/>
|
|
504
|
+
<line num="116" count="23" type="cond" truecount="2" falsecount="0"/>
|
|
505
|
+
<line num="119" count="60" type="stmt"/>
|
|
506
|
+
<line num="120" count="23" type="cond" truecount="2" falsecount="0"/>
|
|
507
|
+
<line num="124" count="60" type="stmt"/>
|
|
508
|
+
<line num="125" count="26" type="cond" truecount="2" falsecount="0"/>
|
|
509
|
+
<line num="126" count="1" type="stmt"/>
|
|
510
|
+
<line num="128" count="25" type="stmt"/>
|
|
511
|
+
<line num="129" count="25" type="stmt"/>
|
|
512
|
+
<line num="130" count="25" type="stmt"/>
|
|
513
|
+
<line num="133" count="60" type="stmt"/>
|
|
514
|
+
<line num="136" count="1" type="stmt"/>
|
|
515
|
+
<line num="137" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
516
|
+
<line num="138" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
517
|
+
<line num="139" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
518
|
+
<line num="141" count="1" type="stmt"/>
|
|
519
|
+
<line num="144" count="60" type="stmt"/>
|
|
520
|
+
<line num="146" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
521
|
+
<line num="147" count="3" type="stmt"/>
|
|
522
|
+
<line num="148" count="3" type="stmt"/>
|
|
523
|
+
<line num="149" count="2" type="stmt"/>
|
|
524
|
+
<line num="152" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
525
|
+
<line num="153" count="1" type="stmt"/>
|
|
526
|
+
<line num="158" count="2" type="stmt"/>
|
|
527
|
+
<line num="159" count="2" type="stmt"/>
|
|
528
|
+
<line num="162" count="3" type="stmt"/>
|
|
529
|
+
<line num="166" count="60" type="stmt"/>
|
|
530
|
+
<line num="167" count="22" type="cond" truecount="2" falsecount="0"/>
|
|
531
|
+
<line num="170" count="60" type="stmt"/>
|
|
532
|
+
<line num="172" count="3" type="stmt"/>
|
|
533
|
+
<line num="173" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
534
|
+
<line num="174" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
535
|
+
<line num="175" count="1" type="stmt"/>
|
|
536
|
+
<line num="177" count="1" type="stmt"/>
|
|
537
|
+
<line num="178" count="2" type="stmt"/>
|
|
538
|
+
<line num="181" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
539
|
+
<line num="182" count="0" type="stmt"/>
|
|
540
|
+
<line num="184" count="1" type="stmt"/>
|
|
541
|
+
<line num="186" count="3" type="stmt"/>
|
|
542
|
+
<line num="187" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
543
|
+
<line num="192" count="60" type="stmt"/>
|
|
544
|
+
<line num="193" count="0" type="stmt"/>
|
|
545
|
+
<line num="194" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
546
|
+
<line num="201" count="60" type="stmt"/>
|
|
547
|
+
<line num="202" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
548
|
+
<line num="203" count="0" type="stmt"/>
|
|
549
|
+
<line num="206" count="60" type="stmt"/>
|
|
550
|
+
</file>
|
|
551
|
+
</package>
|
|
552
|
+
<package name="Table.TableSettings">
|
|
553
|
+
<metrics statements="73" coveredstatements="67" conditionals="39" coveredconditionals="30" methods="31" coveredmethods="27"/>
|
|
554
|
+
<file name="ManageColumns.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/TableSettings/ManageColumns.tsx">
|
|
555
|
+
<metrics statements="46" coveredstatements="43" conditionals="20" coveredconditionals="17" methods="19" coveredmethods="18"/>
|
|
556
|
+
<line num="20" count="3" type="stmt"/>
|
|
557
|
+
<line num="27" count="13" type="stmt"/>
|
|
558
|
+
<line num="30" count="13" type="stmt"/>
|
|
559
|
+
<line num="31" count="13" type="stmt"/>
|
|
560
|
+
<line num="32" count="13" type="stmt"/>
|
|
561
|
+
<line num="33" count="13" type="stmt"/>
|
|
562
|
+
<line num="35" count="13" type="stmt"/>
|
|
563
|
+
<line num="38" count="10" type="stmt"/>
|
|
564
|
+
<line num="40" count="6" type="stmt"/>
|
|
565
|
+
<line num="47" count="13" type="stmt"/>
|
|
566
|
+
<line num="49" count="13" type="stmt"/>
|
|
567
|
+
<line num="50" count="1" type="stmt"/>
|
|
568
|
+
<line num="51" count="1" type="cond" truecount="3" falsecount="1"/>
|
|
569
|
+
<line num="53" count="1" type="stmt"/>
|
|
570
|
+
<line num="54" count="1" type="stmt"/>
|
|
571
|
+
<line num="56" count="1" type="stmt"/>
|
|
572
|
+
<line num="57" count="1" type="stmt"/>
|
|
573
|
+
<line num="59" count="1" type="stmt"/>
|
|
574
|
+
<line num="60" count="1" type="stmt"/>
|
|
575
|
+
<line num="63" count="13" type="stmt"/>
|
|
576
|
+
<line num="66" count="13" type="stmt"/>
|
|
577
|
+
<line num="67" count="1" type="stmt"/>
|
|
578
|
+
<line num="68" count="1" type="stmt"/>
|
|
579
|
+
<line num="70" count="1" type="cond" truecount="3" falsecount="1"/>
|
|
580
|
+
<line num="71" count="1" type="stmt"/>
|
|
581
|
+
<line num="72" count="1" type="stmt"/>
|
|
582
|
+
<line num="75" count="0" type="stmt"/>
|
|
583
|
+
<line num="76" count="0" type="stmt"/>
|
|
584
|
+
<line num="77" count="0" type="stmt"/>
|
|
585
|
+
<line num="80" count="13" type="stmt"/>
|
|
586
|
+
<line num="81" count="24" type="stmt"/>
|
|
587
|
+
<line num="85" count="24" type="stmt"/>
|
|
588
|
+
<line num="86" count="13" type="cond" truecount="2" falsecount="0"/>
|
|
589
|
+
<line num="88" count="13" type="stmt"/>
|
|
590
|
+
<line num="89" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
591
|
+
<line num="91" count="1" type="stmt"/>
|
|
592
|
+
<line num="92" count="2" type="stmt"/>
|
|
593
|
+
<line num="97" count="1" type="stmt"/>
|
|
594
|
+
<line num="100" count="2" type="stmt"/>
|
|
595
|
+
<line num="101" count="1" type="stmt"/>
|
|
596
|
+
<line num="105" count="13" type="stmt"/>
|
|
597
|
+
<line num="111" count="1" type="stmt"/>
|
|
598
|
+
<line num="128" count="23" type="stmt"/>
|
|
599
|
+
<line num="131" count="1" type="stmt"/>
|
|
600
|
+
<line num="132" count="1" type="stmt"/>
|
|
601
|
+
<line num="157" count="1" type="stmt"/>
|
|
602
|
+
</file>
|
|
603
|
+
<file name="TableFilters.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/TableSettings/TableFilters.tsx">
|
|
604
|
+
<metrics statements="11" coveredstatements="10" conditionals="8" coveredconditionals="4" methods="6" coveredmethods="5"/>
|
|
605
|
+
<line num="9" count="3" type="stmt"/>
|
|
606
|
+
<line num="11" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
607
|
+
<line num="13" count="3" type="stmt"/>
|
|
608
|
+
<line num="16" count="3" type="stmt"/>
|
|
609
|
+
<line num="18" count="2" type="stmt"/>
|
|
610
|
+
<line num="25" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
611
|
+
<line num="27" count="3" type="stmt"/>
|
|
612
|
+
<line num="30" count="6" type="stmt"/>
|
|
613
|
+
<line num="35" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
614
|
+
<line num="36" count="1" type="stmt"/>
|
|
615
|
+
<line num="38" count="0" type="stmt"/>
|
|
616
|
+
</file>
|
|
617
|
+
<file name="TableSettings.tsx" path="/Users/mahesh/Applications/Pixelize/CRM/Micro-Components/src/Components/Table/TableSettings/TableSettings.tsx">
|
|
618
|
+
<metrics statements="16" coveredstatements="14" conditionals="11" coveredconditionals="9" methods="6" coveredmethods="4"/>
|
|
619
|
+
<line num="24" count="2" type="stmt"/>
|
|
620
|
+
<line num="33" count="6" type="stmt"/>
|
|
621
|
+
<line num="34" count="6" type="stmt"/>
|
|
622
|
+
<line num="37" count="6" type="stmt"/>
|
|
623
|
+
<line num="39" count="6" type="stmt"/>
|
|
624
|
+
<line num="40" count="6" type="stmt"/>
|
|
625
|
+
<line num="42" count="6" type="stmt"/>
|
|
626
|
+
<line num="43" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
627
|
+
<line num="46" count="6" type="stmt"/>
|
|
628
|
+
<line num="47" count="1" type="stmt"/>
|
|
629
|
+
<line num="50" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
630
|
+
<line num="51" count="1" type="stmt"/>
|
|
631
|
+
<line num="54" count="6" type="stmt"/>
|
|
632
|
+
<line num="58" count="2" type="stmt"/>
|
|
633
|
+
<line num="66" count="0" type="stmt"/>
|
|
634
|
+
<line num="133" count="0" type="stmt"/>
|
|
635
|
+
</file>
|
|
636
|
+
</package>
|
|
637
|
+
</project>
|
|
638
|
+
</coverage>
|