@contrail/documents 1.0.104 → 1.0.105
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/README.md +1 -1
- package/lib/components/components.d.ts +269 -269
- package/lib/components/components.js +92 -92
- package/lib/components/index.d.ts +1 -1
- package/lib/components/index.js +17 -17
- package/lib/document-action.d.ts +7 -7
- package/lib/document-action.js +10 -10
- package/lib/document-element-component-size-handler.d.ts +4 -4
- package/lib/document-element-component-size-handler.js +55 -55
- package/lib/document-element-factory.d.ts +12 -12
- package/lib/document-element-factory.js +77 -77
- package/lib/document-element-property-binding-handler.d.ts +6 -6
- package/lib/document-element-property-binding-handler.js +71 -71
- package/lib/index.d.ts +8 -8
- package/lib/index.js +24 -24
- package/lib/types/common.d.ts +84 -82
- package/lib/types/common.js +8 -8
- package/lib/types/data-object.d.ts +6 -6
- package/lib/types/data-object.js +2 -2
- package/lib/types/document-change.d.ts +17 -17
- package/lib/types/document-change.js +12 -12
- package/lib/types/document-element-event.d.ts +24 -24
- package/lib/types/document-element-event.js +2 -2
- package/lib/types/document-element-holder.d.ts +8 -8
- package/lib/types/document-element-holder.js +2 -2
- package/lib/types/document-element.d.ts +44 -44
- package/lib/types/document-element.js +2 -2
- package/lib/types/document-navigation-event.d.ts +5 -5
- package/lib/types/document-navigation-event.js +2 -2
- package/lib/types/document.d.ts +24 -24
- package/lib/types/document.js +2 -2
- package/lib/types/element-transformation.d.ts +18 -18
- package/lib/types/element-transformation.js +2 -2
- package/lib/types/index.d.ts +9 -9
- package/lib/types/index.js +25 -25
- package/lib/util/dynamic-text/dynamic-text-util.d.ts +14 -14
- package/lib/util/dynamic-text/dynamic-text-util.js +58 -58
- package/lib/util/measure-text/measure-text.d.ts +5 -5
- package/lib/util/measure-text/measure-text.js +53 -53
- package/lib/util/measure-text/widths-map.d.ts +1651 -1651
- package/lib/util/measure-text/widths-map.js +1654 -1654
- package/package.json +46 -46
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@contrail/documents",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Documents library for contrail platform",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"types": "lib/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "tsc",
|
|
9
|
-
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
|
|
10
|
-
"lint": "tslint -p tsconfig.json",
|
|
11
|
-
"test": "jest"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [],
|
|
14
|
-
"author": "",
|
|
15
|
-
"license": "ISC",
|
|
16
|
-
"devDependencies": {
|
|
17
|
-
"@types/jest": "^29.5.2",
|
|
18
|
-
"jest": "^29.5.0",
|
|
19
|
-
"nanoid": "^3.2.0",
|
|
20
|
-
"prettier": "^1.19.1",
|
|
21
|
-
"ts-jest": "^29.1.1",
|
|
22
|
-
"tslint": "^5.11.0",
|
|
23
|
-
"tslint-config-prettier": "^1.18.0",
|
|
24
|
-
"typescript": "^4.0.0"
|
|
25
|
-
},
|
|
26
|
-
"jest": {
|
|
27
|
-
"moduleFileExtensions": [
|
|
28
|
-
"js",
|
|
29
|
-
"json",
|
|
30
|
-
"ts"
|
|
31
|
-
],
|
|
32
|
-
"rootDir": "src",
|
|
33
|
-
"testRegex": ".spec.ts$",
|
|
34
|
-
"transform": {
|
|
35
|
-
"^.+\\.(t|j)s$": "ts-jest"
|
|
36
|
-
},
|
|
37
|
-
"coverageDirectory": "../coverage",
|
|
38
|
-
"testEnvironment": "node"
|
|
39
|
-
},
|
|
40
|
-
"dependencies": {
|
|
41
|
-
"@contrail/actions": "^1.0.14",
|
|
42
|
-
"@contrail/types": "^3.0.71",
|
|
43
|
-
"@contrail/util": "^1.0.19",
|
|
44
|
-
"reflect-metadata": "^0.1.13"
|
|
45
|
-
}
|
|
46
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@contrail/documents",
|
|
3
|
+
"version": "1.0.105",
|
|
4
|
+
"description": "Documents library for contrail platform",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
|
|
10
|
+
"lint": "tslint -p tsconfig.json",
|
|
11
|
+
"test": "jest"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [],
|
|
14
|
+
"author": "",
|
|
15
|
+
"license": "ISC",
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@types/jest": "^29.5.2",
|
|
18
|
+
"jest": "^29.5.0",
|
|
19
|
+
"nanoid": "^3.2.0",
|
|
20
|
+
"prettier": "^1.19.1",
|
|
21
|
+
"ts-jest": "^29.1.1",
|
|
22
|
+
"tslint": "^5.11.0",
|
|
23
|
+
"tslint-config-prettier": "^1.18.0",
|
|
24
|
+
"typescript": "^4.0.0"
|
|
25
|
+
},
|
|
26
|
+
"jest": {
|
|
27
|
+
"moduleFileExtensions": [
|
|
28
|
+
"js",
|
|
29
|
+
"json",
|
|
30
|
+
"ts"
|
|
31
|
+
],
|
|
32
|
+
"rootDir": "src",
|
|
33
|
+
"testRegex": ".spec.ts$",
|
|
34
|
+
"transform": {
|
|
35
|
+
"^.+\\.(t|j)s$": "ts-jest"
|
|
36
|
+
},
|
|
37
|
+
"coverageDirectory": "../coverage",
|
|
38
|
+
"testEnvironment": "node"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@contrail/actions": "^1.0.14",
|
|
42
|
+
"@contrail/types": "^3.0.71",
|
|
43
|
+
"@contrail/util": "^1.0.19",
|
|
44
|
+
"reflect-metadata": "^0.1.13"
|
|
45
|
+
}
|
|
46
|
+
}
|