@senior-gestao-empresarial/angular-components 6.0.2 → 6.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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
@@ -5980,6 +5980,96 @@
5980
5980
  return BeneficioFiscalLookup;
5981
5981
  }(ErpLookups));
5982
5982
 
5983
+ var DocumentoLookup = /** @class */ (function (_super) {
5984
+ __extends(DocumentoLookup, _super);
5985
+ function DocumentoLookup(lookupService, translate) {
5986
+ var _this = _super.call(this, lookupService, translate, "documento", [
5987
+ {
5988
+ name: "numeroDocumento",
5989
+ type: angularComponents.FieldType.String
5990
+ }
5991
+ ], [
5992
+ {
5993
+ name: "numeroDocumento",
5994
+ type: angularComponents.FieldType.String
5995
+ },
5996
+ {
5997
+ name: "tipoDocumento",
5998
+ type: angularComponents.FieldType.String
5999
+ }
6000
+ ], [
6001
+ {
6002
+ name: "numeroDocumento",
6003
+ type: angularComponents.FieldType.String
6004
+ },
6005
+ {
6006
+ name: "tipoDocumento",
6007
+ type: angularComponents.FieldType.String
6008
+ },
6009
+ {
6010
+ name: "e070fil.codFil",
6011
+ type: angularComponents.FieldType.Integer
6012
+ },
6013
+ {
6014
+ name: "e070fil.nomFil",
6015
+ type: angularComponents.FieldType.String
6016
+ }
6017
+ ], "erpx_sup", "demandas") || this;
6018
+ _this.lookupService = lookupService;
6019
+ _this.translate = translate;
6020
+ return _this;
6021
+ }
6022
+ DocumentoLookup.ctorParameters = function () { return [
6023
+ { type: ErpLookupsService },
6024
+ { type: core$1.TranslateService }
6025
+ ]; };
6026
+ DocumentoLookup = __decorate([
6027
+ core.Injectable()
6028
+ ], DocumentoLookup);
6029
+ return DocumentoLookup;
6030
+ }(ErpLookups));
6031
+
6032
+ var E099UsuSupCprLookup = /** @class */ (function (_super) {
6033
+ __extends(E099UsuSupCprLookup, _super);
6034
+ function E099UsuSupCprLookup(lookupService, translate) {
6035
+ var _this = _super.call(this, lookupService, translate, "e099usu_sup_cpr", [
6036
+ {
6037
+ name: "codUsu",
6038
+ type: angularComponents.FieldType.String
6039
+ }
6040
+ ], [
6041
+ {
6042
+ name: "codUsu",
6043
+ type: angularComponents.FieldType.String
6044
+ },
6045
+ {
6046
+ name: "nomUsu",
6047
+ type: angularComponents.FieldType.String
6048
+ }
6049
+ ], [
6050
+ {
6051
+ name: "codUsu",
6052
+ type: angularComponents.FieldType.String
6053
+ },
6054
+ {
6055
+ name: "nomUsu",
6056
+ type: angularComponents.FieldType.String
6057
+ }
6058
+ ], "erpx_sup_cpr", "foundation") || this;
6059
+ _this.lookupService = lookupService;
6060
+ _this.translate = translate;
6061
+ return _this;
6062
+ }
6063
+ E099UsuSupCprLookup.ctorParameters = function () { return [
6064
+ { type: ErpLookupsService },
6065
+ { type: core$1.TranslateService }
6066
+ ]; };
6067
+ E099UsuSupCprLookup = __decorate([
6068
+ core.Injectable()
6069
+ ], E099UsuSupCprLookup);
6070
+ return E099UsuSupCprLookup;
6071
+ }(ErpLookups));
6072
+
5983
6073
  var ErpLookupsModule = /** @class */ (function () {
5984
6074
  function ErpLookupsModule() {
5985
6075
  }
@@ -6086,7 +6176,9 @@
6086
6176
  BankLookup,
6087
6177
  TypeTaxesLookup,
6088
6178
  ParametersLookup,
6089
- BeneficioFiscalLookup
6179
+ BeneficioFiscalLookup,
6180
+ DocumentoLookup,
6181
+ E099UsuSupCprLookup
6090
6182
  ],
6091
6183
  declarations: [],
6092
6184
  exports: [],
@@ -6680,6 +6772,74 @@
6680
6772
  return UtilsModule;
6681
6773
  }());
6682
6774
 
6775
+ var HTTP_STATUS_CODE = {
6776
+ CONTINUE: 100,
6777
+ SWITCHING_PROTOCOLS: 101,
6778
+ PROCESSING: 102,
6779
+ EARLY_HINTS: 103,
6780
+ OK: 200,
6781
+ CREATED: 201,
6782
+ ACCEPTED: 202,
6783
+ NON_AUTHORITATIVE_INFORMATION: 203,
6784
+ NO_CONTENT: 204,
6785
+ RESET_CONTENT: 205,
6786
+ PARTIAL_CONTENT: 206,
6787
+ MULTI_STATUS: 207,
6788
+ ALREADY_REPORTED: 208,
6789
+ IM_USED: 226,
6790
+ MULTIPLE_CHOICES: 300,
6791
+ MOVED_PERMANENTLY: 301,
6792
+ FOUND: 302,
6793
+ SEE_OTHER: 303,
6794
+ NOT_MODIFIED: 304,
6795
+ USE_PROXY: 305,
6796
+ UNUSED: 306,
6797
+ TEMPORARY_REDIRECT: 307,
6798
+ PERMANENT_REDIRECT: 308,
6799
+ BAD_REQUEST: 400,
6800
+ UNAUTHORIZED: 401,
6801
+ PAYMENT_REQUIRED: 402,
6802
+ FORBIDDEN: 403,
6803
+ NOT_FOUND: 404,
6804
+ METHOD_NOT_ALLOWED: 405,
6805
+ NOT_ACCEPTABLE: 406,
6806
+ PROXY_AUTHENTICATION_REQUIRED: 407,
6807
+ REQUEST_TIMEOUT: 408,
6808
+ CONFLICT: 409,
6809
+ GONE: 410,
6810
+ LENGTH_REQUIRED: 411,
6811
+ PRECONDITION_FAILED: 412,
6812
+ PAYLOAD_TOO_LARGE: 413,
6813
+ URI_TOO_LONG: 414,
6814
+ UNSUPPORTED_MEDIA_TYPE: 415,
6815
+ RANGE_NOT_SATISFIABLE: 416,
6816
+ EXPECTATION_FAILED: 417,
6817
+ IM_A_TEAPOT: 418,
6818
+ MISDIRECTED_REQUEST: 421,
6819
+ UNPROCESSABLE_ENTITY: 422,
6820
+ LOCKED: 423,
6821
+ FAILED_DEPENDENCY: 424,
6822
+ TOO_EARLY: 425,
6823
+ UPGRADE_REQUIRED: 426,
6824
+ PRECONDITION_REQUIRED: 428,
6825
+ TOO_MANY_REQUESTS: 429,
6826
+ REQUEST_HEADER_FIELDS_TOO_LARGE: 431,
6827
+ UNAVAILABLE_FOR_LEGAL_REASONS: 451,
6828
+ INTERNAL_SERVER_ERROR: 500,
6829
+ NOT_IMPLEMENTED: 501,
6830
+ BAD_GATEWAY: 502,
6831
+ SERVICE_UNAVAILABLE: 503,
6832
+ GATEWAY_TIMEOUT: 504,
6833
+ HTTP_VERSION_NOT_SUPPORTED: 505,
6834
+ VARIANT_ALSO_NEGOTIATES: 506,
6835
+ INSUFFICIENT_STORAGE: 507,
6836
+ LOOP_DETECTED: 508,
6837
+ NOT_EXTENDED: 510,
6838
+ NETWORK_AUTHENTICATION_REQUIRED: 511,
6839
+ NETWORK_CONNECT_TIMEOUT_ERROR: 599,
6840
+ GENERIC_ERROR: 600
6841
+ };
6842
+
6683
6843
  // https://widget.tracksale.co/
6684
6844
  var NpsService = /** @class */ (function () {
6685
6845
  function NpsService() {
@@ -7199,6 +7359,7 @@
7199
7359
  exports.CplTriNotaSaidaNfEntradaLookup = CplTriNotaSaidaNfEntradaLookup;
7200
7360
  exports.CplTriNotaSaidaNfSaidaLookup = CplTriNotaSaidaNfSaidaLookup;
7201
7361
  exports.CurrencyLookup = CurrencyLookup;
7362
+ exports.DocumentoLookup = DocumentoLookup;
7202
7363
  exports.E001EndLookup = E001EndLookup;
7203
7364
  exports.E001PesLookup = E001PesLookup;
7204
7365
  exports.E001TnsLookup = E001TnsLookup;
@@ -7247,6 +7408,7 @@
7247
7408
  exports.E091PlfFinRatLookup = E091PlfFinRatLookup;
7248
7409
  exports.E095PesLookup = E095PesLookup;
7249
7410
  exports.E099UsuComGerLookup = E099UsuComGerLookup;
7411
+ exports.E099UsuSupCprLookup = E099UsuSupCprLookup;
7250
7412
  exports.E140InsLookup = E140InsLookup;
7251
7413
  exports.E140NfsLookup = E140NfsLookup;
7252
7414
  exports.E200LotLookup = E200LotLookup;
@@ -7268,6 +7430,7 @@
7268
7430
  exports.ExportUtils = ExportUtils;
7269
7431
  exports.FiltersStorageService = FiltersStorageService;
7270
7432
  exports.FormUtilsService = FormUtilsService;
7433
+ exports.HTTP_STATUS_CODE = HTTP_STATUS_CODE;
7271
7434
  exports.LigacaoItemFornecedorLookup = LigacaoItemFornecedorLookup;
7272
7435
  exports.LookupValidationUtils = LookupValidationUtils;
7273
7436
  exports.NcmLookup = NcmLookup;