diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a76339bc13d..282b9ef6594 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -225,7 +225,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} - name: Cache node_modules @@ -277,7 +277,7 @@ jobs: - name: Notify the slack channel of when build conclusion failed env: SLACK_BOT_TOKEN: ${{ secrets.SLACK_TOKEN }} - uses: slackapi/slack-github-action@v1.27.0 + uses: slackapi/slack-github-action@v1.27.1 with: channel-id: ${{ secrets.SLACK_NOTIFICATION_CHANNEL }} payload: | diff --git a/core-libs/setup/package.json b/core-libs/setup/package.json index 55537ae3115..91f388e3a9f 100644 --- a/core-libs/setup/package.json +++ b/core-libs/setup/package.json @@ -1,6 +1,6 @@ { "name": "@spartacus/setup", - "version": "2211.32.0-1", + "version": "2211.32.0", "description": "Includes features that makes Spartacus and it's setup easier and streamlined.", "keywords": [ "spartacus", @@ -16,15 +16,15 @@ "test": "../../node_modules/.bin/jest --config ./jest.config.js" }, "dependencies": { - "tslib": "^2.6.2" + "tslib": "^2.8.1" }, "peerDependencies": { "@angular/core": "^18.2.9", "@angular/ssr": "^18.2.9", - "@spartacus/cart": "2211.32.0-1", - "@spartacus/core": "2211.32.0-1", - "@spartacus/order": "2211.32.0-1", - "@spartacus/user": "2211.32.0-1" + "@spartacus/cart": "2211.32.0", + "@spartacus/core": "2211.32.0", + "@spartacus/order": "2211.32.0", + "@spartacus/user": "2211.32.0" }, "optionalDependencies": { "@angular/platform-server": "^18.2.9", diff --git a/feature-libs/asm/components/asm-create-customer-form/asm-create-customer-form.component.html b/feature-libs/asm/components/asm-create-customer-form/asm-create-customer-form.component.html index 80a3a9f3b21..0e7c14a6698 100644 --- a/feature-libs/asm/components/asm-create-customer-form/asm-create-customer-form.component.html +++ b/feature-libs/asm/components/asm-create-customer-form/asm-create-customer-form.component.html @@ -49,10 +49,13 @@
{{
diff --git a/feature-libs/customer-ticketing/components/details/customer-ticketing-reopen/customer-ticketing-reopen-dialog/customer-ticketing-reopen-dialog.component.html b/feature-libs/customer-ticketing/components/details/customer-ticketing-reopen/customer-ticketing-reopen-dialog/customer-ticketing-reopen-dialog.component.html
index 9207b6db8e7..01c41cc2df4 100644
--- a/feature-libs/customer-ticketing/components/details/customer-ticketing-reopen/customer-ticketing-reopen-dialog/customer-ticketing-reopen-dialog.component.html
+++ b/feature-libs/customer-ticketing/components/details/customer-ticketing-reopen/customer-ticketing-reopen-dialog/customer-ticketing-reopen-dialog.component.html
@@ -34,9 +34,14 @@
class="form-control"
formControlName="message"
rows="5"
+ [attr.aria-describedby]="'messageError'"
>
-
{{
diff --git a/feature-libs/customer-ticketing/components/list/customer-ticketing-create/customer-ticketing-create-dialog/customer-ticketing-create-dialog.component.html b/feature-libs/customer-ticketing/components/list/customer-ticketing-create/customer-ticketing-create-dialog/customer-ticketing-create-dialog.component.html
index 56179763eef..2bae1dd4e51 100644
--- a/feature-libs/customer-ticketing/components/list/customer-ticketing-create/customer-ticketing-create-dialog/customer-ticketing-create-dialog.component.html
+++ b/feature-libs/customer-ticketing/components/list/customer-ticketing-create/customer-ticketing-create-dialog/customer-ticketing-create-dialog.component.html
@@ -38,9 +38,14 @@
class="form-control"
formControlName="subject"
rows="1"
+ [attr.aria-describedby]="'subjectError'"
>
-
{{
'customerTicketing.charactersLeft'
@@ -110,9 +115,14 @@
class="form-control"
formControlName="message"
rows="5"
+ [attr.aria-describedby]="'messageError'"
>
-
{{ diff --git a/feature-libs/customer-ticketing/components/list/customer-ticketing-list/customer-ticketing-list.component.ts b/feature-libs/customer-ticketing/components/list/customer-ticketing-list/customer-ticketing-list.component.ts index e29f203d752..10f4b1acb43 100644 --- a/feature-libs/customer-ticketing/components/list/customer-ticketing-list/customer-ticketing-list.component.ts +++ b/feature-libs/customer-ticketing/components/list/customer-ticketing-list/customer-ticketing-list.component.ts @@ -5,7 +5,11 @@ */ import { Component } from '@angular/core'; -import { RoutingService, TranslationService } from '@spartacus/core'; +import { + RoutingService, + TranslationService, + useFeatureStyles, +} from '@spartacus/core'; import { CustomerTicketingConfig, CustomerTicketingFacade, @@ -14,7 +18,7 @@ import { TicketList, } from '@spartacus/customer-ticketing/root'; import { ICON_TYPE } from '@spartacus/storefront'; -import { combineLatest, Observable } from 'rxjs'; +import { Observable, combineLatest } from 'rxjs'; import { map, tap } from 'rxjs/operators'; @Component({ @@ -27,7 +31,9 @@ export class CustomerTicketingListComponent { protected routingService: RoutingService, protected translationService: TranslationService, protected customerTicketingConfig: CustomerTicketingConfig - ) {} + ) { + useFeatureStyles('a11yHighContrastBorders'); + } PAGE_SIZE = this.customerTicketingConfig.customerTicketing?.listViewPageSize || 5; sortType: string; diff --git a/feature-libs/customer-ticketing/package.json b/feature-libs/customer-ticketing/package.json index 2a48a9bf3fb..cd4cb566b6b 100644 --- a/feature-libs/customer-ticketing/package.json +++ b/feature-libs/customer-ticketing/package.json @@ -1,6 +1,6 @@ { "name": "@spartacus/customer-ticketing", - "version": "2211.32.0-1", + "version": "2211.32.0", "description": "Customer-Ticketing library for Spartacus", "keywords": [ "spartacus", @@ -22,7 +22,7 @@ "test:schematics": "npm --prefix ../../projects/schematics/ run clean && npm run clean:schematics && ../../node_modules/.bin/jest --config ./jest.schematics.config.js" }, "dependencies": { - "tslib": "^2.6.2" + "tslib": "^2.8.1" }, "peerDependencies": { "@angular-devkit/schematics": "^18.2.9", @@ -30,11 +30,11 @@ "@angular/core": "^18.2.9", "@angular/forms": "^18.2.9", "@angular/router": "^18.2.9", - "@spartacus/cart": "2211.32.0-1", - "@spartacus/core": "2211.32.0-1", - "@spartacus/schematics": "2211.32.0-1", - "@spartacus/storefront": "2211.32.0-1", - "@spartacus/styles": "2211.32.0-1", + "@spartacus/cart": "2211.32.0", + "@spartacus/core": "2211.32.0", + "@spartacus/schematics": "2211.32.0", + "@spartacus/storefront": "2211.32.0", + "@spartacus/styles": "2211.32.0", "rxjs": "^7.8.0" }, "publishConfig": { diff --git a/feature-libs/customer-ticketing/styles/components/_customer-ticketing-list.scss b/feature-libs/customer-ticketing/styles/components/_customer-ticketing-list.scss index 3464bf472ba..87c6e08c7ac 100644 --- a/feature-libs/customer-ticketing/styles/components/_customer-ticketing-list.scss +++ b/feature-libs/customer-ticketing/styles/components/_customer-ticketing-list.scss @@ -69,6 +69,15 @@ } } } + + @include cx-highContrastTheme { + @include forFeature('a11yHighContrastBorders') { + border-top-color: var(--cx-color-dark); + tr { + border-bottom-color: var(--cx-color-dark); + } + } + } } .cx-ticketing-list-thead-mobile { diff --git a/feature-libs/estimated-delivery-date/package.json b/feature-libs/estimated-delivery-date/package.json index 6b99d9dac16..846a3d4fe84 100644 --- a/feature-libs/estimated-delivery-date/package.json +++ b/feature-libs/estimated-delivery-date/package.json @@ -1,6 +1,6 @@ { "name": "@spartacus/estimated-delivery-date", - "version": "2211.32.0-1", + "version": "2211.32.0", "description": "Estimated Delivery Date library for Spartacus", "keywords": [ "spartacus", @@ -22,18 +22,18 @@ "test:schematics": "npm --prefix ../../projects/schematics/ run clean && npm run clean:schematics && ../../node_modules/.bin/jest --config ./jest.schematics.config.js" }, "dependencies": { - "tslib": "^2.6.2" + "tslib": "^2.8.1" }, "peerDependencies": { "@angular-devkit/schematics": "^18.2.9", "@angular/common": "^18.2.9", "@angular/core": "^18.2.9", - "@spartacus/cart": "2211.32.0-1", - "@spartacus/core": "2211.32.0-1", - "@spartacus/order": "2211.32.0-1", - "@spartacus/schematics": "2211.32.0-1", - "@spartacus/storefront": "2211.32.0-1", - "@spartacus/styles": "2211.32.0-1", + "@spartacus/cart": "2211.32.0", + "@spartacus/core": "2211.32.0", + "@spartacus/order": "2211.32.0", + "@spartacus/schematics": "2211.32.0", + "@spartacus/storefront": "2211.32.0", + "@spartacus/styles": "2211.32.0", "rxjs": "^7.8.0" }, "publishConfig": { diff --git a/feature-libs/order/components/order-confirmation/order-guest-register-form/order-guest-register-form.component.html b/feature-libs/order/components/order-confirmation/order-guest-register-form/order-guest-register-form.component.html index 5fce3dc6482..098b33d3e2c 100644 --- a/feature-libs/order/components/order-confirmation/order-guest-register-form/order-guest-register-form.component.html +++ b/feature-libs/order/components/order-confirmation/order-guest-register-form/order-guest-register-form.component.html @@ -26,12 +26,15 @@