@hmcts/ccd-case-ui-toolkit 7.3.95-exui-5153-rc2 → 7.3.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs +131 -293
- package/fesm2022/hmcts-ccd-case-ui-toolkit.mjs.map +1 -1
- package/index.d.ts +2 -13
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3782,7 +3782,6 @@ declare class WriteDateContainerFieldComponent extends AbstractFormFieldComponen
|
|
|
3782
3782
|
|
|
3783
3783
|
type RichTextToolbarCommand = 'undo' | 'redo' | 'bold' | 'italic' | 'underline' | 'paragraph' | 'heading' | 'indent' | 'outdent' | 'ordered_list' | 'bullet_list';
|
|
3784
3784
|
type RichTextListStyle = '' | 'ordered_list' | 'ordered_alpha' | 'ordered_roman' | 'bullet_list';
|
|
3785
|
-
type RichTextHeadingLevel = 1 | 2 | 3;
|
|
3786
3785
|
declare class WriteRichTextAreaFieldComponent extends AbstractFieldWriteComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
3787
3786
|
editorHost: ElementRef<HTMLElement>;
|
|
3788
3787
|
editor: Editor;
|
|
@@ -3790,12 +3789,10 @@ declare class WriteRichTextAreaFieldComponent extends AbstractFieldWriteComponen
|
|
|
3790
3789
|
activeToolbarCommands: {
|
|
3791
3790
|
[key in RichTextToolbarCommand]?: boolean;
|
|
3792
3791
|
};
|
|
3793
|
-
selectedHeadingLevel: RichTextHeadingLevel;
|
|
3794
3792
|
private editorUpdateSubscription;
|
|
3795
3793
|
private isNormalisingValue;
|
|
3796
3794
|
private paragraphCommandApplied;
|
|
3797
3795
|
private statusChangesSubscription;
|
|
3798
|
-
private toolbarPointerInteraction;
|
|
3799
3796
|
private valueChangesSubscription;
|
|
3800
3797
|
ngOnInit(): void;
|
|
3801
3798
|
ngAfterViewInit(): void;
|
|
@@ -3803,21 +3800,15 @@ declare class WriteRichTextAreaFieldComponent extends AbstractFieldWriteComponen
|
|
|
3803
3800
|
labelId(): string;
|
|
3804
3801
|
hintId(): string;
|
|
3805
3802
|
errorId(): string;
|
|
3806
|
-
keyboardInstructionsId(): string;
|
|
3807
3803
|
listStyleId(): string;
|
|
3808
|
-
headingLevelId(): string;
|
|
3809
3804
|
toolbarLabel(): string;
|
|
3810
3805
|
isInvalid(): boolean;
|
|
3811
3806
|
onEditorFocusOut(): void;
|
|
3812
|
-
onEditorClick(): void;
|
|
3813
3807
|
onToolbarButtonMouseDown(event: MouseEvent): void;
|
|
3814
|
-
onToolbarFocusIn(event: FocusEvent): void;
|
|
3815
|
-
onToolbarKeyDown(event: KeyboardEvent): void;
|
|
3816
3808
|
private handleEditorKeyDown;
|
|
3817
3809
|
private splitListContinuationParagraph;
|
|
3818
3810
|
executeToolbarCommand(event: Event, command: RichTextToolbarCommand): void;
|
|
3819
3811
|
isToolbarCommandActive(command: RichTextToolbarCommand): boolean;
|
|
3820
|
-
onHeadingLevelChange(event: Event): void;
|
|
3821
3812
|
currentListStyle(): RichTextListStyle;
|
|
3822
3813
|
currentListSelectValue(): RichTextListStyle;
|
|
3823
3814
|
isOrderedListActive(): boolean;
|
|
@@ -3853,8 +3844,6 @@ declare class WriteRichTextAreaFieldComponent extends AbstractFieldWriteComponen
|
|
|
3853
3844
|
private syncAccessibilityState;
|
|
3854
3845
|
private describedBy;
|
|
3855
3846
|
private syncToolbarAccessibility;
|
|
3856
|
-
private toolbarControls;
|
|
3857
|
-
private setToolbarTabStop;
|
|
3858
3847
|
private getEditableElement;
|
|
3859
3848
|
private normaliseRichTextControlValue;
|
|
3860
3849
|
private richTextRequiredValidator;
|
|
@@ -3870,6 +3859,7 @@ declare class WriteRichTextAreaFieldComponent extends AbstractFieldWriteComponen
|
|
|
3870
3859
|
private normaliseWordTables;
|
|
3871
3860
|
private appendWordTableCellContents;
|
|
3872
3861
|
private normaliseWordSemanticBlocks;
|
|
3862
|
+
private removeRedundantHeadingBold;
|
|
3873
3863
|
private wordHeadingLevel;
|
|
3874
3864
|
private namedWordHeadingLevel;
|
|
3875
3865
|
private wordOutlineLevel;
|
|
@@ -3951,8 +3941,7 @@ declare class WriteRichTextAreaFieldComponent extends AbstractFieldWriteComponen
|
|
|
3951
3941
|
private changeListIndent;
|
|
3952
3942
|
private toggleParagraph;
|
|
3953
3943
|
private toggleHeading;
|
|
3954
|
-
private
|
|
3955
|
-
private activeHeadingLevel;
|
|
3944
|
+
private isHeadingOneActive;
|
|
3956
3945
|
private isPlainParagraphActive;
|
|
3957
3946
|
private isNodeActive;
|
|
3958
3947
|
private lastTextNode;
|