@asaleh37/ui-base 25.12.10 → 25.12.17

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/__ODockerfile ADDED
@@ -0,0 +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
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;