@wavemaker/angular-codegen 11.7.0-next.42251 → 11.7.0-rc.162

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 (28) hide show
  1. angular-codegen/angular-app/angular.json +25 -1622
  2. angular-codegen/angular-app/build-scripts/build.js +35 -0
  3. angular-codegen/angular-app/build-scripts/post-build.js +17 -11
  4. angular-codegen/angular-app/build-scripts/update-version.js +24 -0
  5. angular-codegen/angular-app/package-lock.json +12339 -13436
  6. angular-codegen/angular-app/package.json +65 -63
  7. angular-codegen/angular-app/src/app/lazy-load-scripts.resolve.ts +2 -4
  8. angular-codegen/angular-app/src/assets/print.css +32 -0
  9. angular-codegen/angular-app/src/assets/styles/css/wm-style.css +1 -1
  10. angular-codegen/angular-app/src/setup-jest.js +121 -0
  11. angular-codegen/angular-app/tsconfig.json +44 -33
  12. angular-codegen/angular-app/wm-custom-webpack.config.js +60 -0
  13. angular-codegen/build-angular-app.js +13 -5
  14. angular-codegen/dependencies/expression-parser.cjs.js +40465 -9308
  15. angular-codegen/dependencies/pipe-provider.cjs.js +186312 -93393
  16. angular-codegen/dependencies/transpilation-mobile.cjs.js +58913 -28706
  17. angular-codegen/dependencies/transpilation-web.cjs.js +75541 -28898
  18. angular-codegen/download-packages.js +8 -1
  19. angular-codegen/package-lock.json +4 -4368
  20. angular-codegen/package.json +2 -2
  21. angular-codegen/src/codegen.js +1 -1
  22. angular-codegen/src/handlebar-helpers.js +1 -1
  23. angular-codegen/templates/app-prefabs.module.ts.hbs +0 -1
  24. angular-codegen/templates/app-routes.ts.hbs +6 -5
  25. angular-codegen/templates/layout/layout.module.ts.hbs +1 -1
  26. angular-codegen/templates/page/page.module.ts.hbs +2 -2
  27. angular-codegen/templates/partial/partial.module.ts.hbs +0 -1
  28. angular-codegen/templates/prefab/prefab.module.ts.hbs +0 -1
@@ -29,6 +29,11 @@
29
29
  "assets": [
30
30
  "src/favicon.ico",
31
31
  "src/assets",
32
+ {
33
+ "glob": "print.css",
34
+ "input": "src/assets/",
35
+ "output": "."
36
+ },
32
37
  {
33
38
  "glob": "**/*",
34
39
  "input": "libraries/locales/",
@@ -56,10 +61,7 @@
56
61
  }
57
62
  ],
58
63
  "scripts": [
59
- "./node_modules/lodash/lodash.min.js",
60
- "./node_modules/x2js/x2js.js",
61
64
  "./node_modules/d3/dist/d3.min.js",
62
- "./node_modules/he/he.js",
63
65
  "./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
64
66
  "./node_modules/jquery/dist/jquery.min.js",
65
67
  "./node_modules/jquery-ui/ui/disable-selection.js",
@@ -84,8 +86,6 @@
84
86
  "./node_modules/iscroll/build/iscroll.js",
85
87
  "./node_modules/js-cookie/src/js.cookie.js",
86
88
  "./node_modules/jssha/dist/sha256.js",
87
- "./node_modules/tabbable/dist/index.umd.min.js",
88
- "./node_modules/@wavemaker/focus-trap/dist/focus-trap.umd.min.js",
89
89
  "./node_modules/@ztree/ztree_v3/js/jquery.ztree.all.js",
90
90
  "./node_modules/@wavemaker/app-ng-runtime/scripts/tree-keyboard-navigation/keyboard-navigation.js"
91
91
  ]
@@ -133,7 +133,7 @@
133
133
  "namedChunks": true,
134
134
  "aot": true,
135
135
  "extractLicenses": false,
136
- "vendorChunk": false,
136
+ "vendorChunk": true,
137
137
  "buildOptimizer": false,
138
138
  "budgets": [
139
139
  {
@@ -187,7 +187,12 @@
187
187
  "tsConfig": "src/tsconfig.app.json",
188
188
  "assets": [
189
189
  "src/favicon.ico",
190
- "src/assets"
190
+ "src/assets",
191
+ {
192
+ "glob": "print.css",
193
+ "input": "src/assets/",
194
+ "output": "."
195
+ }
191
196
  ],
192
197
  "styles": [
193
198
  "src/styles.css",
@@ -196,10 +201,7 @@
196
201
  "src/assets/app.css"
197
202
  ],
198
203
  "scripts": [
199
- "./node_modules/lodash/lodash.min.js",
200
- "./node_modules/x2js/x2js.js",
201
204
  "./node_modules/d3/dist/d3.min.js",
202
- "./node_modules/he/he.js",
203
205
  "./node_modules/@wavemaker/nvd3/build/nv.d3.min.js",
204
206
  "./node_modules/jquery/dist/jquery.min.js",
205
207
  "./node_modules/jquery-ui/ui/disable-selection.js",
@@ -242,1635 +244,36 @@
242
244
  "serve": {
243
245
  "builder": "@angular-devkit/build-angular:dev-server",
244
246
  "options": {
245
- "browserTarget": "angular-app:build"
247
+ "buildTarget": "angular-app:build"
246
248
  },
247
249
  "configurations": {
248
250
  "production": {
249
- "browserTarget": "angular-app:build:production"
251
+ "buildTarget": "angular-app:build:production"
250
252
  }
251
253
  }
252
254
  },
253
255
  "extract-i18n": {
254
256
  "builder": "@angular-devkit/build-angular:extract-i18n",
255
257
  "options": {
256
- "browserTarget": "angular-app:build"
257
- }
258
- }
259
- }
260
- },
261
- "@wm/core": {
262
- "root": "projects/core",
263
- "sourceRoot": "projects/core/src",
264
- "projectType": "library",
265
- "prefix": "lib",
266
- "architect": {
267
- "build": {
268
- "builder": "@angular-devkit/build-angular:ng-packagr",
269
- "options": {
270
- "tsConfig": "projects/core/tsconfig.lib.json",
271
- "project": "projects/core/ng-package.json"
272
- },
273
- "configurations": {
274
- "production": {
275
- "tsConfig": "projects/core/tsconfig.lib.prod.json"
276
- }
277
- }
278
- }
279
- }
280
- },
281
- "@wm/components/base": {
282
- "root": "projects/components/base",
283
- "sourceRoot": "projects/components/base/src",
284
- "projectType": "library",
285
- "prefix": "lib",
286
- "architect": {
287
- "build": {
288
- "builder": "@angular-devkit/build-angular:ng-packagr",
289
- "options": {
290
- "tsConfig": "projects/components/base/tsconfig.lib.json",
291
- "project": "projects/components/base/ng-package.json"
292
- },
293
- "configurations": {
294
- "production": {
295
- "tsConfig": "projects/components/base/tsconfig.lib.prod.json"
296
- }
258
+ "buildTarget": "angular-app:build"
297
259
  }
298
260
  },
299
- "test": {
300
- "builder": "@angular-devkit/build-angular:karma",
301
- "options": {
302
- "main": "projects/components/base/src/test.ts",
303
- "polyfills": "projects/components/base/polyfills.ts",
304
- "tsConfig": "projects/components/base/tsconfig.spec.json",
305
- "karmaConfig": "projects/components/base/karma.conf.js",
306
- "codeCoverage": true,
307
- "watch": false,
308
- "styles": [
309
- "../wavemaker-app-runtime-angularjs/application/styles/css/wm-style.css"
310
- ],
311
- "scripts": [
312
- "./libraries/scripts/swipey/swipey.jquery.plugin.js",
313
- "./libraries/scripts/jquery.ui.touch-punch/jquery.ui.touch-punch.min.js"
314
- ],
315
- "assets": []
316
- }
317
- }
318
- }
319
- },
320
- "@wm/components/basic": {
321
- "root": "projects/components/widgets/basic/default",
322
- "sourceRoot": "projects/components/widgets/basic/default/src",
323
- "projectType": "library",
324
- "prefix": "lib",
325
- "architect": {
326
- "build": {
327
- "builder": "@angular-devkit/build-angular:ng-packagr",
328
- "options": {
329
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
330
- "project": "projects/components/widgets/basic/default/ng-package.json"
331
- },
332
- "configurations": {
333
- "production": {
334
- "tsConfig": "projects/components/widgets/basic/default/tsconfig.lib.prod.json"
335
- }
336
- }
337
- }
338
- }
339
- },
340
- "@wm/components/basic/progress": {
341
- "root": "projects/components/widgets/basic/progress",
342
- "sourceRoot": "projects/components/widgets/basic/progress/src",
343
- "projectType": "library",
344
- "prefix": "lib",
345
- "architect": {
346
- "build": {
347
- "builder": "@angular-devkit/build-angular:ng-packagr",
348
- "options": {
349
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
350
- "project": "projects/components/widgets/basic/progress/ng-package.json"
351
- },
352
- "configurations": {
353
- "production": {
354
- "tsConfig": "projects/components/widgets/basic/progress/tsconfig.lib.prod.json"
355
- }
356
- }
357
- }
358
- }
359
- },
360
- "@wm/components/basic/rich-text-editor": {
361
- "root": "projects/components/widgets/basic/rich-text-editor",
362
- "sourceRoot": "projects/components/widgets/basic/rich-text-editor/src",
363
- "projectType": "library",
364
- "prefix": "lib",
365
- "architect": {
366
- "build": {
367
- "builder": "@angular-devkit/build-angular:ng-packagr",
368
- "options": {
369
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
370
- "project": "projects/components/widgets/basic/rich-text-editor/ng-package.json"
371
- },
372
- "configurations": {
373
- "production": {
374
- "tsConfig": "projects/components/widgets/basic/rich-text-editor/tsconfig.lib.prod.json"
375
- }
376
- }
377
- }
378
- }
379
- },
380
- "@wm/components/basic/search": {
381
- "root": "projects/components/widgets/basic/search",
382
- "sourceRoot": "projects/components/widgets/basic/search/src",
383
- "projectType": "library",
384
- "prefix": "lib",
385
- "architect": {
386
- "build": {
387
- "builder": "@angular-devkit/build-angular:ng-packagr",
388
- "options": {
389
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
390
- "project": "projects/components/widgets/basic/search/ng-package.json"
391
- },
392
- "configurations": {
393
- "production": {
394
- "tsConfig": "projects/components/widgets/basic/search/tsconfig.lib.prod.json"
395
- }
396
- }
397
- }
398
- }
399
- },
400
- "@wm/components/basic/tree": {
401
- "root": "projects/components/widgets/basic/tree",
402
- "sourceRoot": "projects/components/widgets/basic/tree/src",
403
- "projectType": "library",
404
- "prefix": "lib",
405
- "architect": {
406
- "build": {
407
- "builder": "@angular-devkit/build-angular:ng-packagr",
408
- "options": {
409
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
410
- "project": "projects/components/widgets/basic/tree/ng-package.json"
411
- },
412
- "configurations": {
413
- "production": {
414
- "tsConfig": "projects/components/widgets/basic/tree/tsconfig.lib.prod.json"
415
- }
416
- }
417
- }
418
- }
419
- },
420
- "@wm/components/input": {
421
- "root": "projects/components/widgets/input/default",
422
- "sourceRoot": "projects/components/widgets/input/default/src",
423
- "projectType": "library",
424
- "prefix": "lib",
425
- "architect": {
426
- "build": {
427
- "builder": "@angular-devkit/build-angular:ng-packagr",
428
- "options": {
429
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
430
- "project": "projects/components/widgets/input/default/ng-package.json"
431
- },
432
- "configurations": {
433
- "production": {
434
- "tsConfig": "projects/components/widgets/input/default/tsconfig.lib.prod.json"
435
- }
436
- }
437
- }
438
- }
439
- },
440
- "@wm/components/input/calendar": {
441
- "root": "projects/components/widgets/input/calendar",
442
- "sourceRoot": "projects/components/widgets/input/calendar/src",
443
- "projectType": "library",
444
- "prefix": "lib",
445
- "architect": {
446
- "build": {
447
- "builder": "@angular-devkit/build-angular:ng-packagr",
448
- "options": {
449
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
450
- "project": "projects/components/widgets/input/calendar/ng-package.json"
451
- },
452
- "configurations": {
453
- "production": {
454
- "tsConfig": "projects/components/widgets/input/calendar/tsconfig.lib.prod.json"
455
- }
456
- }
457
- }
458
- }
459
- },
460
- "@wm/components/input/chips": {
461
- "root": "projects/components/widgets/input/chips",
462
- "sourceRoot": "projects/components/widgets/input/chips/src",
463
- "projectType": "library",
464
- "prefix": "lib",
465
- "architect": {
466
- "build": {
467
- "builder": "@angular-devkit/build-angular:ng-packagr",
468
- "options": {
469
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
470
- "project": "projects/components/widgets/input/chips/ng-package.json"
471
- },
472
- "configurations": {
473
- "production": {
474
- "tsConfig": "projects/components/widgets/input/chips/tsconfig.lib.prod.json"
475
- }
476
- }
477
- }
478
- }
479
- },
480
- "@wm/components/input/color-picker": {
481
- "root": "projects/components/widgets/input/color-picker",
482
- "sourceRoot": "projects/components/widgets/input/color-picker/src",
483
- "projectType": "library",
484
- "prefix": "lib",
485
- "architect": {
486
- "build": {
487
- "builder": "@angular-devkit/build-angular:ng-packagr",
488
- "options": {
489
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
490
- "project": "projects/components/widgets/input/color-picker/ng-package.json"
491
- },
492
- "configurations": {
493
- "production": {
494
- "tsConfig": "projects/components/widgets/input/color-picker/tsconfig.lib.prod.json"
495
- }
496
- }
497
- }
498
- }
499
- },
500
- "@wm/components/input/currency": {
501
- "root": "projects/components/widgets/input/currency",
502
- "sourceRoot": "projects/components/widgets/input/currency/src",
503
- "projectType": "library",
504
- "prefix": "lib",
505
- "architect": {
506
- "build": {
507
- "builder": "@angular-devkit/build-angular:ng-packagr",
508
- "options": {
509
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
510
- "project": "projects/components/widgets/input/currency/ng-package.json"
511
- },
512
- "configurations": {
513
- "production": {
514
- "tsConfig": "projects/components/widgets/input/currency/tsconfig.lib.prod.json"
515
- }
516
- }
517
- }
518
- }
519
- },
520
- "@wm/components/input/epoch": {
521
- "root": "projects/components/widgets/input/epoch",
522
- "sourceRoot": "projects/components/widgets/input/epoch/src",
523
- "projectType": "library",
524
- "prefix": "lib",
525
- "architect": {
526
- "build": {
527
- "builder": "@angular-devkit/build-angular:ng-packagr",
528
- "options": {
529
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
530
- "project": "projects/components/widgets/input/epoch/ng-package.json"
531
- },
532
- "configurations": {
533
- "production": {
534
- "tsConfig": "projects/components/widgets/input/epoch/tsconfig.lib.prod.json"
535
- }
536
- }
537
- }
538
- }
539
- },
540
- "@wm/components/input/file-upload": {
541
- "root": "projects/components/widgets/input/file-upload",
542
- "sourceRoot": "projects/components/widgets/input/file-upload/src",
543
- "projectType": "library",
544
- "prefix": "lib",
545
- "architect": {
546
- "build": {
547
- "builder": "@angular-devkit/build-angular:ng-packagr",
548
- "options": {
549
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
550
- "project": "projects/components/widgets/input/file-upload/ng-package.json"
551
- },
552
- "configurations": {
553
- "production": {
554
- "tsConfig": "projects/components/widgets/input/file-upload/tsconfig.lib.prod.json"
555
- }
556
- }
557
- }
558
- }
559
- },
560
- "@wm/components/input/rating": {
561
- "root": "projects/components/widgets/input/rating",
562
- "sourceRoot": "projects/components/widgets/input/rating/src",
563
- "projectType": "library",
564
- "prefix": "lib",
565
- "architect": {
566
- "build": {
567
- "builder": "@angular-devkit/build-angular:ng-packagr",
568
- "options": {
569
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
570
- "project": "projects/components/widgets/input/rating/ng-package.json"
571
- },
572
- "configurations": {
573
- "production": {
574
- "tsConfig": "projects/components/widgets/input/rating/tsconfig.lib.prod.json"
575
- }
576
- }
577
- }
578
- }
579
- },
580
- "@wm/components/input/slider": {
581
- "root": "projects/components/widgets/input/slider",
582
- "sourceRoot": "projects/components/widgets/input/slider/src",
583
- "projectType": "library",
584
- "prefix": "lib",
585
- "architect": {
586
- "build": {
587
- "builder": "@angular-devkit/build-angular:ng-packagr",
588
- "options": {
589
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
590
- "project": "projects/components/widgets/input/slider/ng-package.json"
591
- },
592
- "configurations": {
593
- "production": {
594
- "tsConfig": "projects/components/widgets/input/slider/tsconfig.lib.prod.json"
595
- }
596
- }
597
- }
598
- }
599
- },
600
- "@wm/components/data/card": {
601
- "root": "projects/components/widgets/data/card",
602
- "sourceRoot": "projects/components/widgets/data/card/src",
603
- "projectType": "library",
604
- "prefix": "lib",
605
- "architect": {
606
- "build": {
607
- "builder": "@angular-devkit/build-angular:ng-packagr",
608
- "options": {
609
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
610
- "project": "projects/components/widgets/data/card/ng-package.json"
611
- },
612
- "configurations": {
613
- "production": {
614
- "tsConfig": "projects/components/widgets/data/card/tsconfig.lib.prod.json"
615
- }
616
- }
617
- }
618
- }
619
- },
620
- "@wm/components/data/form": {
621
- "root": "projects/components/widgets/data/form",
622
- "sourceRoot": "projects/components/widgets/data/form/src",
623
- "projectType": "library",
624
- "prefix": "lib",
625
- "architect": {
626
- "build": {
627
- "builder": "@angular-devkit/build-angular:ng-packagr",
628
- "options": {
629
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
630
- "project": "projects/components/widgets/data/form/ng-package.json"
631
- },
632
- "configurations": {
633
- "production": {
634
- "tsConfig": "projects/components/widgets/data/form/tsconfig.lib.prod.json"
635
- }
636
- }
637
- }
638
- }
639
- },
640
- "@wm/components/data/list": {
641
- "root": "projects/components/widgets/data/list",
642
- "sourceRoot": "projects/components/widgets/data/list/src",
643
- "projectType": "library",
644
- "prefix": "lib",
645
- "architect": {
646
- "build": {
647
- "builder": "@angular-devkit/build-angular:ng-packagr",
648
- "options": {
649
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
650
- "project": "projects/components/widgets/data/list/ng-package.json"
651
- },
652
- "configurations": {
653
- "production": {
654
- "tsConfig": "projects/components/widgets/data/list/tsconfig.lib.prod.json"
655
- }
656
- }
657
- }
658
- }
659
- },
660
- "@wm/components/data/pagination": {
661
- "root": "projects/components/widgets/data/pagination",
662
- "sourceRoot": "projects/components/widgets/data/pagination/src",
663
- "projectType": "library",
664
- "prefix": "lib",
665
- "architect": {
666
- "build": {
667
- "builder": "@angular-devkit/build-angular:ng-packagr",
668
- "options": {
669
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
670
- "project": "projects/components/widgets/data/pagination/ng-package.json"
671
- },
672
- "configurations": {
673
- "production": {
674
- "tsConfig": "projects/components/widgets/data/pagination/tsconfig.lib.prod.json"
675
- }
676
- }
677
- }
678
- }
679
- },
680
- "@wm/components/data/live-table": {
681
- "root": "projects/components/widgets/data/live-table",
682
- "sourceRoot": "projects/components/widgets/data/live-table/src",
683
- "projectType": "library",
684
- "prefix": "lib",
685
- "architect": {
686
- "build": {
687
- "builder": "@angular-devkit/build-angular:ng-packagr",
688
- "options": {
689
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
690
- "project": "projects/components/widgets/data/live-table/ng-package.json"
691
- },
692
- "configurations": {
693
- "production": {
694
- "tsConfig": "projects/components/widgets/data/live-table/tsconfig.lib.prod.json"
695
- }
696
- }
697
- }
698
- }
699
- },
700
- "@wm/components/data/table": {
701
- "root": "projects/components/widgets/data/table",
702
- "sourceRoot": "projects/components/widgets/data/table/src",
703
- "projectType": "library",
704
- "prefix": "lib",
705
- "architect": {
706
- "build": {
707
- "builder": "@angular-devkit/build-angular:ng-packagr",
708
- "options": {
709
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
710
- "project": "projects/components/widgets/data/table/ng-package.json"
711
- },
712
- "configurations": {
713
- "production": {
714
- "tsConfig": "projects/components/widgets/data/table/tsconfig.lib.prod.json"
715
- }
716
- }
717
- }
718
- }
719
- },
720
- "@wm/components/chart": {
721
- "root": "projects/components/widgets/chart",
722
- "sourceRoot": "projects/components/widgets/chart/src",
723
- "projectType": "library",
724
- "prefix": "lib",
725
- "architect": {
726
- "build": {
727
- "builder": "@angular-devkit/build-angular:ng-packagr",
728
- "options": {
729
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
730
- "project": "projects/components/widgets/chart/ng-package.json"
731
- },
732
- "configurations": {
733
- "production": {
734
- "tsConfig": "projects/components/widgets/chart/tsconfig.lib.prod.json"
735
- }
736
- }
737
- }
738
- }
739
- },
740
- "@wm/components/containers/accordion": {
741
- "root": "projects/components/widgets/containers/accordion",
742
- "sourceRoot": "projects/components/widgets/containers/accordion/src",
743
- "projectType": "library",
744
- "prefix": "lib",
745
- "architect": {
746
- "build": {
747
- "builder": "@angular-devkit/build-angular:ng-packagr",
261
+ "lint": {
262
+ "builder": "@angular-eslint/builder:lint",
748
263
  "options": {
749
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
750
- "project": "projects/components/widgets/containers/accordion/ng-package.json"
751
- },
752
- "configurations": {
753
- "production": {
754
- "tsConfig": "projects/components/widgets/containers/accordion/tsconfig.lib.prod.json"
755
- }
756
- }
757
- }
758
- }
759
- },
760
- "@wm/components/containers/layout-grid": {
761
- "root": "projects/components/widgets/containers/layout-grid",
762
- "sourceRoot": "projects/components/widgets/containers/layout-grid/src",
763
- "projectType": "library",
764
- "prefix": "lib",
765
- "architect": {
766
- "build": {
767
- "builder": "@angular-devkit/build-angular:ng-packagr",
768
- "options": {
769
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
770
- "project": "projects/components/widgets/containers/layout-grid/ng-package.json"
771
- },
772
- "configurations": {
773
- "production": {
774
- "tsConfig": "projects/components/widgets/containers/layout-grid/tsconfig.lib.prod.json"
775
- }
776
- }
777
- }
778
- }
779
- },
780
- "@wm/components/containers/linear-layout": {
781
- "root": "projects/components/widgets/containers/linear-layout",
782
- "sourceRoot": "projects/components/widgets/containers/linear-layout/src",
783
- "projectType": "library",
784
- "prefix": "lib",
785
- "architect": {
786
- "build": {
787
- "builder": "@angular-devkit/build-angular:ng-packagr",
788
- "options": {
789
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
790
- "project": "projects/components/widgets/containers/linear-layout/ng-package.json"
791
- },
792
- "configurations": {
793
- "production": {
794
- "tsConfig": "projects/components/widgets/containers/linear-layout/tsconfig.lib.prod.json"
795
- }
796
- }
797
- }
798
- }
799
- },
800
- "@wm/components/containers/panel": {
801
- "root": "projects/components/widgets/containers/panel",
802
- "sourceRoot": "projects/components/widgets/containers/panel/src",
803
- "projectType": "library",
804
- "prefix": "lib",
805
- "architect": {
806
- "build": {
807
- "builder": "@angular-devkit/build-angular:ng-packagr",
808
- "options": {
809
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
810
- "project": "projects/components/widgets/containers/panel/ng-package.json"
811
- },
812
- "configurations": {
813
- "production": {
814
- "tsConfig": "projects/components/widgets/containers/panel/tsconfig.lib.prod.json"
815
- }
816
- }
817
- }
818
- }
819
- },
820
- "@wm/components/containers/tabs": {
821
- "root": "projects/components/widgets/containers/tabs",
822
- "sourceRoot": "projects/components/widgets/containers/tabs/src",
823
- "projectType": "library",
824
- "prefix": "lib",
825
- "architect": {
826
- "build": {
827
- "builder": "@angular-devkit/build-angular:ng-packagr",
828
- "options": {
829
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
830
- "project": "projects/components/widgets/containers/tabs/ng-package.json"
831
- },
832
- "configurations": {
833
- "production": {
834
- "tsConfig": "projects/components/widgets/containers/tabs/tsconfig.lib.prod.json"
835
- }
836
- }
837
- }
838
- }
839
- },
840
- "@wm/components/containers/tile": {
841
- "root": "projects/components/widgets/containers/tile",
842
- "sourceRoot": "projects/components/widgets/containers/tile/src",
843
- "projectType": "library",
844
- "prefix": "lib",
845
- "architect": {
846
- "build": {
847
- "builder": "@angular-devkit/build-angular:ng-packagr",
848
- "options": {
849
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
850
- "project": "projects/components/widgets/containers/tile/ng-package.json"
851
- },
852
- "configurations": {
853
- "production": {
854
- "tsConfig": "projects/components/widgets/containers/tile/tsconfig.lib.prod.json"
855
- }
856
- }
857
- }
858
- }
859
- },
860
- "@wm/components/containers/wizard": {
861
- "root": "projects/components/widgets/containers/wizard",
862
- "sourceRoot": "projects/components/widgets/containers/wizard/src",
863
- "projectType": "library",
864
- "prefix": "lib",
865
- "architect": {
866
- "build": {
867
- "builder": "@angular-devkit/build-angular:ng-packagr",
868
- "options": {
869
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
870
- "project": "projects/components/widgets/containers/wizard/ng-package.json"
871
- },
872
- "configurations": {
873
- "production": {
874
- "tsConfig": "projects/components/widgets/containers/wizard/tsconfig.lib.prod.json"
875
- }
876
- }
877
- }
878
- }
879
- },
880
- "@wm/components/navigation/breadcrumb": {
881
- "root": "projects/components/widgets/navigation/breadcrumb",
882
- "sourceRoot": "projects/components/widgets/navigation/breadcrumb/src",
883
- "projectType": "library",
884
- "prefix": "lib",
885
- "architect": {
886
- "build": {
887
- "builder": "@angular-devkit/build-angular:ng-packagr",
888
- "options": {
889
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
890
- "project": "projects/components/widgets/navigation/breadcrumb/ng-package.json"
891
- },
892
- "configurations": {
893
- "production": {
894
- "tsConfig": "projects/components/widgets/navigation/breadcrumb/tsconfig.lib.prod.json"
895
- }
896
- }
897
- }
898
- }
899
- },
900
- "@wm/components/navigation/menu": {
901
- "root": "projects/components/widgets/navigation/menu",
902
- "sourceRoot": "projects/components/widgets/navigation/menu/src",
903
- "projectType": "library",
904
- "prefix": "lib",
905
- "architect": {
906
- "build": {
907
- "builder": "@angular-devkit/build-angular:ng-packagr",
908
- "options": {
909
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
910
- "project": "projects/components/widgets/navigation/menu/ng-package.json"
911
- },
912
- "configurations": {
913
- "production": {
914
- "tsConfig": "projects/components/widgets/navigation/menu/tsconfig.lib.prod.json"
915
- }
916
- }
917
- }
918
- }
919
- },
920
- "@wm/components/navigation/navbar": {
921
- "root": "projects/components/widgets/navigation/navbar",
922
- "sourceRoot": "projects/components/widgets/navigation/navbar/src",
923
- "projectType": "library",
924
- "prefix": "lib",
925
- "architect": {
926
- "build": {
927
- "builder": "@angular-devkit/build-angular:ng-packagr",
928
- "options": {
929
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
930
- "project": "projects/components/widgets/navigation/navbar/ng-package.json"
931
- },
932
- "configurations": {
933
- "production": {
934
- "tsConfig": "projects/components/widgets/navigation/navbar/tsconfig.lib.prod.json"
935
- }
936
- }
937
- }
938
- }
939
- },
940
- "@wm/components/navigation/popover": {
941
- "root": "projects/components/widgets/navigation/popover",
942
- "sourceRoot": "projects/components/widgets/navigation/popover/src",
943
- "projectType": "library",
944
- "prefix": "lib",
945
- "architect": {
946
- "build": {
947
- "builder": "@angular-devkit/build-angular:ng-packagr",
948
- "options": {
949
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
950
- "project": "projects/components/widgets/navigation/popover/ng-package.json"
951
- },
952
- "configurations": {
953
- "production": {
954
- "tsConfig": "projects/components/widgets/navigation/popover/tsconfig.lib.prod.json"
955
- }
956
- }
957
- }
958
- }
959
- },
960
- "@wm/components/dialogs": {
961
- "root": "projects/components/widgets/dialogs/default",
962
- "sourceRoot": "projects/components/widgets/dialogs/default/src",
963
- "projectType": "library",
964
- "prefix": "lib",
965
- "architect": {
966
- "build": {
967
- "builder": "@angular-devkit/build-angular:ng-packagr",
968
- "options": {
969
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
970
- "project": "projects/components/widgets/dialogs/default/ng-package.json"
971
- },
972
- "configurations": {
973
- "production": {
974
- "tsConfig": "projects/components/widgets/dialogs/default/tsconfig.lib.prod.json"
975
- }
976
- }
977
- }
978
- }
979
- },
980
- "@wm/components/dialogs/alert-dialog": {
981
- "root": "projects/components/widgets/dialogs/alert-dialog",
982
- "sourceRoot": "projects/components/widgets/dialogs/alert-dialog/src",
983
- "projectType": "library",
984
- "prefix": "lib",
985
- "architect": {
986
- "build": {
987
- "builder": "@angular-devkit/build-angular:ng-packagr",
988
- "options": {
989
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
990
- "project": "projects/components/widgets/dialogs/alert-dialog/ng-package.json"
991
- },
992
- "configurations": {
993
- "production": {
994
- "tsConfig": "projects/components/widgets/dialogs/alert-dialog/tsconfig.lib.prod.json"
995
- }
996
- }
997
- }
998
- }
999
- },
1000
- "@wm/components/dialogs/confirm-dialog": {
1001
- "root": "projects/components/widgets/dialogs/confirm-dialog",
1002
- "sourceRoot": "projects/components/widgets/dialogs/confirm-dialog/src",
1003
- "projectType": "library",
1004
- "prefix": "lib",
1005
- "architect": {
1006
- "build": {
1007
- "builder": "@angular-devkit/build-angular:ng-packagr",
1008
- "options": {
1009
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1010
- "project": "projects/components/widgets/dialogs/confirm-dialog/ng-package.json"
1011
- },
1012
- "configurations": {
1013
- "production": {
1014
- "tsConfig": "projects/components/widgets/dialogs/confirm-dialog/tsconfig.lib.prod.json"
1015
- }
1016
- }
1017
- }
1018
- }
1019
- },
1020
- "@wm/components/dialogs/design-dialog": {
1021
- "root": "projects/components/widgets/dialogs/design-dialog",
1022
- "sourceRoot": "projects/components/widgets/dialogs/design-dialog/src",
1023
- "projectType": "library",
1024
- "prefix": "lib",
1025
- "architect": {
1026
- "build": {
1027
- "builder": "@angular-devkit/build-angular:ng-packagr",
1028
- "options": {
1029
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1030
- "project": "projects/components/widgets/dialogs/design-dialog/ng-package.json"
1031
- },
1032
- "configurations": {
1033
- "production": {
1034
- "tsConfig": "projects/components/widgets/dialogs/design-dialog/tsconfig.lib.prod.json"
1035
- }
1036
- }
1037
- }
1038
- }
1039
- },
1040
- "@wm/components/dialogs/iframe-dialog": {
1041
- "root": "projects/components/widgets/dialogs/iframe-dialog",
1042
- "sourceRoot": "projects/components/widgets/dialogs/iframe-dialog/src",
1043
- "projectType": "library",
1044
- "prefix": "lib",
1045
- "architect": {
1046
- "build": {
1047
- "builder": "@angular-devkit/build-angular:ng-packagr",
1048
- "options": {
1049
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1050
- "project": "projects/components/widgets/dialogs/iframe-dialog/ng-package.json"
1051
- },
1052
- "configurations": {
1053
- "production": {
1054
- "tsConfig": "projects/components/widgets/dialogs/iframe-dialog/tsconfig.lib.prod.json"
1055
- }
1056
- }
1057
- }
1058
- }
1059
- },
1060
- "@wm/components/dialogs/login-dialog": {
1061
- "root": "projects/components/widgets/dialogs/login-dialog",
1062
- "sourceRoot": "projects/components/widgets/dialogs/login-dialog/src",
1063
- "projectType": "library",
1064
- "prefix": "lib",
1065
- "architect": {
1066
- "build": {
1067
- "builder": "@angular-devkit/build-angular:ng-packagr",
1068
- "options": {
1069
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1070
- "project": "projects/components/widgets/dialogs/login-dialog/ng-package.json"
1071
- },
1072
- "configurations": {
1073
- "production": {
1074
- "tsConfig": "projects/components/widgets/dialogs/login-dialog/tsconfig.lib.prod.json"
1075
- }
1076
- }
1077
- }
1078
- }
1079
- },
1080
- "@wm/components/dialogs/partial-dialog": {
1081
- "root": "projects/components/widgets/dialogs/partial-dialog",
1082
- "sourceRoot": "projects/components/widgets/dialogs/partial-dialog/src",
1083
- "projectType": "library",
1084
- "prefix": "lib",
1085
- "architect": {
1086
- "build": {
1087
- "builder": "@angular-devkit/build-angular:ng-packagr",
1088
- "options": {
1089
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1090
- "project": "projects/components/widgets/dialogs/partial-dialog/ng-package.json"
1091
- },
1092
- "configurations": {
1093
- "production": {
1094
- "tsConfig": "projects/components/widgets/dialogs/partial-dialog/tsconfig.lib.prod.json"
1095
- }
1096
- }
1097
- }
1098
- }
1099
- },
1100
- "@wm/components/advanced/carousel": {
1101
- "root": "projects/components/widgets/advanced/carousel",
1102
- "sourceRoot": "projects/components/widgets/advanced/carousel/src",
1103
- "projectType": "library",
1104
- "prefix": "lib",
1105
- "architect": {
1106
- "build": {
1107
- "builder": "@angular-devkit/build-angular:ng-packagr",
1108
- "options": {
1109
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1110
- "project": "projects/components/widgets/advanced/carousel/ng-package.json"
1111
- },
1112
- "configurations": {
1113
- "production": {
1114
- "tsConfig": "projects/components/widgets/advanced/carousel/tsconfig.lib.prod.json"
1115
- }
1116
- }
1117
- }
1118
- }
1119
- },
1120
- "@wm/components/advanced/marquee": {
1121
- "root": "projects/components/widgets/advanced/marquee",
1122
- "sourceRoot": "projects/components/widgets/advanced/marquee/src",
1123
- "projectType": "library",
1124
- "prefix": "lib",
1125
- "architect": {
1126
- "build": {
1127
- "builder": "@angular-devkit/build-angular:ng-packagr",
1128
- "options": {
1129
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1130
- "project": "projects/components/widgets/advanced/marquee/ng-package.json"
1131
- },
1132
- "configurations": {
1133
- "production": {
1134
- "tsConfig": "projects/components/widgets/advanced/marquee/tsconfig.lib.prod.json"
1135
- }
1136
- }
1137
- }
1138
- }
1139
- },
1140
- "@wm/components/advanced/login": {
1141
- "root": "projects/components/widgets/advanced/login",
1142
- "sourceRoot": "projects/components/widgets/advanced/login/src",
1143
- "projectType": "library",
1144
- "prefix": "lib",
1145
- "architect": {
1146
- "build": {
1147
- "builder": "@angular-devkit/build-angular:ng-packagr",
1148
- "options": {
1149
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1150
- "project": "projects/components/widgets/advanced/login/ng-package.json"
1151
- },
1152
- "configurations": {
1153
- "production": {
1154
- "tsConfig": "projects/components/widgets/advanced/login/tsconfig.lib.prod.json"
1155
- }
1156
- }
1157
- }
1158
- }
1159
- },
1160
- "@wm/components/page": {
1161
- "root": "projects/components/widgets/page/default",
1162
- "sourceRoot": "projects/components/widgets/page/default/src",
1163
- "projectType": "library",
1164
- "prefix": "lib",
1165
- "architect": {
1166
- "build": {
1167
- "builder": "@angular-devkit/build-angular:ng-packagr",
1168
- "options": {
1169
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1170
- "project": "projects/components/widgets/page/default/ng-package.json"
1171
- },
1172
- "configurations": {
1173
- "production": {
1174
- "tsConfig": "projects/components/widgets/page/default/tsconfig.lib.prod.json"
1175
- }
1176
- }
1177
- }
1178
- }
1179
- },
1180
- "@wm/components/page/footer": {
1181
- "root": "projects/components/widgets/page/footer",
1182
- "sourceRoot": "projects/components/widgets/page/footer/src",
1183
- "projectType": "library",
1184
- "prefix": "lib",
1185
- "architect": {
1186
- "build": {
1187
- "builder": "@angular-devkit/build-angular:ng-packagr",
1188
- "options": {
1189
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1190
- "project": "projects/components/widgets/page/footer/ng-package.json"
1191
- },
1192
- "configurations": {
1193
- "production": {
1194
- "tsConfig": "projects/components/widgets/page/footer/tsconfig.lib.prod.json"
1195
- }
1196
- }
1197
- }
1198
- }
1199
- },
1200
- "@wm/components/page/header": {
1201
- "root": "projects/components/widgets/page/header",
1202
- "sourceRoot": "projects/components/widgets/page/header/src",
1203
- "projectType": "library",
1204
- "prefix": "lib",
1205
- "architect": {
1206
- "build": {
1207
- "builder": "@angular-devkit/build-angular:ng-packagr",
1208
- "options": {
1209
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1210
- "project": "projects/components/widgets/page/header/ng-package.json"
1211
- },
1212
- "configurations": {
1213
- "production": {
1214
- "tsConfig": "projects/components/widgets/page/header/tsconfig.lib.prod.json"
1215
- }
1216
- }
1217
- }
1218
- }
1219
- },
1220
- "@wm/components/page/left-panel": {
1221
- "root": "projects/components/widgets/page/left-panel",
1222
- "sourceRoot": "projects/components/widgets/page/left-panel/src",
1223
- "projectType": "library",
1224
- "prefix": "lib",
1225
- "architect": {
1226
- "build": {
1227
- "builder": "@angular-devkit/build-angular:ng-packagr",
1228
- "options": {
1229
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1230
- "project": "projects/components/widgets/page/left-panel/ng-package.json"
1231
- },
1232
- "configurations": {
1233
- "production": {
1234
- "tsConfig": "projects/components/widgets/page/left-panel/tsconfig.lib.prod.json"
1235
- }
1236
- }
1237
- }
1238
- }
1239
- },
1240
- "@wm/components/page/right-panel": {
1241
- "root": "projects/components/widgets/page/right-panel",
1242
- "sourceRoot": "projects/components/widgets/page/right-panel/src",
1243
- "projectType": "library",
1244
- "prefix": "lib",
1245
- "architect": {
1246
- "build": {
1247
- "builder": "@angular-devkit/build-angular:ng-packagr",
1248
- "options": {
1249
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1250
- "project": "projects/components/widgets/page/right-panel/ng-package.json"
1251
- },
1252
- "configurations": {
1253
- "production": {
1254
- "tsConfig": "projects/components/widgets/page/right-panel/tsconfig.lib.prod.json"
1255
- }
1256
- }
1257
- }
1258
- }
1259
- },
1260
- "@wm/components/page/top-nav": {
1261
- "root": "projects/components/widgets/page/top-nav",
1262
- "sourceRoot": "projects/components/widgets/page/top-nav/src",
1263
- "projectType": "library",
1264
- "prefix": "lib",
1265
- "architect": {
1266
- "build": {
1267
- "builder": "@angular-devkit/build-angular:ng-packagr",
1268
- "options": {
1269
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1270
- "project": "projects/components/widgets/page/top-nav/ng-package.json"
1271
- },
1272
- "configurations": {
1273
- "production": {
1274
- "tsConfig": "projects/components/widgets/page/top-nav/tsconfig.lib.prod.json"
1275
- }
1276
- }
1277
- }
1278
- }
1279
- },
1280
- "@wm/components/prefab": {
1281
- "root": "projects/components/widgets/prefab",
1282
- "sourceRoot": "projects/components/widgets/prefab/src",
1283
- "projectType": "library",
1284
- "prefix": "lib",
1285
- "architect": {
1286
- "build": {
1287
- "builder": "@angular-devkit/build-angular:ng-packagr",
1288
- "options": {
1289
- "tsConfig": "projects/components/widgets/tsconfig.lib.json",
1290
- "project": "projects/components/widgets/prefab/ng-package.json"
1291
- },
1292
- "configurations": {
1293
- "production": {
1294
- "tsConfig": "projects/components/widgets/prefab/tsconfig.lib.prod.json"
1295
- }
1296
- }
1297
- }
1298
- }
1299
- },
1300
- "@wm/transpiler": {
1301
- "root": "projects/transpiler",
1302
- "sourceRoot": "projects/transpiler/src",
1303
- "projectType": "library",
1304
- "prefix": "lib",
1305
- "architect": {
1306
- "build": {
1307
- "builder": "@angular-devkit/build-angular:ng-packagr",
1308
- "options": {
1309
- "tsConfig": "projects/transpiler/tsconfig.lib.json",
1310
- "project": "projects/transpiler/ng-package.json"
1311
- },
1312
- "configurations": {
1313
- "production": {
1314
- "tsConfig": "projects/transpiler/tsconfig.lib.prod.json"
1315
- }
1316
- }
1317
- }
1318
- }
1319
- },
1320
- "@wm/security": {
1321
- "root": "projects/security",
1322
- "sourceRoot": "projects/security/src",
1323
- "projectType": "library",
1324
- "prefix": "lib",
1325
- "architect": {
1326
- "build": {
1327
- "builder": "@angular-devkit/build-angular:ng-packagr",
1328
- "options": {
1329
- "tsConfig": "projects/security/tsconfig.lib.json",
1330
- "project": "projects/security/ng-package.json"
1331
- },
1332
- "configurations": {
1333
- "production": {
1334
- "tsConfig": "projects/security/tsconfig.lib.prod.json"
1335
- }
1336
- }
1337
- }
1338
- }
1339
- },
1340
- "@wm/swipey": {
1341
- "root": "projects/swipey",
1342
- "sourceRoot": "projects/swipey/src",
1343
- "projectType": "library",
1344
- "prefix": "lib",
1345
- "architect": {
1346
- "build": {
1347
- "builder": "@angular-devkit/build-angular:ng-packagr",
1348
- "options": {
1349
- "tsConfig": "projects/swipey/tsconfig.lib.json",
1350
- "project": "projects/swipey/ng-package.json"
1351
- },
1352
- "configurations": {
1353
- "production": {
1354
- "tsConfig": "projects/swipey/tsconfig.lib.prod.json"
1355
- }
1356
- }
1357
- }
1358
- }
1359
- },
1360
- "@wm/http": {
1361
- "root": "projects/http-service",
1362
- "sourceRoot": "projects/http-service/src",
1363
- "projectType": "library",
1364
- "prefix": "lib",
1365
- "architect": {
1366
- "build": {
1367
- "builder": "@angular-devkit/build-angular:ng-packagr",
1368
- "options": {
1369
- "tsConfig": "projects/http-service/tsconfig.lib.json",
1370
- "project": "projects/http-service/ng-package.json"
1371
- },
1372
- "configurations": {
1373
- "production": {
1374
- "tsConfig": "projects/http-service/tsconfig.lib.prod.json"
1375
- }
1376
- }
1377
- }
1378
- }
1379
- },
1380
- "@wm/oAuth": {
1381
- "root": "projects/oAuth",
1382
- "sourceRoot": "projects/oAuth/src",
1383
- "projectType": "library",
1384
- "prefix": "lib",
1385
- "architect": {
1386
- "build": {
1387
- "builder": "@angular-devkit/build-angular:ng-packagr",
1388
- "options": {
1389
- "tsConfig": "projects/oAuth/tsconfig.lib.json",
1390
- "project": "projects/oAuth/ng-package.json"
1391
- },
1392
- "configurations": {
1393
- "production": {
1394
- "tsConfig": "projects/oAuth/tsconfig.lib.prod.json"
1395
- }
1396
- }
1397
- }
1398
- }
1399
- },
1400
- "@wm/variables": {
1401
- "root": "projects/variables",
1402
- "sourceRoot": "projects/variables/src",
1403
- "projectType": "library",
1404
- "prefix": "lib",
1405
- "architect": {
1406
- "build": {
1407
- "builder": "@angular-devkit/build-angular:ng-packagr",
1408
- "options": {
1409
- "tsConfig": "projects/variables/tsconfig.lib.json",
1410
- "project": "projects/variables/ng-package.json"
1411
- },
1412
- "configurations": {
1413
- "production": {
1414
- "tsConfig": "projects/variables/tsconfig.lib.prod.json"
1415
- }
1416
- }
1417
- },
1418
- "test": {
1419
- "builder": "@angular-devkit/build-angular:karma",
1420
- "options": {
1421
- "main": "projects/variables/src/test.ts",
1422
- "polyfills": "projects/variables/polyfills.ts",
1423
- "tsConfig": "projects/variables/tsconfig.spec.json",
1424
- "karmaConfig": "projects/variables/karma.conf.js",
1425
- "codeCoverage": true,
1426
- "watch": false,
1427
- "styles": [],
1428
- "scripts": [],
1429
- "assets": []
1430
- }
1431
- }
1432
- }
1433
- },
1434
- "@wm/mobile/core": {
1435
- "root": "projects/mobile/core",
1436
- "sourceRoot": "projects/mobile/core/src",
1437
- "projectType": "library",
1438
- "prefix": "lib",
1439
- "architect": {
1440
- "build": {
1441
- "builder": "@angular-devkit/build-angular:ng-packagr",
1442
- "options": {
1443
- "tsConfig": "projects/mobile/core/tsconfig.lib.json",
1444
- "project": "projects/mobile/core/ng-package.json"
1445
- },
1446
- "configurations": {
1447
- "production": {
1448
- "tsConfig": "projects/mobile/core/tsconfig.lib.prod.json"
1449
- }
1450
- }
1451
- }
1452
- }
1453
- },
1454
- "@wm/mobile/components/basic": {
1455
- "root": "projects/mobile/components/basic/default",
1456
- "sourceRoot": "projects/mobile/components/basic/default/src",
1457
- "projectType": "library",
1458
- "prefix": "lib",
1459
- "architect": {
1460
- "build": {
1461
- "builder": "@angular-devkit/build-angular:ng-packagr",
1462
- "options": {
1463
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1464
- "project": "projects/mobile/components/basic/default/ng-package.json"
1465
- },
1466
- "configurations": {
1467
- "production": {
1468
- "tsConfig": "projects/mobile/components/basic/default/tsconfig.lib.prod.json"
1469
- }
1470
- }
1471
- },
1472
- "test": {
1473
- "builder": "@angular-devkit/build-angular:karma",
1474
- "options": {
1475
- "main": "projects/mobile/components/src/test.ts",
1476
- "polyfills": "projects/mobile/components/polyfills.ts",
1477
- "tsConfig": "projects/mobile/components/tsconfig.spec.json",
1478
- "karmaConfig": "projects/mobile/components/karma.conf.js",
1479
- "codeCoverage": true,
1480
- "watch": false,
1481
- "styles": [],
1482
- "scripts": [],
1483
- "assets": []
1484
- }
1485
- }
1486
- }
1487
- },
1488
- "@wm/mobile/components/basic/search": {
1489
- "root": "projects/mobile/components/basic/search",
1490
- "sourceRoot": "projects/mobile/components/basic/search/src",
1491
- "projectType": "library",
1492
- "prefix": "lib",
1493
- "architect": {
1494
- "build": {
1495
- "builder": "@angular-devkit/build-angular:ng-packagr",
1496
- "options": {
1497
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1498
- "project": "projects/mobile/components/basic/search/ng-package.json"
1499
- },
1500
- "configurations": {
1501
- "production": {
1502
- "tsConfig": "projects/mobile/components/basic/search/tsconfig.lib.prod.json"
1503
- }
1504
- }
1505
- }
1506
- }
1507
- },
1508
- "@wm/mobile/components/containers/segmented-control": {
1509
- "root": "projects/mobile/components/containers/segmented-control",
1510
- "sourceRoot": "projects/mobile/components/containers/segmented-control/src",
1511
- "projectType": "library",
1512
- "prefix": "lib",
1513
- "architect": {
1514
- "build": {
1515
- "builder": "@angular-devkit/build-angular:ng-packagr",
1516
- "options": {
1517
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1518
- "project": "projects/mobile/components/containers/segmented-control/ng-package.json"
1519
- },
1520
- "configurations": {
1521
- "production": {
1522
- "tsConfig": "projects/mobile/components/containers/segmented-control/tsconfig.lib.prod.json"
1523
- }
1524
- }
1525
- }
1526
- }
1527
- },
1528
- "@wm/mobile/components/data/media-list": {
1529
- "root": "projects/mobile/components/data/media-list",
1530
- "sourceRoot": "projects/mobile/components/data/media-list/src",
1531
- "projectType": "library",
1532
- "prefix": "lib",
1533
- "architect": {
1534
- "build": {
1535
- "builder": "@angular-devkit/build-angular:ng-packagr",
1536
- "options": {
1537
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1538
- "project": "projects/mobile/components/data/media-list/ng-package.json"
1539
- },
1540
- "configurations": {
1541
- "production": {
1542
- "tsConfig": "projects/mobile/components/data/media-list/tsconfig.lib.prod.json"
1543
- }
1544
- }
1545
- },
1546
- "test": {
1547
- "builder": "@angular-devkit/build-angular:karma",
1548
- "options": {
1549
- "main": "projects/variables/src/test.ts",
1550
- "polyfills": "projects/variables/polyfills.ts",
1551
- "tsConfig": "projects/variables/tsconfig.spec.json",
1552
- "karmaConfig": "projects/variables/karma.conf.js",
1553
- "styles": [],
1554
- "scripts": [],
1555
- "assets": []
1556
- }
1557
- }
1558
- }
1559
- },
1560
- "@wm/mobile/components/device/barcode-scanner": {
1561
- "root": "projects/mobile/components/device/barcode-scanner",
1562
- "sourceRoot": "projects/mobile/components/device/barcode-scanner/src",
1563
- "projectType": "library",
1564
- "prefix": "lib",
1565
- "architect": {
1566
- "build": {
1567
- "builder": "@angular-devkit/build-angular:ng-packagr",
1568
- "options": {
1569
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1570
- "project": "projects/mobile/components/device/barcode-scanner/ng-package.json"
1571
- },
1572
- "configurations": {
1573
- "production": {
1574
- "tsConfig": "projects/mobile/components/device/barcode-scanner/tsconfig.lib.prod.json"
1575
- }
1576
- }
1577
- }
1578
- }
1579
- },
1580
- "@wm/mobile/components/device/camera": {
1581
- "root": "projects/mobile/components/device/camera",
1582
- "sourceRoot": "projects/mobile/components/device/camera/src",
1583
- "projectType": "library",
1584
- "prefix": "lib",
1585
- "architect": {
1586
- "build": {
1587
- "builder": "@angular-devkit/build-angular:ng-packagr",
1588
- "options": {
1589
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1590
- "project": "projects/mobile/components/device/camera/ng-package.json"
1591
- },
1592
- "configurations": {
1593
- "production": {
1594
- "tsConfig": "projects/mobile/components/device/camera/tsconfig.lib.prod.json"
1595
- }
1596
- }
1597
- }
1598
- }
1599
- },
1600
- "@wm/mobile/components/input/file-upload": {
1601
- "root": "projects/mobile/components/input/file-upload",
1602
- "sourceRoot": "projects/mobile/components/input/file-upload/src",
1603
- "projectType": "library",
1604
- "prefix": "lib",
1605
- "architect": {
1606
- "build": {
1607
- "builder": "@angular-devkit/build-angular:ng-packagr",
1608
- "options": {
1609
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1610
- "project": "projects/mobile/components/input/file-upload/ng-package.json"
1611
- },
1612
- "configurations": {
1613
- "production": {
1614
- "tsConfig": "projects/mobile/components/input/file-upload/tsconfig.lib.prod.json"
1615
- }
1616
- }
1617
- }
1618
- }
1619
- },
1620
- "@wm/mobile/components/page": {
1621
- "root": "projects/mobile/components/page",
1622
- "sourceRoot": "projects/mobile/components/page/default/src",
1623
- "projectType": "library",
1624
- "prefix": "lib",
1625
- "architect": {
1626
- "build": {
1627
- "builder": "@angular-devkit/build-angular:ng-packagr",
1628
- "options": {
1629
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1630
- "project": "projects/mobile/components/page/default/ng-package.json"
1631
- },
1632
- "configurations": {
1633
- "production": {
1634
- "tsConfig": "projects/mobile/components/page/tsconfig.lib.prod.json"
1635
- }
1636
- }
1637
- }
1638
- }
1639
- },
1640
- "@wm/mobile/components/page/left-panel": {
1641
- "root": "projects/mobile/components/page/left-panel",
1642
- "sourceRoot": "projects/mobile/components/page/left-panel/src",
1643
- "projectType": "library",
1644
- "prefix": "lib",
1645
- "architect": {
1646
- "build": {
1647
- "builder": "@angular-devkit/build-angular:ng-packagr",
1648
- "options": {
1649
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1650
- "project": "projects/mobile/components/page/left-panel/ng-package.json"
1651
- },
1652
- "configurations": {
1653
- "production": {
1654
- "tsConfig": "projects/mobile/components/page/left-panel/tsconfig.lib.prod.json"
1655
- }
1656
- }
1657
- }
1658
- }
1659
- },
1660
- "@wm/mobile/components/page/mobile-navbar": {
1661
- "root": "projects/mobile/components/page/mobile-navbar",
1662
- "sourceRoot": "projects/mobile/components/page/mobile-navbar/src",
1663
- "projectType": "library",
1664
- "prefix": "lib",
1665
- "architect": {
1666
- "build": {
1667
- "builder": "@angular-devkit/build-angular:ng-packagr",
1668
- "options": {
1669
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1670
- "project": "projects/mobile/components/page/mobile-navbar/ng-package.json"
1671
- },
1672
- "configurations": {
1673
- "production": {
1674
- "tsConfig": "projects/mobile/components/page/mobile-navbar/tsconfig.lib.prod.json"
1675
- }
1676
- }
1677
- }
1678
- }
1679
- },
1680
- "@wm/mobile/components/page/tab-bar": {
1681
- "root": "projects/mobile/components/page/tab-bar",
1682
- "sourceRoot": "projects/mobile/components/page/tab-bar/src",
1683
- "projectType": "library",
1684
- "prefix": "lib",
1685
- "architect": {
1686
- "build": {
1687
- "builder": "@angular-devkit/build-angular:ng-packagr",
1688
- "options": {
1689
- "tsConfig": "projects/mobile/components/tsconfig.lib.json",
1690
- "project": "projects/mobile/components/page/tab-bar/ng-package.json"
1691
- },
1692
- "configurations": {
1693
- "production": {
1694
- "tsConfig": "projects/mobile/components/page/tab-bar/tsconfig.lib.prod.json"
1695
- }
1696
- }
1697
- },
1698
- "test": {
1699
- "builder": "@angular-devkit/build-angular:karma",
1700
- "options": {
1701
- "main": "projects/mobile/components/src/test.ts",
1702
- "polyfills": "projects/mobile/components/polyfills.ts",
1703
- "tsConfig": "projects/mobile/components/tsconfig.spec.json",
1704
- "karmaConfig": "projects/mobile/components/karma.conf.js",
1705
- "styles": [],
1706
- "scripts": [],
1707
- "assets": []
1708
- }
1709
- }
1710
- }
1711
- },
1712
- "@wm/mobile/offline": {
1713
- "root": "projects/mobile/offline",
1714
- "sourceRoot": "projects/mobile/offline/src",
1715
- "projectType": "library",
1716
- "prefix": "lib",
1717
- "architect": {
1718
- "build": {
1719
- "builder": "@angular-devkit/build-angular:ng-packagr",
1720
- "options": {
1721
- "tsConfig": "projects/mobile/offline/tsconfig.lib.json",
1722
- "project": "projects/mobile/offline/ng-package.json"
1723
- },
1724
- "configurations": {
1725
- "production": {
1726
- "tsConfig": "projects/mobile/offline/tsconfig.lib.prod.json"
1727
- }
1728
- }
1729
- }
1730
- }
1731
- },
1732
- "@wm/mobile/variables": {
1733
- "root": "projects/mobile/variables",
1734
- "sourceRoot": "projects/mobile/variables/src",
1735
- "projectType": "library",
1736
- "prefix": "lib",
1737
- "architect": {
1738
- "build": {
1739
- "builder": "@angular-devkit/build-angular:ng-packagr",
1740
- "options": {
1741
- "tsConfig": "projects/mobile/variables/tsconfig.lib.json",
1742
- "project": "projects/mobile/variables/ng-package.json"
1743
- },
1744
- "configurations": {
1745
- "production": {
1746
- "tsConfig": "projects/mobile/variables/tsconfig.lib.prod.json"
1747
- }
1748
- }
1749
- }
1750
- }
1751
- },
1752
- "@wm/runtime/base": {
1753
- "root": "projects/runtime-base",
1754
- "sourceRoot": "projects/runtime-base/src",
1755
- "projectType": "library",
1756
- "prefix": "lib",
1757
- "architect": {
1758
- "build": {
1759
- "builder": "@angular-devkit/build-angular:ng-packagr",
1760
- "options": {
1761
- "tsConfig": "projects/runtime-base/tsconfig.lib.json",
1762
- "project": "projects/runtime-base/ng-package.json"
1763
- },
1764
- "configurations": {
1765
- "production": {
1766
- "tsConfig": "projects/runtime-base/tsconfig.lib.prod.json"
1767
- }
1768
- }
1769
- }
1770
- }
1771
- },
1772
- "@wm/runtime/dynamic": {
1773
- "root": "projects/runtime-dynamic",
1774
- "sourceRoot": "projects/runtime-dynamic/src",
1775
- "projectType": "library",
1776
- "prefix": "lib",
1777
- "architect": {
1778
- "build": {
1779
- "builder": "@angular-devkit/build-angular:ng-packagr",
1780
- "options": {
1781
- "tsConfig": "projects/runtime-dynamic/tsconfig.lib.json",
1782
- "project": "projects/runtime-dynamic/ng-package.json"
1783
- },
1784
- "configurations": {
1785
- "production": {
1786
- "tsConfig": "projects/runtime-dynamic/tsconfig.lib.prod.json"
1787
- }
1788
- }
1789
- }
1790
- }
1791
- },
1792
- "@wm/mobile/runtime": {
1793
- "root": "projects/mobile/runtime",
1794
- "sourceRoot": "projects/mobile/runtime/src",
1795
- "projectType": "library",
1796
- "prefix": "lib",
1797
- "architect": {
1798
- "build": {
1799
- "builder": "@angular-devkit/build-angular:ng-packagr",
1800
- "options": {
1801
- "tsConfig": "projects/mobile/runtime/tsconfig.lib.json",
1802
- "project": "projects/mobile/runtime/ng-package.json"
1803
- },
1804
- "configurations": {
1805
- "production": {
1806
- "tsConfig": "projects/mobile/runtime/tsconfig.lib.prod.json"
1807
- }
1808
- }
1809
- }
1810
- }
1811
- },
1812
- "@wm/mobile/runtime/dynamic": {
1813
- "root": "projects/mobile/runtime-dynamic",
1814
- "sourceRoot": "projects/mobile/runtime-dynamic/src",
1815
- "projectType": "library",
1816
- "prefix": "lib",
1817
- "architect": {
1818
- "build": {
1819
- "builder": "@angular-devkit/build-angular:ng-packagr",
1820
- "options": {
1821
- "tsConfig": "projects/mobile/runtime-dynamic/tsconfig.lib.json",
1822
- "project": "projects/mobile/runtime-dynamic/ng-package.json"
1823
- },
1824
- "configurations": {
1825
- "production": {
1826
- "tsConfig": "projects/mobile/runtime-dynamic/tsconfig.lib.prod.json"
1827
- }
1828
- }
1829
- }
1830
- }
1831
- },
1832
- "@wm/mobile/placeholder/runtime": {
1833
- "root": "projects/mobile/placeholder/runtime",
1834
- "sourceRoot": "projects/mobile/placeholder/runtime/src",
1835
- "projectType": "library",
1836
- "prefix": "lib",
1837
- "architect": {
1838
- "build": {
1839
- "builder": "@angular-devkit/build-angular:ng-packagr",
1840
- "options": {
1841
- "tsConfig": "projects/mobile/placeholder/tsconfig.lib.json",
1842
- "project": "projects/mobile/placeholder/runtime/ng-package.json"
1843
- },
1844
- "configurations": {
1845
- "production": {
1846
- "tsConfig": "projects/mobile/placeholder/runtime/tsconfig.lib.prod.json"
1847
- }
1848
- }
1849
- }
1850
- }
1851
- },
1852
- "@wm/mobile/placeholder/runtime/dynamic": {
1853
- "root": "projects/mobile/placeholder/runtime-dynamic",
1854
- "sourceRoot": "projects/mobile/placeholder/runtime-dynamic/src",
1855
- "projectType": "library",
1856
- "prefix": "lib",
1857
- "architect": {
1858
- "build": {
1859
- "builder": "@angular-devkit/build-angular:ng-packagr",
1860
- "options": {
1861
- "tsConfig": "projects/mobile/placeholder/tsconfig.lib.json",
1862
- "project": "projects/mobile/placeholder/runtime-dynamic/ng-package.json"
1863
- },
1864
- "configurations": {
1865
- "production": {
1866
- "tsConfig": "projects/mobile/placeholder/runtime-dynamic/tsconfig.lib.prod.json"
1867
- }
264
+ "lintFilePatterns": [
265
+ "src/**/*.ts",
266
+ "src/**/*.html"
267
+ ]
1868
268
  }
1869
269
  }
1870
270
  }
1871
271
  }
1872
272
  },
1873
273
  "cli": {
1874
- "analytics": "fe5e8f46-2dff-4044-b3b8-8a1307278ce6"
274
+ "analytics": "fe5e8f46-2dff-4044-b3b8-8a1307278ce6",
275
+ "schematicCollections": [
276
+ "@angular-eslint/schematics"
277
+ ]
1875
278
  }
1876
279
  }