robobyte-front-builder 1.0.17 → 1.0.21

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 (516) hide show
  1. package/README.md +211 -0
  2. package/next.config.js +19 -48
  3. package/package.json +39 -85
  4. package/src/context/BuilderContext.jsx +134 -6
  5. package/src/context/SystemContext.js +2 -2
  6. package/src/hooks/useGlobalStore.js +36 -0
  7. package/src/hooks/useTimerEngine.js +54 -0
  8. package/src/lib/index.js +11 -3
  9. package/src/lib/layouts/BlankLayout.jsx +13 -0
  10. package/src/lib/providers/RoboByteFrontBuilderProvider.jsx +59 -1
  11. package/src/lib/themes/builderTheme.js +41 -0
  12. package/src/pages/_app.js +32 -134
  13. package/src/pages/api/ai.js +87 -0
  14. package/src/pages/builders/report/index.js +1 -0
  15. package/src/pages/builders/report/list/index.js +1 -0
  16. package/src/pages/builders/report/viewer/index.js +1 -0
  17. package/src/pages/index.js +88 -37
  18. package/src/pages/printBuilder/index.jsx +263 -0
  19. package/src/pages/printBuilder/layouts/index.jsx +298 -0
  20. package/src/pages/reportModule/reportBuilder/index.js +723 -563
  21. package/src/pages/reportModule/reportBuilder/reportViewer/index.js +137 -71
  22. package/src/pages/reportModule/reportBuilder/reports/index.js +51 -13
  23. package/src/pages/reportModule/reportBuilder/reportsPermissions/index.js +126 -0
  24. package/src/pages/viewBuilder/index.jsx +117 -32
  25. package/src/pages/viewBuilder/views/index.js +3 -3
  26. package/src/pages/viewer/[id]/index.js +2 -1
  27. package/src/services/DeleteService.js +31 -60
  28. package/src/services/Endpoints/PrintLayoutEndpoints.js +42 -0
  29. package/src/services/Endpoints.js +2 -0
  30. package/src/services/GetService.js +33 -54
  31. package/src/services/PatchService.js +38 -65
  32. package/src/services/PostService.js +37 -63
  33. package/src/services/UpdateService.js +39 -65
  34. package/src/services/builderHelper/actionExecutor.js +141 -25
  35. package/src/services/builderHelper/builderHelper.js +92 -0
  36. package/src/services/builderHelper/colorSchema.js +95 -0
  37. package/src/services/builderHelper/iconResolver.js +50 -0
  38. package/src/services/builderHelper/jsExecutor.js +212 -46
  39. package/src/services/builderHelper/nodeFactory.js +32 -15
  40. package/src/services/builderHelper/numberFormat.js +123 -0
  41. package/src/services/builderHelper/resolveProps.js +73 -4
  42. package/src/services/builderHelper/thresholdEngine.js +77 -0
  43. package/src/services/builderHelper/tree.js +31 -0
  44. package/src/services/components/agGridAutoComplete.js +5 -9
  45. package/src/services/config.js +9 -1
  46. package/src/services/globalStore.js +80 -0
  47. package/src/services/helper/multiSelectEditor.js +5 -9
  48. package/src/services/helper/multiSelectEditorByBuilder.js +241 -0
  49. package/src/services/helper/reportSessionHelper.js +83 -0
  50. package/src/services/reportData/fetchReportData.js +69 -28
  51. package/src/services/routerRef.js +35 -0
  52. package/src/views/ConfirmDialog.js +2 -2
  53. package/src/views/builder/JSEditor.js +105 -107
  54. package/src/views/builder/inspector/Inspector.jsx +6 -9
  55. package/src/views/builder/inspector/Tabs/ComponentActionsTab.jsx +7 -13
  56. package/src/views/builder/inspector/Tabs/MainTab.jsx +143 -25
  57. package/src/views/builder/inspector/Tabs/RulesTab.jsx +9 -24
  58. package/src/views/builder/inspector/Tabs/StyleTab.jsx +9 -24
  59. package/src/views/builder/inspector/definitions/autocomplete/main.js +4 -6
  60. package/src/views/builder/inspector/definitions/banner/actions.js +7 -0
  61. package/src/views/builder/inspector/definitions/banner/main.js +22 -0
  62. package/src/views/builder/inspector/definitions/banner/rules.js +1 -0
  63. package/src/views/builder/inspector/definitions/banner/style.js +1 -0
  64. package/src/views/builder/inspector/definitions/breadcrumb/main.js +43 -6
  65. package/src/views/builder/inspector/definitions/button/main.js +11 -12
  66. package/src/views/builder/inspector/definitions/button/style.js +18 -30
  67. package/src/views/builder/inspector/definitions/checkbox/actions.js +3 -1
  68. package/src/views/builder/inspector/definitions/checkbox/main.js +4 -6
  69. package/src/views/builder/inspector/definitions/common/main.js +13 -2
  70. package/src/views/builder/inspector/definitions/dataGrid/main.js +23 -0
  71. package/src/views/builder/inspector/definitions/dataTableViewer/main.js +46 -0
  72. package/src/views/builder/inspector/definitions/datepicker/actions.js +3 -1
  73. package/src/views/builder/inspector/definitions/datepicker/main.js +6 -14
  74. package/src/views/builder/inspector/definitions/dialog/main.js +36 -0
  75. package/src/views/builder/inspector/definitions/dropdown/main.js +5 -8
  76. package/src/views/builder/inspector/definitions/excelUpload/actions.js +23 -0
  77. package/src/views/builder/inspector/definitions/excelUpload/main.js +17 -0
  78. package/src/views/builder/inspector/definitions/excelUpload/rules.js +1 -0
  79. package/src/views/builder/inspector/definitions/excelUpload/style.js +45 -0
  80. package/src/views/builder/inspector/definitions/header/main.js +10 -1
  81. package/src/views/builder/inspector/definitions/index.js +106 -19
  82. package/src/views/builder/inspector/definitions/input/actions.js +4 -1
  83. package/src/views/builder/inspector/definitions/input/main.js +20 -11
  84. package/src/views/builder/inspector/definitions/kpi/avatarGroup.js +22 -0
  85. package/src/views/builder/inspector/definitions/kpi/badge.js +17 -0
  86. package/src/views/builder/inspector/definitions/kpi/bulletChart.js +47 -0
  87. package/src/views/builder/inspector/definitions/kpi/chart.js +55 -0
  88. package/src/views/builder/inspector/definitions/kpi/colorScale.js +60 -0
  89. package/src/views/builder/inspector/definitions/kpi/comparisonBars.js +41 -0
  90. package/src/views/builder/inspector/definitions/kpi/countdown.js +46 -0
  91. package/src/views/builder/inspector/definitions/kpi/donut.js +51 -0
  92. package/src/views/builder/inspector/definitions/kpi/funnel.js +25 -0
  93. package/src/views/builder/inspector/definitions/kpi/gauge.js +39 -0
  94. package/src/views/builder/inspector/definitions/kpi/heatmapGrid.js +96 -0
  95. package/src/views/builder/inspector/definitions/kpi/iconBox.js +20 -0
  96. package/src/views/builder/inspector/definitions/kpi/metric.js +45 -0
  97. package/src/views/builder/inspector/definitions/kpi/rating.js +27 -0
  98. package/src/views/builder/inspector/definitions/kpi/statusDot.js +18 -0
  99. package/src/views/builder/inspector/definitions/kpi/stepStage.js +65 -0
  100. package/src/views/builder/inspector/definitions/kpi/tagList.js +32 -0
  101. package/src/views/builder/inspector/definitions/kpi/timeline.js +80 -0
  102. package/src/views/builder/inspector/definitions/kpi/trend.js +20 -0
  103. package/src/views/builder/inspector/definitions/label/main.js +10 -1
  104. package/src/views/builder/inspector/definitions/layout/main.js +27 -3
  105. package/src/views/builder/inspector/definitions/number/main.js +6 -14
  106. package/src/views/builder/inspector/definitions/pageNumber/main.js +21 -0
  107. package/src/views/builder/inspector/definitions/popover/main.js +71 -0
  108. package/src/views/builder/inspector/definitions/radio/main.js +5 -8
  109. package/src/views/builder/inspector/definitions/repeater/main.js +31 -0
  110. package/src/views/builder/inspector/definitions/reportViewer/main.js +15 -1
  111. package/src/views/builder/inspector/definitions/richtext/main.js +5 -8
  112. package/src/views/builder/inspector/definitions/signature/main.js +4 -1
  113. package/src/views/builder/inspector/definitions/tag/main.js +5 -8
  114. package/src/views/builder/inspector/definitions/textarea/actions.js +4 -1
  115. package/src/views/builder/inspector/definitions/textarea/main.js +5 -7
  116. package/src/views/builder/inspector/definitions/time/main.js +5 -8
  117. package/src/views/builder/inspector/definitions/toggle/main.js +5 -19
  118. package/src/views/builder/inspector/definitions/treeView/main.js +61 -0
  119. package/src/views/builder/inspector/definitions/viewRenderer/main.js +53 -0
  120. package/src/views/builder/inspector/definitions/wizard/main.js +68 -0
  121. package/src/views/builder/inspector/definitions/wizard-step/main.js +25 -0
  122. package/src/views/builder/inspector/fields/ActionsConfigEditor.jsx +426 -0
  123. package/src/views/builder/inspector/fields/ColorSchemaField.jsx +140 -0
  124. package/src/views/builder/inspector/fields/ColumnFunctionEditor.jsx +238 -0
  125. package/src/views/builder/inspector/fields/ColumnMappingEditor.jsx +105 -0
  126. package/src/views/builder/inspector/fields/ColumnsConfigEditor.jsx +506 -0
  127. package/src/views/builder/inspector/fields/DonutRingsEditorField.jsx +337 -0
  128. package/src/views/builder/inspector/fields/ExtraColsEditor.jsx +618 -0
  129. package/src/views/builder/inspector/fields/FunctionHelpPopover.jsx +295 -0
  130. package/src/views/builder/inspector/fields/IconEditor.jsx +64 -0
  131. package/src/views/builder/inspector/fields/KpiActionField.jsx +223 -0
  132. package/src/views/builder/inspector/fields/MarkersEditorField.jsx +173 -0
  133. package/src/views/builder/inspector/fields/SelectEditor.jsx +9 -5
  134. package/src/views/builder/inspector/fields/SeriesEditorField.jsx +363 -0
  135. package/src/views/builder/inspector/fields/TableColumnsEditor.jsx +104 -0
  136. package/src/views/builder/inspector/fields/ThresholdsEditor.jsx +247 -0
  137. package/src/views/builder/inspector/fields/ValueFunctionsRefPanel.jsx +217 -0
  138. package/src/views/builder/inspector/fields/columnEditorShared.jsx +217 -0
  139. package/src/views/builder/sidebar/Sidebar.jsx +4 -2
  140. package/src/views/builder/sidebar/SidebarTabs.jsx +28 -17
  141. package/src/views/builder/sidebar/tabs/ActionsTab.jsx +7 -3
  142. package/src/views/builder/sidebar/tabs/AiTab/AiPreviewDialog.jsx +193 -0
  143. package/src/views/builder/sidebar/tabs/AiTab/aiProvider.js +49 -0
  144. package/src/views/builder/sidebar/tabs/AiTab/index.jsx +409 -0
  145. package/src/views/builder/sidebar/tabs/AiTab/schemaTransformer.js +102 -0
  146. package/src/views/builder/sidebar/tabs/AiTab/schemaValidator.js +64 -0
  147. package/src/views/builder/sidebar/tabs/AiTab/systemPrompt.js +1151 -0
  148. package/src/views/builder/sidebar/tabs/Components/ComponentsTab.jsx +31 -31
  149. package/src/views/builder/sidebar/tabs/Components/componentCatalog.js +43 -21
  150. package/src/views/builder/sidebar/tabs/Components/printComponentCatalog.js +81 -0
  151. package/src/views/builder/sidebar/tabs/TimersTab.jsx +338 -0
  152. package/src/views/builder/sidebar/tabs/TreeTab.jsx +13 -4
  153. package/src/views/builder/sidebar/tabs/ViewTab.jsx +1 -1
  154. package/src/views/builder/viewer/AdornedLabel.jsx +82 -0
  155. package/src/views/builder/viewer/ComponentRenderer.jsx +98 -24
  156. package/src/views/builder/viewer/DialogsZone.jsx +259 -0
  157. package/src/views/builder/viewer/FieldLabel.jsx +106 -0
  158. package/src/views/builder/viewer/PrintDialog.jsx +481 -0
  159. package/src/views/builder/viewer/ProductionViewer.jsx +80 -5
  160. package/src/views/builder/viewer/Viewer.jsx +106 -8
  161. package/src/views/builder/viewer/ViewerComponentWrapper.jsx +61 -4
  162. package/src/views/builder/viewer/ViewerToolbar.jsx +273 -59
  163. package/src/views/builder/viewer/renderers/AutoCompleteRenderer.jsx +26 -22
  164. package/src/views/builder/viewer/renderers/AvatarGroupRenderer.jsx +112 -0
  165. package/src/views/builder/viewer/renderers/BadgeRenderer.jsx +79 -0
  166. package/src/views/builder/viewer/renderers/BannerRenderer.jsx +62 -0
  167. package/src/views/builder/viewer/renderers/BreadcrumbRenderer.jsx +203 -15
  168. package/src/views/builder/viewer/renderers/BulletChartRenderer.jsx +147 -0
  169. package/src/views/builder/viewer/renderers/ButtonRenderer.jsx +98 -39
  170. package/src/views/builder/viewer/renderers/CardRenderer.jsx +1 -1
  171. package/src/views/builder/viewer/renderers/ChartRenderer.jsx +388 -0
  172. package/src/views/builder/viewer/renderers/CheckboxRenderer.jsx +17 -9
  173. package/src/views/builder/viewer/renderers/ColorScaleRenderer.jsx +300 -0
  174. package/src/views/builder/viewer/renderers/ComparisonBarsRenderer.jsx +133 -0
  175. package/src/views/builder/viewer/renderers/ContainerRenderer.jsx +3 -1
  176. package/src/views/builder/viewer/renderers/CountdownRenderer.jsx +249 -0
  177. package/src/views/builder/viewer/renderers/DataGridRenderer.jsx +380 -0
  178. package/src/views/builder/viewer/renderers/DataTableViewerRenderer.jsx +240 -0
  179. package/src/views/builder/viewer/renderers/DatePickerRenderer.jsx +25 -24
  180. package/src/views/builder/viewer/renderers/DialogRenderer.jsx +327 -0
  181. package/src/views/builder/viewer/renderers/DividerRenderer.jsx +1 -1
  182. package/src/views/builder/viewer/renderers/DonutRenderer.jsx +294 -0
  183. package/src/views/builder/viewer/renderers/DropdownRenderer.jsx +36 -44
  184. package/src/views/builder/viewer/renderers/ExcelUploadRenderer.jsx +639 -0
  185. package/src/views/builder/viewer/renderers/FunnelRenderer.jsx +93 -0
  186. package/src/views/builder/viewer/renderers/GaugeRenderer.jsx +159 -0
  187. package/src/views/builder/viewer/renderers/HeaderRenderer.jsx +31 -9
  188. package/src/views/builder/viewer/renderers/HeatmapGridRenderer.jsx +432 -0
  189. package/src/views/builder/viewer/renderers/IconBoxRenderer.jsx +59 -0
  190. package/src/views/builder/viewer/renderers/ImageRenderer.jsx +1 -1
  191. package/src/views/builder/viewer/renderers/InputRenderer.jsx +75 -18
  192. package/src/views/builder/viewer/renderers/LabelRenderer.jsx +35 -9
  193. package/src/views/builder/viewer/renderers/LayoutCellRenderer.jsx +102 -40
  194. package/src/views/builder/viewer/renderers/LayoutContextMenu.jsx +8 -8
  195. package/src/views/builder/viewer/renderers/LayoutRenderer.jsx +48 -6
  196. package/src/views/builder/viewer/renderers/LinkRenderer.jsx +1 -1
  197. package/src/views/builder/viewer/renderers/MenuRenderer.jsx +2 -2
  198. package/src/views/builder/viewer/renderers/MetricRenderer.jsx +80 -0
  199. package/src/views/builder/viewer/renderers/NumberFormatRenderer.jsx +21 -30
  200. package/src/views/builder/viewer/renderers/PageNumberRenderer.jsx +76 -0
  201. package/src/views/builder/viewer/renderers/PopoverRenderer.jsx +350 -0
  202. package/src/views/builder/viewer/renderers/ProgressCircleRenderer.jsx +1 -1
  203. package/src/views/builder/viewer/renderers/ProgressLineRenderer.jsx +1 -1
  204. package/src/views/builder/viewer/renderers/RadioGroupRenderer.jsx +28 -39
  205. package/src/views/builder/viewer/renderers/RatingRenderer.jsx +80 -0
  206. package/src/views/builder/viewer/renderers/RepeaterRenderer.jsx +297 -38
  207. package/src/views/builder/viewer/renderers/ReportViewerRenderer.jsx +219 -5
  208. package/src/views/builder/viewer/renderers/RichTextRenderer.jsx +60 -66
  209. package/src/views/builder/viewer/renderers/RowActionsCell.jsx +308 -0
  210. package/src/views/builder/viewer/renderers/SignatureRenderer.jsx +33 -62
  211. package/src/views/builder/viewer/renderers/StatusDotRenderer.jsx +75 -0
  212. package/src/views/builder/viewer/renderers/StepStageRenderer.jsx +348 -0
  213. package/src/views/builder/viewer/renderers/TagListRenderer.jsx +115 -0
  214. package/src/views/builder/viewer/renderers/TagPickerRenderer.jsx +31 -45
  215. package/src/views/builder/viewer/renderers/TextAreaRenderer.jsx +25 -18
  216. package/src/views/builder/viewer/renderers/TextRenderer.jsx +7 -1
  217. package/src/views/builder/viewer/renderers/TimePickerRenderer.jsx +25 -24
  218. package/src/views/builder/viewer/renderers/TimelineRenderer.jsx +525 -0
  219. package/src/views/builder/viewer/renderers/ToggleRenderer.jsx +21 -27
  220. package/src/views/builder/viewer/renderers/TreeViewRenderer.jsx +832 -0
  221. package/src/views/builder/viewer/renderers/TrendRenderer.jsx +66 -0
  222. package/src/views/builder/viewer/renderers/ViewRendererRenderer.jsx +315 -0
  223. package/src/views/builder/viewer/renderers/WizardRenderer.jsx +380 -64
  224. package/src/views/builder/viewer/renderers/WizardStepRenderer.jsx +21 -12
  225. package/src/views/builder/viewer/renderers/dataGridComponents.jsx +824 -0
  226. package/src/views/customFilter/CustomFilterDialog.js +1023 -660
  227. package/src/views/customFilter/FixedFilterDialog.js +649 -0
  228. package/src/views/customFilter/SearchFilterDialog.js +248 -0
  229. package/src/views/genericTable/BuilderExpressionParams.js +3 -3
  230. package/src/views/genericTable/ColumnConfiguratorDialog.js +771 -0
  231. package/src/views/genericTable/FixedFilterDialog.js +3 -2
  232. package/src/views/genericTable/FormattingSettingsDialog.js +551 -0
  233. package/src/views/genericTable/ReportSettingsDialog.js +151 -0
  234. package/src/views/genericTable/SGrid.js +1061 -247
  235. package/src/views/genericTable/SearchFilterDialog.js +3 -2
  236. package/src/views/genericTable/TAGGrid.js +83 -69
  237. package/src/views/genericTable/cellEditors/autocompleteEditor.js +5 -9
  238. package/src/views/genericTable/convertStringFunctions.js +336 -0
  239. package/src/views/genericTable/statusBar/rowCountStatusBar.js +3 -1
  240. package/src/views/genericTable/updateRefHelpers.js +424 -0
  241. package/src/views/printBuilder/PrintBuilderViewer.jsx +607 -0
  242. package/src/views/printBuilder/PrintPreviewCanvas.jsx +157 -0
  243. package/src/views/rolePermissions/UpdateReportPermissionDialog.js +316 -0
  244. package/src/@core/components/auth/AclGuard.js +0 -55
  245. package/src/@core/components/auth/AuthGuard.js +0 -40
  246. package/src/@core/components/auth/GuestGuard.js +0 -30
  247. package/src/@core/components/custom-inputs/Horizontal.jsx +0 -143
  248. package/src/@core/components/custom-inputs/Image.jsx +0 -78
  249. package/src/@core/components/custom-inputs/Vertical.jsx +0 -113
  250. package/src/@core/components/customizer/index.jsx +0 -470
  251. package/src/@core/components/customizer/styles.module.css +0 -169
  252. package/src/@core/components/mui/Avatar.jsx +0 -41
  253. package/src/@core/components/mui/Badge.jsx +0 -20
  254. package/src/@core/components/mui/IconButton.jsx +0 -74
  255. package/src/@core/components/mui/TabList.jsx +0 -60
  256. package/src/@core/components/option-menu/index.jsx +0 -137
  257. package/src/@core/components/scroll-to-top/index.jsx +0 -43
  258. package/src/@core/components/spinner/index.js +0 -26
  259. package/src/@core/components/window-wrapper/index.js +0 -27
  260. package/src/@core/contexts/settingsContext.jsx +0 -98
  261. package/src/@core/hooks/useBgColor.js +0 -63
  262. package/src/@core/hooks/useImageVariant.js +0 -27
  263. package/src/@core/hooks/useLayoutInit.js +0 -37
  264. package/src/@core/hooks/useObjectCookie.js +0 -18
  265. package/src/@core/hooks/useSettings.jsx +0 -15
  266. package/src/@core/layouts/BlankLayout.js +0 -37
  267. package/src/@core/layouts/BlankLayoutWithAppBar.js +0 -51
  268. package/src/@core/layouts/HorizontalLayout.jsx +0 -151
  269. package/src/@core/layouts/Layout.js +0 -39
  270. package/src/@core/layouts/VerticalLayout.jsx +0 -124
  271. package/src/@core/layouts/components/blank-layout-with-appBar/index.js +0 -115
  272. package/src/@core/layouts/components/horizontal/app-bar-content/index.js +0 -67
  273. package/src/@core/layouts/components/horizontal/navigation/HorizontalNavGroup.js +0 -352
  274. package/src/@core/layouts/components/horizontal/navigation/HorizontalNavItems.js +0 -21
  275. package/src/@core/layouts/components/horizontal/navigation/HorizontalNavLink.js +0 -195
  276. package/src/@core/layouts/components/horizontal/navigation/index.js +0 -31
  277. package/src/@core/layouts/components/shared-components/LanguageDropdown.js +0 -96
  278. package/src/@core/layouts/components/shared-components/ModeToggler.js +0 -32
  279. package/src/@core/layouts/components/shared-components/NotificationDropdown.js +0 -226
  280. package/src/@core/layouts/components/shared-components/UserDropdown.js +0 -177
  281. package/src/@core/layouts/components/shared-components/footer/FooterContent.js +0 -46
  282. package/src/@core/layouts/components/shared-components/footer/index.js +0 -61
  283. package/src/@core/layouts/components/vertical/appBar/index.js +0 -74
  284. package/src/@core/layouts/components/vertical/navigation/Drawer.js +0 -122
  285. package/src/@core/layouts/components/vertical/navigation/VerticalNavGroup.js +0 -435
  286. package/src/@core/layouts/components/vertical/navigation/VerticalNavHeader.js +0 -180
  287. package/src/@core/layouts/components/vertical/navigation/VerticalNavItems.js +0 -26
  288. package/src/@core/layouts/components/vertical/navigation/VerticalNavLink.js +0 -258
  289. package/src/@core/layouts/components/vertical/navigation/VerticalNavSectionTitle.js +0 -102
  290. package/src/@core/layouts/components/vertical/navigation/index.js +0 -169
  291. package/src/@core/layouts/utils.js +0 -69
  292. package/src/@core/styles/Table.module.css +0 -93
  293. package/src/@core/styles/horizontal/menuItemStyles.js +0 -100
  294. package/src/@core/styles/horizontal/menuRootStyles.js +0 -19
  295. package/src/@core/styles/libs/fullcalendar/index.js +0 -461
  296. package/src/@core/styles/libs/keen-slider/index.js +0 -111
  297. package/src/@core/styles/libs/react-apexcharts/index.js +0 -107
  298. package/src/@core/styles/libs/react-cleave/index.js +0 -33
  299. package/src/@core/styles/libs/react-credit-cards/index.js +0 -11
  300. package/src/@core/styles/libs/react-datepicker/index.js +0 -388
  301. package/src/@core/styles/libs/react-draft-wysiwyg/index.js +0 -144
  302. package/src/@core/styles/libs/react-dropzone/index.js +0 -76
  303. package/src/@core/styles/libs/react-hot-toast/index.js +0 -37
  304. package/src/@core/styles/libs/recharts/index.js +0 -47
  305. package/src/@core/styles/stepper.js +0 -103
  306. package/src/@core/styles/vertical/menuItemStyles.js +0 -138
  307. package/src/@core/styles/vertical/menuSectionStyles.js +0 -54
  308. package/src/@core/styles/vertical/navigationCustomStyles.js +0 -62
  309. package/src/@core/svg/ContentCompact.jsx +0 -17
  310. package/src/@core/svg/ContentWide.jsx +0 -17
  311. package/src/@core/svg/DirectionLtr.jsx +0 -93
  312. package/src/@core/svg/DirectionRtl.jsx +0 -93
  313. package/src/@core/svg/LayoutCollapsed.jsx +0 -59
  314. package/src/@core/svg/LayoutHorizontal.jsx +0 -42
  315. package/src/@core/svg/LayoutVertical.jsx +0 -59
  316. package/src/@core/svg/Logo.jsx +0 -76
  317. package/src/@core/svg/SkinBordered.jsx +0 -54
  318. package/src/@core/svg/SkinDefault.jsx +0 -59
  319. package/src/@core/tailwind/plugin.js +0 -78
  320. package/src/@core/theme/ThemeComponent.js +0 -63
  321. package/src/@core/theme/ThemeOptions.js +0 -71
  322. package/src/@core/theme/breakpoints/index.js +0 -11
  323. package/src/@core/theme/colorSchemes.js +0 -326
  324. package/src/@core/theme/customShadows.js +0 -11
  325. package/src/@core/theme/globalStyles.js +0 -81
  326. package/src/@core/theme/index.js +0 -42
  327. package/src/@core/theme/overrides/accordion.js +0 -51
  328. package/src/@core/theme/overrides/accordion.jsx +0 -85
  329. package/src/@core/theme/overrides/alerts.js +0 -110
  330. package/src/@core/theme/overrides/alerts.jsx +0 -180
  331. package/src/@core/theme/overrides/autocomplete.js +0 -14
  332. package/src/@core/theme/overrides/autocomplete.jsx +0 -68
  333. package/src/@core/theme/overrides/avatar.js +0 -38
  334. package/src/@core/theme/overrides/avatars.js +0 -27
  335. package/src/@core/theme/overrides/backdrop.js +0 -22
  336. package/src/@core/theme/overrides/badges.js +0 -16
  337. package/src/@core/theme/overrides/breadcrumbs.js +0 -11
  338. package/src/@core/theme/overrides/button-group.js +0 -84
  339. package/src/@core/theme/overrides/button.js +0 -93
  340. package/src/@core/theme/overrides/buttonGroup.js +0 -9
  341. package/src/@core/theme/overrides/card.js +0 -83
  342. package/src/@core/theme/overrides/checkbox.jsx +0 -95
  343. package/src/@core/theme/overrides/chip.js +0 -72
  344. package/src/@core/theme/overrides/dataGrid.js +0 -114
  345. package/src/@core/theme/overrides/dateTimePicker.js +0 -65
  346. package/src/@core/theme/overrides/dialog.js +0 -120
  347. package/src/@core/theme/overrides/divider.js +0 -13
  348. package/src/@core/theme/overrides/drawer.js +0 -20
  349. package/src/@core/theme/overrides/fab.js +0 -13
  350. package/src/@core/theme/overrides/form-control-label.js +0 -19
  351. package/src/@core/theme/overrides/icon-button.js +0 -145
  352. package/src/@core/theme/overrides/index.js +0 -103
  353. package/src/@core/theme/overrides/input.js +0 -72
  354. package/src/@core/theme/overrides/link.js +0 -9
  355. package/src/@core/theme/overrides/list.js +0 -44
  356. package/src/@core/theme/overrides/menu.js +0 -25
  357. package/src/@core/theme/overrides/pagination.js +0 -41
  358. package/src/@core/theme/overrides/paper.js +0 -9
  359. package/src/@core/theme/overrides/popover.js +0 -16
  360. package/src/@core/theme/overrides/progress.js +0 -38
  361. package/src/@core/theme/overrides/radio.jsx +0 -80
  362. package/src/@core/theme/overrides/rating.js +0 -16
  363. package/src/@core/theme/overrides/rating.jsx +0 -32
  364. package/src/@core/theme/overrides/select.js +0 -19
  365. package/src/@core/theme/overrides/select.jsx +0 -52
  366. package/src/@core/theme/overrides/slider.js +0 -97
  367. package/src/@core/theme/overrides/snackbar.js +0 -19
  368. package/src/@core/theme/overrides/switch.js +0 -73
  369. package/src/@core/theme/overrides/switches.js +0 -25
  370. package/src/@core/theme/overrides/table-pagination.js +0 -39
  371. package/src/@core/theme/overrides/table.js +0 -81
  372. package/src/@core/theme/overrides/tabs.js +0 -30
  373. package/src/@core/theme/overrides/timeline.js +0 -80
  374. package/src/@core/theme/overrides/toggle-button.js +0 -33
  375. package/src/@core/theme/overrides/toggleButton.js +0 -16
  376. package/src/@core/theme/overrides/tooltip.js +0 -21
  377. package/src/@core/theme/overrides/typography.js +0 -13
  378. package/src/@core/theme/palette/index.js +0 -107
  379. package/src/@core/theme/shadows/index.js +0 -61
  380. package/src/@core/theme/shadows.js +0 -12
  381. package/src/@core/theme/spacing/index.js +0 -3
  382. package/src/@core/theme/spacing.js +0 -5
  383. package/src/@core/theme/typography/index.js +0 -65
  384. package/src/@core/theme/typography.js +0 -84
  385. package/src/@core/utils/create-emotion-cache.js +0 -5
  386. package/src/@core/utils/hex-to-rgba.js +0 -11
  387. package/src/@core/utils/serverHelpers.js +0 -45
  388. package/src/@menu/components/RouterLink.jsx +0 -18
  389. package/src/@menu/components/horizontal-menu/HorizontalNav.jsx +0 -88
  390. package/src/@menu/components/horizontal-menu/Menu.jsx +0 -83
  391. package/src/@menu/components/horizontal-menu/MenuButton.jsx +0 -100
  392. package/src/@menu/components/horizontal-menu/MenuItem.jsx +0 -183
  393. package/src/@menu/components/horizontal-menu/SubMenu.jsx +0 -418
  394. package/src/@menu/components/horizontal-menu/SubMenuContent.jsx +0 -41
  395. package/src/@menu/components/horizontal-menu/VerticalNavInHorizontal.jsx +0 -20
  396. package/src/@menu/components/vertical-menu/Menu.jsx +0 -161
  397. package/src/@menu/components/vertical-menu/MenuButton.jsx +0 -95
  398. package/src/@menu/components/vertical-menu/MenuItem.jsx +0 -180
  399. package/src/@menu/components/vertical-menu/MenuSection.jsx +0 -124
  400. package/src/@menu/components/vertical-menu/NavCollapseIcons.jsx +0 -70
  401. package/src/@menu/components/vertical-menu/NavHeader.jsx +0 -39
  402. package/src/@menu/components/vertical-menu/SubMenu.jsx +0 -420
  403. package/src/@menu/components/vertical-menu/SubMenuContent.jsx +0 -101
  404. package/src/@menu/components/vertical-menu/VerticalNav.jsx +0 -216
  405. package/src/@menu/contexts/horizontalNavContext.jsx +0 -29
  406. package/src/@menu/contexts/verticalNavContext.jsx +0 -65
  407. package/src/@menu/defaultConfigs.js +0 -12
  408. package/src/@menu/hooks/useHorizontalMenu.jsx +0 -19
  409. package/src/@menu/hooks/useHorizontalNav.jsx +0 -19
  410. package/src/@menu/hooks/useMediaQuery.jsx +0 -29
  411. package/src/@menu/hooks/useVerticalMenu.jsx +0 -19
  412. package/src/@menu/hooks/useVerticalNav.jsx +0 -19
  413. package/src/@menu/horizontal-menu/index.jsx +0 -8
  414. package/src/@menu/styles/StyledBackdrop.jsx +0 -15
  415. package/src/@menu/styles/StyledMenuIcon.jsx +0 -12
  416. package/src/@menu/styles/StyledMenuLabel.jsx +0 -16
  417. package/src/@menu/styles/StyledMenuPrefix.jsx +0 -10
  418. package/src/@menu/styles/StyledMenuSectionLabel.jsx +0 -21
  419. package/src/@menu/styles/StyledMenuSuffix.jsx +0 -10
  420. package/src/@menu/styles/StyledSubMenuContent.jsx +0 -43
  421. package/src/@menu/styles/horizontal/StyledHorizontalMenu.jsx +0 -13
  422. package/src/@menu/styles/horizontal/StyledHorizontalMenuItem.jsx +0 -26
  423. package/src/@menu/styles/horizontal/StyledHorizontalNav.jsx +0 -11
  424. package/src/@menu/styles/horizontal/StyledHorizontalNavExpandIcon.jsx +0 -33
  425. package/src/@menu/styles/horizontal/StyledHorizontalSubMenuContent.jsx +0 -18
  426. package/src/@menu/styles/horizontal/StyledHorizontalSubMenuContentWrapper.jsx +0 -10
  427. package/src/@menu/styles/horizontal/horizontalUl.module.css +0 -15
  428. package/src/@menu/styles/styles.module.css +0 -5
  429. package/src/@menu/styles/vertical/StyledVerticalMenu.jsx +0 -16
  430. package/src/@menu/styles/vertical/StyledVerticalMenuItem.jsx +0 -28
  431. package/src/@menu/styles/vertical/StyledVerticalMenuSection.jsx +0 -23
  432. package/src/@menu/styles/vertical/StyledVerticalNav.jsx +0 -67
  433. package/src/@menu/styles/vertical/StyledVerticalNavBgColorContainer.jsx +0 -15
  434. package/src/@menu/styles/vertical/StyledVerticalNavContainer.jsx +0 -23
  435. package/src/@menu/styles/vertical/StyledVerticalNavExpandIcon.jsx +0 -25
  436. package/src/@menu/styles/vertical/verticalNavBgImage.module.css +0 -10
  437. package/src/@menu/svg/ChevronRight.jsx +0 -9
  438. package/src/@menu/svg/Close.jsx +0 -12
  439. package/src/@menu/svg/RadioCircle.jsx +0 -12
  440. package/src/@menu/svg/RadioCircleMarked.jsx +0 -13
  441. package/src/@menu/utils/menuClasses.js +0 -44
  442. package/src/@menu/utils/menuUtils.jsx +0 -145
  443. package/src/@menu/vertical-menu/index.jsx +0 -11
  444. package/src/configs/acl.js +0 -115
  445. package/src/configs/auth.js +0 -5
  446. package/src/configs/aws-exports.js +0 -30
  447. package/src/configs/firebase.js +0 -25
  448. package/src/configs/i18n.js +0 -34
  449. package/src/configs/primaryColorConfig.js +0 -35
  450. package/src/configs/themeConfig.js +0 -44
  451. package/src/layouts/UserLayout.js +0 -94
  452. package/src/layouts/UserThemeOptions.js +0 -191
  453. package/src/layouts/components/Direction.js +0 -30
  454. package/src/layouts/components/HtmlTooltip.js +0 -15
  455. package/src/layouts/components/Translations.js +0 -11
  456. package/src/layouts/components/UserDropdown.js +0 -217
  457. package/src/layouts/components/UserIcon.js +0 -40
  458. package/src/layouts/components/acl/Can.js +0 -6
  459. package/src/layouts/components/acl/CanViewNavGroup.js +0 -36
  460. package/src/layouts/components/acl/CanViewNavLink.js +0 -17
  461. package/src/layouts/components/acl/CanViewNavSectionTitle.js +0 -17
  462. package/src/layouts/components/horizontal/AppBarContent.js +0 -39
  463. package/src/layouts/components/horizontal/ServerSideNavItems.js +0 -44
  464. package/src/layouts/components/mui/StepperComps.js +0 -55
  465. package/src/layouts/components/vertical/AppBarContent.js +0 -35
  466. package/src/layouts/components/vertical/ServerSideNavItems.js +0 -44
  467. package/src/libs/ApexCharts.jsx +0 -5
  468. package/src/libs/ReactPlayer.jsx +0 -5
  469. package/src/libs/Recharts.jsx +0 -4
  470. package/src/libs/auth.js +0 -124
  471. package/src/libs/styles/AppFullCalendar.js +0 -505
  472. package/src/libs/styles/AppKeenSlider.js +0 -116
  473. package/src/libs/styles/AppReactApexCharts.jsx +0 -110
  474. package/src/libs/styles/AppReactDatepicker.jsx +0 -470
  475. package/src/libs/styles/AppReactDropzone.js +0 -76
  476. package/src/libs/styles/AppReactToastify.jsx +0 -108
  477. package/src/libs/styles/AppRecharts.js +0 -55
  478. package/src/libs/styles/inputOtp.module.css +0 -39
  479. package/src/libs/styles/tiptapEditor.css +0 -72
  480. package/src/navigation/horizontal/index.js +0 -246
  481. package/src/navigation/vertical/index.js +0 -253
  482. package/src/pages/401.js +0 -70
  483. package/src/pages/404.js +0 -67
  484. package/src/pages/500.js +0 -68
  485. package/src/pages/[slug].js +0 -115
  486. package/src/pages/_document.js +0 -72
  487. package/src/pages/api/navigation/regenerate-registry.js +0 -116
  488. package/src/pages/api/navigation/save.js +0 -218
  489. package/src/pages/authModule/acl/index.js +0 -48
  490. package/src/pages/authModule/forgot-password/index.js +0 -228
  491. package/src/pages/authModule/permissions/rolePermissions/[id]/rolePermissionsUser/index.js +0 -392
  492. package/src/pages/authModule/permissions/rolePermissions/index.js +0 -343
  493. package/src/pages/authModule/permissions/systemPermissions/index.js +0 -354
  494. package/src/pages/authModule/privacy/index.js +0 -721
  495. package/src/pages/authModule/users/index.js +0 -210
  496. package/src/pages/login/index.js +0 -328
  497. package/src/pages/mainHome/index.js +0 -181
  498. package/src/views/builder/inspector/definitions/cell/main.js +0 -4
  499. package/src/views/builder/inspector/definitions/column/main.js +0 -9
  500. package/src/views/builder/inspector/definitions/column-group/main.js +0 -18
  501. package/src/views/builder/inspector/definitions/header-cell/main.js +0 -5
  502. package/src/views/builder/inspector/definitions/table/main.js +0 -9
  503. package/src/views/builder/viewer/renderers/CellRenderer.jsx +0 -71
  504. package/src/views/builder/viewer/renderers/ColumnGroupRenderer.jsx +0 -96
  505. package/src/views/builder/viewer/renderers/ColumnRenderer.jsx +0 -71
  506. package/src/views/builder/viewer/renderers/HeaderCellRenderer.jsx +0 -78
  507. package/src/views/builder/viewer/renderers/TabRenderer.jsx +0 -82
  508. package/src/views/builder/viewer/renderers/TableRenderer.jsx +0 -92
  509. package/src/views/pages/auth/FooterIllustrationsV2.js +0 -40
  510. package/src/views/pages/misc/FooterIllustrations.js +0 -47
  511. package/src/views/pages/misc/muiTable/CustomPagination.js +0 -34
  512. package/src/views/pages/users/UserManageDialog.js +0 -283
  513. package/src/views/pages/users/UserViewPage.js +0 -199
  514. package/src/views/users/AddUserNameDialog.js +0 -162
  515. package/src/views/users/ContactManage.js +0 -449
  516. package/src/views/users/ResetPasswordDialog.js +0 -242
@@ -1,721 +0,0 @@
1
- import BlankLayout from 'src/@core/layouts/BlankLayout'
2
-
3
- const PrivacyPage = () => {
4
- return (
5
- <div dir='ltr'>
6
- <p>Privacy Policy- Mazjk App</p>
7
- <h1>Section 1: Permeable</h1>
8
- <p>
9
- This Privacy Policy, hereinafter referred to as the "Policy," outlines how the company, hereinafter referred to
10
- as "Mazajk," "we," or "us," collect, utilizes, and shares your personal information.
11
- </p>
12
- <p>This Policy applies to personal information relating to:</p>
13
- <ol>
14
- <li>
15
- Individuals fall into two categories:
16
- <ul>
17
- <li>
18
- Registered users or subscribers of our Mazajk App, referred to as "<strong>Users</strong>".
19
- </li>
20
- <li>
21
- Those who are not Users but may:
22
- <ul>
23
- <li>
24
- Receive products, goods, or other items, including one-time orders, gift subscriptions, meal plan
25
- orders, gift cards, or similar orders, referred to as "<strong>Gifts</strong>" from or through our
26
- Mazajk App.
27
- </li>
28
- <li>
29
- Receive communications about our Mazajk Services (as defined below) due to referrals from Users,
30
- termed as "<strong>Communications</strong>."
31
- </li>
32
- <li>
33
- People who visit our websites, engage with our social media pages, or communicate with us,
34
- collectively referred to as "<strong>Non-Users</strong>"
35
- </li>
36
- </ul>
37
- </li>
38
- </ul>
39
- </li>
40
- </ol>
41
- <ol start='2'>
42
- <li>
43
- Couriers, defined as independent contractors, are matched by the Mazajk Platform to provide delivery services
44
- for orders placed by Users on the Mazajk App &ldquo;<strong>Couriers</strong>&rdquo;.
45
- </li>
46
- <li>
47
- Individuals who own stores and list their products on the Mazajk Platform to utilize Mazajk Services,
48
- receiving and processing orders from Users, are referred to as "<strong>Merchants</strong>".
49
- </li>
50
- <li>
51
- Individuals, excluding Couriers, who act as independent contractors or through their company, providing
52
- services in support of Mazajk's corporate and administrative activities, are categorized as "
53
- <strong>Service</strong> <strong>Providers</strong>".
54
- </li>
55
- <li>
56
- Individuals, whether personally or through their company, who establish supply contracts with Mazajk, are
57
- designated as "<strong>Suppliers</strong>".
58
- </li>
59
- <li>
60
- Those who are currently employed by us or seeking employment with us are collectively referred to as "
61
- <strong>Employees</strong>".
62
- </li>
63
- <li>
64
- Individuals or entities holding shares in Mazajk are identified as "<strong>Shareholders</strong>".
65
- </li>
66
- <li>
67
- Individuals appointed or elected to oversee Mazajk's management and serve on any of the Mazajk entities' board
68
- of directors are referred to as "<strong>Directors</strong>".
69
- </li>
70
- </ol>
71
- <p>This Policy has been crafted in compliance with the General Data Protection Regulation (GDPR).</p>
72
- <p>
73
- If you fall into any of the User, Non-User, Courier, Merchant, Service Provider, Supplier, Employee,
74
- Shareholder, or Director categories, you hereby acknowledge that you have read, comprehended, and consented to
75
- abide by this Policy or any modified version thereof, in accordance with the terms outlined below.&nbsp;
76
- </p>
77
- <p>&nbsp;</p>
78
- <p>&nbsp;</p>
79
- <h1>Section 1- Definitions</h1>
80
- <p>&nbsp;</p>
81
- <p>
82
- <strong>Mazajk Account: </strong>Your account on the Mazajk App, whether as a User, on the Mazajk Merchant
83
- Application if you're a Merchant, or on the Mazajk Couriers Application as Courier.
84
- </p>
85
- <p>
86
- <strong>Mazajk App: </strong>Mazajk's mobile and web application that enables Users to browse Merchant listings
87
- and products, as well as place orders.
88
- </p>
89
- <p>
90
- <strong>Mazajk Couriers Application: </strong>A mobile and web application by Mazajk designed for Couriers,
91
- enabling them to receive and view Users' orders originating from the Mazajk App, and perform delivery services
92
- accordingly.
93
- </p>
94
- <p>
95
- <strong>Mazajk Merchant Application: </strong>A mobile and web application developed by Mazajk for Merchants,
96
- allowing them to receive and review Users' orders from the Mazajk App.
97
- </p>
98
- <p>
99
- <strong>Mazajk Platform: </strong>A software platform created and operated by Mazajk, listing Merchants and
100
- presenting them to Users via the Mazajk App, facilitating order placement, and matching Couriers with orders to
101
- provide delivery services.
102
- </p>
103
- <p>
104
- <strong>Mazajk Services: </strong>The services offered by Mazajk via the Mazajk Platform, encompassing mobile
105
- e-commerce as a service and delivery fleet as a service.
106
- </p>
107
- <p>
108
- <strong>You: </strong>Any individual falling within the categories of User, Non-User, Courier, Merchant, Service
109
- Provider, Supplier, Employee, Shareholder, or Director.
110
- </p>
111
- <p>&nbsp;</p>
112
- <h1>Section 2- Type of information to be collected about you and its use</h1>
113
- <p>&nbsp;</p>
114
- <ol>
115
- <li>
116
- <strong>Users</strong>
117
- </li>
118
- </ol>
119
- <p>&nbsp;</p>
120
- <ul>
121
- <li>Personal information to be collected</li>
122
- </ul>
123
- <p>
124
- When you access and utilize our Mazajk App, we will gather personal information about you. By doing so, you
125
- consent to the collection, utilization, storage, and transmission of your information by us, following the
126
- provisions of this Policy. The personal information we may collect from you in this context may comprise:
127
- </p>
128
- <p>&nbsp;</p>
129
- <ul>
130
- <li>Full name</li>
131
- <li>Email address</li>
132
- <li>Country of residence</li>
133
- <li>Birth date</li>
134
- <li>Phone number</li>
135
- <li>Username and password of your Mazajk Account</li>
136
- <li>
137
- Information regarding delivery pick-up or drop-off locations. If you grant Mazajk access to your device's
138
- location services through your mobile operating system or browser permissions, we may also gather and retain
139
- your device's exact location when our Mazajk App is active, whether in the foreground or background.
140
- </li>
141
- <li>
142
- Details pertaining to the orders you make through the Mazajk App, including items purchased, any specific
143
- instructions, order date and time, subtotal, photos you submit to Mazajk, as well as other purchasing or
144
- consumption histories or preferences.
145
- </li>
146
- <li>
147
- Identification documentation (such as a driver's license, ID card, passport, etc.) may be collected in
148
- specific, restricted instances (e.g., to confirm identity and age when delivering age-restricted products,
149
- goods, or other items).
150
- </li>
151
- <li>
152
- Technical data regarding the hardware and software utilized by you, including your device's IP address,
153
- details about your browser, operating system, or application, unique device identifiers, the web pages you
154
- visit, links you click on, searches conducted within the Mazajk App, and various interactions with the Mazajk
155
- Services.
156
- </li>
157
- </ul>
158
- <p>&nbsp;</p>
159
- <p>&nbsp;</p>
160
- <ul>
161
- <li>
162
- Reason for using your personal information
163
- <ul>
164
- <li>
165
- Provide the Mazajk Services. For example:
166
- <ul>
167
- <li>
168
- Assist you in choosing your delivery address, ensuring more precise delivery of your orders, and
169
- offering Merchant recommendations based on your current location. You have the option to activate or
170
- deactivate location tracking through your device's settings or when prompted by our mobile apps, as
171
- detailed in this Policy. Should you opt to disable the location feature, this decision may affect
172
- certain aspects of your use of Mazajk Services, as Mazajk will not receive exact location data from
173
- your device, potentially impacting delivery accuracy in specific circumstances.
174
- </li>
175
- <li>
176
- Enable Couriers to deliver your items and communicate with you regarding updates or issues. It's
177
- important to note that Couriers do not have access to your phone number, and any calls they make are
178
- made exclusively within the Mazajk App
179
- </li>
180
- </ul>
181
- </li>
182
- <li>
183
- Personalize your experience by presenting tailored content, such as prominently featuring items you
184
- frequently purchase.
185
- </li>
186
- <li>
187
- Gain insights into Users' interactions with Mazajk Services overall, enabling us to test new features and
188
- enhance Mazajk for the benefit of all.
189
- </li>
190
- <li>
191
- Deliver exceptional customer service by communicating with you through the Mazajk App, sending
192
- notifications regarding order status, promotional offers, and more.
193
- </li>
194
- </ul>
195
- </li>
196
- </ul>
197
- <p>
198
- On the contrary, if you decline to furnish us with your personal information, we will be unable to offer you the
199
- services mentioned above.
200
- </p>
201
- <p>&nbsp;</p>
202
- <ol>
203
- <li>
204
- <strong>Non-Users</strong>
205
- </li>
206
- </ol>
207
- <ul>
208
- <li>Personal information to be collected</li>
209
- </ul>
210
- <p>
211
- When you engage in communication or contact us, or when you receive Gifts and/or Communications through another
212
- User on the Mazajk App (where the User bears sole responsibility for ensuring that both the User and Mazajk have
213
- the consent or approval of the Non-User to process the Non-User's personal information, including, but not
214
- limited to, sending communications to the Non-User, and by submitting the Non-User's personal information to us,
215
- the User confirms that such consent or approval has been duly acquired), we may automatically gather and retain
216
- specific personal information concerning you and the activities in which you have participated:
217
- </p>
218
- <p>&nbsp;</p>
219
- <ul>
220
- <li>Your name and contact information</li>
221
- <li>Social networking contact details</li>
222
- <li>Information that you voluntarily provide to us</li>
223
- <li>Your address (when applicable, for the receipt of the Gift)</li>
224
- <li>
225
- The nature and content of your communication and the action we took in response to your inquiry or request
226
- (when applicable).
227
- </li>
228
- </ul>
229
- <p>&nbsp;</p>
230
- <ul>
231
- <li>Reason for using your personal information</li>
232
- <li>Furnish customer service and respond to your inquiries or requests.</li>
233
- <li>Complete the delivery of the Gift to your intended recipient.</li>
234
- </ul>
235
- <p>&nbsp;</p>
236
- <p>&nbsp;</p>
237
- <ol>
238
- <li>
239
- <strong>Couriers, Merchants, Service Providers and Suppliers</strong>
240
- </li>
241
- </ol>
242
- <ul>
243
- <li>Personal information to be collected</li>
244
- </ul>
245
- <p>
246
- When you participate with Mazajk as a Courier, Merchant, Service Provider, or Supplier, we may automatically
247
- gather and retain specific personal information about you and your involvement in the respective activity:
248
- </p>
249
- <p>&nbsp;</p>
250
- <ul>
251
- <li>Full name</li>
252
- <li>Email address</li>
253
- <li>Birth date</li>
254
- <li>&nbsp;Phone number</li>
255
- <li>Country of residence, domicile and nationality information</li>
256
- <li>Username and password of your Mazajk Account (when applicable, for the Courier and Merchant).</li>
257
- <li>Precise geolocation and picture for the Couriers.</li>
258
- </ul>
259
- <p>&nbsp;</p>
260
- <ul>
261
- <li>Reason for using your personal information</li>
262
- </ul>
263
- <p>
264
- Facilitating your onboarding as a Courier, Merchant, Service Provider, or Supplier, which includes performing
265
- specific checks (especially for Couriers, such as background checks, vehicle registration, insurance
266
- verification, and reviewing driving history, etc.), managing your association with Mazajk, and establishing your
267
- Mazajk Account (if applicable, for Couriers and Merchants).
268
- </p>
269
- <ul>
270
- <li>Managing and overseeing the operation of the Mazajk Services,</li>
271
- <li>
272
- Utilizing location tracking for Couriers to verify route details, assess delivery options based on your
273
- location, and inform Users about their order's progress through the Mazajk App (such as when the order was
274
- picked up and delivered).
275
- </li>
276
- </ul>
277
- <p>&nbsp;</p>
278
- <ol>
279
- <li>
280
- <strong>Employees&nbsp;</strong>
281
- </li>
282
- </ol>
283
- <ul>
284
- <li>Personal information to be collected</li>
285
- </ul>
286
- <p>
287
- When you are employed by us or express an interest in applying for a position, we may gather and retain specific
288
- personal information concerning you and your engagement in the respective activity:
289
- </p>
290
- <ul>
291
- <li>Full name</li>
292
- <li>Email address</li>
293
- <li>Your current and up to date CV</li>
294
- <li>Birth date</li>
295
- <li>&nbsp;Phone number (and emergency contact phone number)</li>
296
- <li>Country of residence, domicile and nationality information</li>
297
- <li>Work permit and visa applications</li>
298
- <li>Bank account details</li>
299
- <li>&nbsp;Identification documentation (drivers&rsquo; license, identification card, passport, photo, etc.)</li>
300
- </ul>
301
- <p>&nbsp;</p>
302
- <ul>
303
- <li>Reason for using your personal information</li>
304
- </ul>
305
- <ul>
306
- <li>To schedule an interview or extend a job offer</li>
307
- <li>To keep you informed throughout the recruitment process</li>
308
- <li>To evaluate your skills, qualifications, and suitability for the position and/or to assess your work.</li>
309
- <li>To create contractual agreements and other legal documents necessary for your engagement.</li>
310
- <li>To reach out to your next of kin in emergency situations.</li>
311
- <li>To track and document your performance during your agreed-upon service periods with us.</li>
312
- <li>To document completed training.</li>
313
- <li>To record and monitor workplace accidents.</li>
314
- <li>To prepare residency paperwork if required.</li>
315
- <li>To process your salary payments.</li>
316
- </ul>
317
- <p>&nbsp;</p>
318
- <p>&nbsp;</p>
319
- <ol>
320
- <li>
321
- <strong>Shareholders</strong>
322
- </li>
323
- </ol>
324
- <ul>
325
- <li>Personal information to be collected</li>
326
- </ul>
327
- <ul>
328
- <li>Full name</li>
329
- <li>Contact details (address, service address, email address, phone number)</li>
330
- <li>Current and up to date CV</li>
331
- <li>
332
- Country of residence (proof of residency, residence visa), country of tax residence domicile and nationality
333
- information
334
- </li>
335
- <li>Bank account details</li>
336
- <li>PEP declaration information</li>
337
- <li>Identification documentation</li>
338
- <li>Share ownership details</li>
339
- </ul>
340
- <ul>
341
- <li>Reason for using your personal information</li>
342
- </ul>
343
- <ul>
344
- <li>To uphold precise shareholder records,</li>
345
- <li>To handle share transactions,</li>
346
- <li>To fulfill reporting obligations to relevant authorities,</li>
347
- <li>To utilize it in due diligence procedures,</li>
348
- <li>To guarantee accurate representation during shareholder meetings.</li>
349
- </ul>
350
- <p>&nbsp;</p>
351
- <p>&nbsp;</p>
352
- <ol>
353
- <li>
354
- <strong>Directors</strong>
355
- </li>
356
- </ol>
357
- <ul>
358
- <li>Personal information to be collected</li>
359
- </ul>
360
- <p>
361
- When serving as a director,<strong>&nbsp;</strong>we may collect and store certain personal information about
362
- you:
363
- </p>
364
- <ul>
365
- <li>Full name</li>
366
- <li>Contact details (address, service address, email address, phone number)</li>
367
- <li>Current and up to date CV</li>
368
- <li>
369
- Country of residence (proof of residency, residence visa), country of tax residence domicile and nationality
370
- information
371
- </li>
372
- <li>Bank account details</li>
373
- <li>PEP declaration information</li>
374
- <li>Identification documentation</li>
375
- <li>Share ownership details</li>
376
- </ul>
377
- <ul>
378
- <li>Reason for using your personal information</li>
379
- <li>To keep precise records of directors</li>
380
- <li>To fulfill reporting obligations to relevant authorities</li>
381
- <li>To facilitate communication between Directors and Shareholders, among other purposes.</li>
382
- </ul>
383
- <p>
384
- The objectives for utilizing your personal information as outlined in the sections Section of this Policy are
385
- collectively referred to as the "<strong>Purposes</strong>&rdquo;.&nbsp;
386
- </p>
387
- <h1>Section 3-&nbsp; Basis of our lawful processing</h1>
388
- <ol>
389
- <li>
390
- Our compliance with the GDPR entails that we can only employ your personal information when there exists a
391
- legal basis for doing so. In this section, we elucidate the legal justifications we have for utilizing your
392
- personal information:
393
- </li>
394
- </ol>
395
- <p>&nbsp;</p>
396
- <ul>
397
- <li>
398
- <strong>Our contract with you:</strong>
399
- <ul>
400
- <li>We utilize your personal information as it is essential for fulfilling The Purposes.</li>
401
- <li>
402
- It is also employed in relation to the establishment, execution, or conclusion of our agreement with you,
403
- where applicable (for Couriers, Merchants, Service Providers, Suppliers, Employees, Shareholders, or
404
- Directors).
405
- </li>
406
- </ul>
407
- </li>
408
- </ul>
409
- <p>&nbsp;</p>
410
- <ul>
411
- <li>
412
- <strong>Our Legal Obligations:</strong>
413
- </li>
414
- </ul>
415
- <p>
416
- At times, processing your personal information is essential for us to fulfill a legal obligation mandated by
417
- regulations such as the GDPR or other mandatory legal requirements.
418
- </p>
419
- <p>&nbsp;</p>
420
- <ul>
421
- <li>
422
- <strong>Your Consent:</strong>
423
- <ul>
424
- <li>
425
- When you have granted us your consent to process your personal information for any of the Purposes. Please
426
- refer to Article X, titled "Your consent to this Policy and its enforcement," in this Policy for more
427
- information.
428
- </li>
429
- <li>
430
- Please take note that if you are a parent, legal guardian, group organizer, or any other authorized
431
- individual providing personal information to us on behalf of someone under the age of sixteen, you
432
- guarantee and consent that:
433
- </li>
434
- <li>
435
- You possess the explicit consent from every individual within your group to furnish the requisite
436
- categories of personal information to us
437
- </li>
438
- <li>
439
- All members of your group are fully informed about our Policy and understand that their information will
440
- be transmitted to us for processing.
441
- </li>
442
- <li>
443
- You are entitled to revoke your consent at any time by reaching out to us via the email address provided
444
- at info@og-iraq.com. It is important to note that withdrawing your consent will not impact the legality of
445
- processing your personal information conducted prior to the withdrawal of your consent.
446
- </li>
447
- </ul>
448
- </li>
449
- </ul>
450
- <p>&nbsp;</p>
451
- <ul>
452
- <li>
453
- <strong>Our </strong>
454
- <strong>Legitimate</strong>
455
- <strong> Interests:</strong>
456
- </li>
457
- </ul>
458
- <p>
459
- When processing your personal information is essential for our legitimate interests or those of a third party,
460
- as long as these interests do not overshadow your individual rights and interests.
461
- </p>
462
- <ul>
463
- <li>
464
- <strong>Our </strong>
465
- <strong>legitimate</strong>
466
- <strong> interests encompass:</strong>
467
- </li>
468
- </ul>
469
- <ul>
470
- <li>Enhancing, evolving, and refining our Mazajk Services</li>
471
- <li>Conducting our direct marketing initiatives</li>
472
- <li>Enhancing the quality of our customer service</li>
473
- <li>Generating managerial data, including internal audits and business administration,</li>
474
- <li>
475
- Engaging in communication with authorities and administrative entities as part of our business operations
476
- </li>
477
- <li>Carrying out financial audits.</li>
478
- </ul>
479
- <p>&nbsp;</p>
480
- <h1>Section 4- The duration for retaining your personal information</h1>
481
- <ul>
482
- <li>
483
- We will hold onto your personal information for a duration of 10 years or as required to fulfill any legal,
484
- accounting, or reporting obligations.
485
- </li>
486
- <li>
487
- To ascertain the suitable retention timeframe for personal data, we take into account factors such as the
488
- volume, type, and sensitivity of the information, the potential risks associated with unauthorized access or
489
- disclosure, the reasons for processing the data, the feasibility of achieving those purposes through
490
- alternative means, and the pertinent legal mandates.
491
- </li>
492
- <li>
493
- Upon the conclusion of the aforementioned retention period, your personal information will be permanently
494
- removed from our records.
495
- </li>
496
- </ul>
497
- <p>&nbsp;</p>
498
- <p>&nbsp;</p>
499
- <h1>Section 5- How we store your information</h1>
500
- <ul>
501
- <li>
502
- Mazajk takes extensive precautions to securely store your personal information on protected cloud servers that
503
- adhere to various compliance standards, including the GDPR. These servers incorporate advanced encryption and
504
- security protocols to safeguard the confidentiality and integrity of your personal data.
505
- </li>
506
- <li>
507
- On occasion, we may opt to enlist the services of other companies for the storage or processing of your
508
- personal information. In such instances, we ensure that any third-party company we engage adheres to the same
509
- rigorous data security standards and provides you with the same level of personal information protection as we
510
- do.
511
- </li>
512
- <li>
513
- Mazajk is deeply committed to upholding the security of your personal information, and we have implemented
514
- comprehensive measures to safeguard it against unauthorized or unlawful processing, as well as accidental
515
- loss, destruction, or damage. Each individual with access to your personal data is bound by contractual
516
- obligations to uphold the confidentiality of your information and adhere to the GDPR.
517
- </li>
518
- </ul>
519
- <p>
520
- <strong>&nbsp;</strong>
521
- <strong>&nbsp;</strong>
522
- </p>
523
- <h1>Section 6-&nbsp; Who do we disclose your personal information to</h1>
524
- <p>&nbsp;</p>
525
- <ul>
526
- <li>
527
- To accomplish the Purposes and/or comply with our legal obligations, it may be necessary for us to disclose
528
- and/or transfer your personal information to other organizations and companies.
529
- </li>
530
- </ul>
531
- <p>&nbsp;</p>
532
- <ul>
533
- <li>Mazajk may share personal information with (where applicable):</li>
534
- </ul>
535
- <ul>
536
- <li>Users</li>
537
- <li>Non-Users</li>
538
- <li>Service Providers</li>
539
- <li>Couriers</li>
540
- <li>Merchants</li>
541
- <li>&nbsp;Suppliers</li>
542
- <li>Employees</li>
543
- <li>Law enforcement agencies</li>
544
- <li>Group companies</li>
545
- <li>Third parties</li>
546
- <li>Legal advisors</li>
547
- <li>Accounting consultants</li>
548
- <li>Auditors</li>
549
- <li>Any person to whom you have given your consent to disclose your personal data.</li>
550
- </ul>
551
- <ul>
552
- <li>
553
- We share information under the following principles:
554
- <ul>
555
- <li>For the Purposes described</li>
556
- <li>
557
- With your consent or upon your request, we will disclose your information to entities outside of Mazajk
558
- when we have your explicit consent or as per your instructions,
559
- </li>
560
- <li>For external processing, as detailed in Article V of this Policy</li>
561
- <li>
562
- For legal compliance: we share your information when we reasonably believe that such disclosure is
563
- necessary to (a) adhere to applicable laws, regulations, legal proceedings, or requests from law
564
- enforcement or regulatory authorities, (b) prevent, identify, or manage fraud, security, or technical
565
- issues, and (c) safeguard the well-being, rights, or property of individuals, the public, or Mazajk
566
- </li>
567
- <li>
568
- In an anonymous or aggregated form &ndash; We may share data with third parties in a manner that does not
569
- personally identify individuals, both on a non-identifying and aggregated basis
570
- </li>
571
- <li>
572
- For business purposes: We may disclose your information to effectively deliver, enhance, or maintain our
573
- Mazajk Services to you. Additionally, we may share your information in connection with, or during
574
- negotiations concerning, mergers, the sale of company assets, financing, or the acquisition of all or part
575
- of our business by another company. We may also exchange information among Mazajk and its existing and
576
- prospective parent companies, affiliates, subsidiaries, and other entities under common control and
577
- ownership.
578
- </li>
579
- </ul>
580
- </li>
581
- </ul>
582
- <p>&nbsp;</p>
583
- <h1>Section 7-&nbsp; Cookies and Other Tracking Technologies</h1>
584
- <p>&nbsp;</p>
585
- <ul>
586
- <li>
587
- Mazajk employs various technologies for gathering personal information, which include cookies (small text
588
- files sent by your computer when you access our Mazajk App through a browser to collect standard internet log
589
- data and visitor behavior information), as well as device identifiers.
590
- </li>
591
- <li>Mazajk utilizes the following types of cookies:</li>
592
- </ul>
593
- <p>&nbsp;</p>
594
- <ul>
595
- <li>Session cookies, which expire when you close your Mazajk App,</li>
596
- <li>Persistent cookies, which expire when you opt to remove them from your Mazajk App,</li>
597
- <li>
598
- Functionality cookies, enabling us to recognize you on the Mazajk App and recall your previously chosen
599
- preferences, including past orders and location
600
- </li>
601
- </ul>
602
- <p>&nbsp;</p>
603
- <ul>
604
- <li>
605
- Cookies are employed by Mazajk in multiple ways to enhance and tailor your experience, as well as to remember
606
- information you have previously logged into the Mazajk App. You have the option to configure your App to
607
- decline all cookies or to notify you when a cookie is being sent.
608
- </li>
609
- <li>
610
- Please be aware that disabling all cookies via your Mazajk App may result in certain or all Mazajk App
611
- features becoming unavailable.
612
- </li>
613
- <li>
614
- We may seek third-party services to help us understand the usage of Mazajk App, and such third-parties may
615
- also deploy cookies on our site or collect information through our mobile applications.
616
- </li>
617
- </ul>
618
- <h1>Section 8- Your rights</h1>
619
- <p>&nbsp;</p>
620
- <ul>
621
- <li>You have the following rights, in accordance with the conditions outlined in the GDPR:</li>
622
- </ul>
623
- <p>&nbsp;</p>
624
- <ul>
625
- <li>The right to access your personal information, including related details</li>
626
- <li>The right to correct any inaccuracies or complete any incomplete personal information</li>
627
- <li>The right to request the deletion of your personal information under specific circumstances</li>
628
- <li>The right to object to or restrict the processing of your personal information</li>
629
- <li>
630
- The right to data portability, entailing the ability to receive an electronic copy of the personal information
631
- you provided to us, or have it transmitted to a third party of your choice.
632
- </li>
633
- </ul>
634
- <p>&nbsp;</p>
635
- <ul>
636
- <li>
637
- If you intend to exercise any of the rights mentioned above, kindly reach out to us at info@og-iraq.com. We
638
- will promptly address your request, aiming to provide a response within one month of receiving it, unless an
639
- extension is necessary.
640
- </li>
641
- <li>
642
- We are committed to maintaining the accuracy and currency of the personal information we have on record about
643
- you. If you believe any information we possess is inaccurate or incomplete, please promptly email or send a
644
- written notification to the provided addresses above. This will enable us to update our records accordingly.
645
- </li>
646
- <li>To delete your Mazajk Account, please follow these steps:</li>
647
- </ul>
648
- <p>&nbsp;</p>
649
- <ul>
650
- <li>Open the app and log in to your account. Then, go to the "Profile" section within the "Account" menu.</li>
651
- <li>Start the account deletion process by selecting the option to delete your account.</li>
652
- <li>
653
- Follow the provided prompts to confirm your request for account deletion. Keep in mind that upon confirmation,
654
- your account will be permanently deleted. If you also wish to permanently erase any personal information that
655
- we have previously collected, please send an email to <a href='mailto:info@og-iraq.com'>info@og-iraq.com</a>.
656
- </li>
657
- </ul>
658
- <p>&nbsp;</p>
659
- <h1>Section 9- Personal information breach</h1>
660
- <p>&nbsp;</p>
661
- <p>
662
- If a breach of personal information is expected to pose a substantial risk to your rights and freedoms, we will
663
- promptly inform you of the breach (unless specific GDPR conditions are met) without unnecessary delay. This
664
- notification will provide a clear and straightforward description of the nature of the personal information
665
- breach, and it will include, at a minimum, the details and actions mandated by the GDPR.&nbsp;
666
- </p>
667
- <p>&nbsp;</p>
668
- <p>&nbsp;</p>
669
- <h1>Section 10- Your consent to this Policy and its enforcement</h1>
670
- <ul>
671
- <li>
672
- By Utilizing The Mazajk App, Engaging In Our Mazajk Services, Interacting With Our Social Media Platforms,
673
- Establishing A Contractual Relationship With Us As A Merchant, Service Provider, Or Supplier, Seeking
674
- Employment With Us, Or Entering Into Any Agreement With Us, You Explicitly Acknowledge And Consent That:
675
- </li>
676
- </ul>
677
- <p>&nbsp;</p>
678
- <ul>
679
- <li>
680
- You Unconditionally Grant Your Consent And Fully Accept All The Terms And Conditions Outlined In This Policy,
681
- Including, Without Limitation, The Automatic Consent For The Collection, Utilization, And Sharing Of Your
682
- Personal Information As Detailed Herein.
683
- </li>
684
- <li>
685
- Furthermore, You Acknowledge That No Provision Within This Policy Will Restrict, Modify, Amend, Or In Any
686
- Manner Affect Any Rights That You May Have Independently Conferred Upon Us Through Any Other Agreement That
687
- You May Have Separately Entered Into With Us.
688
- </li>
689
- </ul>
690
- <p>&nbsp;</p>
691
- <p>&nbsp;</p>
692
- <h1>Section 11- Changes to this Policy</h1>
693
- <p>&nbsp;</p>
694
- <p>
695
- We will periodically update this Policy, and any revised versions will be published on this page. Therefore, we
696
- recommend that you review it periodically to stay informed.&nbsp;
697
- </p>
698
- <p>&nbsp;</p>
699
- <h1>Section 12- Applicable law and dispute resolution</h1>
700
- <p>
701
- This Policy, as well as any dispute, controversy, legal proceedings, or claims of any kind arising directly or
702
- indirectly from this Policy or its creation (including non-contractual disputes or claims), shall be subject to
703
- and interpreted in accordance with the following:
704
- </p>
705
- <ol>
706
- <li>Iraqi Laws and the exclusive jurisdiction of Iraqi courts, in cases involving the company.</li>
707
- <li>
708
- Iraqi Laws and the exclusive jurisdiction of the courts in Baghdad, Iraq, for matters related to Mazajk App.
709
- </li>
710
- </ol>
711
- <p>&nbsp;</p>
712
- <h1>Section 13- Contact information</h1>
713
- <p>&nbsp;</p>
714
- <p>If you have any questions or comments about our Privacy Policy, please contact us at:</p>
715
- <p>info@og-iraq.com</p>
716
- </div>
717
- )
718
- }
719
- PrivacyPage.getLayout = page => <BlankLayout>{page}</BlankLayout>
720
- PrivacyPage.guestGuard = true
721
- export default PrivacyPage