@digipair/engine 0.92.2 → 0.93.0-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.
@@ -1,2 +1,3 @@
1
1
  export * from './lib/engine';
2
2
  export * from './lib/pins-settings.interface';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,+BAA+B,CAAC"}
@@ -7,3 +7,4 @@ export interface Alias {
7
7
  element: string;
8
8
  };
9
9
  }
10
+ //# sourceMappingURL=alias.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alias.interface.d.ts","sourceRoot":"","sources":["../../../src/lib/alias.interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;CAClD"}
@@ -11,3 +11,4 @@ export declare const generateElementFromPins: (pinsSettings: PinsSettings, paren
11
11
  }) => Promise<Element | void>;
12
12
  export declare const preparePinsSettings: (settings: PinsSettings, context: any) => PinsSettings;
13
13
  export {};
14
+ //# sourceMappingURL=engine.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"engine.d.ts","sourceRoot":"","sources":["../../../src/lib/engine.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAOzD,KAAK,UAAU,GAAG,UAAU,GAAG,WAAW,GAAG,OAAO,GAAG,QAAQ,CAAC;AAmBhE,eAAO,MAAM,MAAM;eACN,UAAU,SAAS,GAAG;iBAGpB,MAAM,QAAQ,MAAM,WAAW,MAAM,WAAW,GAAG,SAAS,GAAG;CAE7E,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,OAAO,GAAG,EAAE,SAAS,GAAG,QAkCrD,CAAC;AAoGF,eAAO,MAAM,eAAe,GAC1B,kBAAkB,YAAY,EAAE,EAChC,SAAS,GAAG,EACZ,aAAa,KACZ,OAAO,CAAC,GAAG,CAuBb,CAAC;AAEF,eAAO,MAAM,uBAAuB,GAClC,cAAc,YAAY,EAC1B,QAAQ,OAAO,EACf,SAAS,GAAG,EACZ,WAAU,QAA4E,EACtF;;CAA0B,KACzB,OAAO,CAAC,OAAO,GAAG,IAAI,CAyFxB,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAAI,UAAU,YAAY,EAAE,SAAS,GAAG,KAAG,YAkB1E,CAAC"}
@@ -13,3 +13,4 @@ export interface PinsSettings {
13
13
  [key: string]: PinsSettings[];
14
14
  };
15
15
  }
16
+ //# sourceMappingURL=pins-settings.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pins-settings.interface.d.ts","sourceRoot":"","sources":["../../../src/lib/pins-settings.interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAC;IACpC,UAAU,CAAC,EAAE;QACX,EAAE,CAAC,EAAE,OAAO,CAAC;QACb,IAAI,CAAC,EAAE,GAAG,EAAE,CAAC;KACd,CAAC;IACF,IAAI,CAAC,EAAE,YAAY,EAAE,CAAC;IACtB,MAAM,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,YAAY,EAAE,CAAA;KAAE,CAAC;CAC5C"}
package/package.json CHANGED
@@ -1,13 +1,29 @@
1
1
  {
2
2
  "name": "@digipair/engine",
3
- "version": "0.92.2",
3
+ "version": "0.93.0-0",
4
+ "main": "./dist/index.cjs.js",
5
+ "module": "./dist/index.esm.js",
6
+ "types": "./dist/index.d.ts",
4
7
  "keywords": [
5
8
  "digipair",
6
9
  "web",
7
- "service"
10
+ "service",
11
+ "util"
8
12
  ],
9
- "dependencies": {},
10
- "typings": "./index.d.ts",
11
- "main": "./index.cjs.js",
12
- "module": "./index.esm.js"
13
- }
13
+ "exports": {
14
+ "./package.json": "./package.json",
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "import": "./dist/index.esm.js",
18
+ "default": "./dist/index.cjs.js"
19
+ }
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "!**/*.tsbuildinfo"
24
+ ],
25
+ "nx": {
26
+ "name": "engine"
27
+ },
28
+ "dependencies": {}
29
+ }