@africanies/angular-web-sdk 0.1.9 → 0.1.10

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 (55) hide show
  1. package/.nx/cache/1149535958171016935/dist/libs/africanies-theme/README.md +46 -0
  2. package/.nx/cache/1149535958171016935/dist/libs/africanies-theme/fesm2022/africanies-africanies-theme.mjs +243 -0
  3. package/.nx/cache/1149535958171016935/dist/libs/africanies-theme/fesm2022/africanies-africanies-theme.mjs.map +1 -0
  4. package/.nx/cache/1149535958171016935/dist/libs/africanies-theme/package.json +35 -0
  5. package/.nx/cache/1149535958171016935/dist/libs/africanies-theme/tailwind-preset.cjs +330 -0
  6. package/.nx/cache/1149535958171016935/dist/libs/africanies-theme/types/africanies-africanies-theme.d.ts +178 -0
  7. package/.nx/cache/3735952477975556635/dist/libs/africanies-ui/README.md +68 -0
  8. package/.nx/cache/3735952477975556635/dist/libs/africanies-ui/assets/brand/africanies-logo-mini.png +0 -0
  9. package/.nx/cache/3735952477975556635/dist/libs/africanies-ui/assets/brand/africanies-logo.png +0 -0
  10. package/.nx/cache/3735952477975556635/dist/libs/africanies-ui/assets/brand/africanies-logo.svg +5 -0
  11. package/.nx/cache/3735952477975556635/dist/libs/africanies-ui/assets/carriers/dhl.svg +7 -0
  12. package/.nx/cache/3735952477975556635/dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs +19998 -0
  13. package/.nx/cache/3735952477975556635/dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs.map +1 -0
  14. package/.nx/cache/3735952477975556635/dist/libs/africanies-ui/package.json +35 -0
  15. package/.nx/cache/3735952477975556635/dist/libs/africanies-ui/types/africanies-africanies-ui.d.ts +5616 -0
  16. package/.nx/cache/run.json +17 -17
  17. package/.nx/cache/terminalOutputs/1149535958171016935 +21 -0
  18. package/.nx/cache/terminalOutputs/3735952477975556635 +21 -0
  19. package/.nx/workspace-data/0091ABA9-5C90-580D-953C-8C94E763ADB5-v3.db +0 -0
  20. package/.nx/workspace-data/0091ABA9-5C90-580D-953C-8C94E763ADB5-v3.db-shm +0 -0
  21. package/.nx/workspace-data/0091ABA9-5C90-580D-953C-8C94E763ADB5-v3.db-wal +0 -0
  22. package/.nx/workspace-data/d/daemon.log +1430 -0
  23. package/.nx/workspace-data/d/server-process.json +2 -2
  24. package/.nx/workspace-data/file-map.json +3332 -3334
  25. package/.nx/workspace-data/nx_files.nxt +0 -0
  26. package/.nx/workspace-data/project-graph.json +2 -2
  27. package/apps/playground/src/app/pages/chip-page.ts +11 -1
  28. package/apps/playground/src/app/pages/tokens-page.ts +2 -2
  29. package/apps/playground/src/app/snippets/chip.snippets.ts +5 -0
  30. package/dist/libs/africanies-theme/fesm2022/africanies-africanies-theme.mjs +8 -8
  31. package/dist/libs/africanies-theme/fesm2022/africanies-africanies-theme.mjs.map +1 -1
  32. package/dist/libs/africanies-theme/tailwind-preset.cjs +3 -3
  33. package/dist/libs/africanies-theme/types/africanies-africanies-theme.d.ts +5 -3
  34. package/dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs +869 -371
  35. package/dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs.map +1 -1
  36. package/dist/libs/africanies-ui/types/africanies-africanies-ui.d.ts +135 -40
  37. package/libs/africanies-theme/src/lib/mode-color.safelist.ts +2 -2
  38. package/libs/africanies-theme/src/lib/mode-color.service.spec.ts +9 -7
  39. package/libs/africanies-theme/src/lib/mode-color.service.ts +9 -7
  40. package/libs/africanies-theme/tailwind-preset.cjs +3 -3
  41. package/libs/africanies-ui/src/lib/avatar/avatar-menu.component.ts +25 -21
  42. package/libs/africanies-ui/src/lib/button/button.component.spec.ts +13 -8
  43. package/libs/africanies-ui/src/lib/chip/chip.component.ts +74 -6
  44. package/libs/africanies-ui/src/lib/layout/app-shell-header.component.ts +35 -12
  45. package/libs/africanies-ui/src/lib/layout/header-greeting.util.ts +2 -0
  46. package/libs/africanies-ui/src/lib/layout/header-weather.spec.ts +120 -9
  47. package/libs/africanies-ui/src/lib/layout/header-weather.ts +79 -18
  48. package/libs/africanies-ui/src/lib/navigation/segment/segment.component.ts +98 -22
  49. package/libs/africanies-ui/src/lib/navigation/shipping-mode-switch/shipping-mode-switch.component.ts +193 -65
  50. package/libs/africanies-ui/src/lib/navigation/side-nav/africanies-side-nav.component.html +4 -2
  51. package/libs/africanies-ui/src/lib/navigation/side-nav/africanies-side-nav.component.ts +3 -1
  52. package/libs/africanies-ui/src/lib/table/table.component.spec.ts +3 -0
  53. package/libs/africanies-ui/src/lib/table/table.component.ts +197 -57
  54. package/package.json +1 -1
  55. package/tools/build-icon-sprite.mjs +1 -1
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "run": {
3
3
  "command": "nx run-many -t build --projects=africanies-models,africanies-storage,africanies-core,africanies-theme,africanies-icons,africanies-ui",
4
- "startTime": "2026-09-07T14:56:18.196Z",
5
- "endTime": "2026-09-07T14:56:38.623Z",
4
+ "startTime": "2026-09-08T19:50:24.001Z",
5
+ "endTime": "2026-09-08T19:50:39.550Z",
6
6
  "inner": false
7
7
  },
8
8
  "tasks": [
@@ -11,8 +11,8 @@
11
11
  "target": "build",
12
12
  "projectName": "africanies-models",
13
13
  "hash": "877026836685850193",
14
- "startTime": "2026-09-07T14:56:18.306Z",
15
- "endTime": "2026-09-07T14:56:18.346Z",
14
+ "startTime": "2026-09-08T19:50:24.169Z",
15
+ "endTime": "2026-09-08T19:50:24.181Z",
16
16
  "params": "",
17
17
  "cacheStatus": "local-cache-hit",
18
18
  "status": 0
@@ -22,8 +22,8 @@
22
22
  "target": "build",
23
23
  "projectName": "africanies-storage",
24
24
  "hash": "15255861479705594703",
25
- "startTime": "2026-09-07T14:56:18.306Z",
26
- "endTime": "2026-09-07T14:56:18.346Z",
25
+ "startTime": "2026-09-08T19:50:24.169Z",
26
+ "endTime": "2026-09-08T19:50:24.181Z",
27
27
  "params": "",
28
28
  "cacheStatus": "local-cache-hit",
29
29
  "status": 0
@@ -33,8 +33,8 @@
33
33
  "target": "build",
34
34
  "projectName": "africanies-icons",
35
35
  "hash": "5151121439688073678",
36
- "startTime": "2026-09-07T14:56:18.306Z",
37
- "endTime": "2026-09-07T14:56:18.346Z",
36
+ "startTime": "2026-09-08T19:50:24.169Z",
37
+ "endTime": "2026-09-08T19:50:24.181Z",
38
38
  "params": "",
39
39
  "cacheStatus": "local-cache-hit",
40
40
  "status": 0
@@ -44,19 +44,19 @@
44
44
  "target": "build",
45
45
  "projectName": "africanies-core",
46
46
  "hash": "17289624717336768573",
47
- "startTime": "2026-09-07T14:56:18.365Z",
48
- "endTime": "2026-09-07T14:56:23.383Z",
47
+ "startTime": "2026-09-08T19:50:24.192Z",
48
+ "endTime": "2026-09-08T19:50:24.196Z",
49
49
  "params": "",
50
- "cacheStatus": "cache-miss",
50
+ "cacheStatus": "local-cache-hit",
51
51
  "status": 0
52
52
  },
53
53
  {
54
54
  "taskId": "africanies-theme:build:production",
55
55
  "target": "build",
56
56
  "projectName": "africanies-theme",
57
- "hash": "4225324930345532464",
58
- "startTime": "2026-09-07T14:56:23.400Z",
59
- "endTime": "2026-09-07T14:56:28.699Z",
57
+ "hash": "1149535958171016935",
58
+ "startTime": "2026-09-08T19:50:24.205Z",
59
+ "endTime": "2026-09-08T19:50:28.304Z",
60
60
  "params": "",
61
61
  "cacheStatus": "cache-miss",
62
62
  "status": 0
@@ -65,9 +65,9 @@
65
65
  "taskId": "africanies-ui:build:production",
66
66
  "target": "build",
67
67
  "projectName": "africanies-ui",
68
- "hash": "3953970051755345887",
69
- "startTime": "2026-09-07T14:56:28.713Z",
70
- "endTime": "2026-09-07T14:56:38.588Z",
68
+ "hash": "3735952477975556635",
69
+ "startTime": "2026-09-08T19:50:28.321Z",
70
+ "endTime": "2026-09-08T19:50:39.526Z",
71
71
  "params": "",
72
72
  "cacheStatus": "cache-miss",
73
73
  "status": 0
@@ -0,0 +1,21 @@
1
+ > nx run africanies-theme:build:production
2
+
3
+
4
+ 
5
+ ------------------------------------------------------------------------------
6
+ Building entry point '@africanies/africanies-theme'
7
+ ------------------------------------------------------------------------------
8
+ [?2026h⠋ Compiling with Angular sources in partial compilation mode.[?2026l✔ Compiling with Angular sources in partial compilation mode.
9
+ ✔ Generating FESM and DTS bundles
10
+ [?2026h⠋ Copying assets[?2026l✔ Copying assets
11
+ [?2026h⠋ Writing package manifest[?2026l✔ Writing package manifest
12
+ ✔ Built @africanies/africanies-theme
13
+ 
14
+ ------------------------------------------------------------------------------
15
+ Built Angular Package
16
+ - from: /Applications/AngularJS/angular-web-sdk/libs/africanies-theme
17
+ - to: /Applications/AngularJS/angular-web-sdk/dist/libs/africanies-theme
18
+ ------------------------------------------------------------------------------
19
+ 
20
+ Build at: 2026-09-08T19:50:28.273Z - Time: 2066ms
21
+ 
@@ -0,0 +1,21 @@
1
+ > nx run africanies-ui:build:production
2
+
3
+
4
+ 
5
+ ------------------------------------------------------------------------------
6
+ Building entry point '@africanies/africanies-ui'
7
+ ------------------------------------------------------------------------------
8
+ [?2026h⠋ Compiling with Angular sources in partial compilation mode.[?2026l[?2026h⠙ Compiling with Angular sources in partial compilation mode.[?2026l[?2026h⠹ Compiling with Angular sources in partial compilation mode.[?2026l[?2026h⠸ Compiling with Angular sources in partial compilation mode.[?2026l[?2026h⠼ Compiling with Angular sources in partial compilation mode.[?2026l[?2026h⠴ Compiling with Angular sources in partial compilation mode.[?2026l[?2026h⠦ Compiling with Angular sources in partial compilation mode.[?2026l✔ Compiling with Angular sources in partial compilation mode.
9
+ ✔ Generating FESM and DTS bundles
10
+ [?2026h⠋ Copying assets[?2026l✔ Copying assets
11
+ [?2026h⠋ Writing package manifest[?2026l✔ Writing package manifest
12
+ ✔ Built @africanies/africanies-ui
13
+ 
14
+ ------------------------------------------------------------------------------
15
+ Built Angular Package
16
+ - from: /Applications/AngularJS/angular-web-sdk/libs/africanies-ui
17
+ - to: /Applications/AngularJS/angular-web-sdk/dist/libs/africanies-ui
18
+ ------------------------------------------------------------------------------
19
+ 
20
+ Build at: 2026-09-08T19:50:39.458Z - Time: 9243ms
21
+