Skip to content

Commit

Permalink
chore(release): 2.0.0-beta.1 [skip ci]
Browse files Browse the repository at this point in the history
# [2.0.0-beta.1](v1.2.0-beta.2...v2.0.0-beta.1) (2024-09-26)

### Features

* add tag name as attribute when custom registered ([c140d41](c140d41))

### Performance Improvements

* refactor custom component registration config ([ec76cc7](ec76cc7))
* update dependencies ([2831c72](2831c72))

### BREAKING CHANGES

* trigger major release for theming support #37
  • Loading branch information
semantic-release-bot authored and jason-capsule42 committed Sep 30, 2024
1 parent f53c1a2 commit 3076fa9
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Semantic Release Automated Changelog

# [2.0.0-beta.1](https://github.com/AlaskaAirlines/auro-toast/compare/v1.2.0-beta.2...v2.0.0-beta.1) (2024-09-26)


### Features

* add tag name as attribute when custom registered ([c140d41](https://github.com/AlaskaAirlines/auro-toast/commit/c140d41e678179a631e69efa01fb979f03ac767c))


### Performance Improvements

* refactor custom component registration config ([ec76cc7](https://github.com/AlaskaAirlines/auro-toast/commit/ec76cc76c3b386b0a13194a8ec8d68f6f03465f6))
* update dependencies ([2831c72](https://github.com/AlaskaAirlines/auro-toast/commit/2831c7285753ce4281ce80cb24d0b3a11b89998a))


### BREAKING CHANGES

* trigger major release for theming support #37

# [1.2.0-beta.2](https://github.com/AlaskaAirlines/auro-toast/compare/v1.2.0-beta.1...v1.2.0-beta.2) (2024-07-20)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ In cases where the project is not able to process JS assets, there are pre-proce
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/[email protected]/dist/tokens/CSSCustomProperties.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/[email protected]/dist/bundled/essentials.css" />
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-toast@1.2.0-beta.2/dist/auro-toast__bundled.js" type="module"></script>
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/[email protected].0-beta.1/dist/auro-toast__bundled.js" type="module"></script>
```

<!-- AURO-GENERATED-CONTENT:END -->
Expand Down
6 changes: 4 additions & 2 deletions demo/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,10 @@ There are two important parts of every Auro component. The <a href="https://deve
To protect from versioning conflicts with other instances of the component being loaded, it is recommended to use our `registerComponent(name)` method and pass in a unique name.

```js
import './node_modules/@aurodesignsystem/auro-toast';
registerComponent('custom-toast');
import { AuroToast } from './src/auro-toast.js';
import * as RuntimeUtils from '@aurodesignsystem/auro-library/scripts/utils/runtimeUtils.mjs';

RuntimeUtils.default.prototype.registerComponent('custom-toast', AuroToast);
```

This will create a new custom element that you can use in your HTML that will function identically to the `auro-toast` element.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"================================================================================"
],
"name": "@aurodesignsystem/auro-toast",
"version": "1.2.0-beta.2",
"version": "2.0.0-beta.1",
"description": "auro-toast HTML custom element",
"repository": {
"type": "git",
Expand Down

0 comments on commit 3076fa9

Please sign in to comment.