xt-plugin-finance 0.6.0

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 (64) hide show
  1. package/.editorconfig +16 -0
  2. package/.postcssrc.json +1 -0
  3. package/.rush/temp/chunked-rush-logs/xt-plugin-finance.build-deploy-latest.chunks.jsonl +79 -0
  4. package/.rush/temp/chunked-rush-logs/xt-plugin-finance.build-deploy-next.chunks.jsonl +29 -0
  5. package/.rush/temp/chunked-rush-logs/xt-plugin-finance.build.chunks.jsonl +24 -0
  6. package/.rush/temp/chunked-rush-logs/xt-plugin-finance.test.chunks.jsonl +36 -0
  7. package/.rush/temp/package-deps_test.json +55 -0
  8. package/.rush/temp/shrinkwrap-deps.json +1082 -0
  9. package/CHANGELOG.md +13 -0
  10. package/README.md +17 -0
  11. package/angular.json +164 -0
  12. package/package.json +62 -0
  13. package/projects/finance/README.md +17 -0
  14. package/projects/finance/ng-package.json +7 -0
  15. package/projects/finance/node_modules/.vite/results.json +1 -0
  16. package/projects/finance/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
  17. package/projects/finance/package.json +22 -0
  18. package/projects/finance/src/lib/finance-amount/finance-amount.component.css +0 -0
  19. package/projects/finance/src/lib/finance-amount/finance-amount.component.html +18 -0
  20. package/projects/finance/src/lib/finance-amount/finance-amount.component.spec.ts +38 -0
  21. package/projects/finance/src/lib/finance-amount/finance-amount.component.ts +68 -0
  22. package/projects/finance/src/lib/money-handler/money-amount-handler.ts +21 -0
  23. package/projects/finance/src/lib/money-handler/money-amount.ts +15 -0
  24. package/projects/finance/src/lib/register.ts +54 -0
  25. package/projects/finance/src/public-api.ts +6 -0
  26. package/projects/finance/src/test-setup.ts +18 -0
  27. package/projects/finance/tsconfig.lib.json +15 -0
  28. package/projects/finance/tsconfig.lib.prod.json +11 -0
  29. package/projects/finance/tsconfig.spec.json +18 -0
  30. package/projects/finance/vitest.config.ts +19 -0
  31. package/projects/finance-plugin/federation.config.js +43 -0
  32. package/projects/finance-plugin/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
  33. package/projects/finance-plugin/public/favicon.ico +0 -0
  34. package/projects/finance-plugin/public/pluginicon.png +0 -0
  35. package/projects/finance-plugin/src/app/app.component.css +0 -0
  36. package/projects/finance-plugin/src/app/app.component.html +3 -0
  37. package/projects/finance-plugin/src/app/app.component.spec.ts +42 -0
  38. package/projects/finance-plugin/src/app/app.component.ts +37 -0
  39. package/projects/finance-plugin/src/app/app.config.ts +21 -0
  40. package/projects/finance-plugin/src/app/app.routes.ts +6 -0
  41. package/projects/finance-plugin/src/app/dummy-currency/dummy-currency.component.css +0 -0
  42. package/projects/finance-plugin/src/app/dummy-currency/dummy-currency.component.html +7 -0
  43. package/projects/finance-plugin/src/app/dummy-currency/dummy-currency.component.ts +36 -0
  44. package/projects/finance-plugin/src/app/test-component/test.component.css +0 -0
  45. package/projects/finance-plugin/src/app/test-component/test.component.html +24 -0
  46. package/projects/finance-plugin/src/app/test-component/test.component.spec.ts +46 -0
  47. package/projects/finance-plugin/src/app/test-component/test.component.ts +35 -0
  48. package/projects/finance-plugin/src/bootstrap.ts +6 -0
  49. package/projects/finance-plugin/src/index.html +13 -0
  50. package/projects/finance-plugin/src/main.ts +6 -0
  51. package/projects/finance-plugin/src/styles.css +12 -0
  52. package/projects/finance-plugin/src/test-setup.ts +18 -0
  53. package/projects/finance-plugin/tsconfig.app.json +15 -0
  54. package/projects/finance-plugin/tsconfig.federation.json +13 -0
  55. package/projects/finance-plugin/tsconfig.spec.json +18 -0
  56. package/projects/finance-plugin/vitest.config.ts +19 -0
  57. package/rush-logs/xt-plugin-finance.build-deploy-latest.error.log +42 -0
  58. package/rush-logs/xt-plugin-finance.build-deploy-latest.log +79 -0
  59. package/rush-logs/xt-plugin-finance.build-deploy-next.error.log +10 -0
  60. package/rush-logs/xt-plugin-finance.build-deploy-next.log +29 -0
  61. package/rush-logs/xt-plugin-finance.build.error.log +9 -0
  62. package/rush-logs/xt-plugin-finance.build.log +24 -0
  63. package/rush-logs/xt-plugin-finance.test.log +36 -0
  64. package/tsconfig.json +36 -0
@@ -0,0 +1,24 @@
1
+ Invoking: ng build finance
2
+ Building Angular Package
3
+
4
+ ------------------------------------------------------------------------------
5
+ Building entry point 'xt-plugin-finance'
6
+ ------------------------------------------------------------------------------
7
+ - Compiling with Angular sources in full compilation mode.
8
+ ✔ Compiling with Angular sources in full compilation mode.
9
+ - Writing FESM and DTS bundles
10
+ ✔ Writing FESM and DTS bundles
11
+ - Copying assets
12
+ ✔ Copying assets
13
+ - Writing package manifest
14
+ ✔ Writing package manifest
15
+ ✔ Built xt-plugin-finance
16
+
17
+ ------------------------------------------------------------------------------
18
+ Built Angular Package
19
+ - from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-finance/projects/finance
20
+ - to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-finance/dist/xt-plugin-finance
21
+ ------------------------------------------------------------------------------
22
+
23
+ Build at: 2025-12-31T08:42:49.549Z - Time: 4778ms
24
+
@@ -0,0 +1,36 @@
1
+ Invoking: cd projects/finance && ../../node_modules/.bin/vitest && cd ../finance-plugin && ../../node_modules/.bin/vitest
2
+
3
+ RUN v3.2.4 /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-finance/projects/finance
4
+
5
+ ✓ src/lib/finance-amount/finance-amount.component.spec.ts (1 test) 459ms
6
+ ✓ FinanceAmountComponent > should display amount 457ms
7
+
8
+ Test Files 1 passed (1)
9
+ Tests 1 passed (1)
10
+ Start at 09:51:14
11
+ Duration 8.89s (transform 1.69s, setup 2.27s, collect 2.19s, tests 459ms, environment 1.58s, prepare 2.47s)
12
+
13
+
14
+ RUN v3.2.4 /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-finance/projects/finance-plugin
15
+
16
+ stdout | src/app/app.component.spec.ts > AppComponent > should create the app
17
+ Registering Plugin Finance
18
+
19
+ stdout | src/app/app.component.spec.ts > AppComponent > should have the 'Finance Tester' title
20
+ Registering Plugin Finance
21
+
22
+ stdout | src/app/app.component.spec.ts > AppComponent > should render title
23
+ Registering Plugin Finance
24
+
25
+ ✓ src/app/app.component.spec.ts (3 tests) 190ms
26
+ stdout | src/app/test-component/test.component.spec.ts > TestComponent > should create
27
+ Registering Plugin Finance
28
+
29
+ ✓ src/app/test-component/test.component.spec.ts (1 test) 794ms
30
+ ✓ TestComponent > should create 792ms
31
+
32
+ Test Files 2 passed (2)
33
+ Tests 4 passed (4)
34
+ Start at 09:51:36
35
+ Duration 6.93s (transform 1.68s, setup 3.05s, collect 5.41s, tests 984ms, environment 2.08s, prepare 2.83s)
36
+
package/tsconfig.json ADDED
@@ -0,0 +1,36 @@
1
+ /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
2
+ /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
3
+ {
4
+ "compileOnSave": false,
5
+ "compilerOptions": {
6
+ "outDir": "./dist/out-tsc",
7
+ "strict": true,
8
+ "noImplicitOverride": true,
9
+ "noPropertyAccessFromIndexSignature": true,
10
+ "noImplicitReturns": true,
11
+ "noFallthroughCasesInSwitch": true,
12
+ "skipLibCheck": true,
13
+ "esModuleInterop": true,
14
+ "sourceMap": true,
15
+ "declaration": false,
16
+ "experimentalDecorators": true,
17
+ "moduleResolution": "bundler",
18
+ "importHelpers": true,
19
+ "target": "ES2022",
20
+ "module": "ES2022",
21
+ "useDefineForClassFields": false,
22
+ "lib": [
23
+ "ES2022",
24
+ "dom"
25
+ ],
26
+ "paths": {
27
+ }
28
+
29
+ },
30
+ "angularCompilerOptions": {
31
+ "enableI18nLegacyMessageIdFormat": false,
32
+ "strictInjectionParameters": true,
33
+ "strictInputAccessModifiers": true,
34
+ "strictTemplates": true
35
+ }
36
+ }