@itwin/appui-abstract 3.4.0-dev.9 → 3.4.0

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 +47 -1
  2. package/package.json +10 -7
package/CHANGELOG.md CHANGED
@@ -1,6 +1,52 @@
1
1
  # Change Log - @itwin/appui-abstract
2
2
 
3
- This log was last generated on Tue, 09 Aug 2022 15:52:41 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 13 Oct 2022 20:24:47 GMT and should not be manually modified.
4
+
5
+ ## 3.4.0
6
+ Thu, 13 Oct 2022 20:24:47 GMT
7
+
8
+ ### Updates
9
+
10
+ - Updated Node types declaration to support latest v16
11
+
12
+ ## 3.3.5
13
+ Tue, 27 Sep 2022 11:50:59 GMT
14
+
15
+ _Version update only_
16
+
17
+ ## 3.3.4
18
+ Thu, 08 Sep 2022 19:00:04 GMT
19
+
20
+ _Version update only_
21
+
22
+ ## 3.3.3
23
+ Tue, 06 Sep 2022 20:54:19 GMT
24
+
25
+ _Version update only_
26
+
27
+ ## 3.3.2
28
+ Thu, 01 Sep 2022 14:37:22 GMT
29
+
30
+ _Version update only_
31
+
32
+ ## 3.3.1
33
+ Fri, 26 Aug 2022 15:40:02 GMT
34
+
35
+ _Version update only_
36
+
37
+ ## 3.3.0
38
+ Thu, 18 Aug 2022 19:08:01 GMT
39
+
40
+ ### Updates
41
+
42
+ - upgrade mocha to version 10.0.0
43
+ - Do not filter calls to provideBackstageItems by stage criteria set when provider is registered.
44
+ - Add hideWithUiWhenFloating prop to widgets so that an app can opt into hiding specific floating widgets when the UI automatically hides.
45
+
46
+ ## 3.2.9
47
+ Fri, 26 Aug 2022 14:21:40 GMT
48
+
49
+ _Version update only_
4
50
 
5
51
  ## 3.2.8
6
52
  Tue, 09 Aug 2022 15:52:41 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/appui-abstract",
3
- "version": "3.4.0-dev.9",
3
+ "version": "3.4.0",
4
4
  "description": "iTwin.js UI abstractions",
5
5
  "main": "lib/cjs/appui-abstract.js",
6
6
  "module": "lib/esm/appui-abstract.js",
@@ -21,22 +21,22 @@
21
21
  "url": "http://www.bentley.com"
22
22
  },
23
23
  "peerDependencies": {
24
- "@itwin/core-bentley": "^3.4.0-dev.9"
24
+ "@itwin/core-bentley": "^3.4.0"
25
25
  },
26
26
  "//devDependencies": [
27
27
  "NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install",
28
28
  "NOTE: All tools used by scripts in this package must be listed as devDependencies"
29
29
  ],
30
30
  "devDependencies": {
31
- "@itwin/build-tools": "3.4.0-dev.9",
32
- "@itwin/core-bentley": "3.4.0-dev.9",
33
- "@itwin/eslint-plugin": "3.4.0-dev.9",
31
+ "@itwin/build-tools": "3.4.0",
32
+ "@itwin/core-bentley": "3.4.0",
33
+ "@itwin/eslint-plugin": "3.4.0",
34
34
  "@types/chai": "4.3.1",
35
35
  "@types/chai-as-promised": "^7",
36
36
  "@types/chai-jest-snapshot": "^1.3.0",
37
37
  "@types/chai-spies": "^1.0.0",
38
38
  "@types/mocha": "^8.2.2",
39
- "@types/node": "16.11.7",
39
+ "@types/node": "16.11.59",
40
40
  "@types/sinon": "^9.0.0",
41
41
  "@types/sinon-chai": "^3.2.0",
42
42
  "chai": "^4.1.2",
@@ -86,7 +86,10 @@
86
86
  "extends": [
87
87
  "plugin:@itwin/itwinjs-recommended",
88
88
  "plugin:@itwin/jsdoc"
89
- ]
89
+ ],
90
+ "rules": {
91
+ "max-statements-per-line": "off"
92
+ }
90
93
  },
91
94
  "scripts": {
92
95
  "build": "npm run -s build:cjs",