@alterior/common 3.2.0 → 3.4.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.
package/dist/presentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Constructor } from "./constructor";
|
|
2
|
-
export declare const EXPOSE_PROTOTYPE_STORAGE_KEY = "@
|
|
2
|
+
export declare const EXPOSE_PROTOTYPE_STORAGE_KEY = "@alterior/common:Expose";
|
|
3
3
|
export interface PresentedPropertyOptions {
|
|
4
4
|
useProperty?: string;
|
|
5
5
|
class?: Constructor<Presentation<any>>;
|
package/dist/presentation.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.Expose = exports.Presentation = exports.PresentationSchema = exports.EXPOSE_PROTOTYPE_STORAGE_KEY = void 0;
|
|
5
5
|
const clone_1 = require("./clone");
|
|
6
|
-
exports.EXPOSE_PROTOTYPE_STORAGE_KEY = '@
|
|
6
|
+
exports.EXPOSE_PROTOTYPE_STORAGE_KEY = '@alterior/common:Expose';
|
|
7
7
|
class PresentationSchema {
|
|
8
8
|
constructor(type) {
|
|
9
9
|
this.type = type;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Constructor } from "./constructor";
|
|
2
|
-
export declare const EXPOSE_PROTOTYPE_STORAGE_KEY = "@
|
|
2
|
+
export declare const EXPOSE_PROTOTYPE_STORAGE_KEY = "@alterior/common:Expose";
|
|
3
3
|
export interface PresentedPropertyOptions {
|
|
4
4
|
useProperty?: string;
|
|
5
5
|
class?: Constructor<Presentation<any>>;
|
package/dist.esm/presentation.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="reflect-metadata" />
|
|
2
2
|
import { clone } from "./clone";
|
|
3
|
-
export const EXPOSE_PROTOTYPE_STORAGE_KEY = '@
|
|
3
|
+
export const EXPOSE_PROTOTYPE_STORAGE_KEY = '@alterior/common:Expose';
|
|
4
4
|
export class PresentationSchema {
|
|
5
5
|
constructor(type) {
|
|
6
6
|
this.type = type;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alterior/common",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "Useful utilities for Typescript apps",
|
|
5
5
|
"author": "The Alterior Project (https://github.com/alterior-mvc)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"reflect-metadata": "^0.1.13"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "33b7ce9fa0c1cd53a4a7b46f948be3ffa3e54132"
|
|
47
47
|
}
|
package/src/presentation.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { Constructor } from "./constructor";
|
|
4
4
|
import { clone } from "./clone";
|
|
5
5
|
|
|
6
|
-
export const EXPOSE_PROTOTYPE_STORAGE_KEY = '@
|
|
6
|
+
export const EXPOSE_PROTOTYPE_STORAGE_KEY = '@alterior/common:Expose';
|
|
7
7
|
|
|
8
8
|
export interface PresentedPropertyOptions {
|
|
9
9
|
useProperty? : string;
|