diff --git a/.changeset/twenty-humans-teach.md b/.changeset/twenty-humans-teach.md deleted file mode 100644 index d2ba269b0..000000000 --- a/.changeset/twenty-humans-teach.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"angular-workspace": patch -"@astrouxds/angular": patch -"astro-website": patch -"@astrouxds/react": patch -"@astrouxds/astro-web-components": patch ---- - -Fixing classification marking for when a non-standard classification is put in Something besides cui, controlled, confidential, secret, top secret, top secret//sci or unclassified. The marking would appear blank in this scenario, now it will show up as 'unclassified'. diff --git a/.changeset/violet-knives-attack.md b/.changeset/violet-knives-attack.md deleted file mode 100644 index 569ea4910..000000000 --- a/.changeset/violet-knives-attack.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"angular-workspace": patch -"@astrouxds/angular": patch -"astro-website": patch -"@astrouxds/react": patch -"@astrouxds/astro-web-components": patch ---- - -This fix addresses a bug where adding certain CSS styles to a parent element wrapping an Astro web component would cause certain parts of some components to inherit that styling. The major affectors were font-size, line-height, and text-align. -This fix affects the styling of most of the Astro web components. Specific font-size, line-height, or text-align attributes were added to the affected components to ensure that no parental inheritance affected styles that are dictated specifically in Figma. diff --git a/packages/angular-workspace/CHANGELOG.md b/packages/angular-workspace/CHANGELOG.md index 2eedb94c3..8c0e87ce0 100644 --- a/packages/angular-workspace/CHANGELOG.md +++ b/packages/angular-workspace/CHANGELOG.md @@ -1,5 +1,17 @@ # @astrouxds/angular +## 7.1.1 + +### Patch Changes + +#### Classification Marking + +- An invalid `classification` now correctly displays "Unclassified". + +#### Web Components + +- Fixed an issue where `font-size`, `line-height`, and `text-align` properties when set on parent elements would incorrectly override component styles. + ## 7.1.0 ### Minor Changes diff --git a/packages/angular-workspace/package-lock.json b/packages/angular-workspace/package-lock.json index 9c240b48e..8355a408d 100644 --- a/packages/angular-workspace/package-lock.json +++ b/packages/angular-workspace/package-lock.json @@ -1,11 +1,11 @@ { "name": "angular-workspace", - "version": "7.0.1", + "version": "7.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "7.0.1", + "version": "7.1.0", "dependencies": { "@angular/animations": "~13.2.0", "@angular/common": "~13.2.0", diff --git a/packages/angular-workspace/package.json b/packages/angular-workspace/package.json index f088e8abb..6f77087d6 100644 --- a/packages/angular-workspace/package.json +++ b/packages/angular-workspace/package.json @@ -1,6 +1,6 @@ { "name": "angular-workspace", - "version": "7.1.0", + "version": "7.1.1", "scripts": { "ng": "ng", "start": "ng serve", @@ -23,7 +23,7 @@ "@angular/platform-browser": "~13.2.0", "@angular/platform-browser-dynamic": "~13.2.0", "@angular/router": "~13.2.0", - "@astrouxds/astro-web-components": "^7.1.0", + "@astrouxds/astro-web-components": "^7.1.1", "rxjs": "~7.5.0", "tslib": "^2.3.0", "zone.js": "~0.11.4" diff --git a/packages/angular-workspace/projects/angular/CHANGELOG.md b/packages/angular-workspace/projects/angular/CHANGELOG.md index 5996d165d..38184d734 100644 --- a/packages/angular-workspace/projects/angular/CHANGELOG.md +++ b/packages/angular-workspace/projects/angular/CHANGELOG.md @@ -1,5 +1,17 @@ # @astrouxds/angular +## 7.1.1 + +### Patch Changes + +#### Classification Marking + +- An invalid `classification` now correctly displays "Unclassified". + +#### Web Components + +- Fixed an issue where `font-size`, `line-height`, and `text-align` properties when set on parent elements would incorrectly override component styles. + ## 7.1.0 ### Minor Changes diff --git a/packages/angular-workspace/projects/angular/package-lock.json b/packages/angular-workspace/projects/angular/package-lock.json index fb2f22a9e..17d33e26b 100644 --- a/packages/angular-workspace/projects/angular/package-lock.json +++ b/packages/angular-workspace/projects/angular/package-lock.json @@ -1,12 +1,12 @@ { "name": "@astrouxds/angular", - "version": "7.0.2", + "version": "7.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@astrouxds/angular", - "version": "7.0.2", + "version": "7.1.0", "license": "MIT", "dependencies": { "tslib": "^2.3.0" diff --git a/packages/angular-workspace/projects/angular/package.json b/packages/angular-workspace/projects/angular/package.json index 568231f87..22299fb38 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.1.0", + "version": "7.1.1", "description": "Astro Web Components Angular Wrapper", "license": "MIT", "repository": { @@ -12,7 +12,7 @@ "@angular/core": ">=12.0.0" }, "dependencies": { - "@astrouxds/astro-web-components": "^7.1.0", + "@astrouxds/astro-web-components": "^7.1.1", "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 e9d9d1e16..5b960835d 100644 --- a/packages/angular-workspace/projects/angular/src/directives/proxies-list.ts +++ b/packages/angular-workspace/projects/angular/src/directives/proxies-list.ts @@ -9,6 +9,7 @@ //@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 05e0b4f05..39d9384e3 100644 --- a/packages/astro-uxds/CHANGELOG.md +++ b/packages/astro-uxds/CHANGELOG.md @@ -1,5 +1,17 @@ # @astrouxds/astrouxds +## 7.1.1 + +### Patch Changes + +#### Classification Marking + +- An invalid `classification` now correctly displays "Unclassified". + +#### Web Components + +- Fixed an issue where `font-size`, `line-height`, and `text-align` properties when set on parent elements would incorrectly override component styles. + ## 7.1.0 ### Minor Changes diff --git a/packages/astro-uxds/_content/releases.md b/packages/astro-uxds/_content/releases.md index d6faa8977..a93506b5e 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
Astro {{ meta.version }} - Updated | +Astro {{ meta.version }} - Updated | ||||
---|---|---|---|---|---|
Figma Dark Theme Library | -7.0.1 | +7.0.1 -> 7.0.2 | Release Notes | ||
Web Components | -7.0.2 -> 7.1.0 | -Release Notes | +7.1.0 -> 7.1.1 | +Release Notes | |
EGS Design Compliance | diff --git a/packages/astro-uxds/package-lock.json b/packages/astro-uxds/package-lock.json index 576432109..b50f8f38a 100644 --- a/packages/astro-uxds/package-lock.json +++ b/packages/astro-uxds/package-lock.json @@ -1,12 +1,12 @@ { "name": "astro-website", - "version": "7.0.1", + "version": "7.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "astro-website", - "version": "7.0.1", + "version": "7.1.0", "license": "SEE LICENSE IN LICENSE.md", "dependencies": { "@astrouxds/astro-figma-export": "^1.4.0", diff --git a/packages/astro-uxds/package.json b/packages/astro-uxds/package.json index 6468571e5..819ecccf1 100644 --- a/packages/astro-uxds/package.json +++ b/packages/astro-uxds/package.json @@ -1,6 +1,6 @@ { "name": "astro-website", - "version": "7.1.0", + "version": "7.1.1", "private": true, "repository": { "type": "git", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 55a2ded6a..5da8f8816 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,17 @@ # @astrouxds/react +## 7.1.1 + +### Patch Changes + +#### Classification Marking + +- An invalid `classification` now correctly displays "Unclassified". + +#### Web Components + +- Fixed an issue where `font-size`, `line-height`, and `text-align` properties when set on parent elements would incorrectly override component styles. + ## 7.1.0 ### Minor Changes diff --git a/packages/react/package-lock.json b/packages/react/package-lock.json index c49c62684..4268afe21 100644 --- a/packages/react/package-lock.json +++ b/packages/react/package-lock.json @@ -1,12 +1,12 @@ { "name": "@astrouxds/react", - "version": "7.0.2", + "version": "7.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@astrouxds/react", - "version": "7.0.2", + "version": "7.1.0", "devDependencies": { "@testing-library/jest-dom": "^5.14.1", "@testing-library/react": "^12.1.0", diff --git a/packages/react/package.json b/packages/react/package.json index faa30c280..aef80c015 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,7 +1,7 @@ { "name": "@astrouxds/react", "sideEffects": false, - "version": "7.1.0", + "version": "7.1.1", "description": "Astro Web Components React Wrapper", "repository": { "type": "git", @@ -40,7 +40,7 @@ "typescript": "^4.6.3" }, "dependencies": { - "@astrouxds/astro-web-components": "^7.1.0" + "@astrouxds/astro-web-components": "^7.1.1" }, "peerDependencies": { "react": ">=17.0.0", diff --git a/packages/web-components/CHANGELOG.md b/packages/web-components/CHANGELOG.md index e1f796ce6..d68662c9d 100644 --- a/packages/web-components/CHANGELOG.md +++ b/packages/web-components/CHANGELOG.md @@ -1,5 +1,17 @@ # @astrouxds/astro-web-components +## 7.1.1 + +### Patch Changes + +#### Classification Marking + +- An invalid `classification` now correctly displays "Unclassified". + +#### Web Components + +- Fixed an issue where `font-size`, `line-height`, and `text-align` properties when set on parent elements would incorrectly override component styles. + ## 7.1.0 ### Minor Changes diff --git a/packages/web-components/package-lock.json b/packages/web-components/package-lock.json index 221158165..03df827cb 100644 --- a/packages/web-components/package-lock.json +++ b/packages/web-components/package-lock.json @@ -1,12 +1,12 @@ { "name": "@astrouxds/astro-web-components", - "version": "7.0.2", + "version": "7.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@astrouxds/astro-web-components", - "version": "7.0.2", + "version": "7.1.0", "license": "MIT", "dependencies": { "@floating-ui/dom": "~1.0.1", diff --git a/packages/web-components/package.json b/packages/web-components/package.json index e8e598621..f929433b3 100644 --- a/packages/web-components/package.json +++ b/packages/web-components/package.json @@ -1,6 +1,6 @@ { "name": "@astrouxds/astro-web-components", - "version": "7.1.0", + "version": "7.1.1", "description": "Astro Web Components", "main": "dist/index.cjs.js", "module": "dist/index.js", diff --git a/packages/web-components/src/components.d.ts b/packages/web-components/src/components.d.ts index 7340f8f07..7fccdf9e7 100644 --- a/packages/web-components/src/components.d.ts +++ b/packages/web-components/src/components.d.ts @@ -12117,6 +12117,10 @@ export namespace Components { "label"?: string; } interface RuxPopUp { + /** + * When provided, will close the pop-up when a single selection is made. + */ + "closeOnSelect": boolean; /** * Closes the pop up and returns false. */ @@ -32580,6 +32584,10 @@ declare namespace LocalJSX { "onRux-option-group-changed"?: (event: RuxOptionGroupCustomEvent