@itwin/appui-abstract 3.1.0-dev.24 → 3.1.0-dev.28
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 +33 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
# Change Log - @itwin/appui-abstract
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Mon, 24 Jan 2022 14:00:52 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 3.0.0
|
|
6
|
+
Mon, 24 Jan 2022 14:00:52 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- Add onUnregister function to UiItemsProviderInterface to allow provider to do cleanup.
|
|
11
|
+
- Upgrade target to ES2019 and deliver both a CommonJs and ESModule version of package
|
|
12
|
+
- rename to @itwin/appui-abstract
|
|
13
|
+
- remove ClientRequestContext and its subclasses
|
|
14
|
+
- Replace usage of I18N with generic Localization interface.
|
|
15
|
+
- Remove UiItemsArbiter.
|
|
16
|
+
- remove ClientRequestContext.current
|
|
17
|
+
- Add non-static class to handle UiSync messages.
|
|
18
|
+
- Refactored part of AccuDraw UI & Providing AccuDraw UI documentation
|
|
19
|
+
- Create empty frontstage and UiItemsProviders to populate it and update how ContentGroups are defined.
|
|
20
|
+
- Deprecate and promote apis
|
|
21
|
+
- Deprecate obsolete APIs. Publish beta APIs from last release.
|
|
22
|
+
- Deprecate UI 1.0 props
|
|
23
|
+
- Add comment about isPressed property.
|
|
24
|
+
- Allow widgets supplied by a UiItemsProvider to specify a default state of floating.
|
|
25
|
+
- Incorporating iTwinUI-CSS and iTwinUI-React into iModel.js
|
|
26
|
+
- Rename ui directories to match new package names.
|
|
27
|
+
- Fix bug that sets the icon on MessageBox.NoSymbol the Success icon.
|
|
28
|
+
- Update to React 17
|
|
29
|
+
- Created imodel-components folder & package and moved color, lineweight, navigationaids, quantity, timeline & viewport. Deprecated MessageSeverity in ui-core & added it ui-abstract. Added MessagePresenter interface to ui-abstract.
|
|
30
|
+
- UiFramework and UiIModelComponent initialize method no longer take localization argument, uses IModelApp.localization internally.
|
|
31
|
+
- Remove old aribiter related functions that are not used.
|
|
32
|
+
- Add BaseUiItemsProvider class
|
|
33
|
+
- Replaced ui-core Slider with one from iTwinUi-react.
|
|
34
|
+
- Add support for widget tab icons in UI-2
|
|
4
35
|
|
|
5
36
|
## 2.19.28
|
|
6
37
|
Wed, 12 Jan 2022 14:52:38 GMT
|
|
@@ -662,7 +693,7 @@ Wed, 06 May 2020 13:17:49 GMT
|
|
|
662
693
|
- In source documentation. Some learning docs & API changes.
|
|
663
694
|
- TOC for UI 2.0 Docs, @alpha to @beta, Components Examples
|
|
664
695
|
- Started ui-components Learning doc section
|
|
665
|
-
- Update doc tags for automatic UI creation
|
|
696
|
+
- Update doc tags for automatic UI creation
|
|
666
697
|
- Refactor to remove duplicate ComponentGenerator instantiation. Rename files and components to remove React reference.
|
|
667
698
|
- Update auto-generated dialog items to work with the Tool Settings Bar.
|
|
668
699
|
- Add ConditionalBoolean support for isHidden and isDisabled properties.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/appui-abstract",
|
|
3
|
-
"version": "3.1.0-dev.
|
|
3
|
+
"version": "3.1.0-dev.28",
|
|
4
4
|
"description": "iTwin.js UI abstractions",
|
|
5
5
|
"main": "lib/cjs/appui-abstract.js",
|
|
6
6
|
"module": "lib/esm/appui-abstract.js",
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
"url": "http://www.bentley.com"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@itwin/core-bentley": "^3.1.0-dev.
|
|
25
|
+
"@itwin/core-bentley": "^3.1.0-dev.28"
|
|
26
26
|
},
|
|
27
27
|
"//devDependencies": [
|
|
28
28
|
"NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install",
|
|
29
29
|
"NOTE: All tools used by scripts in this package must be listed as devDependencies"
|
|
30
30
|
],
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@itwin/build-tools": "3.1.0-dev.
|
|
33
|
-
"@itwin/core-bentley": "3.1.0-dev.
|
|
34
|
-
"@itwin/eslint-plugin": "3.1.0-dev.
|
|
32
|
+
"@itwin/build-tools": "3.1.0-dev.28",
|
|
33
|
+
"@itwin/core-bentley": "3.1.0-dev.28",
|
|
34
|
+
"@itwin/eslint-plugin": "3.1.0-dev.28",
|
|
35
35
|
"@types/chai": "^4.1.4",
|
|
36
36
|
"@types/chai-as-promised": "^7",
|
|
37
37
|
"@types/chai-jest-snapshot": "^1.3.0",
|