@senior-gestao-empresarial/angular-components 6.1.0 → 6.2.0-98a38a88-ff47-44d2-8fb0-11e810698ced

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 +167 -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 +2 -2
  4. package/bundles/senior-gestao-empresarial-angular-components.umd.min.js.map +1 -1
  5. package/components/lookups/entities/e-069-gre-lookup.d.ts +8 -0
  6. package/components/lookups/entities/e-501-tcp-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/e-069-gre-lookup.js +46 -0
  11. package/esm2015/components/lookups/entities/e-501-tcp-lookup.js +55 -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/e-069-gre-lookup.js +49 -0
  17. package/esm5/components/lookups/entities/e-501-tcp-lookup.js +58 -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 +159 -2
  23. package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
  24. package/fesm5/senior-gestao-empresarial-angular-components.js +165 -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
@@ -5864,6 +5864,99 @@ var E099UsuSupCprLookup = /** @class */ (function (_super) {
5864
5864
  return E099UsuSupCprLookup;
5865
5865
  }(ErpLookups));
5866
5866
 
5867
+ var E069GreLookup = /** @class */ (function (_super) {
5868
+ __extends(E069GreLookup, _super);
5869
+ function E069GreLookup(lookupService, translate) {
5870
+ var _this = _super.call(this, lookupService, translate, "e069gre", [
5871
+ {
5872
+ name: "codGre",
5873
+ type: FieldType.Integer
5874
+ }, {
5875
+ name: "nomGre",
5876
+ type: FieldType.String
5877
+ }
5878
+ ], [
5879
+ {
5880
+ name: "codGre",
5881
+ type: FieldType.Integer
5882
+ }, {
5883
+ name: "nomGre",
5884
+ type: FieldType.String
5885
+ }
5886
+ ], [
5887
+ {
5888
+ name: "codGre",
5889
+ type: FieldType.Integer
5890
+ }, {
5891
+ name: "nomGre",
5892
+ type: FieldType.String
5893
+ }
5894
+ ], "erpx_fnd", "foundation") || this;
5895
+ _this.lookupService = lookupService;
5896
+ _this.translate = translate;
5897
+ return _this;
5898
+ }
5899
+ E069GreLookup.ctorParameters = function () { return [
5900
+ { type: ErpLookupsService },
5901
+ { type: TranslateService }
5902
+ ]; };
5903
+ E069GreLookup = __decorate([
5904
+ Injectable()
5905
+ ], E069GreLookup);
5906
+ return E069GreLookup;
5907
+ }(ErpLookups));
5908
+
5909
+ var E501TcpLookup = /** @class */ (function (_super) {
5910
+ __extends(E501TcpLookup, _super);
5911
+ function E501TcpLookup(lookupService, translate) {
5912
+ var _this = _super.call(this, lookupService, translate, "e501tcp", [
5913
+ {
5914
+ name: "numTit",
5915
+ type: FieldType.String
5916
+ }, {
5917
+ name: "e070filCodFil.nomFil",
5918
+ type: FieldType.String
5919
+ }, {
5920
+ name: "e002tptCodTpt.desTpt",
5921
+ type: FieldType.String
5922
+ }
5923
+ ], [
5924
+ {
5925
+ name: "numTit",
5926
+ type: FieldType.String
5927
+ }, {
5928
+ name: "e070filCodFil.codFil",
5929
+ type: FieldType.Integer
5930
+ }, {
5931
+ name: "e002tptCodTpt.codTpt",
5932
+ type: FieldType.String
5933
+ }
5934
+ ], [
5935
+ {
5936
+ name: "numTit",
5937
+ type: FieldType.String
5938
+ }, {
5939
+ name: "e070filCodFil.nomFil",
5940
+ type: FieldType.String
5941
+ }, {
5942
+ name: "e002tptCodTpt.desTpt",
5943
+ type: FieldType.String
5944
+ }
5945
+ ], "erpx_fnd", "foundation") || this;
5946
+ _this.lookupService = lookupService;
5947
+ _this.translate = translate;
5948
+ return _this;
5949
+ }
5950
+ E501TcpLookup.ctorParameters = function () { return [
5951
+ { type: ErpLookupsService },
5952
+ { type: TranslateService }
5953
+ ]; };
5954
+ E501TcpLookup = __decorate([
5955
+ Injectable()
5956
+ ], E501TcpLookup);
5957
+ return E501TcpLookup;
5958
+ }(ErpLookups));
5959
+
5867
5960
  var ErpLookupsModule = /** @class */ (function () {
5868
5961
  function ErpLookupsModule() {
5869
5962
  }
@@ -5972,7 +6065,9 @@ var ErpLookupsModule = /** @class */ (function () {
5972
6065
  ParametersLookup,
5973
6066
  BeneficioFiscalLookup,
5974
6067
  DocumentoLookup,
5975
- E099UsuSupCprLookup
6068
+ E099UsuSupCprLookup,
6069
+ E069GreLookup,
6070
+ E501TcpLookup
5976
6071
  ],
5977
6072
  declarations: [],
5978
6073
  exports: [],
@@ -6566,6 +6661,74 @@ var UtilsModule = /** @class */ (function () {
6566
6661
  return UtilsModule;
6567
6662
  }());
6568
6663
 
6664
+ var HTTP_STATUS_CODE = {
6665
+ CONTINUE: 100,
6666
+ SWITCHING_PROTOCOLS: 101,
6667
+ PROCESSING: 102,
6668
+ EARLY_HINTS: 103,
6669
+ OK: 200,
6670
+ CREATED: 201,
6671
+ ACCEPTED: 202,
6672
+ NON_AUTHORITATIVE_INFORMATION: 203,
6673
+ NO_CONTENT: 204,
6674
+ RESET_CONTENT: 205,
6675
+ PARTIAL_CONTENT: 206,
6676
+ MULTI_STATUS: 207,
6677
+ ALREADY_REPORTED: 208,
6678
+ IM_USED: 226,
6679
+ MULTIPLE_CHOICES: 300,
6680
+ MOVED_PERMANENTLY: 301,
6681
+ FOUND: 302,
6682
+ SEE_OTHER: 303,
6683
+ NOT_MODIFIED: 304,
6684
+ USE_PROXY: 305,
6685
+ UNUSED: 306,
6686
+ TEMPORARY_REDIRECT: 307,
6687
+ PERMANENT_REDIRECT: 308,
6688
+ BAD_REQUEST: 400,
6689
+ UNAUTHORIZED: 401,
6690
+ PAYMENT_REQUIRED: 402,
6691
+ FORBIDDEN: 403,
6692
+ NOT_FOUND: 404,
6693
+ METHOD_NOT_ALLOWED: 405,
6694
+ NOT_ACCEPTABLE: 406,
6695
+ PROXY_AUTHENTICATION_REQUIRED: 407,
6696
+ REQUEST_TIMEOUT: 408,
6697
+ CONFLICT: 409,
6698
+ GONE: 410,
6699
+ LENGTH_REQUIRED: 411,
6700
+ PRECONDITION_FAILED: 412,
6701
+ PAYLOAD_TOO_LARGE: 413,
6702
+ URI_TOO_LONG: 414,
6703
+ UNSUPPORTED_MEDIA_TYPE: 415,
6704
+ RANGE_NOT_SATISFIABLE: 416,
6705
+ EXPECTATION_FAILED: 417,
6706
+ IM_A_TEAPOT: 418,
6707
+ MISDIRECTED_REQUEST: 421,
6708
+ UNPROCESSABLE_ENTITY: 422,
6709
+ LOCKED: 423,
6710
+ FAILED_DEPENDENCY: 424,
6711
+ TOO_EARLY: 425,
6712
+ UPGRADE_REQUIRED: 426,
6713
+ PRECONDITION_REQUIRED: 428,
6714
+ TOO_MANY_REQUESTS: 429,
6715
+ REQUEST_HEADER_FIELDS_TOO_LARGE: 431,
6716
+ UNAVAILABLE_FOR_LEGAL_REASONS: 451,
6717
+ INTERNAL_SERVER_ERROR: 500,
6718
+ NOT_IMPLEMENTED: 501,
6719
+ BAD_GATEWAY: 502,
6720
+ SERVICE_UNAVAILABLE: 503,
6721
+ GATEWAY_TIMEOUT: 504,
6722
+ HTTP_VERSION_NOT_SUPPORTED: 505,
6723
+ VARIANT_ALSO_NEGOTIATES: 506,
6724
+ INSUFFICIENT_STORAGE: 507,
6725
+ LOOP_DETECTED: 508,
6726
+ NOT_EXTENDED: 510,
6727
+ NETWORK_AUTHENTICATION_REQUIRED: 511,
6728
+ NETWORK_CONNECT_TIMEOUT_ERROR: 599,
6729
+ GENERIC_ERROR: 600
6730
+ };
6731
+
6569
6732
  // https://widget.tracksale.co/
6570
6733
  var NpsService = /** @class */ (function () {
6571
6734
  function NpsService() {
@@ -7062,5 +7225,5 @@ var ModulesEnum;
7062
7225
  * Generated bundle index. Do not edit.
7063
7226
  */
7064
7227
 
7065
- 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, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NcmLookup, NpsService, ParametersLookup, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, WebsocketService, naturezaReceitaPisCofins, ErpLookupsService as ɵa, StorageService as ɵb, VerifyModulePermissionService as ɵc };
7228
+ 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, E069GreLookup, 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, E501TcpLookup, 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 };
7066
7229
  //# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map