Skip to content

Commit 7da3b96

Browse files
Version Packages
1 parent 6b6b003 commit 7da3b96

File tree

18 files changed

+96
-54
lines changed

18 files changed

+96
-54
lines changed

.changeset/calm-items-unite.md

-5
This file was deleted.

.changeset/mighty-forks-knock.md

-9
This file was deleted.

.changeset/slow-schools-grow.md

-11
This file was deleted.

.changeset/swift-pans-chew.md

-11
This file was deleted.

packages/angular-workspace/CHANGELOG.md

+16-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @astrouxds/angular
22

3+
## 7.22.2
4+
5+
### Patch Changes
6+
7+
- 6b6b0034: Adding actions slot to tab component and bumping Storybook up to 8 and rewriting all stories to match the new version.
8+
- d1cb7d94: Fixed button bug when clicking and dragging over an icon-only, borderless button
9+
- 4c4e3bc8: Added missing footer slot documentation to storybook
10+
- Updated dependencies [52f1c2a0]
11+
- Updated dependencies [6b6b0034]
12+
- Updated dependencies [d1cb7d94]
13+
- Updated dependencies [4c4e3bc8]
14+
- @astrouxds/astro-web-components@7.24.0
15+
316
## 7.22.1
417

518
### Patch Changes
@@ -14,21 +27,21 @@
1427

1528
#### Toast
1629

17-
- Added a new status prop and the ability to resize toast close icon via the new iconSize CSS prop.
30+
- Added a new status prop and the ability to resize toast close icon via the new iconSize CSS prop.
1831

1932
## 7.21.0
2033

2134
### Minor Changes
2235

2336
#### Timeline
2437

25-
- Updated timeline to support Month and Week intervals for displaying data and allow zoom to be < 1
38+
- Updated timeline to support Month and Week intervals for displaying data and allow zoom to be < 1
2639

2740
### Patch Changes
2841

2942
#### Pop Up
3043

31-
- Resolved console log error
44+
- Resolved console log error
3245

3346
## 7.20.0
3447

packages/angular-workspace/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-workspace",
3-
"version": "7.22.1",
3+
"version": "7.22.2",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",
@@ -24,7 +24,7 @@
2424
"@angular/platform-browser": "~13.2.7",
2525
"@angular/platform-browser-dynamic": "~13.2.7",
2626
"@angular/router": "~13.2.7",
27-
"@astrouxds/astro-web-components": "^7.22.1",
27+
"@astrouxds/astro-web-components": "^7.24.0",
2828
"rxjs": "~7.5.7",
2929
"tslib": "^2.4.1",
3030
"zone.js": "~0.11.8"

packages/angular-workspace/projects/angular/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @astrouxds/angular
22

3+
## 7.22.2
4+
5+
### Patch Changes
6+
7+
- 6b6b0034: Adding actions slot to tab component and bumping Storybook up to 8 and rewriting all stories to match the new version.
8+
- d1cb7d94: Fixed button bug when clicking and dragging over an icon-only, borderless button
9+
- 4c4e3bc8: Added missing footer slot documentation to storybook
10+
- Updated dependencies [52f1c2a0]
11+
- Updated dependencies [6b6b0034]
12+
- Updated dependencies [d1cb7d94]
13+
- Updated dependencies [4c4e3bc8]
14+
- @astrouxds/astro-web-components@7.24.0
15+
316
## 7.22.1
417

518
### Patch Changes

packages/angular-workspace/projects/angular/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@astrouxds/angular",
3-
"version": "7.22.1",
3+
"version": "7.22.2",
44
"description": "Astro Web Components Angular Wrapper",
55
"license": "MIT",
66
"repository": {
@@ -12,7 +12,7 @@
1212
"@angular/core": ">=12.0.0"
1313
},
1414
"dependencies": {
15-
"@astrouxds/astro-web-components": "^7.22.1",
15+
"@astrouxds/astro-web-components": "^7.24.0",
1616
"tslib": "^2.4.1"
1717
}
1818
}

packages/framework-testing/astro-angular/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# astro-angular
22

3+
## 0.3.1
4+
5+
### Patch Changes
6+
7+
- d1cb7d94: Fixed button bug when clicking and dragging over an icon-only, borderless button
8+
- 4c4e3bc8: Added missing footer slot documentation to storybook
9+
310
## 0.3.0
411

512
### Minor Changes

packages/framework-testing/astro-angular/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "astro-angular",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"scripts": {
55
"postinstall": "npm link @astrouxds/astro-web-components @astrouxds/angular",
66
"ng": "ng",
@@ -27,8 +27,8 @@
2727
"@angular-devkit/build-angular": "^16.0.0",
2828
"@angular/cli": "~16.0.0",
2929
"@angular/compiler-cli": "^16.0.0",
30-
"@astrouxds/angular": "^7.21.0",
31-
"@astrouxds/astro-web-components": "^7.21.0",
30+
"@astrouxds/angular": "^7.22.2",
31+
"@astrouxds/astro-web-components": "^7.24.0",
3232
"@astrouxds/tailwind": "^1.0.0-beta.1",
3333
"@types/jasmine": "~4.3.0",
3434
"autoprefixer": "^10.4.14",

packages/framework-testing/astro-react/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# astro-react
22

3+
## 0.3.1
4+
5+
### Patch Changes
6+
7+
- 6b6b0034: Adding actions slot to tab component and bumping Storybook up to 8 and rewriting all stories to match the new version.
8+
- d1cb7d94: Fixed button bug when clicking and dragging over an icon-only, borderless button
9+
- 4c4e3bc8: Added missing footer slot documentation to storybook
10+
311
## 0.3.0
412

513
### Minor Changes

packages/framework-testing/astro-react/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "astro-react",
33
"private": true,
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -14,8 +14,8 @@
1414
"react-dom": "^18.2.0"
1515
},
1616
"devDependencies": {
17-
"@astrouxds/astro-web-components": "^7.21.0",
18-
"@astrouxds/react": "^7.21.0",
17+
"@astrouxds/astro-web-components": "^7.24.0",
18+
"@astrouxds/react": "^7.22.2",
1919
"@astrouxds/tailwind": "^1.0.0-beta.1",
2020
"@types/react": "^18.0.37",
2121
"@types/react-dom": "^18.0.11",

packages/framework-testing/astro-vue/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# astro-vue
22

3+
## 0.3.1
4+
5+
### Patch Changes
6+
7+
- d1cb7d94: Fixed button bug when clicking and dragging over an icon-only, borderless button
8+
- 4c4e3bc8: Added missing footer slot documentation to storybook
9+
- Updated dependencies [52f1c2a0]
10+
- Updated dependencies [6b6b0034]
11+
- Updated dependencies [d1cb7d94]
12+
- Updated dependencies [4c4e3bc8]
13+
- @astrouxds/astro-web-components@7.24.0
14+
315
## 0.3.0
416

517
### Minor Changes

packages/framework-testing/astro-vue/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "astro-vue",
33
"private": true,
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
88
"build": "vue-tsc && vite build",
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@astrouxds/astro-web-components": "^7.21.0",
12+
"@astrouxds/astro-web-components": "^7.24.0",
1313
"vue": "^3.2.47"
1414
},
1515
"devDependencies": {

packages/react/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @astrouxds/react
22

3+
## 7.22.2
4+
5+
### Patch Changes
6+
7+
- 6b6b0034: Adding actions slot to tab component and bumping Storybook up to 8 and rewriting all stories to match the new version.
8+
- d1cb7d94: Fixed button bug when clicking and dragging over an icon-only, borderless button
9+
- 4c4e3bc8: Added missing footer slot documentation to storybook
10+
- Updated dependencies [52f1c2a0]
11+
- Updated dependencies [6b6b0034]
12+
- Updated dependencies [d1cb7d94]
13+
- Updated dependencies [4c4e3bc8]
14+
- @astrouxds/astro-web-components@7.24.0
15+
316
## 7.22.1
417

518
### Patch Changes

packages/react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@astrouxds/react",
33
"sideEffects": false,
4-
"version": "7.22.1",
4+
"version": "7.22.2",
55
"description": "Astro Web Components React Wrapper",
66
"repository": {
77
"type": "git",
@@ -40,7 +40,7 @@
4040
"typescript": "^4.9.3"
4141
},
4242
"dependencies": {
43-
"@astrouxds/astro-web-components": "^7.22.1"
43+
"@astrouxds/astro-web-components": "^7.24.0"
4444
},
4545
"peerDependencies": {
4646
"react": ">=17.0.0",

packages/web-components/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @astrouxds/astro-web-components
22

3+
## 7.24.0
4+
5+
### Minor Changes
6+
7+
- 6b6b0034: Adding actions slot to tab component and bumping Storybook up to 8 and rewriting all stories to match the new version.
8+
9+
### Patch Changes
10+
11+
- 52f1c2a0: fix(rux-input) prevent caret navigation from appearing innappropriately within input
12+
- d1cb7d94: Fixed button bug when clicking and dragging over an icon-only, borderless button
13+
- 4c4e3bc8: Added missing footer slot documentation to storybook
14+
315
## 7.23.0
416

517
### Minor Changes

packages/web-components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@astrouxds/astro-web-components",
3-
"version": "7.23.0",
3+
"version": "7.24.0",
44
"description": "Astro Web Components",
55
"homepage": "https://astro-components.netlify.app/?path=/story/astro-uxds-welcome-start-here--page",
66
"repository": {

0 commit comments

Comments
 (0)