pareto-core-shorthands 0.1.10 → 0.1.12

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.
@@ -7,7 +7,7 @@ export type Raw_Or_Normal_Dictionary<T> = {
7
7
  [key: string]: T;
8
8
  } | _pi.Dictionary<T>;
9
9
  export type Raw_Or_Normal_List<T> = T[] | _pi.List<T>;
10
- export declare namespace dictionnary {
10
+ export declare namespace dictionary {
11
11
  const literal: <T>($: Raw_Or_Normal_Dictionary<T>) => _pi.Dictionary<T>;
12
12
  }
13
13
  export declare namespace list {
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.list = exports.dictionnary = exports.optional = void 0;
26
+ exports.list = exports.dictionary = exports.optional = void 0;
27
27
  const _pinternals = __importStar(require("pareto-core-internals/dist/literal"));
28
28
  var optional;
29
29
  (function (optional) {
@@ -50,10 +50,10 @@ const wrap_list = ($) => {
50
50
  }
51
51
  return $;
52
52
  };
53
- var dictionnary;
54
- (function (dictionnary) {
55
- dictionnary.literal = wrap_dictionary;
56
- })(dictionnary || (exports.dictionnary = dictionnary = {}));
53
+ var dictionary;
54
+ (function (dictionary) {
55
+ dictionary.literal = wrap_dictionary;
56
+ })(dictionary || (exports.dictionary = dictionary = {}));
57
57
  var list;
58
58
  (function (list) {
59
59
  list.literal = wrap_list;
@@ -68,7 +68,7 @@ const wrap_list = ($) => {
68
68
  }
69
69
  return {
70
70
  'location': location,
71
- 'list': decorated.map(($) => ({
71
+ 'list': decorated.__l_map(($) => ({
72
72
  'location': location,
73
73
  'element': $,
74
74
  }))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-core-shorthands",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "license": "ISC",
5
5
  "description": "the pareto package used for building datasets",
6
6
  "author": "Corno",
@@ -23,6 +23,6 @@
23
23
  "url": "git+https://github.com/corno/pareto-core-shorthands.git"
24
24
  },
25
25
  "dependencies": {
26
- "pareto-core-internals": "^0.24.28"
26
+ "pareto-core-internals": "^0.24.39"
27
27
  }
28
28
  }