entropic-bond 1.53.12 → 1.53.14
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.
|
@@ -55,7 +55,7 @@ export declare class Persistent {
|
|
|
55
55
|
* @param factory the constructor of the registered class
|
|
56
56
|
* @param annotation an annotation associated with the class
|
|
57
57
|
*/
|
|
58
|
-
static registerFactory(className: string, factory: PersistentConstructor, annotation?: unknown): void;
|
|
58
|
+
static registerFactory(className: string, factory: PersistentConstructor, annotation?: unknown, isLegacy?: boolean): void;
|
|
59
59
|
/**
|
|
60
60
|
* Returns the constructor of a registered class
|
|
61
61
|
* @param className the name of the class to be retrieved
|
|
@@ -74,6 +74,13 @@ export declare class Persistent {
|
|
|
74
74
|
* @see classFactory
|
|
75
75
|
*/
|
|
76
76
|
static registeredClasses(): string[];
|
|
77
|
+
/**
|
|
78
|
+
* Returns the names of all registered classes, including legacy names
|
|
79
|
+
* @returns the names of all registered classes, including legacy names
|
|
80
|
+
* @see registerFactory
|
|
81
|
+
* @see classFactory
|
|
82
|
+
*/
|
|
83
|
+
static registeredClassesAndLegacyNames(): string[];
|
|
77
84
|
/**
|
|
78
85
|
* Returns the names of all registered classes that extend a given class
|
|
79
86
|
* @param derivedFrom the class to be extended
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "entropic-bond",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.53.
|
|
4
|
+
"version": "1.53.14",
|
|
5
5
|
"description": "Tidy up your messy components",
|
|
6
6
|
"main": "./lib/entropic-bond.umd.cjs",
|
|
7
7
|
"module": "./lib/entropic-bond.js",
|
|
@@ -56,16 +56,16 @@
|
|
|
56
56
|
"@semantic-release/changelog": "^6.0.3",
|
|
57
57
|
"@semantic-release/git": "^10.0.1",
|
|
58
58
|
"@type-challenges/utils": "^0.1.1",
|
|
59
|
-
"@types/node": "^
|
|
59
|
+
"@types/node": "^24.0.3",
|
|
60
60
|
"@types/uuid": "^10.0.0",
|
|
61
61
|
"git-branch-is": "^4.0.0",
|
|
62
62
|
"husky": "^9.1.7",
|
|
63
|
-
"semantic-release": "^24.2.
|
|
64
|
-
"typedoc": "^0.
|
|
65
|
-
"typedoc-plugin-markdown": "^4.
|
|
66
|
-
"typescript": "^5.8.
|
|
67
|
-
"vite-plugin-dts": "^4.5.
|
|
68
|
-
"vitest": "^3.
|
|
63
|
+
"semantic-release": "^24.2.5",
|
|
64
|
+
"typedoc": "^0.28.5",
|
|
65
|
+
"typedoc-plugin-markdown": "^4.7.0",
|
|
66
|
+
"typescript": "^5.8.3",
|
|
67
|
+
"vite-plugin-dts": "^4.5.4",
|
|
68
|
+
"vitest": "^3.2.4"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"uuid": "^11.1.0"
|