Skip to content

Commit

Permalink
Merge branch 'master' into exui-2086-caseId-missing-in-mv
Browse files Browse the repository at this point in the history
  • Loading branch information
RiteshHMCTS authored Jul 16, 2024
2 parents ffcdb73 + aa2301a commit aef4a28
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 193 deletions.
3 changes: 3 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## RELEASE NOTES

### Version 7.0.47
**EXUI-2082** Transparent background of calendar control

### Version 7.0.46
**EXUI-1984** Submit button greyed out on events

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "7.0.46-exui-2086-rc1",
"version": "7.0.47-exui-2086-rc1",
"engines": {
"node": ">=18.19.0"
},
Expand Down
2 changes: 1 addition & 1 deletion projects/ccd-case-ui-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "7.0.46-exui-2086-rc1",
"version": "7.0.47-exui-2086-rc1",
"engines": {
"node": ">=18.19.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ Details inside it are for the actual component first shown on page */
border: 1px solid black;
border-radius: 0;
max-width: 295px;
background: #fff;

.mat-calendar-table {
width: calc(100% - 1px);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ import { DebugElement, Pipe, PipeTransform } from '@angular/core';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { FormArray, ReactiveFormsModule } from '@angular/forms';
import { By } from '@angular/platform-browser';
import { MarkdownModule } from 'ngx-markdown';
import { CaseField } from '../../../domain/definition/case-field.model';
import { FieldType } from '../../../domain/definition/field-type.model';
import { PipesModule } from '../../../pipes';
import { attr } from '../../../test/helpers';
import { MockFieldLabelPipe } from '../../../test/mock-field-label.pipe';
import { MockRpxTranslatePipe } from '../../../test/mock-rpx-translate.pipe';
import { MarkdownComponent, MarkdownComponentModule } from '../markdown';
import { MarkdownComponent } from '../markdown';
import { PaletteUtilsModule } from '../utils/utils.module';
import { WriteDynamicMultiSelectListFieldComponent } from './write-dynamic-multi-select-list-field.component';
import { RpxTranslationConfig, RpxTranslationService } from 'rpx-xui-translation';
Expand Down Expand Up @@ -155,13 +154,13 @@ describe('WriteDynamicMultiSelectListFieldComponent', () => {
});
});

xit('should show a link in the checkbox label', () => {
const labels = de.queryAll($LABELS);
labels.forEach((lb, i) => {
const mockUrl = MD_LIST_ITEMS[i].label.match(URL_REGEX)[0];
expect(lb.nativeElement.innerHTML).toContain(`<a href="${mockUrl}">`);
});
});
// it('should show a link in the checkbox label', () => {
// const labels = de.queryAll($LABELS);
// labels.forEach((lb, i) => {
// const mockUrl = MD_LIST_ITEMS[i].label.match(URL_REGEX)[0];
// expect(lb.nativeElement.innerHTML).toContain(`<a href="${mockUrl}">`);
// });
// });
});

describe('Null Value Dynamic Case Field', () => {
Expand Down

This file was deleted.

0 comments on commit aef4a28

Please sign in to comment.