diff --git a/.changeset/polite-pianos-allow.md b/.changeset/polite-pianos-allow.md deleted file mode 100644 index 5189c3b5b..000000000 --- a/.changeset/polite-pianos-allow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrouxds/astro-web-components": patch ---- - -rux-checkbox: change --disabled-opacity to correct --opacity-disabled design token diff --git a/.changeset/selfish-plants-study.md b/.changeset/selfish-plants-study.md deleted file mode 100644 index e20c44597..000000000 --- a/.changeset/selfish-plants-study.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrouxds/astro-web-components": patch ---- - -fix(rux-pop-up) allow it to overlay components that are below it in code diff --git a/.changeset/tidy-moons-suffer.md b/.changeset/tidy-moons-suffer.md deleted file mode 100644 index 01912b930..000000000 --- a/.changeset/tidy-moons-suffer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrouxds/astro-web-components": patch ---- - -fix(rux-textarea) revert code format to remove wrapper and return functionality control to developers diff --git a/packages/angular-workspace/projects/angular/CHANGELOG.md b/packages/angular-workspace/projects/angular/CHANGELOG.md index 2599f4fc7..81a96a914 100644 --- a/packages/angular-workspace/projects/angular/CHANGELOG.md +++ b/packages/angular-workspace/projects/angular/CHANGELOG.md @@ -1,5 +1,21 @@ # @astrouxds/angular +## 7.0.2 + +### Patch Changes + +#### Checkbox + +- Fixed visual regression on disabled state + +#### Pop Up + +- Fixed an issue where Pop Ups would not overlay correctly. + +#### Text Area + +- Reverted a 7.0 change to the component's internals that prevented users from being able to control the height of the element or disable resizing. + ## 7.0.1 ### Patch Changes diff --git a/packages/angular-workspace/projects/angular/package.json b/packages/angular-workspace/projects/angular/package.json index 09ce2c768..9c59e1c5c 100644 --- a/packages/angular-workspace/projects/angular/package.json +++ b/packages/angular-workspace/projects/angular/package.json @@ -1,6 +1,6 @@ { "name": "@astrouxds/angular", - "version": "7.0.1", + "version": "7.0.2", "description": "Astro Web Components Angular Wrapper", "license": "MIT", "repository": { @@ -12,7 +12,7 @@ "@angular/core": ">=12.0.0" }, "dependencies": { - "@astrouxds/astro-web-components": "^7.0.1", + "@astrouxds/astro-web-components": "^7.0.2", "tslib": "^2.3.0" } } diff --git a/packages/angular-workspace/projects/angular/src/directives/proxies-list.ts b/packages/angular-workspace/projects/angular/src/directives/proxies-list.ts index ee4672e2e..5e7b487f8 100644 --- a/packages/angular-workspace/projects/angular/src/directives/proxies-list.ts +++ b/packages/angular-workspace/projects/angular/src/directives/proxies-list.ts @@ -6,6 +6,8 @@ //@ts-nocheck //@ts-nocheck //@ts-nocheck +//@ts-nocheck +//@ts-nocheck import * as d from './proxies'; diff --git a/packages/astro-uxds/CHANGELOG.md b/packages/astro-uxds/CHANGELOG.md index 1e080bb14..e436339f3 100644 --- a/packages/astro-uxds/CHANGELOG.md +++ b/packages/astro-uxds/CHANGELOG.md @@ -1,5 +1,21 @@ # @astrouxds/astrouxds +## 7.0.2 + +### Patch Changes + +#### Checkbox + +- Fixed visual regression on disabled state + +#### Pop Up + +- Fixed an issue where Pop Ups would not overlay correctly. + +#### Text Area + +- Reverted a 7.0 change to the component's internals that prevented users from being able to control the height of the element or disable resizing. + ## 7.0.1 ### Patch Changes diff --git a/packages/astro-uxds/_content/releases.md b/packages/astro-uxds/_content/releases.md index 3f15b2129..977913ffb 100644 --- a/packages/astro-uxds/_content/releases.md +++ b/packages/astro-uxds/_content/releases.md @@ -14,7 +14,7 @@ Astro represents a collection of artifacts including, but not limited to, guidan - + @@ -25,18 +25,18 @@ Astro represents a collection of artifacts including, but not limited to, guidan - - + + - - + + - - + +
Astro {{ meta.version }} - Updated Astro {{ meta.version }} - Updated
Figma Dark Theme Library6.2.0 -> 7.0.0Release Notes7.0.0No Changes
Web Components6.14.0 -> 7.0.0Release Notes7.0.1 -> 7.0.2Release Notes
EGS Design Compliance6.1.0 -> 6.2.06.2.0No Changes
diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index a3a691a36..4ff4933c2 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,21 @@ # @astrouxds/react +## 7.0.2 + +### Patch Changes + +#### Checkbox + +- Fixed visual regression on disabled state + +#### Pop Up + +- Fixed an issue where Pop Ups would not overlay correctly. + +#### Text Area + +- Reverted a 7.0 change to the component's internals that prevented users from being able to control the height of the element or disable resizing. + ## 7.0.1 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index ba954e637..14661a978 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,7 +1,7 @@ { "name": "@astrouxds/react", "sideEffects": false, - "version": "7.0.1", + "version": "7.0.2", "description": "Astro Web Components React Wrapper", "repository": { "type": "git", @@ -40,7 +40,7 @@ "typescript": "^4.6.3" }, "dependencies": { - "@astrouxds/astro-web-components": "^7.0.1" + "@astrouxds/astro-web-components": "^7.0.2" }, "peerDependencies": { "react": ">=17.0.0", diff --git a/packages/web-components/CHANGELOG.md b/packages/web-components/CHANGELOG.md index 568bdd7c9..ac7a2cf26 100644 --- a/packages/web-components/CHANGELOG.md +++ b/packages/web-components/CHANGELOG.md @@ -1,5 +1,21 @@ # @astrouxds/astro-web-components +## 7.0.2 + +### Patch Changes + +#### Checkbox + +- Fixed visual regression on disabled state + +#### Pop Up + +- Fixed an issue where Pop Ups would not overlay correctly. + +#### Text Area + +- Reverted a 7.0 change to the component's internals that prevented users from being able to control the height of the element or disable resizing. + ## 7.0.1 ### Patch Changes diff --git a/packages/web-components/package.json b/packages/web-components/package.json index 1e71d886a..cb1fb52ee 100644 --- a/packages/web-components/package.json +++ b/packages/web-components/package.json @@ -1,6 +1,6 @@ { "name": "@astrouxds/astro-web-components", - "version": "7.0.1", + "version": "7.0.2", "description": "Astro Web Components", "main": "dist/index.cjs.js", "module": "dist/index.js",