Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated .npmrc to fix following error #157

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .changeset/rare-peaches-double.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
"@itwin/changed-elements-react": minor
---

- Added experimental React component for the new Named Version selector. Its name or API is not stable yet, but you can try it out the following way.

```TypeScript
import { NamedVersionSelectorWidget } from "@itwin/changed-elements-react/experimental";

[...]

return (
<VersionCompareContext iModelsClient={iModelsClient}>
<NamedVersionSelectorWidget iModel={iModel} />
</VersionCompareContext>
);
}
```
2 changes: 2 additions & 0 deletions .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_PUBLISH_ITWIN }}
GIT_AUTHOR_NAME: imodeljs-admin
GIT_AUTHOR_EMAIL: [email protected]
GIT_COMMITTER_NAME: imodeljs-admin
GIT_COMMITTER_EMAIL: [email protected]

- name: Log Changesets Outputs
run: |
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@bentley:registry=https://registry.npmjs.org/
@itwin:registry=https://registry.npmjs.org/
registry=https://registry.npmjs.org/
engine-strict=true
21 changes: 0 additions & 21 deletions packages/changed-elements-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,5 @@
# Changelog

## 0.12.0

### Minor Changes

#### [0.12.0](https://github.com/iTwin/changed-elements-react/tree/v0.12.0/packages/changed-elements-react) - 2025-01-21

- Added experimental React component for the new Named Version selector. Its name or API is not stable yet, but you can try it out the following way.

```TypeScript
import { NamedVersionSelectorWidget } from "@itwin/changed-elements-react/experimental";

[...]

return (
<VersionCompareContext iModelsClient={iModelsClient}>
<NamedVersionSelectorWidget iModel={iModel} />
</VersionCompareContext>
);
}
```

## 0.11.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/changed-elements-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/changed-elements-react",
"version": "0.12.0",
"version": "0.11.4",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
Loading