@fluid-experimental/property-properties 2.0.0-dev.5.2.0.169897 → 2.0.0-dev.5.3.2.178189
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 +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/propertyFactory.d.ts.map +1 -1
- package/dist/propertyFactory.js +6 -0
- package/dist/propertyFactory.js.map +1 -1
- package/dist/test/tsconfig.tsbuildinfo +1 -1
- package/lib/index.d.ts +2 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +2 -1
- package/lib/index.js.map +1 -1
- package/lib/propertyFactory.d.ts.map +1 -1
- package/lib/propertyFactory.js +6 -0
- package/lib/propertyFactory.js.map +1 -1
- package/package.json +6 -5
- package/src/index.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/property-properties",
|
|
3
|
-
"version": "2.0.0-dev.5.2.
|
|
3
|
+
"version": "2.0.0-dev.5.3.2.178189",
|
|
4
4
|
"description": "definitions of properties",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -39,19 +39,20 @@
|
|
|
39
39
|
"temp-directory": "nyc/.nyc_output"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@fluid-experimental/property-changeset": "2.0.0-dev.5.2.
|
|
43
|
-
"@fluid-experimental/property-common": "2.0.0-dev.5.2.
|
|
42
|
+
"@fluid-experimental/property-changeset": "2.0.0-dev.5.3.2.178189",
|
|
43
|
+
"@fluid-experimental/property-common": "2.0.0-dev.5.3.2.178189",
|
|
44
44
|
"ajv": "7.1.1",
|
|
45
45
|
"async": "^3.2.2",
|
|
46
46
|
"fastest-json-copy": "^1.0.1",
|
|
47
47
|
"lodash": "^4.17.21",
|
|
48
|
-
"semver": "^7.3
|
|
48
|
+
"semver": "^7.5.3",
|
|
49
49
|
"traverse": "0.6.6",
|
|
50
50
|
"underscore": "^1.13.6"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@fluidframework/build-common": "^1.2.0",
|
|
54
|
-
"@fluidframework/
|
|
54
|
+
"@fluidframework/build-tools": "^0.21.0",
|
|
55
|
+
"@fluidframework/mocha-test-setup": "2.0.0-dev.5.3.2.178189",
|
|
55
56
|
"@types/mocha": "^9.1.1",
|
|
56
57
|
"@types/node": "^14.18.38",
|
|
57
58
|
"chai": "^4.2.0",
|
package/src/index.d.ts
CHANGED
|
@@ -1308,6 +1308,10 @@ declare module "@fluid-experimental/property-properties" {
|
|
|
1308
1308
|
* is not known locally. The case of arrays is a a repetitive application of the scalar type.
|
|
1309
1309
|
*/
|
|
1310
1310
|
register(in_input: PropertyTemplate | object | string | any[]): void;
|
|
1311
|
+
/**
|
|
1312
|
+
* Returns the array of the names of the registered types.
|
|
1313
|
+
*/
|
|
1314
|
+
listRegisteredTypes(): string[];
|
|
1311
1315
|
/**
|
|
1312
1316
|
* Recursively parses the object of the specified type and returns the created
|
|
1313
1317
|
* array of PropertySets Templates. It does the same thing as the registerFrom()
|
|
@@ -2274,6 +2278,8 @@ declare module "@fluid-experimental/property-properties" {
|
|
|
2274
2278
|
*/
|
|
2275
2279
|
public extractDependencies(): Array<any>;
|
|
2276
2280
|
|
|
2281
|
+
public static extractDependencies(template: PropertyTemplateType): Array<any>;
|
|
2282
|
+
|
|
2277
2283
|
constants: any[];
|
|
2278
2284
|
|
|
2279
2285
|
context: string;
|