infinity-forge 1.7.5 → 1.7.6

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/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from './ui/index.js';
2
+ export * from './test/index.js';
2
3
  export * from './sites/index.js';
4
+ export * from './mocks/index.js';
3
5
  export * from './system/index.js';
4
- export * from "./test/index.js";
package/dist/index.js CHANGED
@@ -15,7 +15,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./ui/index.js"), exports);
18
+ __exportStar(require("./test/index.js"), exports);
18
19
  __exportStar(require("./sites/index.js"), exports);
20
+ __exportStar(require("./mocks/index.js"), exports);
19
21
  __exportStar(require("./system/index.js"), exports);
20
- __exportStar(require("./test/index.js"), exports);
21
22
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uCAAoB;AACpB,0CAAuB;AACvB,2CAAwB;AACxB,yCAAsB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uCAAoB;AACpB,yCAAsB;AACtB,0CAAuB;AACvB,0CAAuB;AACvB,2CAAwB"}
@@ -0,0 +1 @@
1
+ export * from "./states-brazil.js";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./states-brazil.js"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/mocks/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA+B"}
@@ -0,0 +1,4 @@
1
+ export declare const statesBrazil: {
2
+ label: string;
3
+ value: string;
4
+ }[];
@@ -0,0 +1,114 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.statesBrazil = void 0;
4
+ exports.statesBrazil = [
5
+ {
6
+ label: 'Acre',
7
+ value: 'AC',
8
+ },
9
+ {
10
+ label: 'Alagoas',
11
+ value: 'AL',
12
+ },
13
+ {
14
+ label: 'Amapá',
15
+ value: 'AP',
16
+ },
17
+ {
18
+ label: 'Amazonas',
19
+ value: 'AM',
20
+ },
21
+ {
22
+ label: 'Bahia',
23
+ value: 'BA',
24
+ },
25
+ {
26
+ label: 'Ceará',
27
+ value: 'CE',
28
+ },
29
+ {
30
+ label: 'Distrito Federal',
31
+ value: 'DF',
32
+ },
33
+ {
34
+ label: 'Espírito Santo',
35
+ value: 'ES',
36
+ },
37
+ {
38
+ label: 'Goiás',
39
+ value: 'GO',
40
+ },
41
+ {
42
+ label: 'Maranhão',
43
+ value: 'MA',
44
+ },
45
+ {
46
+ label: 'Mato Grosso',
47
+ value: 'MT',
48
+ },
49
+ {
50
+ label: 'Mato Grosso do Sul',
51
+ value: 'MS',
52
+ },
53
+ {
54
+ label: 'Minas Gerais',
55
+ value: 'MG',
56
+ },
57
+ {
58
+ label: 'Pará',
59
+ value: 'PA',
60
+ },
61
+ {
62
+ label: 'Paraíba',
63
+ value: 'PB',
64
+ },
65
+ {
66
+ label: 'Paraná',
67
+ value: 'PR',
68
+ },
69
+ {
70
+ label: 'Pernambuco',
71
+ value: 'PE',
72
+ },
73
+ {
74
+ label: 'Piauí',
75
+ value: 'PI',
76
+ },
77
+ {
78
+ label: 'Rio de Janeiro',
79
+ value: 'RJ',
80
+ },
81
+ {
82
+ label: 'Rio Grande do Norte',
83
+ value: 'RN',
84
+ },
85
+ {
86
+ label: 'Rio Grande do Sul',
87
+ value: 'RS',
88
+ },
89
+ {
90
+ label: 'Rondônia',
91
+ value: 'RO',
92
+ },
93
+ {
94
+ label: 'Roraima',
95
+ value: 'RR',
96
+ },
97
+ {
98
+ label: 'Santa Catarina',
99
+ value: 'SC',
100
+ },
101
+ {
102
+ label: 'São Paulo',
103
+ value: 'SP',
104
+ },
105
+ {
106
+ label: 'Sergipe',
107
+ value: 'SE',
108
+ },
109
+ {
110
+ label: 'Tocantins',
111
+ value: 'TO',
112
+ },
113
+ ];
114
+ //# sourceMappingURL=states-brazil.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"states-brazil.js","sourceRoot":"","sources":["../../src/mocks/states-brazil.ts"],"names":[],"mappings":";;;AAAa,QAAA,YAAY,GAAG;IACxB;QACE,KAAK,EAAE,MAAM;QACb,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,OAAO;QACd,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,UAAU;QACjB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,OAAO;QACd,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,OAAO;QACd,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,kBAAkB;QACzB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,gBAAgB;QACvB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,OAAO;QACd,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,UAAU;QACjB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,aAAa;QACpB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,oBAAoB;QAC3B,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,cAAc;QACrB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,MAAM;QACb,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,QAAQ;QACf,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,YAAY;QACnB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,OAAO;QACd,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,gBAAgB;QACvB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,qBAAqB;QAC5B,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,mBAAmB;QAC1B,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,UAAU;QACjB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,gBAAgB;QACvB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,WAAW;QAClB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,IAAI;KACZ;IACD;QACE,KAAK,EAAE,WAAW;QAClB,KAAK,EAAE,IAAI;KACZ;CACF,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinity-forge",
3
- "version": "1.7.5",
3
+ "version": "1.7.6",
4
4
  "description": "codie Library",
5
5
  "main": "./dist/index",
6
6
  "module": "./dist/index",