@asaleh37/ui-base 25.12.122 → 25.12.171

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 (29) hide show
  1. package/__ODockerfile +14 -14
  2. package/dist/index.d.ts +2 -0
  3. package/dist/index.js +108 -108
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.mjs +112 -112
  6. package/dist/index.mjs.map +1 -1
  7. package/package-lock.json/342/200/216 +9039 -9039
  8. package/package.json +122 -122
  9. package/src/components/administration/admin/CustomPersonGrid.tsx +361 -0
  10. package/src/components/administration/admin/OrgProvidedPersonGrid.tsx +347 -0
  11. package/src/components/administration/admin/OrganizationMemberGrid.tsx +63 -49
  12. package/src/components/administration/admin/PersonGrid.tsx +10 -344
  13. package/src/components/administration/dev/WorkflowDocumentGrid.tsx +2 -1
  14. package/src/components/templates/DataEntryTemplates/TemplateDataForm/FormElementField.tsx +238 -238
  15. package/src/components/templates/DataEntryTemplates/TemplateDataForm/TemplateForm.tsx +427 -427
  16. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/DataGridColumnsUtil.tsx +198 -198
  17. package/src/components/templates/DataEntryTemplates/TemplateDataGrid/TemplateGrid.tsx +1047 -1047
  18. package/src/components/templates/report/ExcelReportViewer.tsx +72 -72
  19. package/src/components/templates/report/ReportViewer.tsx +272 -272
  20. package/src/components/templates/workflow/WorkflowDocumentPanel.tsx +6 -2
  21. package/src/hooks/UseWindow.tsx +111 -111
  22. package/src/hooks/index.ts +22 -22
  23. package/src/hooks/useCommonStore.tsx +29 -29
  24. package/src/hooks/useParameterPanel.tsx +159 -159
  25. package/src/layout/NavigationTree.tsx +8 -1
  26. package/src/layout/TopBar.tsx +72 -55
  27. package/src/main.tsx +2 -1
  28. package/src/navigationItems/Administration/adminNavigationItems.tsx +1 -1
  29. package/src/redux/features/common/AppInfoSlice.ts +4 -0
package/__ODockerfile CHANGED
@@ -1,14 +1,14 @@
1
- # STEP 1 — Build static files
2
- FROM node:18 AS build
3
- WORKDIR /app
4
-
5
- COPY package.json ./
6
- RUN npm install --force
7
-
8
- COPY . .
9
- RUN npm run build
10
-
11
- # STEP 2 — Nginx to serve static build
12
- FROM nginx:1.25
13
- COPY --from=build /app/dist /usr/share/nginx/html
14
- EXPOSE 80
1
+ # STEP 1 — Build static files
2
+ FROM node:18 AS build
3
+ WORKDIR /app
4
+
5
+ COPY package.json ./
6
+ RUN npm install --force
7
+
8
+ COPY . .
9
+ RUN npm run build
10
+
11
+ # STEP 2 — Nginx to serve static build
12
+ FROM nginx:1.25
13
+ COPY --from=build /app/dist /usr/share/nginx/html
14
+ EXPOSE 80
package/dist/index.d.ts CHANGED
@@ -66,6 +66,8 @@ type AppInfo = {
66
66
  appName: string | null;
67
67
  appVersion: string | null;
68
68
  appLogo: any | null;
69
+ isUserProfileManaged?: boolean;
70
+ isLocalizationEnabled?: boolean;
69
71
  businessLocals?: {
70
72
  ar: {
71
73
  [key: string]: string;