mdz-enum 1.5.24 → 1.5.26

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.
package/README.MD CHANGED
@@ -1,7 +1,7 @@
1
- # mdz-enum
2
-
3
- Gerenciador de enumerados e classes.
4
-
5
- VESÃO DE SOFTWARE: vide `package.json`
6
-
7
- NODE: `14.18.1`
1
+ # mdz-enum
2
+
3
+ Gerenciador de enumerados e classes.
4
+
5
+ VESÃO DE SOFTWARE: vide `package.json`
6
+
7
+ NODE: `14.18.1`
@@ -281,7 +281,8 @@ export declare const SituacaoNotaFiscal: {
281
281
  EmImportacao: string;
282
282
  Importada: string;
283
283
  EmContingencia: string;
284
- description(val: string): "enum not found" | "Em Edição" | "Autorizada" | "Em Processamento" | "Rejeitada" | "Cancelada" | "Inutilizada" | "Denegada" | "Em Importação" | "Importada" | "Contingência";
284
+ Excluida: string;
285
+ description(val: string): "enum not found" | "Em Edição" | "Autorizada" | "Em Processamento" | "Rejeitada" | "Cancelada" | "Inutilizada" | "Denegada" | "Em Importação" | "Importada" | "Contingência" | "Excluída";
285
286
  };
286
287
  export declare const SituacaoManifestoDestinatario: {
287
288
  SemManifestacao: string;
@@ -819,6 +819,7 @@ exports.SituacaoNotaFiscal = {
819
819
  EmImportacao: '7',
820
820
  Importada: '8',
821
821
  EmContingencia: '9',
822
+ Excluida: '10',
822
823
  description(val) {
823
824
  switch (val) {
824
825
  case this.EmEdicao:
@@ -841,6 +842,8 @@ exports.SituacaoNotaFiscal = {
841
842
  return 'Importada';
842
843
  case this.EmContingencia:
843
844
  return 'Contingência';
845
+ case this.Excluida:
846
+ return 'Excluída';
844
847
  default:
845
848
  return 'enum not found';
846
849
  }
@@ -24,7 +24,7 @@ const FOOTER = {
24
24
  },
25
25
  LOGO_FILTER: {
26
26
  KEY: 'component_footer_logo_dark_filter',
27
- DEFAULT: 'light',
27
+ DEFAULT: 'none',
28
28
  VALUES: ['light', 'dark', 'none'],
29
29
  },
30
30
  },
@@ -42,7 +42,7 @@ const HEADER = {
42
42
  },
43
43
  LOGO_FILTER: {
44
44
  KEY: 'component_header_logo_light_filter',
45
- DEFAULT: 'light',
45
+ DEFAULT: 'none',
46
46
  VALUES: ['light', 'dark', 'none'],
47
47
  },
48
48
  },
@@ -53,7 +53,7 @@ const HEADER = {
53
53
  },
54
54
  LOGO_FILTER: {
55
55
  KEY: 'component_header_logo_dark_filter',
56
- DEFAULT: 'light',
56
+ DEFAULT: 'none',
57
57
  VALUES: ['light', 'dark', 'none'],
58
58
  },
59
59
  },
package/package.json CHANGED
@@ -1,33 +1,33 @@
1
- {
2
- "name": "mdz-enum",
3
- "version": "1.5.24",
4
- "description": "Enumerados ModerShop",
5
- "main": "dist/index.js",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1",
8
- "publicar": "tsc && git add . && git commit -m \"commit automatico\" && git push origin main && npm publish"
9
- },
10
- "files": [
11
- "dist",
12
- "package.json",
13
- "README.md"
14
- ],
15
- "repository": {
16
- "type": "git",
17
- "url": "https://github.com/moderniza-modershop/mdz-enum"
18
- },
19
- "keywords": [],
20
- "author": "willian.moderniza",
21
- "license": "ISC",
22
- "bugs": {
23
- "url": "https://github.com/moderniza-dev/mdz-enum/issues"
24
- },
25
- "homepage": "https://github.com/moderniza-dev/mdz-enum#readme",
26
- "devDependencies": {
27
- "@types/node": "^16.9.1",
28
- "ts-node": "^10.2.1",
29
- "typescript": "^4.4.3"
30
- },
31
- "dependencies": {}
32
- }
33
-
1
+ {
2
+ "name": "mdz-enum",
3
+ "version": "1.5.26",
4
+ "description": "Enumerados ModerShop",
5
+ "main": "dist/index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "publicar": "tsc && git add . && git commit -m \"commit automatico\" && git push origin main && npm publish"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "package.json",
13
+ "README.md"
14
+ ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/moderniza-modershop/mdz-enum"
18
+ },
19
+ "keywords": [],
20
+ "author": "willian.moderniza",
21
+ "license": "ISC",
22
+ "bugs": {
23
+ "url": "https://github.com/moderniza-dev/mdz-enum/issues"
24
+ },
25
+ "homepage": "https://github.com/moderniza-dev/mdz-enum#readme",
26
+ "devDependencies": {
27
+ "@types/node": "^16.9.1",
28
+ "ts-node": "^10.2.1",
29
+ "typescript": "^4.4.3"
30
+ },
31
+ "dependencies": {}
32
+ }
33
+