@feedmepos/mf-hrm-portal 2.0.2 → 2.0.4-dev

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 (32) hide show
  1. package/dist/{AuditLogList-DmzjFNtu.js → AuditLogList-3LzPMYki.js} +12 -12
  2. package/dist/{EmployeeList-C0P01r8f.js → EmployeeList-Cwwv_Zlz.js} +5 -5
  3. package/dist/{Main-Ea3YRYRi.js → Main-91oL3FhD.js} +8 -8
  4. package/dist/{Main-C4bwcSak.js → Main-Djsmh0z3.js} +5 -5
  5. package/dist/PermissionSetList-Djw6Kq-P.js +327 -0
  6. package/dist/PortalPermissionEditor.vue_vue_type_script_setup_true_lang-FOlmgK60.js +3287 -0
  7. package/dist/{RoleList-DPFSIcJM.js → RoleList-Dx7S9lLy.js} +6 -6
  8. package/dist/TeamMemberList-CG-MGTve.js +979 -0
  9. package/dist/{TimesheetList-D_aRlhAF.js → TimesheetList-DMWMr6qz.js} +6 -6
  10. package/dist/api/report-query/index.d.ts +1 -0
  11. package/dist/{app-D3XzDpIl.js → app-hn4p1_a3.js} +786 -689
  12. package/dist/app.js +1 -1
  13. package/dist/composables/useCustomReportPermissions.d.ts +7 -0
  14. package/dist/{dayjs.min-CgKI64Kb.js → dayjs.min-DnPftI7E.js} +1 -1
  15. package/dist/{employee-DiMO7OBV.js → employee-iJ_7LE99.js} +3 -3
  16. package/dist/helpers/permission-set.d.ts +9 -0
  17. package/dist/helpers/rule.d.ts +4 -1
  18. package/dist/{index-BNwH5i7v.js → index-Cm7g-tL7.js} +1639 -1584
  19. package/dist/{index-D-9VSDyv.js → index-DRAOMLuj.js} +1 -1
  20. package/dist/{lodash-JVfJjN55.js → lodash-DL2QGSnr.js} +1 -1
  21. package/dist/{team-CpDDOMg5.js → team-C1LaI_Ne.js} +1 -1
  22. package/dist/{timesheet-B7pXd6CJ.js → timesheet-DU4OLZK4.js} +2 -2
  23. package/dist/tsconfig.app.tsbuildinfo +1 -1
  24. package/dist/{useAppStore-CRiXBv8h.js → useAppStore-CWLLJN_9.js} +1 -1
  25. package/dist/{useLoading-TD1OqZ-E.js → useLoading-BaqJwyj8.js} +1 -1
  26. package/dist/useReportPermissions-DC1NFQEs.js +59 -0
  27. package/dist/views/team/components/BasePermission.vue.d.ts +17 -0
  28. package/package.json +1 -1
  29. package/dist/PermissionSetList-BConvvPI.js +0 -323
  30. package/dist/PortalPermissionEditor.vue_vue_type_script_setup_true_lang-Bh8iS3gP.js +0 -3092
  31. package/dist/TeamMemberList-2X_3s91v.js +0 -973
  32. package/dist/useReportPermissions-VXbSUZR5.js +0 -65
@@ -1,13 +1,13 @@
1
1
  import { ref as d, computed as b, defineComponent as ce, onMounted as me, watch as X, resolveComponent as i, createElementBlock as B, openBlock as D, Fragment as Z, createVNode as l, createElementVNode as u, unref as n, withCtx as C, createCommentVNode as pe, toDisplayString as $, createTextVNode as ve, createBlock as z, isRef as fe, renderList as he, nextTick as ge } from "vue";
2
- import { d as v } from "./dayjs.min-CgKI64Kb.js";
2
+ import { d as v } from "./dayjs.min-DnPftI7E.js";
3
3
  import { useI18n as we, useCoreStore as ye, RestaurantSelector as be } from "@feedmepos/mf-common";
4
4
  import { useSnackbar as _e, components as De } from "@feedmepos/ui-library";
5
- import { _ as xe } from "./app-D3XzDpIl.js";
5
+ import { _ as xe } from "./app-hn4p1_a3.js";
6
6
  import { _ as Se } from "./index.vue_vue_type_script_setup_true_lang-Vc5ARO29.js";
7
- import { u as ke } from "./useLoading-TD1OqZ-E.js";
8
- import { i as Ce, j as Ve, s as Fe } from "./index-BNwH5i7v.js";
9
- import { u as Ye } from "./employee-DiMO7OBV.js";
10
- import { u as Le } from "./timesheet-B7pXd6CJ.js";
7
+ import { u as ke } from "./useLoading-BaqJwyj8.js";
8
+ import { i as Ce, j as Ve, s as Fe } from "./index-Cm7g-tL7.js";
9
+ import { u as Ye } from "./employee-iJ_7LE99.js";
10
+ import { u as Le } from "./timesheet-DU4OLZK4.js";
11
11
  function Me(x, a) {
12
12
  return ["years", "months"].find((S) => {
13
13
  const k = x.startOf(S), f = x.endOf(S);
@@ -1,5 +1,6 @@
1
1
  import type { ReportPermissionItem } from '@/types/report-query';
2
2
  declare const ReportQueryAPI: {
3
3
  fetchReportPermissions(businessId: string): Promise<ReportPermissionItem[]>;
4
+ fetchReportPermissionsForPortal(businessId: string): Promise<ReportPermissionItem[]>;
4
5
  };
5
6
  export default ReportQueryAPI;