@itwin/core-markup 3.0.0-dev.72
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/CHANGELOG.md +657 -0
- package/LICENSE.md +9 -0
- package/README.md +11 -0
- package/lib/Markup.d.ts +312 -0
- package/lib/Markup.d.ts.map +1 -0
- package/lib/Markup.js +409 -0
- package/lib/Markup.js.map +1 -0
- package/lib/MarkupTool.d.ts +39 -0
- package/lib/MarkupTool.d.ts.map +1 -0
- package/lib/MarkupTool.js +82 -0
- package/lib/MarkupTool.js.map +1 -0
- package/lib/RedlineTool.d.ts +146 -0
- package/lib/RedlineTool.d.ts.map +1 -0
- package/lib/RedlineTool.js +498 -0
- package/lib/RedlineTool.js.map +1 -0
- package/lib/SelectTool.d.ts +127 -0
- package/lib/SelectTool.d.ts.map +1 -0
- package/lib/SelectTool.js +718 -0
- package/lib/SelectTool.js.map +1 -0
- package/lib/SvgJsExt.d.ts +86 -0
- package/lib/SvgJsExt.d.ts.map +1 -0
- package/lib/SvgJsExt.js +186 -0
- package/lib/SvgJsExt.js.map +1 -0
- package/lib/TextEdit.d.ts +44 -0
- package/lib/TextEdit.d.ts.map +1 -0
- package/lib/TextEdit.js +185 -0
- package/lib/TextEdit.js.map +1 -0
- package/lib/Undo.d.ts +47 -0
- package/lib/Undo.d.ts.map +1 -0
- package/lib/Undo.js +142 -0
- package/lib/Undo.js.map +1 -0
- package/lib/core-markup.d.ts +19 -0
- package/lib/core-markup.d.ts.map +1 -0
- package/lib/core-markup.js +35 -0
- package/lib/core-markup.js.map +1 -0
- package/lib/public/Markup/rotate.png +0 -0
- package/lib/public/locales/en/MarkupTools.json +98 -0
- package/package.json +81 -0
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@itwin/core-markup",
|
|
3
|
+
"version": "3.0.0-dev.72",
|
|
4
|
+
"description": "iModel.js markup package",
|
|
5
|
+
"main": "lib/core-markup.js",
|
|
6
|
+
"typings": "lib/core-markup",
|
|
7
|
+
"imodeljsSharedLibrary": true,
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/imodeljs/imodeljs/tree/master/core/markup"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"Bentley",
|
|
15
|
+
"iModel",
|
|
16
|
+
"digital-twin",
|
|
17
|
+
"iTwin",
|
|
18
|
+
"SVG",
|
|
19
|
+
"Markup"
|
|
20
|
+
],
|
|
21
|
+
"author": {
|
|
22
|
+
"name": "Bentley Systems, Inc.",
|
|
23
|
+
"url": "http://www.bentley.com"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@svgdotjs/svg.js": "3.0.13"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@itwin/core-bentley": "^3.0.0-dev.72",
|
|
30
|
+
"@itwin/core-geometry": "^3.0.0-dev.72",
|
|
31
|
+
"@itwin/core-common": "^3.0.0-dev.72",
|
|
32
|
+
"@itwin/core-frontend": "^3.0.0-dev.72",
|
|
33
|
+
"@itwin/core-i18n": "^3.0.0-dev.72"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@itwin/core-bentley": "3.0.0-dev.72",
|
|
37
|
+
"@itwin/build-tools": "3.0.0-dev.72",
|
|
38
|
+
"@itwin/certa": "3.0.0-dev.72",
|
|
39
|
+
"@itwin/eslint-plugin": "3.0.0-dev.72",
|
|
40
|
+
"@itwin/core-geometry": "3.0.0-dev.72",
|
|
41
|
+
"@itwin/core-common": "3.0.0-dev.72",
|
|
42
|
+
"@itwin/core-frontend": "3.0.0-dev.72",
|
|
43
|
+
"@itwin/core-i18n": "3.0.0-dev.72",
|
|
44
|
+
"@types/chai": "^4.1.4",
|
|
45
|
+
"@types/mocha": "^8.2.2",
|
|
46
|
+
"@types/node": "14.14.31",
|
|
47
|
+
"chai": "^4.1.2",
|
|
48
|
+
"cpx": "^1.5.0",
|
|
49
|
+
"eslint": "^7.11.0",
|
|
50
|
+
"glob": "^7.1.2",
|
|
51
|
+
"mocha": "^8.3.2",
|
|
52
|
+
"nyc": "^15.1.0",
|
|
53
|
+
"rimraf": "^3.0.2",
|
|
54
|
+
"source-map-loader": "^1.0.0",
|
|
55
|
+
"typescript": "~4.4.0",
|
|
56
|
+
"webpack": "4.42.0"
|
|
57
|
+
},
|
|
58
|
+
"nyc": {
|
|
59
|
+
"extends": "./node_modules/@itwin/build-tools/.nycrc"
|
|
60
|
+
},
|
|
61
|
+
"eslintConfig": {
|
|
62
|
+
"plugins": [
|
|
63
|
+
"@itwin"
|
|
64
|
+
],
|
|
65
|
+
"extends": "plugin:@itwin/itwinjs-recommended"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"compile": "npm run build",
|
|
69
|
+
"build": "npm run copy:assets && npm run pseudolocalize && tsc 1>&2",
|
|
70
|
+
"clean": "rimraf lib .rush/temp/package-deps*.json",
|
|
71
|
+
"copy:assets": "cpx \"./src/public/**/*\" ./lib/public",
|
|
72
|
+
"cover": "npm test -- --cover",
|
|
73
|
+
"docs": "betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-markup/file.json --tsIndexFile=./core-markup.ts --onlyJson",
|
|
74
|
+
"extract-api": "betools extract-api --entry=core-markup",
|
|
75
|
+
"lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
|
|
76
|
+
"pseudolocalize": "betools pseudolocalize --englishDir ./src/public/locales/en --out ./lib/public/locales/en-PSEUDO",
|
|
77
|
+
"test": "npm run webpackTests && certa -r chrome",
|
|
78
|
+
"test:debug": "certa -r chrome --debug",
|
|
79
|
+
"webpackTests": "webpack --config ./src/test/utils/webpack.config.js 1>&2"
|
|
80
|
+
}
|
|
81
|
+
}
|