@decaf-ts/for-angular 0.1.3 → 0.1.4

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 (374) hide show
  1. package/.editorconfig +31 -0
  2. package/.gitlab-ci.yml +197 -0
  3. package/.hintrc +19 -0
  4. package/.prettierrc +49 -0
  5. package/.snyk +13 -0
  6. package/LICENSE.md +260 -0
  7. package/angular.json +274 -0
  8. package/bs-config.json +5 -0
  9. package/cli-module.js.map +1 -0
  10. package/dist/for-angular/cli/cli-module.d.ts +22 -0
  11. package/dist/for-angular/cli/cli-module.d.ts.map +1 -0
  12. package/dist/for-angular/cli/cli-module.js +131 -0
  13. package/dist/for-angular/cli/cli-module.js.map +1 -0
  14. package/dist/lib/README.md +117 -0
  15. package/eslint.config.mjs +101 -0
  16. package/ionic.config.json +14 -0
  17. package/jest.config.ts +52 -0
  18. package/jest.setup.ts +50 -0
  19. package/karma.conf.js +50 -0
  20. package/ng-package.json +16 -0
  21. package/ngsw-config.json +30 -0
  22. package/package.json +86 -17
  23. package/playwright.config.ts +80 -0
  24. package/resources/favicon.png +0 -0
  25. package/resources/favicon.svg +29 -0
  26. package/resources/icon-background.png +0 -0
  27. package/resources/icon-foreground.png +0 -0
  28. package/resources/icon-only.png +0 -0
  29. package/resources/icon-only.svg +29 -0
  30. package/resources/splash-dark.png +0 -0
  31. package/resources/splash-dark2.png +0 -0
  32. package/resources/splash.png +0 -0
  33. package/resources/splash2.png +0 -0
  34. package/resources/touch-icon.svg +29 -0
  35. package/schematics/README.md +28 -0
  36. package/schematics/collection.json +20 -0
  37. package/schematics/package-lock.json +1501 -0
  38. package/schematics/package.json +37 -0
  39. package/schematics/src/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.__style__.template +0 -0
  40. package/schematics/src/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.html.template +3 -0
  41. package/schematics/src/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.spec.ts.template +40 -0
  42. package/schematics/src/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +37 -0
  43. package/schematics/src/component/files/__name@dasherize@if-flat__/__name@dasherize__.module.ts.template +14 -0
  44. package/schematics/src/component/index.js +146 -0
  45. package/schematics/src/component/schema.js +2 -0
  46. package/schematics/src/component/schema.json +101 -0
  47. package/schematics/src/page/files/__name@dasherize__.page.html.template +15 -0
  48. package/schematics/src/page/files/__name@dasherize__.page.scss.template +0 -0
  49. package/schematics/src/page/files/__name@dasherize__.page.ts.template +19 -0
  50. package/schematics/src/page/index.js +71 -0
  51. package/schematics/src/page/schema.json +87 -0
  52. package/schematics/src/schematics/index.js +11 -0
  53. package/schematics/src/schematics/index_spec.js +13 -0
  54. package/schematics/src/util/ast-util.js +517 -0
  55. package/schematics/src/util/change.js +96 -0
  56. package/schematics/src/util/index.js +14 -0
  57. package/settings.json +112 -0
  58. package/tsconfig.app.json +22 -0
  59. package/tsconfig.cli.json +82 -0
  60. package/tsconfig.lib.json +14 -0
  61. package/tsconfig.lib.prod.json +10 -0
  62. package/tsconfig.spec.json +22 -0
  63. package/webpack.config.js +10 -0
  64. package/workdocs/1-Header.md +5 -0
  65. package/workdocs/2-Badges.md +30 -0
  66. package/workdocs/4-Description.md +4 -0
  67. package/workdocs/5-HowToUse.md +27 -0
  68. package/workdocs/6-Related.md +7 -0
  69. package/workdocs/7-Social.md +5 -0
  70. package/workdocs/99-Footer.md +28 -0
  71. package/workdocs/Readme.md +12 -0
  72. package/workdocs/assets/apple-touch-icon.png +0 -0
  73. package/workdocs/assets/decaf-logo.svg +54 -0
  74. package/workdocs/assets/favicon.png +0 -0
  75. package/workdocs/assets/slogans.json +182 -0
  76. package/workdocs/confluence/.markdown-confluence.template.json +6 -0
  77. package/workdocs/confluence/Angular Module.md +5 -0
  78. package/workdocs/drawings/diagram.drawio +24 -0
  79. package/workdocs/prompts/bulk.md +122 -0
  80. package/workdocs/prompts/code.md +47 -0
  81. package/workdocs/prompts/documentation.md +146 -0
  82. package/workdocs/prompts/uml.md +11 -0
  83. package/workdocs/readme-md.json +6 -0
  84. package/workdocs/reports/CHANGELOG.md +12 -0
  85. package/workdocs/reports/DEPENDENCIES.md +213 -0
  86. package/workdocs/reports/RELEASE_NOTES.md +24 -0
  87. package/workdocs/reports/coverage/.gitkeep +0 -0
  88. package/workdocs/reports/coverage/clover.xml +4110 -0
  89. package/workdocs/reports/coverage/coverage-final.json +76 -0
  90. package/workdocs/reports/coverage/lcov-report/base.css +224 -0
  91. package/workdocs/reports/coverage/lcov-report/block-navigation.js +87 -0
  92. package/workdocs/reports/coverage/lcov-report/favicon.png +0 -0
  93. package/workdocs/reports/coverage/lcov-report/index.html +551 -0
  94. package/workdocs/reports/coverage/lcov-report/prettify.css +1 -0
  95. package/workdocs/reports/coverage/lcov-report/prettify.js +2 -0
  96. package/workdocs/reports/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  97. package/workdocs/reports/coverage/lcov-report/sorter.js +210 -0
  98. package/workdocs/reports/coverage/lcov-report/src/app/models/CategoryModel.ts.html +277 -0
  99. package/workdocs/reports/coverage/lcov-report/src/app/models/DemoModel.ts.html +427 -0
  100. package/workdocs/reports/coverage/lcov-report/src/app/models/UserModel.ts.html +226 -0
  101. package/workdocs/reports/coverage/lcov-report/src/app/models/index.html +146 -0
  102. package/workdocs/reports/coverage/lcov-report/src/cli-module.ts.html +502 -0
  103. package/workdocs/reports/coverage/lcov-report/src/environments/environment.ts.html +166 -0
  104. package/workdocs/reports/coverage/lcov-report/src/environments/index.html +116 -0
  105. package/workdocs/reports/coverage/lcov-report/src/index.html +191 -0
  106. package/workdocs/reports/coverage/lcov-report/src/karma-test.ts.html +121 -0
  107. package/workdocs/reports/coverage/lcov-report/src/lib/components/card/card.component.ts.html +625 -0
  108. package/workdocs/reports/coverage/lcov-report/src/lib/components/card/index.html +116 -0
  109. package/workdocs/reports/coverage/lcov-report/src/lib/components/component-renderer/component-renderer.component.ts.html +772 -0
  110. package/workdocs/reports/coverage/lcov-report/src/lib/components/component-renderer/index.html +116 -0
  111. package/workdocs/reports/coverage/lcov-report/src/lib/components/crud-field/crud-field.component.ts.html +2698 -0
  112. package/workdocs/reports/coverage/lcov-report/src/lib/components/crud-field/index.html +116 -0
  113. package/workdocs/reports/coverage/lcov-report/src/lib/components/crud-form/constants.ts.html +133 -0
  114. package/workdocs/reports/coverage/lcov-report/src/lib/components/crud-form/crud-form.component.ts.html +346 -0
  115. package/workdocs/reports/coverage/lcov-report/src/lib/components/crud-form/index.html +116 -0
  116. package/workdocs/reports/coverage/lcov-report/src/lib/components/empty-state/empty-state.component.ts.html +1264 -0
  117. package/workdocs/reports/coverage/lcov-report/src/lib/components/empty-state/index.html +116 -0
  118. package/workdocs/reports/coverage/lcov-report/src/lib/components/fieldset/fieldset.component.ts.html +2965 -0
  119. package/workdocs/reports/coverage/lcov-report/src/lib/components/fieldset/index.html +116 -0
  120. package/workdocs/reports/coverage/lcov-report/src/lib/components/file-upload/file-upload.component.ts.html +2263 -0
  121. package/workdocs/reports/coverage/lcov-report/src/lib/components/file-upload/index.html +116 -0
  122. package/workdocs/reports/coverage/lcov-report/src/lib/components/filter/filter.component.ts.html +2485 -0
  123. package/workdocs/reports/coverage/lcov-report/src/lib/components/filter/index.html +116 -0
  124. package/workdocs/reports/coverage/lcov-report/src/lib/components/for-angular-components.module.ts.html +259 -0
  125. package/workdocs/reports/coverage/lcov-report/src/lib/components/icon/icon.component.ts.html +358 -0
  126. package/workdocs/reports/coverage/lcov-report/src/lib/components/icon/index.html +116 -0
  127. package/workdocs/reports/coverage/lcov-report/src/lib/components/index.html +131 -0
  128. package/workdocs/reports/coverage/lcov-report/src/lib/components/index.ts.html +181 -0
  129. package/workdocs/reports/coverage/lcov-report/src/lib/components/layout/index.html +116 -0
  130. package/workdocs/reports/coverage/lcov-report/src/lib/components/layout/layout.component.ts.html +943 -0
  131. package/workdocs/reports/coverage/lcov-report/src/lib/components/list/index.html +116 -0
  132. package/workdocs/reports/coverage/lcov-report/src/lib/components/list/list.component.ts.html +4261 -0
  133. package/workdocs/reports/coverage/lcov-report/src/lib/components/list-item/index.html +116 -0
  134. package/workdocs/reports/coverage/lcov-report/src/lib/components/list-item/list-item.component.ts.html +1741 -0
  135. package/workdocs/reports/coverage/lcov-report/src/lib/components/modal/index.html +116 -0
  136. package/workdocs/reports/coverage/lcov-report/src/lib/components/modal/modal.component.ts.html +1984 -0
  137. package/workdocs/reports/coverage/lcov-report/src/lib/components/model-renderer/index.html +116 -0
  138. package/workdocs/reports/coverage/lcov-report/src/lib/components/model-renderer/model-renderer.component.ts.html +373 -0
  139. package/workdocs/reports/coverage/lcov-report/src/lib/components/pagination/index.html +116 -0
  140. package/workdocs/reports/coverage/lcov-report/src/lib/components/pagination/pagination.component.ts.html +1165 -0
  141. package/workdocs/reports/coverage/lcov-report/src/lib/components/searchbar/index.html +116 -0
  142. package/workdocs/reports/coverage/lcov-report/src/lib/components/searchbar/searchbar.component.ts.html +1774 -0
  143. package/workdocs/reports/coverage/lcov-report/src/lib/components/stepped-form/index.html +116 -0
  144. package/workdocs/reports/coverage/lcov-report/src/lib/components/stepped-form/stepped-form.component.ts.html +1219 -0
  145. package/workdocs/reports/coverage/lcov-report/src/lib/components/table/index.html +116 -0
  146. package/workdocs/reports/coverage/lcov-report/src/lib/components/table/table.component.ts.html +988 -0
  147. package/workdocs/reports/coverage/lcov-report/src/lib/directives/NgxSvgDirective.ts.html +163 -0
  148. package/workdocs/reports/coverage/lcov-report/src/lib/directives/collapsable.directive.ts.html +268 -0
  149. package/workdocs/reports/coverage/lcov-report/src/lib/directives/index.html +131 -0
  150. package/workdocs/reports/coverage/lcov-report/src/lib/directives/index.ts.html +91 -0
  151. package/workdocs/reports/coverage/lcov-report/src/lib/engine/DynamicModule.ts.html +133 -0
  152. package/workdocs/reports/coverage/lcov-report/src/lib/engine/MediaService.ts.html +142 -0
  153. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxBaseComponent.ts.html +2194 -0
  154. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxComponentDirective.ts.html +3430 -0
  155. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxCrudFormField.ts.html +721 -0
  156. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxDecafComponentDirective.ts.html +1864 -0
  157. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxDecafFormFieldDirective.ts.html +952 -0
  158. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxDecafFormService.ts.html +3211 -0
  159. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxEventHandler.ts.html +307 -0
  160. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxFormDirective.ts.html +1366 -0
  161. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxFormFieldDirective.ts.html +1960 -0
  162. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxFormService.ts.html +3004 -0
  163. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxModelPageDirective.ts.html +1672 -0
  164. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxPageDirective.ts.html +748 -0
  165. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxParentComponentDirective.ts.html +775 -0
  166. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxRenderableComponentDirective.ts.html +727 -0
  167. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxRenderingEngine.ts.html +2005 -0
  168. package/workdocs/reports/coverage/lcov-report/src/lib/engine/NgxRepositoryDirective.ts.html +1561 -0
  169. package/workdocs/reports/coverage/lcov-report/src/lib/engine/ValidatorFactory.ts.html +817 -0
  170. package/workdocs/reports/coverage/lcov-report/src/lib/engine/constants.ts.html +1120 -0
  171. package/workdocs/reports/coverage/lcov-report/src/lib/engine/decorators.ts.html +376 -0
  172. package/workdocs/reports/coverage/lcov-report/src/lib/engine/helpers.ts.html +676 -0
  173. package/workdocs/reports/coverage/lcov-report/src/lib/engine/index.html +356 -0
  174. package/workdocs/reports/coverage/lcov-report/src/lib/engine/index.ts.html +160 -0
  175. package/workdocs/reports/coverage/lcov-report/src/lib/engine/overrides.ts.html +499 -0
  176. package/workdocs/reports/coverage/lcov-report/src/lib/for-angular-common.module.ts.html +298 -0
  177. package/workdocs/reports/coverage/lcov-report/src/lib/helpers/index.html +131 -0
  178. package/workdocs/reports/coverage/lcov-report/src/lib/helpers/index.ts.html +121 -0
  179. package/workdocs/reports/coverage/lcov-report/src/lib/helpers/utils.ts.html +1603 -0
  180. package/workdocs/reports/coverage/lcov-report/src/lib/i18n/FakeLoader.ts.html +157 -0
  181. package/workdocs/reports/coverage/lcov-report/src/lib/i18n/Loader.ts.html +826 -0
  182. package/workdocs/reports/coverage/lcov-report/src/lib/i18n/index.html +146 -0
  183. package/workdocs/reports/coverage/lcov-report/src/lib/i18n/index.ts.html +91 -0
  184. package/workdocs/reports/coverage/lcov-report/src/lib/index.html +131 -0
  185. package/workdocs/reports/coverage/lcov-report/src/lib/public-apis.ts.html +157 -0
  186. package/workdocs/reports/coverage/lcov-report/src/lib/services/NgxFormService.ts.html +3460 -0
  187. package/workdocs/reports/coverage/lcov-report/src/lib/services/NgxMediaService.ts.html +1420 -0
  188. package/workdocs/reports/coverage/lcov-report/src/lib/services/NgxRouterService.ts.html +1231 -0
  189. package/workdocs/reports/coverage/lcov-report/src/lib/services/NgxTranslateService.ts.html +214 -0
  190. package/workdocs/reports/coverage/lcov-report/src/lib/services/index.html +176 -0
  191. package/workdocs/reports/coverage/lcov-report/src/lib/services/index.ts.html +91 -0
  192. package/workdocs/reports/coverage/lcov-report/src/lib/utils/DecafFakerRepository.ts.html +571 -0
  193. package/workdocs/reports/coverage/lcov-report/src/lib/utils/helpers.ts.html +1663 -0
  194. package/workdocs/reports/coverage/lcov-report/src/lib/utils/index.html +146 -0
  195. package/workdocs/reports/coverage/lcov-report/src/lib/utils/index.ts.html +124 -0
  196. package/workdocs/reports/coverage/lcov-report/src/main.ts.html +100 -0
  197. package/workdocs/reports/coverage/lcov-report/src/polyfills.ts.html +271 -0
  198. package/workdocs/reports/coverage/lcov-report/src/stories/Configure.stories.ts.html +1156 -0
  199. package/workdocs/reports/coverage/lcov-report/src/stories/button.component.ts.html +229 -0
  200. package/workdocs/reports/coverage/lcov-report/src/stories/button.stories.ts.html +235 -0
  201. package/workdocs/reports/coverage/lcov-report/src/stories/crud-field.stories.ts.html +325 -0
  202. package/workdocs/reports/coverage/lcov-report/src/stories/header.stories.ts.html +181 -0
  203. package/workdocs/reports/coverage/lcov-report/src/stories/index.html +281 -0
  204. package/workdocs/reports/coverage/lcov-report/src/stories/list.stories.ts.html +289 -0
  205. package/workdocs/reports/coverage/lcov-report/src/stories/login.page.stories.ts.html +175 -0
  206. package/workdocs/reports/coverage/lcov-report/src/stories/model-renderer.stories.ts.html +259 -0
  207. package/workdocs/reports/coverage/lcov-report/src/stories/page.component.ts.html +331 -0
  208. package/workdocs/reports/coverage/lcov-report/src/stories/page.stories.ts.html +193 -0
  209. package/workdocs/reports/coverage/lcov-report/src/stories/setup.ts.html +127 -0
  210. package/workdocs/reports/coverage/lcov-report/src/stories/utils.ts.html +247 -0
  211. package/workdocs/reports/coverage/lcov-report/src/tests/index.html +116 -0
  212. package/workdocs/reports/coverage/lcov-report/src/tests/karmaErrorParser.ts.html +190 -0
  213. package/workdocs/reports/coverage/lcov-report/src/typings.d.ts.html +88 -0
  214. package/workdocs/reports/coverage/lcov-report/src/zone-flags.ts.html +103 -0
  215. package/workdocs/reports/coverage/lcov.info +7917 -0
  216. package/workdocs/reports/data/.gitkeep +1 -0
  217. package/workdocs/reports/html/.gitkeep +0 -0
  218. package/workdocs/reports/html/jest-html-reporters-attach/test-report/index.js +3 -0
  219. package/workdocs/reports/html/jest-html-reporters-attach/test-report/result.js +1 -0
  220. package/workdocs/reports/html/test-report.html +1 -0
  221. package/workdocs/reports/images/.gitkeep +1 -0
  222. package/workdocs/reports/jest.coverage.config.ts +43 -0
  223. package/workdocs/reports/junit/junit-report.xml +91 -0
  224. package/workdocs/resources/.gitlock +0 -0
  225. package/workdocs/resources/diagram-Actor.png +0 -0
  226. package/workdocs/resources/diagram-banner.png +0 -0
  227. package/workdocs/resources/diagram.png +0 -0
  228. package/workdocs/tutorials/Contributing.md +64 -0
  229. package/workdocs/tutorials/Documentation.md +340 -0
  230. package/workdocs/tutorials/For Developers.md +337 -0
  231. package/workdocs/uml/diagram.puml +11 -0
  232. package/www/1049.10b030f0de36543b.js +1 -0
  233. package/www/1102.67cedfb3e29f0a05.js +1 -0
  234. package/www/1107.6454396befef800d.js +1 -0
  235. package/www/1459.cabc18e941afa5d7.js +1 -0
  236. package/www/1577.5221deebe3501e43.js +1 -0
  237. package/www/2075.b6dc4fbb89dd6afc.js +1 -0
  238. package/www/2348.c4cc27dadbec70ec.js +1 -0
  239. package/www/2375.318d0b24ab346271.js +1 -0
  240. package/www/2415.618d6968ffda319c.js +1 -0
  241. package/www/2460.1d97c6f48b898ee2.js +1 -0
  242. package/www/2560.2e7000dcf80b6b2c.js +1 -0
  243. package/www/2585.dffa5649fffafb44.js +1 -0
  244. package/www/2885.d99b86afd1ff7aa8.js +1 -0
  245. package/www/3162.bbc401f4a5f82460.js +1 -0
  246. package/www/323.f64c512be5c8d797.js +1 -0
  247. package/www/3238.a3e7e8004c6b6667.js +1 -0
  248. package/www/3506.8c03f5589b33a4a6.js +1 -0
  249. package/www/3511.56b7e49bb6c2c936.js +1 -0
  250. package/www/3519.84fbb67dc803f702.js +1 -0
  251. package/www/3675.7ebfdcf145052232.js +1 -0
  252. package/www/3814.765c1794e1be63de.js +1 -0
  253. package/www/3rdpartylicenses.txt +1344 -0
  254. package/www/4171.a974bdbf9c97e4e1.js +1 -0
  255. package/www/4183.41ef1def450a2cc0.js +1 -0
  256. package/www/4406.0b2dd3839b8c1417.js +1 -0
  257. package/www/441.e1031657c7e5f0ff.js +1 -0
  258. package/www/4463.6ad7b857e5f34009.js +1 -0
  259. package/www/4591.42f34534d38b9b31.js +1 -0
  260. package/www/4699.8df8ea9806163d4c.js +1 -0
  261. package/www/5100.ed6483c55a157d67.js +1 -0
  262. package/www/5193.15ea6938534eceb1.js +1 -0
  263. package/www/5197.6733853529768a45.js +1 -0
  264. package/www/5222.8439a641c2c4b1c1.js +1 -0
  265. package/www/5373.d7878f708309f038.js +1 -0
  266. package/www/5467.53f5cce977c2e28b.js +1 -0
  267. package/www/5712.b08cf436ee8145ce.js +1 -0
  268. package/www/5887.3d038f564e925abb.js +1 -0
  269. package/www/5949.37330f20e95dee79.js +1 -0
  270. package/www/6024.c10cc3d1b341c748.js +1 -0
  271. package/www/6433.360fcff952bde822.js +1 -0
  272. package/www/6499.60169da9869db697.js +1 -0
  273. package/www/6521.fab1f34bfe6b8200.js +1 -0
  274. package/www/6631.eaa711da6e0aeed9.js +1 -0
  275. package/www/6717.b4731255038304cd.js +1 -0
  276. package/www/6840.7317cd962ab23932.js +1 -0
  277. package/www/7030.d115d82ca7468a4e.js +1 -0
  278. package/www/7076.cce20ed5c79ff305.js +1 -0
  279. package/www/7179.c0545989ce869b3d.js +1 -0
  280. package/www/7240.69aeb484d78eb24d.js +1 -0
  281. package/www/7372.94c62459e34f7303.js +1 -0
  282. package/www/7402.983a5ecff61e9a5d.js +1 -0
  283. package/www/7428.527ac48035a2f915.js +1 -0
  284. package/www/7676.d7db23d350e4b096.js +1 -0
  285. package/www/770.80af87d5eb0075d3.js +1 -0
  286. package/www/7720.0701576cb9966779.js +1 -0
  287. package/www/7927.ee869d0dc478250a.js +1 -0
  288. package/www/8066.894688fbb2e5c832.js +1 -0
  289. package/www/8193.7f09ecd40b6d42c2.js +1 -0
  290. package/www/8255.158098a6302c91c2.js +1 -0
  291. package/www/8314.596c1ccf26b9c93a.js +1 -0
  292. package/www/8357.c5406b92e6933d7a.js +1 -0
  293. package/www/8477.a3ccc11c25a642d3.js +1 -0
  294. package/www/8487.93b6f7465ae1b7ac.js +1 -0
  295. package/www/8584.b77ad478a5a7ac2a.js +1 -0
  296. package/www/8805.a87413652185ff8f.js +1 -0
  297. package/www/8814.b489a78ae8e926c4.js +1 -0
  298. package/www/8970.234b3db1f97528fe.js +1 -0
  299. package/www/9013.c2e6ba17a915bdd6.js +1 -0
  300. package/www/9073.16c4e42482d55a3c.js +1 -0
  301. package/www/9344.7d2d24b194b794e2.js +1 -0
  302. package/www/9364.9a028036dd89e3e7.js +1 -0
  303. package/www/944.7e4317348c48d4f4.js +1 -0
  304. package/www/964.9a979e1c1aad0f5b.js +1 -0
  305. package/www/9657.8c3589a0aff521c0.js +1 -0
  306. package/www/9956.2d00a2153e9a7799.js +1 -0
  307. package/www/9977.068cd5561462bc99.js +1 -0
  308. package/www/assets/i18n/en.json +210 -0
  309. package/www/assets/i18n/ew/en.json +346 -0
  310. package/www/assets/i18n/pt.json +186 -0
  311. package/www/assets/icons/icon-128.webp +0 -0
  312. package/www/assets/icons/icon-192.webp +0 -0
  313. package/www/assets/icons/icon-256.webp +0 -0
  314. package/www/assets/icons/icon-48.webp +0 -0
  315. package/www/assets/icons/icon-512.webp +0 -0
  316. package/www/assets/icons/icon-72.webp +0 -0
  317. package/www/assets/icons/icon-96.webp +0 -0
  318. package/www/assets/images/angular-logo.svg +45 -0
  319. package/www/assets/images/apple-touch-icon.png +0 -0
  320. package/www/assets/images/decaf-logo-black.svg +22 -0
  321. package/www/assets/images/decaf-logo-contrast.svg +54 -0
  322. package/www/assets/images/decaf-logo-white.svg +22 -0
  323. package/www/assets/images/decaf-logo.svg +54 -0
  324. package/www/assets/images/ew/product.txt +1 -0
  325. package/www/assets/images/favicon-contrast.svg +7 -0
  326. package/www/assets/images/favicon.png +0 -0
  327. package/www/assets/images/favicon.svg +29 -0
  328. package/www/assets/images/icons/document.svg +7 -0
  329. package/www/assets/images/icons/edit.svg +1 -0
  330. package/www/assets/images/icons/logout.svg +4 -0
  331. package/www/assets/images/icons/menu-collapse.svg +5 -0
  332. package/www/assets/images/icons/menu.svg +3 -0
  333. package/www/assets/images/icons/moon-stars.svg +5 -0
  334. package/www/assets/images/icons/trash.svg +1 -0
  335. package/www/cli-module.ts +139 -0
  336. package/www/common.e50b5f8708aca9a5.js +1 -0
  337. package/www/index.html +29 -0
  338. package/www/main.6144bf417dec1977.js +1 -0
  339. package/www/polyfills.4c1e087fffe784e8.js +1 -0
  340. package/www/runtime.d8dcb0932f88fe3c.js +1 -0
  341. package/www/styles.5a3cd83eba16afc9.css +4 -0
  342. package/www/tabler-icons.bfabe54eef86ae62.woff +0 -0
  343. package/www/tabler-icons.d9f65ab9439b4ffc.ttf +0 -0
  344. package/www/tabler-icons.f17d2c3b34a5deaa.woff2 +0 -0
  345. /package/{assets → dist/lib/assets}/i18n/en.json +0 -0
  346. /package/{assets → dist/lib/assets}/i18n/ew/en.json +0 -0
  347. /package/{assets → dist/lib/assets}/i18n/pt.json +0 -0
  348. /package/{assets → dist/lib/assets}/icons/icon-128.webp +0 -0
  349. /package/{assets → dist/lib/assets}/icons/icon-192.webp +0 -0
  350. /package/{assets → dist/lib/assets}/icons/icon-256.webp +0 -0
  351. /package/{assets → dist/lib/assets}/icons/icon-48.webp +0 -0
  352. /package/{assets → dist/lib/assets}/icons/icon-512.webp +0 -0
  353. /package/{assets → dist/lib/assets}/icons/icon-72.webp +0 -0
  354. /package/{assets → dist/lib/assets}/icons/icon-96.webp +0 -0
  355. /package/{assets → dist/lib/assets}/images/angular-logo.svg +0 -0
  356. /package/{assets → dist/lib/assets}/images/apple-touch-icon.png +0 -0
  357. /package/{assets → dist/lib/assets}/images/decaf-logo-black.svg +0 -0
  358. /package/{assets → dist/lib/assets}/images/decaf-logo-contrast.svg +0 -0
  359. /package/{assets → dist/lib/assets}/images/decaf-logo-white.svg +0 -0
  360. /package/{assets → dist/lib/assets}/images/decaf-logo.svg +0 -0
  361. /package/{assets → dist/lib/assets}/images/ew/product.txt +0 -0
  362. /package/{assets → dist/lib/assets}/images/favicon-contrast.svg +0 -0
  363. /package/{assets → dist/lib/assets}/images/favicon.png +0 -0
  364. /package/{assets → dist/lib/assets}/images/favicon.svg +0 -0
  365. /package/{assets → dist/lib/assets}/images/icons/document.svg +0 -0
  366. /package/{assets → dist/lib/assets}/images/icons/edit.svg +0 -0
  367. /package/{assets → dist/lib/assets}/images/icons/logout.svg +0 -0
  368. /package/{assets → dist/lib/assets}/images/icons/menu-collapse.svg +0 -0
  369. /package/{assets → dist/lib/assets}/images/icons/menu.svg +0 -0
  370. /package/{assets → dist/lib/assets}/images/icons/moon-stars.svg +0 -0
  371. /package/{assets → dist/lib/assets}/images/icons/trash.svg +0 -0
  372. /package/{fesm2022 → dist/lib/fesm2022}/decaf-ts-for-angular.mjs +0 -0
  373. /package/{fesm2022 → dist/lib/fesm2022}/decaf-ts-for-angular.mjs.map +0 -0
  374. /package/{index.d.ts → dist/lib/index.d.ts} +0 -0
@@ -0,0 +1,1344 @@
1
+ @angular/common
2
+ MIT
3
+ The MIT License
4
+
5
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+
25
+
26
+ @angular/core
27
+ MIT
28
+ The MIT License
29
+
30
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
31
+
32
+ Permission is hereby granted, free of charge, to any person obtaining a copy
33
+ of this software and associated documentation files (the "Software"), to deal
34
+ in the Software without restriction, including without limitation the rights
35
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
36
+ copies of the Software, and to permit persons to whom the Software is
37
+ furnished to do so, subject to the following conditions:
38
+
39
+ The above copyright notice and this permission notice shall be included in
40
+ all copies or substantial portions of the Software.
41
+
42
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
48
+ THE SOFTWARE.
49
+
50
+
51
+ @angular/forms
52
+ MIT
53
+ The MIT License
54
+
55
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
56
+
57
+ Permission is hereby granted, free of charge, to any person obtaining a copy
58
+ of this software and associated documentation files (the "Software"), to deal
59
+ in the Software without restriction, including without limitation the rights
60
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
61
+ copies of the Software, and to permit persons to whom the Software is
62
+ furnished to do so, subject to the following conditions:
63
+
64
+ The above copyright notice and this permission notice shall be included in
65
+ all copies or substantial portions of the Software.
66
+
67
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
68
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
69
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
70
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
71
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
72
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
73
+ THE SOFTWARE.
74
+
75
+
76
+ @angular/platform-browser
77
+ MIT
78
+ The MIT License
79
+
80
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
81
+
82
+ Permission is hereby granted, free of charge, to any person obtaining a copy
83
+ of this software and associated documentation files (the "Software"), to deal
84
+ in the Software without restriction, including without limitation the rights
85
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
86
+ copies of the Software, and to permit persons to whom the Software is
87
+ furnished to do so, subject to the following conditions:
88
+
89
+ The above copyright notice and this permission notice shall be included in
90
+ all copies or substantial portions of the Software.
91
+
92
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
93
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
94
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
95
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
96
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
97
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
98
+ THE SOFTWARE.
99
+
100
+
101
+ @angular/router
102
+ MIT
103
+ The MIT License
104
+
105
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
106
+
107
+ Permission is hereby granted, free of charge, to any person obtaining a copy
108
+ of this software and associated documentation files (the "Software"), to deal
109
+ in the Software without restriction, including without limitation the rights
110
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
111
+ copies of the Software, and to permit persons to whom the Software is
112
+ furnished to do so, subject to the following conditions:
113
+
114
+ The above copyright notice and this permission notice shall be included in
115
+ all copies or substantial portions of the Software.
116
+
117
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
118
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
119
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
120
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
121
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
122
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
123
+ THE SOFTWARE.
124
+
125
+
126
+ @babel/runtime
127
+ MIT
128
+ MIT License
129
+
130
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
131
+
132
+ Permission is hereby granted, free of charge, to any person obtaining
133
+ a copy of this software and associated documentation files (the
134
+ "Software"), to deal in the Software without restriction, including
135
+ without limitation the rights to use, copy, modify, merge, publish,
136
+ distribute, sublicense, and/or sell copies of the Software, and to
137
+ permit persons to whom the Software is furnished to do so, subject to
138
+ the following conditions:
139
+
140
+ The above copyright notice and this permission notice shall be
141
+ included in all copies or substantial portions of the Software.
142
+
143
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
144
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
145
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
146
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
147
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
148
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
149
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
150
+
151
+
152
+ @bwip-js/browser
153
+ MIT
154
+ bwip-js : Barcode Writer in Pure JavaScript
155
+
156
+ Copyright (c) 2011-2025 Mark Warren
157
+
158
+ The MIT License
159
+
160
+ Permission is hereby granted, free of charge, to any person obtaining a copy
161
+ of this software and associated documentation files (the "Software"), to deal
162
+ in the Software without restriction, including without limitation the rights
163
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
164
+ copies of the Software, and to permit persons to whom the Software is
165
+ furnished to do so, subject to the following conditions:
166
+
167
+ The above copyright notice and this permission notice shall be included in
168
+ all copies or substantial portions of the Software.
169
+
170
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
171
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
172
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
173
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
174
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
175
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
176
+ THE SOFTWARE.
177
+
178
+
179
+ @decaf-ts/core
180
+ MPL-2.0
181
+ Mozilla Public License Version 2.0
182
+
183
+ 1.0. Definitions
184
+
185
+ 1.1. "Contributor"
186
+ means each individual or legal entity that creates, contributes to the
187
+ creation of, or owns Covered Software.
188
+
189
+ 1.2. "Contributor Version"
190
+ means the combination of the Contributions of others (if any) used by a
191
+ Contributor and that particular Contributor's Contribution.
192
+
193
+ 1.3. "Covered Software"
194
+ means Source Code Form to which the initial Contributor has attached the
195
+ notice in Exhibit A, the Executable Form of such Source Code Form, and
196
+ Modifications of such Source Code Form.
197
+
198
+ 1.4. "Incompatible With Secondary Licenses"
199
+ means that the initial Contributor has attached the notice described in
200
+ Exhibit B to the Covered Software; the Covered Software is therefore
201
+ governed by the terms of this License without the option for the
202
+ additional permissions of a Secondary License.
203
+
204
+ 1.5. "Executable Form"
205
+ means any form of the work other than Source Code Form.
206
+
207
+ 1.6. "Larger Work"
208
+ means a work which combines Covered Software with other material, in a
209
+ separate file or files, that is not Covered Software.
210
+
211
+ 1.7. "License"
212
+ means this document.
213
+
214
+ 1.8. "Licensable"
215
+ means having the right to grant, to the maximum extent possible, whether
216
+ at the time of the making or afterwards, any and all of the rights
217
+ conveyed by this License.
218
+
219
+ 1.9. "Modifications"
220
+ means any addition to or deletion from the contents of Covered Software
221
+ or any new file that contains Covered Software.
222
+
223
+ 1.10. "Patent Claims"
224
+ means any patent claim(s), now owned or hereafter acquired, including
225
+ without limitation, method, process, and apparatus claims, in any patent
226
+ Licensable by grantor.
227
+
228
+ 1.11. "Secondary License"
229
+ means either the GNU General Public License, Version 2.0, the GNU Lesser
230
+ General Public License, Version 2.1, or any subsequent versions of those
231
+ licenses that are designated as a Secondary License in the notice in
232
+ Exhibit A.
233
+
234
+ 1.12. "Source Code Form"
235
+ means the form of the work preferred for making modifications.
236
+
237
+ 1.13. "You" (or "Your")
238
+ means an individual or a legal entity exercising rights under, and
239
+ complying with all of the terms of, this License. For legal entities,
240
+ "You" includes any entity that controls, is controlled by, or is under
241
+ common control with You. For purposes of this definition, "control"
242
+ means (a) the power, direct or indirect, to cause the direction or
243
+ management of such entity, whether by contract or otherwise, or (b)
244
+ ownership of more than fifty percent (50%) of the outstanding shares or
245
+ beneficial ownership of such entity.
246
+
247
+ 2.0. License Grants and Conditions
248
+
249
+ 2.1. Grants
250
+
251
+ Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive
252
+ license:
253
+
254
+ a. under intellectual property rights (other than patent or trademark)
255
+ Licensable by such Contributor to use, reproduce, make available,
256
+ modify, display, perform, distribute, and otherwise exploit its
257
+ Contributions, either on an exclusive or non-exclusive basis; and
258
+
259
+ b. under Patent Claims to make, use, sell, offer for sale, have made,
260
+ import, and otherwise transfer the Contribution(s) of such
261
+ Contributor, if any, in the Covered Software.
262
+
263
+ 2.2. Effective Date
264
+
265
+ The licenses granted in Section 2.1 are effective on the date the Contributor
266
+ first makes the Covered Software available under this License.
267
+
268
+ 2.3. Limitations on the Grants
269
+
270
+ The licenses granted in this Section 2 are subject to the following
271
+ limitations:
272
+
273
+ a. No trademark rights are granted under this License.
274
+
275
+ b. This License does not grant any rights in the patents of any
276
+ Contributor except as expressly stated in Section 2.1(b).
277
+
278
+ 3.0. Distribution Obligations
279
+
280
+ 3.1. Distribution of Source Form
281
+
282
+ All distribution of Covered Software in Source Code Form, including any
283
+ Modifications that You create or to which You contribute, must be under the
284
+ terms of this License. You must inform recipients that the Source Code Form
285
+ of the Covered Software is subject to the terms of this License and include
286
+ a copy of this License in or with the Source Code Form.
287
+
288
+ 3.2. Distribution of Executable Form
289
+
290
+ If You distribute Covered Software in Executable Form then:
291
+
292
+ a. such Covered Software must also be made available in Source Code Form,
293
+ as described in Section 3.1, and You must inform recipients of the
294
+ Executable Form how to obtain a complete copy of the corresponding
295
+ Source Code Form in a reasonable manner on or through a medium
296
+ customarily used for software exchange; and
297
+
298
+ b. You may distribute the Executable Form under terms of your choice,
299
+ provided that You do not attempt to limit or alter the recipients'
300
+ rights in the Source Code Form under this License.
301
+
302
+ 3.3. Distribution of a Larger Work
303
+
304
+ You may create and distribute a work that combines Covered Software with
305
+ other material, and distribute the Larger Work as a single product. In such
306
+ case, the Covered Software must still be made available under this License
307
+ and must include the notices described in Exhibit A relating to the Covered
308
+ Software.
309
+
310
+ 3.4. Notices
311
+
312
+ You must cause each file that You distribute containing Covered Software to
313
+ carry the legal notices described in Exhibit A.
314
+
315
+ 4.0. Incompatible With Secondary Licenses
316
+
317
+ If the Covered Software is made available under the terms of this License
318
+ and also made available under the terms of a Secondary License, then the
319
+ terms of the Secondary License apply to the Covered Software in addition to
320
+ this License to the extent the Secondary License grants additional
321
+ permissions. If the Covered Software is not made available under a Secondary
322
+ License, then this License governs its use.
323
+
324
+ 5.0. Disclaimer of Warranty
325
+
326
+ Covered Software is provided "as is" without warranty of any kind, either
327
+ express or implied, including, but not limited to, the implied warranties of
328
+ merchantability, fitness for a particular purpose, and noninfringement.
329
+
330
+ 6.0. Limitation of Liability
331
+
332
+ In no event and under no legal theory, whether in tort (including
333
+ negligence), contract, or otherwise, unless required by applicable law (such
334
+ as deliberate and grossly negligent acts) or agreed to in writing, shall any
335
+ Contributor be liable to You for damages, including any direct, indirect,
336
+ special, incidental, or consequential damages of any character arising as a
337
+ result of this License or out of the use or inability to use the Covered
338
+ Software (including but not limited to damages for loss of goodwill, work
339
+ stoppage, computer failure or malfunction, or any and all other commercial
340
+ damages or losses), even if such Contributor has been advised of the
341
+ possibility of such damages.
342
+
343
+ 7.0. Termination
344
+
345
+ 7.1. Termination for Breach
346
+
347
+ This License and the rights granted hereunder will terminate automatically
348
+ if You fail to comply with terms of this License and do not cure such
349
+ breach within thirty (30) days of becoming aware of the breach.
350
+
351
+ 7.2. Effect of Termination
352
+
353
+ Upon termination of this License, any rights granted to You under this
354
+ License will terminate, and You must cease all use and distribution of the
355
+ Covered Software except as permitted by applicable law.
356
+
357
+ 8.0. Miscellaneous
358
+
359
+ This License constitutes the entire agreement between the parties with
360
+ respect to the subject matter hereof. If any provision of this License is
361
+ held to be unenforceable, that provision shall be reformed only to the
362
+ extent necessary to make it enforceable.
363
+
364
+ Exhibit A - Source Code Form License Notice
365
+
366
+ This Source Code Form is subject to the terms of the Mozilla Public
367
+ License, v. 2.0. If a copy of the MPL was not distributed with this
368
+ file, You can obtain one at http://mozilla.org/MPL/2.0/.
369
+
370
+ Copyright (c) 2025 Tiago Venceslau and Contributors
371
+
372
+
373
+ @decaf-ts/db-decorators
374
+ MIT
375
+ MIT License
376
+
377
+ Copyright (c) 2025 Tiago Venceslau and Contributors
378
+
379
+ Permission is hereby granted, free of charge, to any person obtaining a copy
380
+ of this software and associated documentation files (the "Software"), to deal
381
+ in the Software without restriction, including without limitation the rights
382
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
383
+ copies of the Software, and to permit persons to whom the Software is
384
+ furnished to do so, subject to the following conditions:
385
+
386
+ The above copyright notice and this permission notice shall be included in all
387
+ copies or substantial portions of the Software.
388
+
389
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
390
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
391
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
392
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
393
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
394
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
395
+ SOFTWARE.
396
+
397
+
398
+
399
+ @decaf-ts/decoration
400
+ MIT
401
+ MIT License
402
+
403
+ Copyright (c) 2025 Tiago Venceslau and Contributors
404
+
405
+ Permission is hereby granted, free of charge, to any person obtaining a copy
406
+ of this software and associated documentation files (the "Software"), to deal
407
+ in the Software without restriction, including without limitation the rights
408
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
409
+ copies of the Software, and to permit persons to whom the Software is
410
+ furnished to do so, subject to the following conditions:
411
+
412
+ The above copyright notice and this permission notice shall be included in all
413
+ copies or substantial portions of the Software.
414
+
415
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
416
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
417
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
418
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
419
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
420
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
421
+ SOFTWARE.
422
+
423
+
424
+
425
+ @decaf-ts/decorator-validation
426
+ MIT
427
+ MIT License
428
+
429
+ Copyright (c) 2025 Tiago Venceslau and Contributors
430
+
431
+ Permission is hereby granted, free of charge, to any person obtaining a copy
432
+ of this software and associated documentation files (the "Software"), to deal
433
+ in the Software without restriction, including without limitation the rights
434
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
435
+ copies of the Software, and to permit persons to whom the Software is
436
+ furnished to do so, subject to the following conditions:
437
+
438
+ The above copyright notice and this permission notice shall be included in all
439
+ copies or substantial portions of the Software.
440
+
441
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
442
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
443
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
444
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
445
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
446
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
447
+ SOFTWARE.
448
+
449
+
450
+
451
+ @decaf-ts/for-http
452
+ MIT
453
+ MIT License
454
+
455
+ Copyright (c) 2025 Tiago Venceslau and Contributors
456
+
457
+ Permission is hereby granted, free of charge, to any person obtaining a copy
458
+ of this software and associated documentation files (the "Software"), to deal
459
+ in the Software without restriction, including without limitation the rights
460
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
461
+ copies of the Software, and to permit persons to whom the Software is
462
+ furnished to do so, subject to the following conditions:
463
+
464
+ The above copyright notice and this permission notice shall be included in all
465
+ copies or substantial portions of the Software.
466
+
467
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
468
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
469
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
470
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
471
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
472
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
473
+ SOFTWARE.
474
+
475
+
476
+
477
+ @decaf-ts/injectable-decorators
478
+ MIT
479
+ MIT License
480
+
481
+ Copyright (c) 2025 Tiago Venceslau and Contributors
482
+
483
+ Permission is hereby granted, free of charge, to any person obtaining a copy
484
+ of this software and associated documentation files (the "Software"), to deal
485
+ in the Software without restriction, including without limitation the rights
486
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
487
+ copies of the Software, and to permit persons to whom the Software is
488
+ furnished to do so, subject to the following conditions:
489
+
490
+ The above copyright notice and this permission notice shall be included in all
491
+ copies or substantial portions of the Software.
492
+
493
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
494
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
495
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
496
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
497
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
498
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
499
+ SOFTWARE.
500
+
501
+
502
+
503
+ @decaf-ts/logging
504
+ MIT
505
+ MIT License
506
+
507
+ Copyright (c) 2025 Tiago Venceslau and Contributors
508
+
509
+ Permission is hereby granted, free of charge, to any person obtaining a copy
510
+ of this software and associated documentation files (the "Software"), to deal
511
+ in the Software without restriction, including without limitation the rights
512
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
513
+ copies of the Software, and to permit persons to whom the Software is
514
+ furnished to do so, subject to the following conditions:
515
+
516
+ The above copyright notice and this permission notice shall be included in all
517
+ copies or substantial portions of the Software.
518
+
519
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
520
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
521
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
522
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
523
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
524
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
525
+ SOFTWARE.
526
+
527
+
528
+
529
+ @decaf-ts/transactional-decorators
530
+ MIT
531
+ MIT License
532
+
533
+ Copyright (c) 2025 Tiago Venceslau and Contributors
534
+
535
+ Permission is hereby granted, free of charge, to any person obtaining a copy
536
+ of this software and associated documentation files (the "Software"), to deal
537
+ in the Software without restriction, including without limitation the rights
538
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
539
+ copies of the Software, and to permit persons to whom the Software is
540
+ furnished to do so, subject to the following conditions:
541
+
542
+ The above copyright notice and this permission notice shall be included in all
543
+ copies or substantial portions of the Software.
544
+
545
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
546
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
547
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
548
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
549
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
550
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
551
+ SOFTWARE.
552
+
553
+
554
+
555
+ @decaf-ts/ui-decorators
556
+ MPL-2.0 OR AGPL-3.0
557
+ Mozilla Public License Version 2.0
558
+
559
+ 1. Definitions
560
+
561
+ "Contributor"
562
+ means each individual or legal entity that creates, contributes to the
563
+ creation of, or owns Covered Software.
564
+
565
+ "Contributor Version"
566
+ means the combination of the Contributions of others (if any) used by a
567
+ Contributor and that particular Contributor's Contribution.
568
+
569
+ "Covered Software"
570
+ means Source Code Form to which the initial Contributor has attached the
571
+ notice in Exhibit A, the Executable Form of such Source Code Form, and
572
+ Modifications of such Source Code Form.
573
+
574
+ "Executable Form"
575
+ means any form of the work other than Source Code Form.
576
+
577
+ "Larger Work"
578
+ means a work which combines Covered Software with other material, in a
579
+ separate file or files, that is not Covered Software.
580
+
581
+ "License"
582
+ means this document.
583
+
584
+ "Licensable"
585
+ means having the right to grant, to the maximum extent possible, whether
586
+ at the time of the making or afterwards, any and all of the rights
587
+ conveyed by this License.
588
+
589
+ "Modifications"
590
+ means any addition to or deletion from the contents of Covered Software
591
+ or any new file that contains Covered Software.
592
+
593
+ "Patent Claims"
594
+ means any patent claim(s), now owned or hereafter acquired, including
595
+ without limitation, method, process, and apparatus claims, in any patent
596
+ Licensable by grantor.
597
+
598
+ "Secondary License"
599
+ means either the GNU General Public License, Version 2.0, the GNU Lesser
600
+ General Public License, Version 2.1, the European Union Public License 1.1,
601
+ or any subsequent versions of those licenses that are designated as a
602
+ Secondary License in the notice in Exhibit A.
603
+
604
+ "Source Code Form"
605
+ means the form of the work preferred for making modifications.
606
+
607
+ "You" (or "Your")
608
+ means an individual or a legal entity exercising rights under, and
609
+ complying with all of the terms of, this License. For legal entities,
610
+ "You" includes any entity that controls, is controlled by, or is under
611
+ common control with You. For purposes of this definition, "control"
612
+ means (a) the power, direct or indirect, to cause the direction or
613
+ management of such entity, whether by contract or otherwise, or (b)
614
+ ownership of more than fifty percent (50%) of the outstanding shares or
615
+ beneficial ownership of such entity.
616
+
617
+ 2. License Grants and Conditions
618
+
619
+ Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive
620
+ license:
621
+
622
+ a. under intellectual property rights (other than patent or trademark)
623
+ Licensable by such Contributor to use, reproduce, make available,
624
+ modify, display, perform, distribute, and otherwise exploit its
625
+ Contributions, either on an exclusive or non-exclusive basis; and
626
+
627
+ b. under Patent Claims to make, use, sell, offer for sale, have made,
628
+ import, and otherwise transfer the Contribution(s) of such
629
+ Contributor, if any, in the Covered Software.
630
+
631
+ This license does not grant rights to any trademarks, service marks, or logos
632
+ of any Contributor (except as may be necessary to comply with the notice
633
+ requirements in Section 3.4).
634
+
635
+ 3. Distribution Obligations
636
+
637
+ 3.1. Distribution of Source Form
638
+
639
+ All distribution of Covered Software in Source Code Form, including any
640
+ Modifications that You create or to which You contribute, must be under the
641
+ terms of this License. You must inform recipients that the Source Code Form
642
+ of the Covered Software is governed by the terms of this License and include
643
+ a copy of this License in or with the Source Code Form.
644
+
645
+ 3.2. Distribution of Executable Form
646
+
647
+ If You distribute Covered Software in Executable Form then:
648
+
649
+ a. such Covered Software must also be made available in Source Code Form,
650
+ as described in Section 3.1, and You must inform recipients of the
651
+ Executable Form how to obtain a complete copy of the corresponding
652
+ Source Code Form in a reasonable manner on or through a medium
653
+ customarily used for software exchange; and
654
+
655
+ b. You may distribute the Executable Form under terms of your choice,
656
+ provided that You do not attempt to limit or alter the recipients'
657
+ rights in the Source Code Form under this License.
658
+
659
+ 3.3. Distribution of a Larger Work
660
+
661
+ You may create and distribute a work that combines Covered Software with
662
+ other material, and distribute the Larger Work as a single product. In such
663
+ case, the Covered Software must still be made available under this License
664
+ and must include the notices described in Exhibit A relating to the Covered
665
+ Software.
666
+
667
+ 3.4. Notices
668
+
669
+ You must cause each file that You distribute containing Covered Software to
670
+ carry the legal notices described in Exhibit A.
671
+
672
+ 4. Incompatible With Secondary Licenses
673
+
674
+ If the Covered Software is made available under the terms of this License
675
+ and also made available under the terms of a Secondary License, then the
676
+ terms of the Secondary License apply to the Covered Software in addition to
677
+ this License to the extent the Secondary License grants additional
678
+ permissions. If the Covered Software is not made available under a Secondary
679
+ License, then this License governs its use.
680
+
681
+ 5. Disclaimer of Warranty
682
+
683
+ Covered Software is provided "as is" without warranty of any kind, either
684
+ express or implied, including, but not limited to, the implied warranties of
685
+ merchantability, fitness for a particular purpose, and noninfringement.
686
+
687
+ 6. Limitation of Liability
688
+
689
+ In no event and under no legal theory, whether in tort (including
690
+ negligence), contract, or otherwise, unless required by applicable law (such
691
+ as deliberate and grossly negligent acts) or agreed to in writing, shall any
692
+ Contributor be liable to You for damages, including any direct, indirect,
693
+ special, incidental, or consequential damages of any character arising as a
694
+ result of this License or out of the use or inability to use the Covered
695
+ Software (including but not limited to damages for loss of goodwill, work
696
+ stoppage, computer failure or malfunction, or any and all other commercial
697
+ damages or losses), even if such Contributor has been advised of the
698
+ possibility of such damages.
699
+
700
+ 7. Termination
701
+
702
+ This License and the rights granted hereunder will terminate automatically
703
+ if You fail to comply with terms of this License and do not cure such
704
+ breach within thirty (30) days of becoming aware of the breach.
705
+
706
+ 8. Miscellaneous
707
+
708
+ This License constitutes the entire agreement between the parties with
709
+ respect to the subject matter hereof. If any provision of this License is
710
+ held to be unenforceable, that provision shall be reformed only to the
711
+ extent necessary to make it enforceable. The headings are for convenience
712
+ only and do not affect the interpretation.
713
+
714
+ Exhibit A - Source Code Form License Notice
715
+
716
+ This Source Code Form is subject to the terms of the Mozilla Public
717
+ License, v. 2.0. If a copy of the MPL was not distributed with this
718
+ file, You can obtain one at http://mozilla.org/MPL/2.0/.
719
+
720
+ Copyright (c) 2025 Tiago Venceslau and Contributors
721
+
722
+ ---
723
+
724
+ # Decaf‑TS Fair Usage Addendum (MPL‑2.0 baseline — AGPL‑3.0 trigger)
725
+
726
+ > Placement: This Addendum is intended to be appended to the canonical
727
+ > Mozilla Public License v2.0 text distributed with a package (after
728
+ > Exhibit A). The MPL‑2.0 text itself remains the baseline license for the
729
+ > package sources. This Addendum describes when an alternative licensing
730
+ > outcome (AGPL‑3.0) SHALL apply for certain AI‑driven code‑generation uses.
731
+
732
+ ---
733
+
734
+ ... (Addendum continues)
735
+
736
+
737
+ @faker-js/faker
738
+ MIT
739
+ Faker - Copyright (c) 2022-2025
740
+
741
+ This software consists of voluntary contributions made by many individuals.
742
+ For exact contribution history, see the revision history
743
+ available at https://github.com/faker-js/faker
744
+
745
+ Permission is hereby granted, free of charge, to any person obtaining
746
+ a copy of this software and associated documentation files (the
747
+ "Software"), to deal in the Software without restriction, including
748
+ without limitation the rights to use, copy, modify, merge, publish,
749
+ distribute, sublicense, and/or sell copies of the Software, and to
750
+ permit persons to whom the Software is furnished to do so, subject to
751
+ the following conditions:
752
+
753
+ The above copyright notice and this permission notice shall be
754
+ included in all copies or substantial portions of the Software.
755
+
756
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
757
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
758
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
759
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
760
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
761
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
762
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
763
+
764
+ ===
765
+
766
+ From: https://github.com/faker-js/faker/commit/a9f98046c7d5eeaabe12fc587024c06d683800b8
767
+ To: https://github.com/faker-js/faker/commit/29234378807c4141588861f69421bf20b5ac635e
768
+
769
+ Based on faker.js, copyright Marak Squires and contributor, what follows below is the original license.
770
+
771
+ ===
772
+
773
+ faker.js - Copyright (c) 2011-2020
774
+ Marak Squires
775
+ http://github.com/marak/faker.js/
776
+
777
+ faker.js was inspired by and has used data definitions from:
778
+
779
+ * https://github.com/stympy/faker/ - Copyright (c) 2007-2010 Benjamin Curtis
780
+ * http://search.cpan.org/~jasonk/Data-Faker-0.07/ - Copyright 2004-2005 by Jason Kohles
781
+
782
+ Permission is hereby granted, free of charge, to any person obtaining
783
+ a copy of this software and associated documentation files (the
784
+ "Software"), to deal in the Software without restriction, including
785
+ without limitation the rights to use, copy, modify, merge, publish,
786
+ distribute, sublicense, and/or sell copies of the Software, and to
787
+ permit persons to whom the Software is furnished to do so, subject to
788
+ the following conditions:
789
+
790
+ The above copyright notice and this permission notice shall be
791
+ included in all copies or substantial portions of the Software.
792
+
793
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
794
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
795
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
796
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
797
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
798
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
799
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
800
+
801
+
802
+ @ionic/angular
803
+ MIT
804
+
805
+ @ionic/core
806
+ MIT
807
+ Copyright 2015-present Drifty Co.
808
+ http://drifty.com/
809
+
810
+ MIT License
811
+
812
+ Permission is hereby granted, free of charge, to any person obtaining
813
+ a copy of this software and associated documentation files (the
814
+ "Software"), to deal in the Software without restriction, including
815
+ without limitation the rights to use, copy, modify, merge, publish,
816
+ distribute, sublicense, and/or sell copies of the Software, and to
817
+ permit persons to whom the Software is furnished to do so, subject to
818
+ the following conditions:
819
+
820
+ The above copyright notice and this permission notice shall be
821
+ included in all copies or substantial portions of the Software.
822
+
823
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
824
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
825
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
826
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
827
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
828
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
829
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
830
+
831
+
832
+ @ionic/core/components
833
+
834
+ @ngx-translate/core
835
+ MIT
836
+ Copyright (c) 2018 Olivier Combe
837
+ Copyright (c) 2024 Andreas Löw / CodeAndWeb GmbH
838
+
839
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
840
+
841
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
842
+
843
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
844
+
845
+
846
+ @stencil/core/internal
847
+
848
+ @stencil/core/internal/app-data
849
+
850
+ @stencil/core/internal/app-globals
851
+
852
+ @stencil/core/internal/client
853
+
854
+ axios
855
+ MIT
856
+ # Copyright (c) 2014-present Matt Zabriskie & Collaborators
857
+
858
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
859
+
860
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
861
+
862
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
863
+
864
+
865
+ destr
866
+ MIT
867
+ MIT License
868
+
869
+ Copyright (c) Pooya Parsa <pooya@pi0.io>
870
+
871
+ Permission is hereby granted, free of charge, to any person obtaining a copy
872
+ of this software and associated documentation files (the "Software"), to deal
873
+ in the Software without restriction, including without limitation the rights
874
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
875
+ copies of the Software, and to permit persons to whom the Software is
876
+ furnished to do so, subject to the following conditions:
877
+
878
+ The above copyright notice and this permission notice shall be included in all
879
+ copies or substantial portions of the Software.
880
+
881
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
882
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
883
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
884
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
885
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
886
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
887
+ SOFTWARE.
888
+
889
+
890
+ event-source-plus
891
+ MIT
892
+ MIT License
893
+
894
+ Copyright (c) 2024 Joshua Sosso
895
+
896
+ Permission is hereby granted, free of charge, to any person obtaining a copy
897
+ of this software and associated documentation files (the "Software"), to deal
898
+ in the Software without restriction, including without limitation the rights
899
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
900
+ copies of the Software, and to permit persons to whom the Software is
901
+ furnished to do so, subject to the following conditions:
902
+
903
+ The above copyright notice and this permission notice shall be included in all
904
+ copies or substantial portions of the Software.
905
+
906
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
907
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
908
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
909
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
910
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
911
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
912
+ SOFTWARE.
913
+
914
+
915
+ ionicons
916
+ MIT
917
+ The MIT License (MIT)
918
+
919
+ Copyright (c) 2015-present Ionic (http://ionic.io/)
920
+
921
+ Permission is hereby granted, free of charge, to any person obtaining a copy
922
+ of this software and associated documentation files (the "Software"), to deal
923
+ in the Software without restriction, including without limitation the rights
924
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
925
+ copies of the Software, and to permit persons to whom the Software is
926
+ furnished to do so, subject to the following conditions:
927
+
928
+ The above copyright notice and this permission notice shall be included in
929
+ all copies or substantial portions of the Software.
930
+
931
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
932
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
933
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
934
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
935
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
936
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
937
+ THE SOFTWARE.
938
+
939
+
940
+ ionicons/components
941
+
942
+ ionicons/icons
943
+
944
+ ofetch
945
+ MIT
946
+ MIT License
947
+
948
+ Copyright (c) Pooya Parsa <pooya@pi0.io>
949
+
950
+ Permission is hereby granted, free of charge, to any person obtaining a copy
951
+ of this software and associated documentation files (the "Software"), to deal
952
+ in the Software without restriction, including without limitation the rights
953
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
954
+ copies of the Software, and to permit persons to whom the Software is
955
+ furnished to do so, subject to the following conditions:
956
+
957
+ The above copyright notice and this permission notice shall be included in all
958
+ copies or substantial portions of the Software.
959
+
960
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
961
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
962
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
963
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
964
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
965
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
966
+ SOFTWARE.
967
+
968
+
969
+ reflect-metadata
970
+ Apache-2.0
971
+ Apache License
972
+
973
+ Version 2.0, January 2004
974
+
975
+ http://www.apache.org/licenses/
976
+
977
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
978
+
979
+ 1. Definitions.
980
+
981
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
982
+
983
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
984
+
985
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
986
+
987
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
988
+
989
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
990
+
991
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
992
+
993
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
994
+
995
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
996
+
997
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
998
+
999
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
1000
+
1001
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
1002
+
1003
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
1004
+
1005
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
1006
+
1007
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
1008
+
1009
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
1010
+
1011
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
1012
+
1013
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
1014
+
1015
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
1016
+
1017
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
1018
+
1019
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
1020
+
1021
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
1022
+
1023
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
1024
+
1025
+ END OF TERMS AND CONDITIONS
1026
+
1027
+ rxjs
1028
+ Apache-2.0
1029
+ Apache License
1030
+ Version 2.0, January 2004
1031
+ http://www.apache.org/licenses/
1032
+
1033
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1034
+
1035
+ 1. Definitions.
1036
+
1037
+ "License" shall mean the terms and conditions for use, reproduction,
1038
+ and distribution as defined by Sections 1 through 9 of this document.
1039
+
1040
+ "Licensor" shall mean the copyright owner or entity authorized by
1041
+ the copyright owner that is granting the License.
1042
+
1043
+ "Legal Entity" shall mean the union of the acting entity and all
1044
+ other entities that control, are controlled by, or are under common
1045
+ control with that entity. For the purposes of this definition,
1046
+ "control" means (i) the power, direct or indirect, to cause the
1047
+ direction or management of such entity, whether by contract or
1048
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1049
+ outstanding shares, or (iii) beneficial ownership of such entity.
1050
+
1051
+ "You" (or "Your") shall mean an individual or Legal Entity
1052
+ exercising permissions granted by this License.
1053
+
1054
+ "Source" form shall mean the preferred form for making modifications,
1055
+ including but not limited to software source code, documentation
1056
+ source, and configuration files.
1057
+
1058
+ "Object" form shall mean any form resulting from mechanical
1059
+ transformation or translation of a Source form, including but
1060
+ not limited to compiled object code, generated documentation,
1061
+ and conversions to other media types.
1062
+
1063
+ "Work" shall mean the work of authorship, whether in Source or
1064
+ Object form, made available under the License, as indicated by a
1065
+ copyright notice that is included in or attached to the work
1066
+ (an example is provided in the Appendix below).
1067
+
1068
+ "Derivative Works" shall mean any work, whether in Source or Object
1069
+ form, that is based on (or derived from) the Work and for which the
1070
+ editorial revisions, annotations, elaborations, or other modifications
1071
+ represent, as a whole, an original work of authorship. For the purposes
1072
+ of this License, Derivative Works shall not include works that remain
1073
+ separable from, or merely link (or bind by name) to the interfaces of,
1074
+ the Work and Derivative Works thereof.
1075
+
1076
+ "Contribution" shall mean any work of authorship, including
1077
+ the original version of the Work and any modifications or additions
1078
+ to that Work or Derivative Works thereof, that is intentionally
1079
+ submitted to Licensor for inclusion in the Work by the copyright owner
1080
+ or by an individual or Legal Entity authorized to submit on behalf of
1081
+ the copyright owner. For the purposes of this definition, "submitted"
1082
+ means any form of electronic, verbal, or written communication sent
1083
+ to the Licensor or its representatives, including but not limited to
1084
+ communication on electronic mailing lists, source code control systems,
1085
+ and issue tracking systems that are managed by, or on behalf of, the
1086
+ Licensor for the purpose of discussing and improving the Work, but
1087
+ excluding communication that is conspicuously marked or otherwise
1088
+ designated in writing by the copyright owner as "Not a Contribution."
1089
+
1090
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1091
+ on behalf of whom a Contribution has been received by Licensor and
1092
+ subsequently incorporated within the Work.
1093
+
1094
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1095
+ this License, each Contributor hereby grants to You a perpetual,
1096
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1097
+ copyright license to reproduce, prepare Derivative Works of,
1098
+ publicly display, publicly perform, sublicense, and distribute the
1099
+ Work and such Derivative Works in Source or Object form.
1100
+
1101
+ 3. Grant of Patent License. Subject to the terms and conditions of
1102
+ this License, each Contributor hereby grants to You a perpetual,
1103
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1104
+ (except as stated in this section) patent license to make, have made,
1105
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1106
+ where such license applies only to those patent claims licensable
1107
+ by such Contributor that are necessarily infringed by their
1108
+ Contribution(s) alone or by combination of their Contribution(s)
1109
+ with the Work to which such Contribution(s) was submitted. If You
1110
+ institute patent litigation against any entity (including a
1111
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1112
+ or a Contribution incorporated within the Work constitutes direct
1113
+ or contributory patent infringement, then any patent licenses
1114
+ granted to You under this License for that Work shall terminate
1115
+ as of the date such litigation is filed.
1116
+
1117
+ 4. Redistribution. You may reproduce and distribute copies of the
1118
+ Work or Derivative Works thereof in any medium, with or without
1119
+ modifications, and in Source or Object form, provided that You
1120
+ meet the following conditions:
1121
+
1122
+ (a) You must give any other recipients of the Work or
1123
+ Derivative Works a copy of this License; and
1124
+
1125
+ (b) You must cause any modified files to carry prominent notices
1126
+ stating that You changed the files; and
1127
+
1128
+ (c) You must retain, in the Source form of any Derivative Works
1129
+ that You distribute, all copyright, patent, trademark, and
1130
+ attribution notices from the Source form of the Work,
1131
+ excluding those notices that do not pertain to any part of
1132
+ the Derivative Works; and
1133
+
1134
+ (d) If the Work includes a "NOTICE" text file as part of its
1135
+ distribution, then any Derivative Works that You distribute must
1136
+ include a readable copy of the attribution notices contained
1137
+ within such NOTICE file, excluding those notices that do not
1138
+ pertain to any part of the Derivative Works, in at least one
1139
+ of the following places: within a NOTICE text file distributed
1140
+ as part of the Derivative Works; within the Source form or
1141
+ documentation, if provided along with the Derivative Works; or,
1142
+ within a display generated by the Derivative Works, if and
1143
+ wherever such third-party notices normally appear. The contents
1144
+ of the NOTICE file are for informational purposes only and
1145
+ do not modify the License. You may add Your own attribution
1146
+ notices within Derivative Works that You distribute, alongside
1147
+ or as an addendum to the NOTICE text from the Work, provided
1148
+ that such additional attribution notices cannot be construed
1149
+ as modifying the License.
1150
+
1151
+ You may add Your own copyright statement to Your modifications and
1152
+ may provide additional or different license terms and conditions
1153
+ for use, reproduction, or distribution of Your modifications, or
1154
+ for any such Derivative Works as a whole, provided Your use,
1155
+ reproduction, and distribution of the Work otherwise complies with
1156
+ the conditions stated in this License.
1157
+
1158
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1159
+ any Contribution intentionally submitted for inclusion in the Work
1160
+ by You to the Licensor shall be under the terms and conditions of
1161
+ this License, without any additional terms or conditions.
1162
+ Notwithstanding the above, nothing herein shall supersede or modify
1163
+ the terms of any separate license agreement you may have executed
1164
+ with Licensor regarding such Contributions.
1165
+
1166
+ 6. Trademarks. This License does not grant permission to use the trade
1167
+ names, trademarks, service marks, or product names of the Licensor,
1168
+ except as required for reasonable and customary use in describing the
1169
+ origin of the Work and reproducing the content of the NOTICE file.
1170
+
1171
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1172
+ agreed to in writing, Licensor provides the Work (and each
1173
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1174
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1175
+ implied, including, without limitation, any warranties or conditions
1176
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1177
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1178
+ appropriateness of using or redistributing the Work and assume any
1179
+ risks associated with Your exercise of permissions under this License.
1180
+
1181
+ 8. Limitation of Liability. In no event and under no legal theory,
1182
+ whether in tort (including negligence), contract, or otherwise,
1183
+ unless required by applicable law (such as deliberate and grossly
1184
+ negligent acts) or agreed to in writing, shall any Contributor be
1185
+ liable to You for damages, including any direct, indirect, special,
1186
+ incidental, or consequential damages of any character arising as a
1187
+ result of this License or out of the use or inability to use the
1188
+ Work (including but not limited to damages for loss of goodwill,
1189
+ work stoppage, computer failure or malfunction, or any and all
1190
+ other commercial damages or losses), even if such Contributor
1191
+ has been advised of the possibility of such damages.
1192
+
1193
+ 9. Accepting Warranty or Additional Liability. While redistributing
1194
+ the Work or Derivative Works thereof, You may choose to offer,
1195
+ and charge a fee for, acceptance of support, warranty, indemnity,
1196
+ or other liability obligations and/or rights consistent with this
1197
+ License. However, in accepting such obligations, You may act only
1198
+ on Your own behalf and on Your sole responsibility, not on behalf
1199
+ of any other Contributor, and only if You agree to indemnify,
1200
+ defend, and hold each Contributor harmless for any liability
1201
+ incurred by, or claims asserted against, such Contributor by reason
1202
+ of your accepting any such warranty or additional liability.
1203
+
1204
+ END OF TERMS AND CONDITIONS
1205
+
1206
+ APPENDIX: How to apply the Apache License to your work.
1207
+
1208
+ To apply the Apache License to your work, attach the following
1209
+ boilerplate notice, with the fields enclosed by brackets "[]"
1210
+ replaced with your own identifying information. (Don't include
1211
+ the brackets!) The text should be enclosed in the appropriate
1212
+ comment syntax for the file format. We also recommend that a
1213
+ file or class name and description of purpose be included on the
1214
+ same "printed page" as the copyright notice for easier
1215
+ identification within third-party archives.
1216
+
1217
+ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
1218
+
1219
+ Licensed under the Apache License, Version 2.0 (the "License");
1220
+ you may not use this file except in compliance with the License.
1221
+ You may obtain a copy of the License at
1222
+
1223
+ http://www.apache.org/licenses/LICENSE-2.0
1224
+
1225
+ Unless required by applicable law or agreed to in writing, software
1226
+ distributed under the License is distributed on an "AS IS" BASIS,
1227
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1228
+ See the License for the specific language governing permissions and
1229
+ limitations under the License.
1230
+
1231
+
1232
+
1233
+ styled-string-builder
1234
+ MIT
1235
+ MIT License
1236
+
1237
+ Copyright (c) 2024 Tiago Venceslau
1238
+
1239
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1240
+ of this software and associated documentation files (the "Software"), to deal
1241
+ in the Software without restriction, including without limitation the rights
1242
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1243
+ copies of the Software, and to permit persons to whom the Software is
1244
+ furnished to do so, subject to the following conditions:
1245
+
1246
+ The above copyright notice and this permission notice shall be included in all
1247
+ copies or substantial portions of the Software.
1248
+
1249
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1250
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1251
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1252
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1253
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1254
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1255
+ SOFTWARE.
1256
+
1257
+
1258
+ tslib
1259
+ 0BSD
1260
+ Copyright (c) Microsoft Corporation.
1261
+
1262
+ Permission to use, copy, modify, and/or distribute this software for any
1263
+ purpose with or without fee is hereby granted.
1264
+
1265
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1266
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1267
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1268
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1269
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1270
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1271
+ PERFORMANCE OF THIS SOFTWARE.
1272
+
1273
+ typed-object-accumulator
1274
+ MIT License
1275
+
1276
+ Copyright (c) 2024 Tiago Venceslau
1277
+
1278
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1279
+ of this software and associated documentation files (the "Software"), to deal
1280
+ in the Software without restriction, including without limitation the rights
1281
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1282
+ copies of the Software, and to permit persons to whom the Software is
1283
+ furnished to do so, subject to the following conditions:
1284
+
1285
+ The above copyright notice and this permission notice shall be included in all
1286
+ copies or substantial portions of the Software.
1287
+
1288
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1289
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1290
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1291
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1292
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1293
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1294
+ SOFTWARE.
1295
+
1296
+
1297
+ ufo
1298
+ MIT
1299
+ MIT License
1300
+
1301
+ Copyright (c) Pooya Parsa <pooya@pi0.io>
1302
+
1303
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1304
+ of this software and associated documentation files (the "Software"), to deal
1305
+ in the Software without restriction, including without limitation the rights
1306
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1307
+ copies of the Software, and to permit persons to whom the Software is
1308
+ furnished to do so, subject to the following conditions:
1309
+
1310
+ The above copyright notice and this permission notice shall be included in all
1311
+ copies or substantial portions of the Software.
1312
+
1313
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1314
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1315
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1316
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1317
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1318
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1319
+ SOFTWARE.
1320
+
1321
+
1322
+ zone.js
1323
+ MIT
1324
+ The MIT License
1325
+
1326
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
1327
+
1328
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1329
+ of this software and associated documentation files (the "Software"), to deal
1330
+ in the Software without restriction, including without limitation the rights
1331
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1332
+ copies of the Software, and to permit persons to whom the Software is
1333
+ furnished to do so, subject to the following conditions:
1334
+
1335
+ The above copyright notice and this permission notice shall be included in
1336
+ all copies or substantial portions of the Software.
1337
+
1338
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1339
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1340
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1341
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1342
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1343
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1344
+ THE SOFTWARE.