@itwin/appui-abstract 4.1.0-dev.0 → 4.1.0-dev.12

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -1
  2. package/package.json +15 -36
package/CHANGELOG.md CHANGED
@@ -1,6 +1,25 @@
1
1
  # Change Log - @itwin/appui-abstract
2
2
 
3
- This log was last generated on Tue, 25 Apr 2023 17:50:35 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 22 May 2023 15:34:14 GMT and should not be manually modified.
4
+
5
+ ## 4.0.0
6
+ Mon, 22 May 2023 15:34:14 GMT
7
+
8
+ ### Updates
9
+
10
+ - Update to eslint@8
11
+ - Promote `PropertyDescription.hideCompositePropertyLabel` to `@public`
12
+ - Update @deprecated comments.
13
+
14
+ ## 3.7.6
15
+ Mon, 15 May 2023 18:23:40 GMT
16
+
17
+ _Version update only_
18
+
19
+ ## 3.7.5
20
+ Thu, 04 May 2023 19:43:18 GMT
21
+
22
+ _Version update only_
4
23
 
5
24
  ## 3.7.4
6
25
  Tue, 25 Apr 2023 17:50:35 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/appui-abstract",
3
- "version": "4.1.0-dev.0",
3
+ "version": "4.1.0-dev.12",
4
4
  "description": "iTwin.js UI abstractions",
5
5
  "main": "lib/cjs/appui-abstract.js",
6
6
  "module": "lib/esm/appui-abstract.js",
@@ -22,7 +22,7 @@
22
22
  "url": "http://www.bentley.com"
23
23
  },
24
24
  "peerDependencies": {
25
- "@itwin/core-bentley": "^4.1.0-dev.0"
25
+ "@itwin/core-bentley": "^4.1.0-dev.12"
26
26
  },
27
27
  "//devDependencies": [
28
28
  "NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install",
@@ -31,55 +31,33 @@
31
31
  "devDependencies": {
32
32
  "@itwin/eslint-plugin": "^4.0.0-dev.33",
33
33
  "@types/chai": "4.3.1",
34
- "@types/chai-as-promised": "^7",
35
- "@types/chai-jest-snapshot": "^1.3.0",
36
- "@types/chai-spies": "^1.0.0",
37
34
  "@types/mocha": "^8.2.2",
38
35
  "@types/node": "^18.11.5",
39
36
  "@types/sinon": "^9.0.0",
40
37
  "@types/sinon-chai": "^3.2.0",
38
+ "babel-loader": "~8.2.5",
39
+ "babel-plugin-istanbul": "~6.1.1",
41
40
  "chai": "^4.1.2",
42
- "chai-as-promised": "^7",
43
- "chai-jest-snapshot": "^2.0.0",
44
- "chai-spies": "1.0.0",
45
41
  "cpx2": "^3.0.0",
46
42
  "eslint": "^8.36.0",
43
+ "glob": "^7.1.2",
47
44
  "ignore-styles": "^5.0.1",
48
- "jsdom": "^19.0.0",
49
- "jsdom-global": "3.0.2",
50
45
  "mocha": "^10.0.0",
51
- "nyc": "^15.1.0",
52
46
  "raf": "^3.4.0",
53
47
  "rimraf": "^3.0.2",
54
48
  "sinon": "^9.0.2",
55
49
  "sinon-chai": "^3.2.0",
56
- "ts-node": "^10.8.2",
50
+ "source-map-loader": "^4.0.0",
57
51
  "typescript": "~5.0.2",
58
- "xmlhttprequest": "^1.8.0",
59
- "@itwin/build-tools": "4.1.0-dev.0",
60
- "@itwin/core-bentley": "4.1.0-dev.0"
52
+ "webpack": "^5.76.0",
53
+ "@itwin/build-tools": "4.1.0-dev.12",
54
+ "@itwin/core-bentley": "4.1.0-dev.12",
55
+ "@itwin/certa": "4.1.0-dev.12"
61
56
  },
62
57
  "//dependencies": [
63
58
  "NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API",
64
59
  "NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"
65
60
  ],
66
- "dependencies": {
67
- "@bentley/icons-generic-webfont": "^1.0.15"
68
- },
69
- "nyc": {
70
- "extends": "./node_modules/@itwin/build-tools/.nycrc",
71
- "require": [
72
- "ignore-styles",
73
- "jsdom-global/register",
74
- "source-map-support/register",
75
- "ts-node/register"
76
- ],
77
- "check-coverage": true,
78
- "statements": 100,
79
- "branches": 100,
80
- "functions": 100,
81
- "lines": 100
82
- },
83
61
  "eslintConfig": {
84
62
  "plugins": [
85
63
  "@itwin"
@@ -109,11 +87,12 @@
109
87
  "copy:locale": "cpx \"./public/**/*\" ./lib/public",
110
88
  "pseudolocalize": "betools pseudolocalize --englishDir ./public/locales/en --out ./public/locales/en-PSEUDO",
111
89
  "clean": "rimraf lib .rush/temp/package-deps*.json",
112
- "cover": "nyc npm -s test",
90
+ "cover": "npm -s test",
113
91
  "docs": "betools docs --includes=../../generated-docs/extract --json=../../generated-docs/ui/appui-abstract/file.json --tsIndexFile=./appui-abstract.ts --onlyJson",
114
- "lint": "eslint -f visualstudio \"./src/**/*.{ts,tsx}\" 1>&2",
92
+ "lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
115
93
  "extract-api": "betools extract-api --entry=appui-abstract",
116
- "test": "mocha --config ../.mocharc-noreact.json \"./lib/cjs/test/**/*.test.js\"",
117
- "test:watch": "npm -s test -- --reporter min --watch-extensions ts --watch"
94
+ "test": "npm run -s webpackTests && certa -r chrome",
95
+ "test:watch": "npm -s test -- --reporter min --watch-extensions ts --watch",
96
+ "webpackTests": "webpack --config ./src/test/utils/webpack.config.js 1>&2"
118
97
  }
119
98
  }