-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Property widget: Add support for AppUI 5.0 (#1161)
* Add `type: "module"` and `exports` attributes to `package.json` * esm tests * Add support for AppUI 5.x * add a workaround for e2e tests to pass
- Loading branch information
Showing
63 changed files
with
1,021 additions
and
1,632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
change/@itwin-property-grid-react-7f04df91-a24f-4a38-b10f-776f3420b782.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "minor", | ||
"comment": "Add support for AppUI 5.x", | ||
"packageName": "@itwin/property-grid-react", | ||
"email": "35135765+grigasp@users.noreply.github.com", | ||
"dependentChangeType": "patch" | ||
} |
7 changes: 7 additions & 0 deletions
7
change/@itwin-property-grid-react-a4e468fb-4055-47a6-a479-193f82ed40f1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"type": "minor", | ||
"comment": "Define `type` and `exports` attributes in `package.json`. The `exports attribute prohibits access to APIs that are not intended to be used by external consumers. The `type: \\\"module\\\"` attribute addition moves this package a step closer towards dropping CommonJS support - it's now transpiled from ESM to CommonJS instead of the opposite.", | ||
"packageName": "@itwin/property-grid-react", | ||
"email": "35135765+grigasp@users.noreply.github.com", | ||
"dependentChangeType": "patch" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
{ | ||
"require": ["raf/polyfill", "source-map-support/register", "ignore-styles"], | ||
"require": ["raf/polyfill", "ignore-styles", "lib/esm/test/setup.js"], | ||
"check-leaks": true, | ||
"timeout": "60000", | ||
"globals": ["IS_REACT_ACT_ENVIRONMENT"], | ||
"file": ["lib/cjs/test/setup.js"], | ||
"ignore": ["lib/test/coverage/**/*"], | ||
"reporter": "node_modules/@itwin/build-tools/mocha-reporter", | ||
"reporter-option": ["mochaFile=lib/test/junit_results.xml"] | ||
"spec": ["./lib/esm/test/**/*.test.js"], | ||
"exclude": ["./lib/test/coverage/**/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.