mdz-enum 1.5.30 → 1.5.32

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.
@@ -20,7 +20,7 @@ const APPEARANCE_REFERENCE = {
20
20
  },
21
21
  SECONDARY_TEXT_COLOR: {
22
22
  KEY: 'color_secondary_text',
23
- DEFAULT: '#000000',
23
+ DEFAULT: '#ffffff',
24
24
  },
25
25
  };
26
26
  exports.default = APPEARANCE_REFERENCE;
@@ -51,7 +51,9 @@ export declare const SituacaoPlanos: {
51
51
  export declare const SituacaoUsuarios: {
52
52
  Inativo: string;
53
53
  Ativo: string;
54
- description(val: string): "enum not found" | "Inativo" | "Ativo";
54
+ ConfirmacaoPendente: string;
55
+ RedefinicaoSenha: string;
56
+ description(val: string): "enum not found" | "Inativo" | "Ativo" | "Confirmação pendente" | "Redefinição de senha";
55
57
  };
56
58
  export declare const Segmento: {
57
59
  Produtos_Alimenticios: string;
@@ -146,12 +146,18 @@ exports.SituacaoPlanos = {
146
146
  exports.SituacaoUsuarios = {
147
147
  Inativo: '0',
148
148
  Ativo: '1',
149
+ ConfirmacaoPendente: '2',
150
+ RedefinicaoSenha: '3',
149
151
  description(val) {
150
152
  switch (val) {
151
153
  case this.Inativo:
152
154
  return 'Inativo';
153
155
  case this.Ativo:
154
156
  return 'Ativo';
157
+ case this.ConfirmacaoPendente:
158
+ return 'Confirmação pendente';
159
+ case this.RedefinicaoSenha:
160
+ return 'Redefinição de senha';
155
161
  default:
156
162
  return 'enum not found';
157
163
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.5.30",
3
+ "version": "1.5.32",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {