@wavemaker/angular-codegen 11.10.5-rc.6100 → 11.11.0-rc.6106

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 (36) hide show
  1. package/angular-app/angular.json +4 -9
  2. package/angular-app/build-scripts/post-build.js +7 -47
  3. package/angular-app/dependency-report.html +1 -1
  4. package/angular-app/npm-shrinkwrap.json +111 -239
  5. package/angular-app/package-lock.json +111 -239
  6. package/angular-app/package.json +11 -21
  7. package/angular-app/src/app/bootstrap-wrapper.component.ts +10 -0
  8. package/angular-app/src/app/lazy-load-scripts.resolve.ts +2 -9
  9. package/angular-app/src/index.html +1 -0
  10. package/angular-app/src/main.ts +28 -32
  11. package/angular-app/tsconfig.json +0 -30
  12. package/angular-app/tsconfig.web-app.json +0 -21
  13. package/angular-app/wm-custom-webpack.config.js +18 -0
  14. package/dependencies/app.component.html +34 -26
  15. package/dependencies/pipe-provider.cjs.js +23477 -186
  16. package/dependencies/transpilation-web.cjs.js +12587 -816
  17. package/npm-shrinkwrap.json +85 -233
  18. package/package-lock.json +85 -233
  19. package/package.json +2 -2
  20. package/src/codegen.js +1 -1
  21. package/src/gen-app-codegen-module.js +1 -1
  22. package/src/gen-app-routes.js +1 -1
  23. package/src/gen-components.js +1 -1
  24. package/src/gen-index-html.js +1 -1
  25. package/src/gen-layouts.js +1 -1
  26. package/src/handlebar-helpers.js +1 -1
  27. package/src/pages-util.js +1 -1
  28. package/src/project-meta.js +1 -1
  29. package/src/update-angular-json.js +1 -1
  30. package/src/wm-utils.js +1 -1
  31. package/templates/app-routes.ts.hbs +2 -2
  32. package/templates/app.config.ts.hbs +128 -0
  33. package/templates/app.module.ts.hbs +0 -2
  34. package/templates/layout/layout.component.ts.hbs +26 -4
  35. package/templates/page/page.component.ts.hbs +36 -5
  36. package/dependencies/transpilation-mobile.cjs.js +0 -93554
@@ -32,13 +32,13 @@
32
32
  "src/assets",
33
33
  {
34
34
  "glob": "**/*",
35
- "input": "libraries/locales/",
36
- "output": "/locales/"
35
+ "input": "libraries/locales/moment-timezone",
36
+ "output": "/locales/moment-timezone"
37
37
  },
38
38
  {
39
39
  "glob": "**/*",
40
- "input": "node_modules/@wavemaker/app-ng-runtime/locales/",
41
- "output": "/locales/"
40
+ "input": "node_modules/@wavemaker/app-ng-runtime/locales/moment-timezone",
41
+ "output": "/locales/moment-timezone"
42
42
  },
43
43
  {
44
44
  "glob": "**/*",
@@ -75,7 +75,6 @@
75
75
  }
76
76
  ],
77
77
  "scripts": [
78
- "./node_modules/x2js/x2js.js",
79
78
  "./node_modules/d3/dist/d3.min.js",
80
79
  "./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
81
80
  "./node_modules/jquery/dist/jquery.min.js",
@@ -94,9 +93,7 @@
94
93
  "./node_modules/@wavemaker/app-ng-runtime/scripts/datatable/datatable.js",
95
94
  "./node_modules/@wavemaker/app-ng-runtime/scripts/swipey/swipey.jquery.plugin.js",
96
95
  "./node_modules/@wavemaker/app-ng-runtime/scripts/jquery.ui.touch-punch/jquery.ui.touch-punch.min.js",
97
- "./node_modules/moment/min/moment.min.js",
98
96
  "./node_modules/moment-timezone/builds/moment-timezone.min.js",
99
- "./node_modules/fullcalendar/main.min.js",
100
97
  "./node_modules/summernote/dist/summernote-lite.min.js",
101
98
  "./node_modules/hammerjs/hammer.min.js",
102
99
  "./node_modules/iscroll/build/iscroll.js",
@@ -243,9 +240,7 @@
243
240
  "./node_modules/jquery-ui/ui/widgets/sortable.js",
244
241
  "./node_modules/jquery-ui/ui/widgets/droppable.js",
245
242
  "./libraries/scripts/datatable/datatable.js",
246
- "./node_modules/moment/min/moment.min.js",
247
243
  "./node_modules/moment-timezone/builds/moment-timezone.min.js",
248
- "./node_modules/fullcalendar/main.min.js",
249
244
  "./node_modules/summernote/dist/summernote-lite.min.js",
250
245
  "./node_modules/hammerjs/hammer.min.js",
251
246
  "./node_modules/iscroll/build/iscroll.js",
@@ -34,40 +34,10 @@ const generateHashForScripts = (updatedFilenames) => {
34
34
  });
35
35
  });
36
36
  };
37
- let isMobileProject = false;
38
37
  let isProdBuild;
39
38
  let isDevBuild;
40
39
  let $;
41
40
 
42
- const setMobileProjectType = (angularJson) => {
43
- let styles = angularJson['projects']['angular-app']['architect']['build']['options']['styles'];
44
- const androidStyles = styles.find((style) => {
45
- let isObject = typeof (style) === 'object';
46
- if (isObject) {
47
- return style.bundleName === 'wm-android-styles';
48
- }
49
- return false;
50
- });
51
- isMobileProject = androidStyles ? true : false;
52
- return isMobileProject;
53
- }
54
- const addMobileSpecificStyles = async (deployUrl) => {
55
- if (isDevBuild) {
56
- $("body").append(
57
- `<script type="text/javascript" defer="true" src="${deployUrl}wm-android-styles.js"></script>`
58
- );
59
- }
60
-
61
- if (isProdBuild) {
62
- $("head").append(
63
- `<link rel="stylesheet" theme="wmtheme" href="${deployUrl}wm-android-styles.css" >`
64
- );
65
- $("head").append(
66
- `<link rel="stylesheet" theme="wmtheme" href="${deployUrl}wm-ios-styles.css" >`
67
- );
68
- }
69
- }
70
-
71
41
  const addScriptForWMStylesPath = (wm_styles_path) => {
72
42
  // wm_styles_path will not be present for mobile apps
73
43
  if (wm_styles_path) {
@@ -226,14 +196,8 @@ const generateSha1 = (content) => {
226
196
  let outputPath = global.opPath = args['output-path'] || build['options']['outputPath']
227
197
  const contents = await readFile(`./dist/index.html`, `utf8`);
228
198
  $ = cheerio.load(contents);
229
- setMobileProjectType(angularJson);
230
- if (!isMobileProject) {
231
- isProdBuild = fs.existsSync(`${process.cwd()}/${outputPath}/wm-styles.css`);
232
- isDevBuild = fs.existsSync(`${process.cwd()}/${outputPath}/wm-styles.js`);
233
- } else {
234
- isDevBuild = fs.existsSync(`${process.cwd()}/${outputPath}/wm-android-styles.js`);
235
- isProdBuild = fs.existsSync(`${process.cwd()}/${outputPath}/wm-android-styles.css`);
236
- }
199
+ isProdBuild = fs.existsSync(`${process.cwd()}/${outputPath}/wm-styles.css`);
200
+ isDevBuild = fs.existsSync(`${process.cwd()}/${outputPath}/wm-styles.js`);
237
201
 
238
202
  if (isProdBuild) {
239
203
  const isOptimizeCss = $('meta[optimizecss]').length;
@@ -250,16 +214,12 @@ const generateSha1 = (content) => {
250
214
  const updatedFileHashes = {}
251
215
  let wm_styles_path;
252
216
 
253
- if (isMobileProject) {
254
- await addMobileSpecificStyles(deployUrl);
217
+ if (isDevBuild) {
218
+ wm_styles_path = `${deployUrl}wm-styles.js`;
255
219
  } else {
256
- if (isDevBuild) {
257
- wm_styles_path = `${deployUrl}wm-styles.js`;
258
- } else {
259
- const fileName = 'wm-styles';
260
- const updatedFileName = `${fileName}.css`
261
- wm_styles_path = `${deployUrl}${updatedFileName}`;
262
- }
220
+ const fileName = 'wm-styles';
221
+ const updatedFileName = `${fileName}.css`
222
+ wm_styles_path = `${deployUrl}${updatedFileName}`;
263
223
  }
264
224
 
265
225
  addScriptForWMStylesPath(wm_styles_path);
@@ -69,7 +69,7 @@
69
69
  <body>
70
70
  <div class="header">
71
71
  <h1>Angular Project Dependencies Report</h1>
72
- <p class="timestamp">Generated on: 4/1/2025, 12:30:17 PM</p>
72
+ <p class="timestamp">Generated on: 4/7/2025, 2:33:17 PM</p>
73
73
  </div>
74
74
 
75
75
  <div class="section">
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-app",
3
- "version": "11.10.5-rc.6100",
3
+ "version": "11.11.0-rc.6106",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-app",
9
- "version": "11.10.5-rc.6100",
9
+ "version": "11.11.0-rc.6106",
10
10
  "dependencies": {
11
11
  "@angular/animations": "18.2.13",
12
12
  "@angular/common": "18.2.13",
@@ -17,36 +17,25 @@
17
17
  "@angular/platform-browser-dynamic": "18.2.13",
18
18
  "@angular/router": "18.2.13",
19
19
  "@angular/service-worker": "18.2.13",
20
- "@awesome-cordova-plugins/app-version": "5.39.1",
21
- "@awesome-cordova-plugins/barcode-scanner": "5.39.1",
22
- "@awesome-cordova-plugins/calendar": "5.39.1",
23
- "@awesome-cordova-plugins/camera": "5.39.1",
24
- "@awesome-cordova-plugins/core": "5.39.1",
25
- "@awesome-cordova-plugins/device": "5.39.1",
26
- "@awesome-cordova-plugins/diagnostic": "5.39.1",
27
- "@awesome-cordova-plugins/file": "5.39.1",
28
- "@awesome-cordova-plugins/file-opener": "5.39.1",
29
- "@awesome-cordova-plugins/geolocation": "5.39.1",
30
- "@awesome-cordova-plugins/location-accuracy": "5.39.1",
31
- "@awesome-cordova-plugins/media-capture": "5.39.1",
32
- "@awesome-cordova-plugins/network": "5.39.1",
33
- "@awesome-cordova-plugins/sqlite": "5.39.1",
34
- "@awesome-cordova-plugins/vibration": "5.39.1",
35
20
  "@babel/runtime": "7.14.8",
21
+ "@fullcalendar/core": "6.1.15",
22
+ "@fullcalendar/daygrid": "6.1.15",
23
+ "@fullcalendar/interaction": "6.1.15",
24
+ "@fullcalendar/list": "6.1.15",
25
+ "@fullcalendar/timegrid": "6.1.15",
36
26
  "@metrichor/jmespath": "0.3.1",
37
- "@wavemaker/app-ng-runtime": "11.10.5-rc.6100",
38
- "@wavemaker/custom-widgets-m3": "11.10.5-rc.6100",
27
+ "@wavemaker/app-ng-runtime": "11.11.0-rc.6106",
28
+ "@wavemaker/custom-widgets-m3": "11.11.0-rc.6106",
39
29
  "@wavemaker/focus-trap": "1.0.1",
40
- "@wavemaker/foundation-css": "11.10.5-rc.6100",
30
+ "@wavemaker/foundation-css": "11.11.0-rc.6106",
41
31
  "@wavemaker/nvd3": "1.8.12",
42
- "@wavemaker/variables": "11.10.5-rc.6100",
32
+ "@wavemaker/variables": "11.11.0-rc.6106",
43
33
  "@ztree/ztree_v3": "3.5.48",
44
34
  "angular-imask": "^7.6.1",
45
35
  "angular2-websocket": "0.9.7",
46
36
  "core-js": "3.35.1",
47
37
  "d3": "7.8.5",
48
38
  "esbuild-wasm": "^0.24.2",
49
- "fullcalendar": "5.3.1",
50
39
  "hammerjs": "2.0.8",
51
40
  "iscroll": "5.2.0",
52
41
  "jquery": "3.7.1",
@@ -107,6 +96,7 @@
107
96
  "jest-preset-angular": "^14.1.0",
108
97
  "license-checker": "25.0.1",
109
98
  "moment": "2.29.4",
99
+ "moment-locales-webpack-plugin": "^1.2.0",
110
100
  "moment-timezone": "^0.5.34",
111
101
  "ng-packagr": "17.3.0",
112
102
  "npm-run-all": "4.1.5",
@@ -293,12 +283,12 @@
293
283
  }
294
284
  },
295
285
  "node_modules/@angular-devkit/architect": {
296
- "version": "0.1802.16",
297
- "integrity": "sha512-uWJ40EGhdgNbg8i60EzXErqOrv5aLmLMGp2OUt6XBF6GQiK4Y6nETG9QyD6TTv0rhZ0gt9JEeHA5N1lGt+WqWw==",
286
+ "version": "0.1802.17",
287
+ "integrity": "sha512-qIvQzpKimmC3IZFlLvLpcdVGY5RZqnVgVFguBx9jYJSZX608bM3/yUPO1U+I4KLBGrkq/Y6NNibMVoNA/y7Nvg==",
298
288
  "dev": true,
299
289
  "license": "MIT",
300
290
  "dependencies": {
301
- "@angular-devkit/core": "18.2.16",
291
+ "@angular-devkit/core": "18.2.17",
302
292
  "rxjs": "7.8.1"
303
293
  },
304
294
  "engines": {
@@ -721,8 +711,8 @@
721
711
  }
722
712
  },
723
713
  "node_modules/@angular-devkit/core": {
724
- "version": "18.2.16",
725
- "integrity": "sha512-RsBHUPdDYREpE7sOfGrQXMbuBCShJnpuuA4ndVZ6zzOW5HZgG0bOXjYNPvFHmqnES9BE/sJTFiLIXmFiQjglug==",
714
+ "version": "18.2.17",
715
+ "integrity": "sha512-buN3GFZ5uzgaAjx5toe+GDFKonNof0oJBRygWf+1Udx194Q1aUFxRk+mcQOUX+V2SEb7izUiaWWfH/ibvYCRYg==",
726
716
  "dev": true,
727
717
  "license": "MIT",
728
718
  "dependencies": {
@@ -1581,185 +1571,6 @@
1581
1571
  "@angular/core": "18.2.13"
1582
1572
  }
1583
1573
  },
1584
- "node_modules/@awesome-cordova-plugins/app-version": {
1585
- "version": "5.39.1",
1586
- "integrity": "sha512-UQELx2IeQCMu+ngSnA0bSUKJfDHANT+RZ9EbuOtk+kmhzkbvjbnRhu7AWLA8q4fdXG8PlPljRcCZNxGT6+mraQ==",
1587
- "license": "MIT",
1588
- "dependencies": {
1589
- "@types/cordova": "latest"
1590
- },
1591
- "peerDependencies": {
1592
- "@awesome-cordova-plugins/core": "^5.1.0",
1593
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1594
- }
1595
- },
1596
- "node_modules/@awesome-cordova-plugins/barcode-scanner": {
1597
- "version": "5.39.1",
1598
- "integrity": "sha512-gWolTyq2N5FSHbr56kAji4QVMO1ZQrdLIjoP02V8LsHpSs5vLL44b2rDlbjppUukhz9qfkaT3wTYjuY7M41uyA==",
1599
- "license": "MIT",
1600
- "dependencies": {
1601
- "@types/cordova": "latest"
1602
- },
1603
- "peerDependencies": {
1604
- "@awesome-cordova-plugins/core": "^5.1.0",
1605
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1606
- }
1607
- },
1608
- "node_modules/@awesome-cordova-plugins/calendar": {
1609
- "version": "5.39.1",
1610
- "integrity": "sha512-WYyF14clIQnoUOMVrIWIPg3QOHjGw/nJ4JYgEfvjuQPtdT6kJ6k66Uc7brDOQE2SG18pvkeM+uEHRk1tzZD2Aw==",
1611
- "license": "MIT",
1612
- "dependencies": {
1613
- "@types/cordova": "latest"
1614
- },
1615
- "peerDependencies": {
1616
- "@awesome-cordova-plugins/core": "^5.1.0",
1617
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1618
- }
1619
- },
1620
- "node_modules/@awesome-cordova-plugins/camera": {
1621
- "version": "5.39.1",
1622
- "integrity": "sha512-p+9pzJqec1FdjNgXdQomIzoC17ZKW0iedUkU3t/dqe+3tTgVS2J8EGljKdroz6fa3zkpdWX6QD17MJ9OfTuX7g==",
1623
- "license": "MIT",
1624
- "dependencies": {
1625
- "@types/cordova": "latest"
1626
- },
1627
- "peerDependencies": {
1628
- "@awesome-cordova-plugins/core": "^5.1.0",
1629
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1630
- }
1631
- },
1632
- "node_modules/@awesome-cordova-plugins/core": {
1633
- "version": "5.39.1",
1634
- "integrity": "sha512-IHBemJf7/kNXCyOghNHckdSY+pu+59W5cTE8w2UMFKQCtJugXVkdDqBPQjmmefzKLmDNCJ+lYhbv0V3VIr6N2g==",
1635
- "license": "MIT",
1636
- "dependencies": {
1637
- "@types/cordova": "latest"
1638
- },
1639
- "peerDependencies": {
1640
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1641
- }
1642
- },
1643
- "node_modules/@awesome-cordova-plugins/device": {
1644
- "version": "5.39.1",
1645
- "integrity": "sha512-HdrlJHN+t8eTZ/5kMUTpaTFLpqcnCjVWqQFIIf4zz/q8klD0gqVhUV2+ZH/m9iYVRtjTB73W3VoVn+lzBkSl8A==",
1646
- "license": "MIT",
1647
- "dependencies": {
1648
- "@types/cordova": "latest"
1649
- },
1650
- "peerDependencies": {
1651
- "@awesome-cordova-plugins/core": "^5.1.0",
1652
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1653
- }
1654
- },
1655
- "node_modules/@awesome-cordova-plugins/diagnostic": {
1656
- "version": "5.39.1",
1657
- "integrity": "sha512-MlcqnDQqWR26AsOw5i2Y/KHd+3LoClaZTs5OefIBtQE8BP6y0IEmTBiXunQfyrMN6xNAdo503d2V6lgXCjrf9A==",
1658
- "license": "MIT",
1659
- "dependencies": {
1660
- "@types/cordova": "latest"
1661
- },
1662
- "peerDependencies": {
1663
- "@awesome-cordova-plugins/core": "^5.1.0",
1664
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1665
- }
1666
- },
1667
- "node_modules/@awesome-cordova-plugins/file": {
1668
- "version": "5.39.1",
1669
- "integrity": "sha512-DXJfPw5KDF43r+DGth8uVmKkh+m3qD+5lgwm/U1FVJTsqcicbzJXc6/gBSpdwvoBDWactHF1pj6sF4sp3HkIGw==",
1670
- "license": "MIT",
1671
- "dependencies": {
1672
- "@types/cordova": "latest"
1673
- },
1674
- "peerDependencies": {
1675
- "@awesome-cordova-plugins/core": "^5.1.0",
1676
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1677
- }
1678
- },
1679
- "node_modules/@awesome-cordova-plugins/file-opener": {
1680
- "version": "5.39.1",
1681
- "integrity": "sha512-4ZYpvdyZqVnTbkhbRlEBk5VRiwDI83luyvgQTx0xXB+J4ArtYjEHQdpDiqmbaGdFOO2vy9uhCrHJvbm6+ERNWw==",
1682
- "license": "MIT",
1683
- "dependencies": {
1684
- "@types/cordova": "latest"
1685
- },
1686
- "peerDependencies": {
1687
- "@awesome-cordova-plugins/core": "^5.1.0",
1688
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1689
- }
1690
- },
1691
- "node_modules/@awesome-cordova-plugins/geolocation": {
1692
- "version": "5.39.1",
1693
- "integrity": "sha512-MFOD7HuIvVncYp6AUCZygHeik61+01D3IQQmzcUbc7CNub7MK9jf0kdNx90ycVyelg7D/7AaUdxh2RZy5nHGkA==",
1694
- "license": "MIT",
1695
- "dependencies": {
1696
- "@types/cordova": "latest"
1697
- },
1698
- "peerDependencies": {
1699
- "@awesome-cordova-plugins/core": "^5.1.0",
1700
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1701
- }
1702
- },
1703
- "node_modules/@awesome-cordova-plugins/location-accuracy": {
1704
- "version": "5.39.1",
1705
- "integrity": "sha512-CiocZlmR+fkJO4qVotbF4C8i7mtm7uHR8MiQI3BaaVrhQKmQoi70pstJonmBFhONVx3b69bMHoSc05z5A7zxVg==",
1706
- "license": "MIT",
1707
- "dependencies": {
1708
- "@types/cordova": "latest"
1709
- },
1710
- "peerDependencies": {
1711
- "@awesome-cordova-plugins/core": "^5.1.0",
1712
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1713
- }
1714
- },
1715
- "node_modules/@awesome-cordova-plugins/media-capture": {
1716
- "version": "5.39.1",
1717
- "integrity": "sha512-OHYfuA7zdcrQ6U+wkRhSn0aXnS95yeOpplcQDQ7wS+v6ZnWG5vp94Sgk121XUallQ2eTZaL6hTQbS7/obiyh/Q==",
1718
- "license": "MIT",
1719
- "dependencies": {
1720
- "@types/cordova": "latest"
1721
- },
1722
- "peerDependencies": {
1723
- "@awesome-cordova-plugins/core": "^5.1.0",
1724
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1725
- }
1726
- },
1727
- "node_modules/@awesome-cordova-plugins/network": {
1728
- "version": "5.39.1",
1729
- "integrity": "sha512-85phHMyHO0zS5/4ZmPfk+r8I8JKUfEZM5pxsSxLBB8XBt0oNjSQt+dQn83BaZPdLutIOc8d/tQl2jI3kf60K0Q==",
1730
- "license": "MIT",
1731
- "dependencies": {
1732
- "@types/cordova": "latest"
1733
- },
1734
- "peerDependencies": {
1735
- "@awesome-cordova-plugins/core": "^5.1.0",
1736
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1737
- }
1738
- },
1739
- "node_modules/@awesome-cordova-plugins/sqlite": {
1740
- "version": "5.39.1",
1741
- "integrity": "sha512-XRzfo30gARBjqEtjwbyN/QP+PhLAmUuaMiDHbHA4PU2jTTarXrHwulLczVuprb0t//Q/D2I1EKr3UDfmeLROJg==",
1742
- "license": "MIT",
1743
- "dependencies": {
1744
- "@types/cordova": "latest"
1745
- },
1746
- "peerDependencies": {
1747
- "@awesome-cordova-plugins/core": "^5.1.0",
1748
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1749
- }
1750
- },
1751
- "node_modules/@awesome-cordova-plugins/vibration": {
1752
- "version": "5.39.1",
1753
- "integrity": "sha512-XSyACER6UwsH3HgiXXekxzKuoQYK/CDLK7Bj0paGZaQ0c73+JNAnhNmj5VmrgFXJrg4MvybbC+IbCbIIRuvr5Q==",
1754
- "license": "MIT",
1755
- "dependencies": {
1756
- "@types/cordova": "latest"
1757
- },
1758
- "peerDependencies": {
1759
- "@awesome-cordova-plugins/core": "^5.1.0",
1760
- "rxjs": "^5.5.0 || ^6.5.0 || ^7.3.0"
1761
- }
1762
- },
1763
1574
  "node_modules/@babel/code-frame": {
1764
1575
  "version": "7.26.2",
1765
1576
  "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
@@ -4783,6 +4594,49 @@
4783
4594
  "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
4784
4595
  }
4785
4596
  },
4597
+ "node_modules/@fullcalendar/core": {
4598
+ "version": "6.1.15",
4599
+ "integrity": "sha512-BuX7o6ALpLb84cMw1FCB9/cSgF4JbVO894cjJZ6kP74jzbUZNjtwffwRdA+Id8rrLjT30d/7TrkW90k4zbXB5Q==",
4600
+ "license": "MIT",
4601
+ "dependencies": {
4602
+ "preact": "~10.12.1"
4603
+ }
4604
+ },
4605
+ "node_modules/@fullcalendar/daygrid": {
4606
+ "version": "6.1.15",
4607
+ "integrity": "sha512-j8tL0HhfiVsdtOCLfzK2J0RtSkiad3BYYemwQKq512cx6btz6ZZ2RNc/hVnIxluuWFyvx5sXZwoeTJsFSFTEFA==",
4608
+ "license": "MIT",
4609
+ "peerDependencies": {
4610
+ "@fullcalendar/core": "~6.1.15"
4611
+ }
4612
+ },
4613
+ "node_modules/@fullcalendar/interaction": {
4614
+ "version": "6.1.15",
4615
+ "integrity": "sha512-DOTSkofizM7QItjgu7W68TvKKvN9PSEEvDJceyMbQDvlXHa7pm/WAVtAc6xSDZ9xmB1QramYoWGLHkCYbTW1rQ==",
4616
+ "license": "MIT",
4617
+ "peerDependencies": {
4618
+ "@fullcalendar/core": "~6.1.15"
4619
+ }
4620
+ },
4621
+ "node_modules/@fullcalendar/list": {
4622
+ "version": "6.1.15",
4623
+ "integrity": "sha512-U1bce04tYDwkFnuVImJSy2XalYIIQr6YusOWRPM/5ivHcJh67Gm8CIMSWpi3KdRSNKFkqBxLPkfZGBMaOcJYug==",
4624
+ "license": "MIT",
4625
+ "peerDependencies": {
4626
+ "@fullcalendar/core": "~6.1.15"
4627
+ }
4628
+ },
4629
+ "node_modules/@fullcalendar/timegrid": {
4630
+ "version": "6.1.15",
4631
+ "integrity": "sha512-61ORr3A148RtxQ2FNG7JKvacyA/TEVZ7z6I+3E9Oeu3dqTf6M928bFcpehRTIK6zIA6Yifs7BeWHgOE9dFnpbw==",
4632
+ "license": "MIT",
4633
+ "dependencies": {
4634
+ "@fullcalendar/daygrid": "~6.1.15"
4635
+ },
4636
+ "peerDependencies": {
4637
+ "@fullcalendar/core": "~6.1.15"
4638
+ }
4639
+ },
4786
4640
  "node_modules/@humanwhocodes/config-array": {
4787
4641
  "version": "0.13.0",
4788
4642
  "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==",
@@ -4883,12 +4737,12 @@
4883
4737
  }
4884
4738
  },
4885
4739
  "node_modules/@inquirer/core/node_modules/@types/node": {
4886
- "version": "22.13.14",
4887
- "integrity": "sha512-Zs/Ollc1SJ8nKUAgc7ivOEdIBM8JAKgrqqUYi2J997JuKO7/tpQC+WCetQ1sypiKCQWHdvdg9wBNpUPEWZae7w==",
4740
+ "version": "22.14.0",
4741
+ "integrity": "sha512-Kmpl+z84ILoG+3T/zQFyAJsU6EPTmOCj8/2+83fSN6djd6I4o7uOuGIH6vq3PrjY5BGitSbFuMN18j3iknubbA==",
4888
4742
  "dev": true,
4889
4743
  "license": "MIT",
4890
4744
  "dependencies": {
4891
- "undici-types": "~6.20.0"
4745
+ "undici-types": "~6.21.0"
4892
4746
  }
4893
4747
  },
4894
4748
  "node_modules/@inquirer/editor": {
@@ -7034,8 +6888,8 @@
7034
6888
  ]
7035
6889
  },
7036
6890
  "node_modules/@rollup/wasm-node": {
7037
- "version": "4.38.0",
7038
- "integrity": "sha512-WgdJf6XyQ5x4qaHbjGjsqWqgg2L4WNNRsQPl80agmFX6Kdobe+FsUn116lnR7lbtiAucgI4ywGYuAoew8RHb8w==",
6891
+ "version": "4.39.0",
6892
+ "integrity": "sha512-hSzvI7Rd7mCw1OI/pkkmwPAlzSTJ2uspxti8yZR0ZRSoHLJuuWCTxGnbdCC3U9bSxtLQwvE0DyXSrj3BtoIl5g==",
7039
6893
  "dev": true,
7040
6894
  "license": "MIT",
7041
6895
  "dependencies": {
@@ -7374,8 +7228,8 @@
7374
7228
  }
7375
7229
  },
7376
7230
  "node_modules/@types/babel__generator": {
7377
- "version": "7.6.8",
7378
- "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==",
7231
+ "version": "7.27.0",
7232
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
7379
7233
  "dev": true,
7380
7234
  "license": "MIT",
7381
7235
  "dependencies": {
@@ -7439,11 +7293,6 @@
7439
7293
  "@types/node": "*"
7440
7294
  }
7441
7295
  },
7442
- "node_modules/@types/cordova": {
7443
- "version": "11.0.3",
7444
- "integrity": "sha512-kyuRQ40/NWQVhqGIHq78Ehu2Bf9Mlg0LhmSmis6ZFJK7z933FRfYi8tHe/k/0fB+PGfCf95rJC6TO7dopaFvAg==",
7445
- "license": "MIT"
7446
- },
7447
7296
  "node_modules/@types/estree": {
7448
7297
  "version": "1.0.7",
7449
7298
  "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==",
@@ -8150,8 +7999,8 @@
8150
7999
  }
8151
8000
  },
8152
8001
  "node_modules/@wavemaker/app-ng-runtime": {
8153
- "version": "11.10.5-rc.6100",
8154
- "integrity": "sha512-HIdM+ZvUYjfX15HRmLwMWgP2cAmAJG0+p59ZmWo+XSfPNkfAKHF0mMzcKVwrMXU6adKSiNsjriiY8rDpm+/cgQ==",
8002
+ "version": "11.11.0-rc.6106",
8003
+ "integrity": "sha512-9Bbw0nsE67uzerpk287xoakBhrrNdt8bN1IJhqA4YbVnv54SjK0m7GEk5oMMb2zoROu+fDRD+jI1JhRESI9Rvg==",
8155
8004
  "license": "MIT",
8156
8005
  "engines": {
8157
8006
  "node": ">=18.16.1",
@@ -8159,8 +8008,8 @@
8159
8008
  }
8160
8009
  },
8161
8010
  "node_modules/@wavemaker/custom-widgets-m3": {
8162
- "version": "11.10.5-rc.6100",
8163
- "integrity": "sha512-+NlnmSYKcvfN6tRVvgEc8TrmuqIm9x38CJvBC1qr3QuLq3hB1NCxbWNWb9SaDs1Wo5c/ZKNL4b42TxipjedQQA==",
8011
+ "version": "11.11.0-rc.6106",
8012
+ "integrity": "sha512-vcbZZnFRvubpaQbnN6yzGRlYpO50mifxnLRh4mTz3jXKUPPtzOe83XIOcfLy6bVzLVM8DZwYj6rhCXSmVWhVIg==",
8164
8013
  "license": "ISC"
8165
8014
  },
8166
8015
  "node_modules/@wavemaker/focus-trap": {
@@ -8173,8 +8022,8 @@
8173
8022
  }
8174
8023
  },
8175
8024
  "node_modules/@wavemaker/foundation-css": {
8176
- "version": "11.10.5-rc.6100",
8177
- "integrity": "sha512-ChDr5SI2SbB8KGkzZGGl/Zijf0sL+sbYnLNTbHp9O0EPi1F9CY00p6FSdwp0yfX2i2/9yilZCUioR1NXD6OgJg==",
8025
+ "version": "11.11.0-rc.6106",
8026
+ "integrity": "sha512-S+kWsR/E3OC+fQRS1k+yrsUPIxSdEW3bHAg4wp6ozTRJRiy6SiigaIxb6kC8oHQ2NJH2Li5NbrM9q0WDb2D5BQ==",
8178
8027
  "license": "ISC",
8179
8028
  "dependencies": {
8180
8029
  "chroma-js": "^3.1.2"
@@ -8189,8 +8038,8 @@
8189
8038
  }
8190
8039
  },
8191
8040
  "node_modules/@wavemaker/variables": {
8192
- "version": "11.10.5-rc.6100",
8193
- "integrity": "sha512-PG3ZKBfmhnCluEALNfWv5HxtnOYqvvS41ITRi6ZSgIOKwq5Dcy/mikIdAm3utRcAw8LPMDO2d7wu1muWlPPzjA==",
8041
+ "version": "11.11.0-rc.6106",
8042
+ "integrity": "sha512-BT2teob8ijpE5trVlsXdfCjV5q1+5NN9wRv/Aoibz0F2THgMZokIJAhsR0IFRgHhcNLf87zLBx5xezKwqawBNw==",
8194
8043
  "license": "ISC",
8195
8044
  "dependencies": {
8196
8045
  "@metrichor/jmespath": "^0.3.1",
@@ -9704,8 +9553,8 @@
9704
9553
  }
9705
9554
  },
9706
9555
  "node_modules/caniuse-lite": {
9707
- "version": "1.0.30001707",
9708
- "integrity": "sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==",
9556
+ "version": "1.0.30001712",
9557
+ "integrity": "sha512-MBqPpGYYdQ7/hfKiet9SCI+nmN5/hp4ZzveOJubl5DTAMa5oggjAuoi0Z4onBpKPFI2ePGnQuQIzF3VxDjDJig==",
9709
9558
  "dev": true,
9710
9559
  "funding": [
9711
9560
  {
@@ -11786,8 +11635,8 @@
11786
11635
  }
11787
11636
  },
11788
11637
  "node_modules/electron-to-chromium": {
11789
- "version": "1.5.129",
11790
- "integrity": "sha512-JlXUemX4s0+9f8mLqib/bHH8gOHf5elKS6KeWG3sk3xozb/JTq/RLXIv8OKUWiK4Ah00Wm88EFj5PYkFr4RUPA==",
11638
+ "version": "1.5.132",
11639
+ "integrity": "sha512-QgX9EBvWGmvSRa74zqfnG7+Eno0Ak0vftBll0Pt2/z5b3bEGYL6OUXLgKPtvx73dn3dvwrlyVkjPKRRlhLYTEg==",
11791
11640
  "dev": true,
11792
11641
  "license": "ISC"
11793
11642
  },
@@ -13248,11 +13097,6 @@
13248
13097
  "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
13249
13098
  }
13250
13099
  },
13251
- "node_modules/fullcalendar": {
13252
- "version": "5.3.1",
13253
- "integrity": "sha512-qnZ0RpoWlp66+LWIQK0iT7nLPdlkR2i6uOn5fXEN7KM2VGeAlzWNFmjsMlP67UwraJdH1B0bYtQdaUK29llzkQ==",
13254
- "license": "MIT"
13255
- },
13256
13100
  "node_modules/function-bind": {
13257
13101
  "version": "1.1.2",
13258
13102
  "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
@@ -15722,8 +15566,8 @@
15722
15566
  }
15723
15567
  },
15724
15568
  "node_modules/jest-preset-angular/node_modules/type-fest": {
15725
- "version": "4.38.0",
15726
- "integrity": "sha512-2dBz5D5ycHIoliLYLi0Q2V7KRaDlH0uWIvmk7TYlAg5slqwiPv1ezJdZm1QEM0xgk29oYWMCbIG7E6gHpvChlg==",
15569
+ "version": "4.39.1",
15570
+ "integrity": "sha512-uW9qzd66uyHYxwyVBYiwS4Oi0qZyUqwjU+Oevr6ZogYiXt99EOYtwvzMSLw1c3lYo2HzJsep/NB23iEVEgjG/w==",
15727
15571
  "dev": true,
15728
15572
  "license": "(MIT OR CC0-1.0)",
15729
15573
  "engines": {
@@ -16773,6 +16617,12 @@
16773
16617
  "dev": true,
16774
16618
  "license": "MIT"
16775
16619
  },
16620
+ "node_modules/lodash.difference": {
16621
+ "version": "4.5.0",
16622
+ "integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==",
16623
+ "dev": true,
16624
+ "license": "MIT"
16625
+ },
16776
16626
  "node_modules/lodash.memoize": {
16777
16627
  "version": "4.1.2",
16778
16628
  "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==",
@@ -17516,6 +17366,19 @@
17516
17366
  "node": "*"
17517
17367
  }
17518
17368
  },
17369
+ "node_modules/moment-locales-webpack-plugin": {
17370
+ "version": "1.2.0",
17371
+ "integrity": "sha512-QAi5v0OlPUP7GXviKMtxnpBAo8WmTHrUNN7iciAhNOEAd9evCOvuN0g1N7ThIg3q11GLCkjY1zQ2saRcf/43nQ==",
17372
+ "dev": true,
17373
+ "license": "MIT",
17374
+ "dependencies": {
17375
+ "lodash.difference": "^4.5.0"
17376
+ },
17377
+ "peerDependencies": {
17378
+ "moment": "^2.8.0",
17379
+ "webpack": "^1 || ^2 || ^3 || ^4 || ^5"
17380
+ }
17381
+ },
17519
17382
  "node_modules/moment-timezone": {
17520
17383
  "version": "0.5.48",
17521
17384
  "integrity": "sha512-f22b8LV1gbTO2ms2j2z13MuPogNoh5UzxL3nzNAYKGraILnbGc9NEE6dyiiiLv46DGRb8A4kg8UKWLjPthxBHw==",
@@ -20352,6 +20215,15 @@
20352
20215
  "dev": true,
20353
20216
  "license": "MIT"
20354
20217
  },
20218
+ "node_modules/preact": {
20219
+ "version": "10.12.1",
20220
+ "integrity": "sha512-l8386ixSsBdbreOAkqtrwqHwdvR35ID8c3rKPa8lCWuO86dBi32QWHV4vfsZK1utLLFMvw+Z5Ad4XLkZzchscg==",
20221
+ "license": "MIT",
20222
+ "funding": {
20223
+ "type": "opencollective",
20224
+ "url": "https://opencollective.com/preact"
20225
+ }
20226
+ },
20355
20227
  "node_modules/prelude-ls": {
20356
20228
  "version": "1.2.1",
20357
20229
  "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
@@ -23890,8 +23762,8 @@
23890
23762
  }
23891
23763
  },
23892
23764
  "node_modules/undici-types": {
23893
- "version": "6.20.0",
23894
- "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
23765
+ "version": "6.21.0",
23766
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
23895
23767
  "dev": true,
23896
23768
  "license": "MIT"
23897
23769
  },