@senior-gestao-empresarial/angular-components 6.0.2 → 6.2.0-1d68f732-a0dc-4d64-8b5e-46b5692346fa

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 (27) hide show
  1. package/bundles/senior-gestao-empresarial-angular-components.umd.js +164 -1
  2. package/bundles/senior-gestao-empresarial-angular-components.umd.js.map +1 -1
  3. package/bundles/senior-gestao-empresarial-angular-components.umd.min.js +1 -1
  4. package/bundles/senior-gestao-empresarial-angular-components.umd.min.js.map +1 -1
  5. package/components/lookups/entities/documento-lookup.d.ts +8 -0
  6. package/components/lookups/entities/e-099-usu-sup-cpr-lookup.d.ts +8 -0
  7. package/components/lookups/index.d.ts +2 -0
  8. package/components/utils/http-status-code.d.ts +67 -0
  9. package/components/utils/index.d.ts +1 -0
  10. package/esm2015/components/lookups/entities/documento-lookup.js +53 -0
  11. package/esm2015/components/lookups/entities/e-099-usu-sup-cpr-lookup.js +45 -0
  12. package/esm2015/components/lookups/erp-lookups.module.js +6 -2
  13. package/esm2015/components/lookups/index.js +3 -1
  14. package/esm2015/components/utils/http-status-code.js +68 -0
  15. package/esm2015/components/utils/index.js +2 -1
  16. package/esm5/components/lookups/entities/documento-lookup.js +56 -0
  17. package/esm5/components/lookups/entities/e-099-usu-sup-cpr-lookup.js +48 -0
  18. package/esm5/components/lookups/erp-lookups.module.js +6 -2
  19. package/esm5/components/lookups/index.js +3 -1
  20. package/esm5/components/utils/http-status-code.js +68 -0
  21. package/esm5/components/utils/index.js +2 -1
  22. package/fesm2015/senior-gestao-empresarial-angular-components.js +156 -2
  23. package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
  24. package/fesm5/senior-gestao-empresarial-angular-components.js +162 -2
  25. package/fesm5/senior-gestao-empresarial-angular-components.js.map +1 -1
  26. package/package.json +1 -1
  27. package/senior-gestao-empresarial-angular-components.metadata.json +1 -1
@@ -5774,6 +5774,96 @@ var BeneficioFiscalLookup = /** @class */ (function (_super) {
5774
5774
  return BeneficioFiscalLookup;
5775
5775
  }(ErpLookups));
5776
5776
 
5777
+ var DocumentoLookup = /** @class */ (function (_super) {
5778
+ __extends(DocumentoLookup, _super);
5779
+ function DocumentoLookup(lookupService, translate) {
5780
+ var _this = _super.call(this, lookupService, translate, "documento", [
5781
+ {
5782
+ name: "numeroDocumento",
5783
+ type: FieldType.String
5784
+ }
5785
+ ], [
5786
+ {
5787
+ name: "numeroDocumento",
5788
+ type: FieldType.String
5789
+ },
5790
+ {
5791
+ name: "tipoDocumento",
5792
+ type: FieldType.String
5793
+ }
5794
+ ], [
5795
+ {
5796
+ name: "numeroDocumento",
5797
+ type: FieldType.String
5798
+ },
5799
+ {
5800
+ name: "tipoDocumento",
5801
+ type: FieldType.String
5802
+ },
5803
+ {
5804
+ name: "e070fil.codFil",
5805
+ type: FieldType.Integer
5806
+ },
5807
+ {
5808
+ name: "e070fil.nomFil",
5809
+ type: FieldType.String
5810
+ }
5811
+ ], "erpx_sup", "demandas") || this;
5812
+ _this.lookupService = lookupService;
5813
+ _this.translate = translate;
5814
+ return _this;
5815
+ }
5816
+ DocumentoLookup.ctorParameters = function () { return [
5817
+ { type: ErpLookupsService },
5818
+ { type: TranslateService }
5819
+ ]; };
5820
+ DocumentoLookup = __decorate([
5821
+ Injectable()
5822
+ ], DocumentoLookup);
5823
+ return DocumentoLookup;
5824
+ }(ErpLookups));
5825
+
5826
+ var E099UsuSupCprLookup = /** @class */ (function (_super) {
5827
+ __extends(E099UsuSupCprLookup, _super);
5828
+ function E099UsuSupCprLookup(lookupService, translate) {
5829
+ var _this = _super.call(this, lookupService, translate, "e099usu_sup_cpr", [
5830
+ {
5831
+ name: "codUsu",
5832
+ type: FieldType.String
5833
+ }
5834
+ ], [
5835
+ {
5836
+ name: "codUsu",
5837
+ type: FieldType.String
5838
+ },
5839
+ {
5840
+ name: "nomUsu",
5841
+ type: FieldType.String
5842
+ }
5843
+ ], [
5844
+ {
5845
+ name: "codUsu",
5846
+ type: FieldType.String
5847
+ },
5848
+ {
5849
+ name: "nomUsu",
5850
+ type: FieldType.String
5851
+ }
5852
+ ], "erpx_sup_cpr", "foundation") || this;
5853
+ _this.lookupService = lookupService;
5854
+ _this.translate = translate;
5855
+ return _this;
5856
+ }
5857
+ E099UsuSupCprLookup.ctorParameters = function () { return [
5858
+ { type: ErpLookupsService },
5859
+ { type: TranslateService }
5860
+ ]; };
5861
+ E099UsuSupCprLookup = __decorate([
5862
+ Injectable()
5863
+ ], E099UsuSupCprLookup);
5864
+ return E099UsuSupCprLookup;
5865
+ }(ErpLookups));
5866
+
5777
5867
  var ErpLookupsModule = /** @class */ (function () {
5778
5868
  function ErpLookupsModule() {
5779
5869
  }
@@ -5880,7 +5970,9 @@ var ErpLookupsModule = /** @class */ (function () {
5880
5970
  BankLookup,
5881
5971
  TypeTaxesLookup,
5882
5972
  ParametersLookup,
5883
- BeneficioFiscalLookup
5973
+ BeneficioFiscalLookup,
5974
+ DocumentoLookup,
5975
+ E099UsuSupCprLookup
5884
5976
  ],
5885
5977
  declarations: [],
5886
5978
  exports: [],
@@ -6474,6 +6566,74 @@ var UtilsModule = /** @class */ (function () {
6474
6566
  return UtilsModule;
6475
6567
  }());
6476
6568
 
6569
+ var HTTP_STATUS_CODE = {
6570
+ CONTINUE: 100,
6571
+ SWITCHING_PROTOCOLS: 101,
6572
+ PROCESSING: 102,
6573
+ EARLY_HINTS: 103,
6574
+ OK: 200,
6575
+ CREATED: 201,
6576
+ ACCEPTED: 202,
6577
+ NON_AUTHORITATIVE_INFORMATION: 203,
6578
+ NO_CONTENT: 204,
6579
+ RESET_CONTENT: 205,
6580
+ PARTIAL_CONTENT: 206,
6581
+ MULTI_STATUS: 207,
6582
+ ALREADY_REPORTED: 208,
6583
+ IM_USED: 226,
6584
+ MULTIPLE_CHOICES: 300,
6585
+ MOVED_PERMANENTLY: 301,
6586
+ FOUND: 302,
6587
+ SEE_OTHER: 303,
6588
+ NOT_MODIFIED: 304,
6589
+ USE_PROXY: 305,
6590
+ UNUSED: 306,
6591
+ TEMPORARY_REDIRECT: 307,
6592
+ PERMANENT_REDIRECT: 308,
6593
+ BAD_REQUEST: 400,
6594
+ UNAUTHORIZED: 401,
6595
+ PAYMENT_REQUIRED: 402,
6596
+ FORBIDDEN: 403,
6597
+ NOT_FOUND: 404,
6598
+ METHOD_NOT_ALLOWED: 405,
6599
+ NOT_ACCEPTABLE: 406,
6600
+ PROXY_AUTHENTICATION_REQUIRED: 407,
6601
+ REQUEST_TIMEOUT: 408,
6602
+ CONFLICT: 409,
6603
+ GONE: 410,
6604
+ LENGTH_REQUIRED: 411,
6605
+ PRECONDITION_FAILED: 412,
6606
+ PAYLOAD_TOO_LARGE: 413,
6607
+ URI_TOO_LONG: 414,
6608
+ UNSUPPORTED_MEDIA_TYPE: 415,
6609
+ RANGE_NOT_SATISFIABLE: 416,
6610
+ EXPECTATION_FAILED: 417,
6611
+ IM_A_TEAPOT: 418,
6612
+ MISDIRECTED_REQUEST: 421,
6613
+ UNPROCESSABLE_ENTITY: 422,
6614
+ LOCKED: 423,
6615
+ FAILED_DEPENDENCY: 424,
6616
+ TOO_EARLY: 425,
6617
+ UPGRADE_REQUIRED: 426,
6618
+ PRECONDITION_REQUIRED: 428,
6619
+ TOO_MANY_REQUESTS: 429,
6620
+ REQUEST_HEADER_FIELDS_TOO_LARGE: 431,
6621
+ UNAVAILABLE_FOR_LEGAL_REASONS: 451,
6622
+ INTERNAL_SERVER_ERROR: 500,
6623
+ NOT_IMPLEMENTED: 501,
6624
+ BAD_GATEWAY: 502,
6625
+ SERVICE_UNAVAILABLE: 503,
6626
+ GATEWAY_TIMEOUT: 504,
6627
+ HTTP_VERSION_NOT_SUPPORTED: 505,
6628
+ VARIANT_ALSO_NEGOTIATES: 506,
6629
+ INSUFFICIENT_STORAGE: 507,
6630
+ LOOP_DETECTED: 508,
6631
+ NOT_EXTENDED: 510,
6632
+ NETWORK_AUTHENTICATION_REQUIRED: 511,
6633
+ NETWORK_CONNECT_TIMEOUT_ERROR: 599,
6634
+ GENERIC_ERROR: 600
6635
+ };
6636
+
6477
6637
  // https://widget.tracksale.co/
6478
6638
  var NpsService = /** @class */ (function () {
6479
6639
  function NpsService() {
@@ -6970,5 +7130,5 @@ var ModulesEnum;
6970
7130
  * Generated bundle index. Do not edit.
6971
7131
  */
6972
7132
 
6973
- export { BankLookup, BeneficioFiscalLookup, BreadcrumbComponent, BreadcrumbModule, Breakpoints, CountryLookup, CplTriNotaSaidaE001EndLookup, CplTriNotaSaidaE001PesLookup, CplTriNotaSaidaE001TnsLookup, CplTriNotaSaidaE007UfsLookup, CplTriNotaSaidaE008RaiLookup, CplTriNotaSaidaE015MedLookup, CplTriNotaSaidaE020SnfLookup, CplTriNotaSaidaE024MsgLookup, CplTriNotaSaidaE028CpgLookup, CplTriNotaSaidaE032EdcLookup, CplTriNotaSaidaE051DisLookup, CplTriNotaSaidaE066FpgLookup, CplTriNotaSaidaE070EmpLookup, CplTriNotaSaidaE070FilLookup, CplTriNotaSaidaE075DerLookup, CplTriNotaSaidaE080SerLookup, CplTriNotaSaidaNaturezaReceitaPisCofinsLookup, CplTriNotaSaidaNcmLookup, CplTriNotaSaidaNfEntradaLookup, CplTriNotaSaidaNfSaidaLookup, CurrencyLookup, E001EndLookup, E001PesLookup, E001TnsLookup, E001TnsSupEstLookup, E002TptLookup, E007UfsLookup, E008CepLookup, E008RaiLookup, E012FamLookup, E015MedLookup, E020SnfLookup, E021MotLookup, E023CrpLookup, E024MsgLookup, E027EqiLookup, E027StrLookup, E028CpgLookup, E030AgeLookup, E030BanLookup, E031MoeLookup, E032EdcLookup, E035OcrLookup, E036InsLookup, E039PorLookup, E044CcuFinRatDepLookup, E044CcuLookup, E045PlaLookup, E046HpdLookup, E047NtgLookup, E048FctLookup, E048SfcLookup, E051DisLookup, E066FpgLookup, E067FinLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E081TabLookup, E082TprLookup, E085PesLookup, E090PesLookup, E091PlfFinRatLookup, E095PesLookup, E099UsuComGerLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E600CcoLookup, E640LotLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NcmLookup, NpsService, ParametersLookup, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, WebsocketService, naturezaReceitaPisCofins, ErpLookupsService as ɵa, StorageService as ɵb, VerifyModulePermissionService as ɵc };
7133
+ export { BankLookup, BeneficioFiscalLookup, BreadcrumbComponent, BreadcrumbModule, Breakpoints, CountryLookup, CplTriNotaSaidaE001EndLookup, CplTriNotaSaidaE001PesLookup, CplTriNotaSaidaE001TnsLookup, CplTriNotaSaidaE007UfsLookup, CplTriNotaSaidaE008RaiLookup, CplTriNotaSaidaE015MedLookup, CplTriNotaSaidaE020SnfLookup, CplTriNotaSaidaE024MsgLookup, CplTriNotaSaidaE028CpgLookup, CplTriNotaSaidaE032EdcLookup, CplTriNotaSaidaE051DisLookup, CplTriNotaSaidaE066FpgLookup, CplTriNotaSaidaE070EmpLookup, CplTriNotaSaidaE070FilLookup, CplTriNotaSaidaE075DerLookup, CplTriNotaSaidaE080SerLookup, CplTriNotaSaidaNaturezaReceitaPisCofinsLookup, CplTriNotaSaidaNcmLookup, CplTriNotaSaidaNfEntradaLookup, CplTriNotaSaidaNfSaidaLookup, CurrencyLookup, DocumentoLookup, E001EndLookup, E001PesLookup, E001TnsLookup, E001TnsSupEstLookup, E002TptLookup, E007UfsLookup, E008CepLookup, E008RaiLookup, E012FamLookup, E015MedLookup, E020SnfLookup, E021MotLookup, E023CrpLookup, E024MsgLookup, E027EqiLookup, E027StrLookup, E028CpgLookup, E030AgeLookup, E030BanLookup, E031MoeLookup, E032EdcLookup, E035OcrLookup, E036InsLookup, E039PorLookup, E044CcuFinRatDepLookup, E044CcuLookup, E045PlaLookup, E046HpdLookup, E047NtgLookup, E048FctLookup, E048SfcLookup, E051DisLookup, E066FpgLookup, E067FinLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E081TabLookup, E082TprLookup, E085PesLookup, E090PesLookup, E091PlfFinRatLookup, E095PesLookup, E099UsuComGerLookup, E099UsuSupCprLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E600CcoLookup, E640LotLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, HTTP_STATUS_CODE, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NcmLookup, NpsService, ParametersLookup, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, WebsocketService, naturezaReceitaPisCofins, ErpLookupsService as ɵa, StorageService as ɵb, VerifyModulePermissionService as ɵc };
6974
7134
  //# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map