@abgov/angular-components 5.0.0 → 5.2.0-dev.1
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.
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ElementRef, Renderer2, OnInit, TemplateRef, EventEmitter
|
|
2
|
+
import { ElementRef, Renderer2, OnInit, TemplateRef, EventEmitter } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor, CheckboxControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { Spacing, GoabAccordionHeadingSize, GoabAccordionIconPosition, GoabBadgeType, GoabIconType, GoabBadgeSize, GoabBadgeEmphasis, GoabBlockDirection, GoabBlockAlignment, GoabButtonType, GoabButtonSize, GoabButtonVariant, GoabButtonGroupAlignment, GoabButtonGroupGap, GoabCalendarOnChangeDetail, GoabCalloutType, GoabCalloutSize, GoabCalloutAriaLive, GoabCalloutIconTheme, GoabCalloutEmphasis, GoabCheckboxSize, GoabCheckboxOnChangeDetail, GoabCheckboxListOnChangeDetail, GoabChipVariant, GoabChipTheme, GoabCircularProgressVariant, GoabCircularProgressSize, GoabContainerType, GoabContainerAccent, GoabContainerPadding, GoabContainerWidth, GoabDatePickerInputType, GoabDatePickerOnChangeDetail, GoabDrawerPosition, GoabDrawerSize, GoabDropdownSize, GoabDropdownOnChangeDetail, GoabDropdownItemMountType, GoabFileUploadOnCancelDetail, GoabFileUploadOnDeleteDetail, GoabFileUploadInputVariant, GoabFileUploadInputOnSelectFileDetail, GoabPublicFormStatus, GoabFormState, GoabPublicFormPageStep, GoabPublicFormPageButtonVisibility, GoabPublicFormTaskStatus, GoabFormDispatchOn, GoabFieldsetOnContinueDetail, GoabFormItemLabelSize, GoabFormItemRequirement, GoabFormItemType, GoabFormStepStatus, GoabFormStepperOnChangeDetail, GoabIconOverridesType, GoabIconSize, GoabIconTheme, GoabIconButtonVariant, GoabInputType, GoabInputAutoCapitalize, GoabInputSize, GoabInputOnFocusDetail, GoabInputOnBlurDetail, GoabInputOnKeyPressDetail, GoabInputOnChangeDetail, GoabLinkColor, GoabLinkSize, GoabServiceLevel, GoabLinkTarget, GoabModalCalloutVariant, GoabModalTransition, GoabMenuButtonOnActionDetail, GoabNotificationType, GoabAriaLiveType, GoabNotificationEmphasis, GoabPageBlockSize, GoabPaginationVariant, GoabPaginationOnChangeDetail, GoabPopoverPosition, GoabRadioGroupOrientation, GoabRadioGroupSize, GoabRadioGroupOnChangeDetail, GoabSkeletonType, GoabSkeletonSize, GoabSpacerHorizontalSpacing, GoabSpacerVerticalSpacing, GoabTableVariant, GoabTableSortMode, GoabTableOnSortDetail, GoabTableOnMultiSortDetail, GoabTableSortDirection, GoabTableSortOrder, GoabTabsVariant, GoabTabsOrientation, GoabTabsNavigation, GoabTabsOnChangeDetail, GoabTextTextElement, GoabTextHeadingElement, GoabTextSize, GoabTextMaxWidth, GoabTextColor, GoabTextAreaCountBy, GoabTextAreaSize, GoabTextAreaOnChangeDetail, GoabTextAreaOnKeyPressDetail, GoabTextAreaOnBlurDetail, GoabTooltipPosition, GoabTooltipHorizontalAlignment, GoabWorkSideMenuItemType, GoabWorkSideNotificationItemType, GoabWorkSideNotificationReadStatus, GoabWorkSideNotificationPriority, GoabWorkSideNotificationActiveTabType } from '@abgov/ui-components-common';
|
|
5
5
|
export * from '@abgov/ui-components-common';
|
|
6
6
|
|
|
7
7
|
declare class ValueDirective implements ControlValueAccessor {
|
|
8
|
-
protected elementRef: ElementRef
|
|
8
|
+
protected elementRef: ElementRef<any>;
|
|
9
9
|
private _value;
|
|
10
10
|
private _disabled;
|
|
11
11
|
onChange: any;
|
|
@@ -16,14 +16,13 @@ declare class ValueDirective implements ControlValueAccessor {
|
|
|
16
16
|
registerOnChange(fn: () => void): void;
|
|
17
17
|
registerOnTouched(fn: () => void): void;
|
|
18
18
|
setDisabledState(isDisabled: boolean): void;
|
|
19
|
-
constructor(elementRef: ElementRef);
|
|
20
19
|
listenForValueChange(event: Event): void;
|
|
21
20
|
listenForDisabledChange(event: Event): void;
|
|
22
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ValueDirective, never>;
|
|
23
22
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueDirective, "[goaValue]", never, {}, {}, never, never, true, never>;
|
|
24
23
|
}
|
|
25
24
|
declare class ValueListDirective implements ControlValueAccessor {
|
|
26
|
-
protected elementRef: ElementRef
|
|
25
|
+
protected elementRef: ElementRef<any>;
|
|
27
26
|
private _value?;
|
|
28
27
|
onChange: any;
|
|
29
28
|
onTouched: any;
|
|
@@ -32,7 +31,6 @@ declare class ValueListDirective implements ControlValueAccessor {
|
|
|
32
31
|
writeValue(value?: string[]): void;
|
|
33
32
|
registerOnChange(fn: () => void): void;
|
|
34
33
|
registerOnTouched(fn: () => void): void;
|
|
35
|
-
constructor(elementRef: ElementRef);
|
|
36
34
|
listenForValueChange(event: Event): void;
|
|
37
35
|
_setValue(value?: string[]): void;
|
|
38
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<ValueListDirective, never>;
|
|
@@ -45,7 +43,7 @@ declare class CheckedDirective extends CheckboxControlValueAccessor {
|
|
|
45
43
|
private _checked;
|
|
46
44
|
onChange: any;
|
|
47
45
|
onTouched: any;
|
|
48
|
-
constructor(
|
|
46
|
+
constructor();
|
|
49
47
|
get value(): string;
|
|
50
48
|
set value(checked: any);
|
|
51
49
|
writeValue(checked: any): void;
|
|
@@ -63,19 +61,27 @@ declare class AngularComponentsModule {
|
|
|
63
61
|
}
|
|
64
62
|
|
|
65
63
|
declare abstract class GoabBaseComponent {
|
|
64
|
+
/** Sets the top margin spacing token. */
|
|
66
65
|
mt?: Spacing;
|
|
66
|
+
/** Sets the bottom margin spacing token. */
|
|
67
67
|
mb?: Spacing;
|
|
68
|
+
/** Sets the left margin spacing token. */
|
|
68
69
|
ml?: Spacing;
|
|
70
|
+
/** Sets the right margin spacing token. */
|
|
69
71
|
mr?: Spacing;
|
|
72
|
+
/** Sets the data-testid attribute for automated testing. */
|
|
70
73
|
testId?: string;
|
|
71
74
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabBaseComponent, never>;
|
|
72
75
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabBaseComponent, "ng-component", never, { "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, never, true, never>;
|
|
73
76
|
}
|
|
74
77
|
declare abstract class GoabControlValueAccessor extends GoabBaseComponent implements ControlValueAccessor {
|
|
75
|
-
|
|
78
|
+
/** Sets the id attribute of the underlying web component. */
|
|
76
79
|
id?: string;
|
|
80
|
+
/** Sets the disabled state for the control. */
|
|
77
81
|
disabled?: boolean;
|
|
82
|
+
/** Sets the error state for the control. */
|
|
78
83
|
error?: boolean;
|
|
84
|
+
/** Sets the control value used by Angular forms and one-way binding. */
|
|
79
85
|
value?: unknown | null | undefined;
|
|
80
86
|
/**
|
|
81
87
|
* Function to handle changes in the form control value.
|
|
@@ -98,7 +104,7 @@ declare abstract class GoabControlValueAccessor extends GoabBaseComponent implem
|
|
|
98
104
|
* The base class captures it here so children don't need their own ViewChild.
|
|
99
105
|
*/
|
|
100
106
|
protected goaComponentRef?: ElementRef;
|
|
101
|
-
|
|
107
|
+
protected renderer: Renderer2;
|
|
102
108
|
/**
|
|
103
109
|
* Convert an arbitrary value into a string for DOM attribute assignment.
|
|
104
110
|
* Child classes can override when they need special formatting.
|
|
@@ -135,16 +141,23 @@ declare abstract class GoabControlValueAccessor extends GoabBaseComponent implem
|
|
|
135
141
|
|
|
136
142
|
declare class GoabAccordion extends GoabBaseComponent implements OnInit {
|
|
137
143
|
private cdr;
|
|
144
|
+
/** Sets the heading text. */
|
|
138
145
|
heading?: string;
|
|
146
|
+
/** Sets secondary text. */
|
|
139
147
|
secondaryText?: string;
|
|
148
|
+
/** Sets the state of the accordion container open or closed. */
|
|
140
149
|
open?: boolean;
|
|
150
|
+
/** Sets the heading size of the accordion container heading. */
|
|
141
151
|
headingSize?: GoabAccordionHeadingSize;
|
|
152
|
+
/** Sets the heading content template reference. */
|
|
142
153
|
headingContent: TemplateRef<any>;
|
|
154
|
+
/** Sets the maximum width of the accordion. */
|
|
143
155
|
maxWidth?: string;
|
|
156
|
+
/** Sets the position of the expand/collapse icon. */
|
|
144
157
|
iconPosition?: GoabAccordionIconPosition;
|
|
158
|
+
/** Emits when the accordion opens or closes. Emits the new open state as a boolean. */
|
|
145
159
|
onChange: EventEmitter<boolean>;
|
|
146
160
|
isReady: boolean;
|
|
147
|
-
constructor(cdr: ChangeDetectorRef);
|
|
148
161
|
ngOnInit(): void;
|
|
149
162
|
_onChange(e: Event): void;
|
|
150
163
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabAccordion, never>;
|
|
@@ -154,16 +167,22 @@ declare class GoabAccordion extends GoabBaseComponent implements OnInit {
|
|
|
154
167
|
|
|
155
168
|
declare class GoabBadge extends GoabBaseComponent implements OnInit {
|
|
156
169
|
private cdr;
|
|
170
|
+
/** Sets the context and colour of the badge. */
|
|
157
171
|
type?: GoabBadgeType;
|
|
172
|
+
/** Sets the text label of the badge. */
|
|
158
173
|
content?: string;
|
|
174
|
+
/** @deprecated Use icontype instead. Includes an icon in the badge. */
|
|
159
175
|
icon?: boolean;
|
|
176
|
+
/** Sets the icon type to display in the badge. */
|
|
160
177
|
iconType?: GoabIconType;
|
|
178
|
+
/** Sets the size of the badge. @default "medium" */
|
|
161
179
|
size?: GoabBadgeSize;
|
|
180
|
+
/** Sets the visual emphasis. 'subtle' for less prominent, 'strong' for more emphasis. @default "strong" */
|
|
162
181
|
emphasis?: GoabBadgeEmphasis;
|
|
182
|
+
/** Sets the accessible label for screen readers. */
|
|
163
183
|
ariaLabel?: string;
|
|
164
184
|
isReady: boolean;
|
|
165
185
|
version: string;
|
|
166
|
-
constructor(cdr: ChangeDetectorRef);
|
|
167
186
|
ngOnInit(): void;
|
|
168
187
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabBadge, never>;
|
|
169
188
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabBadge, "goab-badge", never, { "type": { "alias": "type"; "required": false; }; "content": { "alias": "content"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "size": { "alias": "size"; "required": false; }; "emphasis": { "alias": "emphasis"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -172,14 +191,19 @@ declare class GoabBadge extends GoabBaseComponent implements OnInit {
|
|
|
172
191
|
|
|
173
192
|
declare class GoabBlock extends GoabBaseComponent implements OnInit {
|
|
174
193
|
private cdr;
|
|
194
|
+
/** Sets the spacing between items. Uses design system spacing tokens. */
|
|
175
195
|
gap?: Spacing;
|
|
196
|
+
/** Sets the stacking direction of child components. */
|
|
176
197
|
direction?: GoabBlockDirection;
|
|
198
|
+
/** Sets the primary axis alignment of child components. */
|
|
177
199
|
alignment?: GoabBlockAlignment;
|
|
200
|
+
/** Sets the width of the block container. Defaults to max-content. */
|
|
178
201
|
width?: string;
|
|
202
|
+
/** Sets the minimum width of the block container. */
|
|
179
203
|
minWidth?: string;
|
|
204
|
+
/** Sets the maximum width of the block container. */
|
|
180
205
|
maxWidth?: string;
|
|
181
206
|
isReady: boolean;
|
|
182
|
-
constructor(cdr: ChangeDetectorRef);
|
|
183
207
|
ngOnInit(): void;
|
|
184
208
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabBlock, never>;
|
|
185
209
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabBlock, "goab-block", never, { "gap": { "alias": "gap"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "width": { "alias": "width"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -187,20 +211,30 @@ declare class GoabBlock extends GoabBaseComponent implements OnInit {
|
|
|
187
211
|
|
|
188
212
|
declare class GoabButton extends GoabBaseComponent implements OnInit {
|
|
189
213
|
private cdr;
|
|
214
|
+
/** Sets the visual style of the button. Use "primary" for main actions, "secondary" for alternative actions, "tertiary" for low-emphasis actions, "start" for prominent call-to-action buttons, and "text" for text-only buttons. @default "primary" */
|
|
190
215
|
type?: GoabButtonType;
|
|
216
|
+
/** Sets the size of the button. Use "compact" for inline actions or space-constrained layouts. @default "normal" */
|
|
191
217
|
size?: GoabButtonSize;
|
|
218
|
+
/** Sets the color variant for semantic meaning. Use "destructive" for delete or irreversible actions, "inverse" for light-colored text on dark backgrounds, and "dark" for dark text color on text buttons only. Note: "dark" has no effect on non-text button types. @default "normal" */
|
|
192
219
|
variant?: GoabButtonVariant;
|
|
220
|
+
/** Sets the disabled state. When true, prevents user interaction and applies disabled styling. */
|
|
193
221
|
disabled?: boolean;
|
|
222
|
+
/** Sets the icon displayed before the button text. */
|
|
194
223
|
leadingIcon?: GoabIconType;
|
|
224
|
+
/** Icon displayed after the button text. */
|
|
195
225
|
trailingIcon?: GoabIconType;
|
|
226
|
+
/** Sets a custom width for the button (e.g., "200px" or "100%"). */
|
|
196
227
|
width?: string;
|
|
228
|
+
/** Action identifier passed in click events for event delegation patterns. */
|
|
197
229
|
action?: string;
|
|
230
|
+
/** Single argument value passed with the action in click events. */
|
|
198
231
|
actionArg?: string;
|
|
232
|
+
/** Multiple argument values passed with the action in click events. */
|
|
199
233
|
actionArgs?: Record<string, unknown>;
|
|
234
|
+
/** Emits when the button is clicked. */
|
|
200
235
|
onClick: EventEmitter<any>;
|
|
201
236
|
isReady: boolean;
|
|
202
237
|
version: string;
|
|
203
|
-
constructor(cdr: ChangeDetectorRef);
|
|
204
238
|
ngOnInit(): void;
|
|
205
239
|
_onClick(): void;
|
|
206
240
|
protected readonly JSON: JSON;
|
|
@@ -211,10 +245,11 @@ declare class GoabButton extends GoabBaseComponent implements OnInit {
|
|
|
211
245
|
|
|
212
246
|
declare class GoabButtonGroup extends GoabBaseComponent implements OnInit {
|
|
213
247
|
private cdr;
|
|
248
|
+
/** Positions the button group in the page layout. */
|
|
214
249
|
alignment?: GoabButtonGroupAlignment;
|
|
250
|
+
/** Sets the spacing between buttons in the button group. */
|
|
215
251
|
gap?: GoabButtonGroupGap;
|
|
216
252
|
isReady: boolean;
|
|
217
|
-
constructor(cdr: ChangeDetectorRef);
|
|
218
253
|
ngOnInit(): void;
|
|
219
254
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabButtonGroup, never>;
|
|
220
255
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabButtonGroup, "goab-button-group", never, { "alignment": { "alias": "alignment"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -223,10 +258,15 @@ declare class GoabButtonGroup extends GoabBaseComponent implements OnInit {
|
|
|
223
258
|
declare class GoabCalendar extends GoabBaseComponent implements OnInit {
|
|
224
259
|
private cdr;
|
|
225
260
|
version: string;
|
|
261
|
+
/** Name identifier for the calendar, included in change events. */
|
|
226
262
|
name?: string;
|
|
263
|
+
/** The currently selected date value in YYYY-MM-DD format. */
|
|
227
264
|
value?: Date | string;
|
|
265
|
+
/** The minimum selectable date in YYYY-MM-DD format. Defaults to 5 years in the past. */
|
|
228
266
|
min?: Date | string | undefined;
|
|
267
|
+
/** The maximum selectable date in YYYY-MM-DD format. Defaults to 5 years in the future. */
|
|
229
268
|
max?: Date | string | undefined;
|
|
269
|
+
/** Emits when the selected date changes. Emits the selected date details as GoabCalendarOnChangeDetail. */
|
|
230
270
|
onChange: EventEmitter<GoabCalendarOnChangeDetail>;
|
|
231
271
|
isReady: boolean;
|
|
232
272
|
private once;
|
|
@@ -234,7 +274,6 @@ declare class GoabCalendar extends GoabBaseComponent implements OnInit {
|
|
|
234
274
|
valueString(): string;
|
|
235
275
|
minString(): string;
|
|
236
276
|
maxString(): string;
|
|
237
|
-
constructor(cdr: ChangeDetectorRef);
|
|
238
277
|
ngOnInit(): void;
|
|
239
278
|
_onChange(e: Event): void;
|
|
240
279
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabCalendar, never>;
|
|
@@ -245,14 +284,20 @@ declare class GoabCallout extends GoabBaseComponent implements OnInit {
|
|
|
245
284
|
private cdr;
|
|
246
285
|
isReady: boolean;
|
|
247
286
|
version: string;
|
|
248
|
-
constructor(cdr: ChangeDetectorRef);
|
|
249
287
|
ngOnInit(): void;
|
|
288
|
+
/** Define the context and colour of the callout. @default "information" */
|
|
250
289
|
type?: GoabCalloutType;
|
|
290
|
+
/** Callout heading text. */
|
|
251
291
|
heading?: string;
|
|
292
|
+
/** Sets the size of the callout. 'medium' has reduced padding and type size for compact areas. @default "large" */
|
|
252
293
|
size?: GoabCalloutSize;
|
|
294
|
+
/** Sets the maximum width of the callout. */
|
|
253
295
|
maxWidth?: string;
|
|
296
|
+
/** Indicates how assistive technology should handle updates to the live region. @default "off" */
|
|
254
297
|
ariaLive?: GoabCalloutAriaLive;
|
|
298
|
+
/** Sets the icon theme. 'outline' for stroked icons, 'filled' for solid icons. @default "outline" */
|
|
255
299
|
iconTheme?: GoabCalloutIconTheme;
|
|
300
|
+
/** Sets the visual prominence. 'high' for full background, 'medium' for subtle, 'low' for minimal. @default "medium" */
|
|
256
301
|
emphasis?: GoabCalloutEmphasis;
|
|
257
302
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabCallout, never>;
|
|
258
303
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabCallout, "goab-callout", never, { "type": { "alias": "type"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "size": { "alias": "size"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "ariaLive": { "alias": "ariaLive"; "required": false; }; "iconTheme": { "alias": "iconTheme"; "required": false; }; "emphasis": { "alias": "emphasis"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -261,9 +306,10 @@ declare class GoabCallout extends GoabBaseComponent implements OnInit {
|
|
|
261
306
|
declare class GoabCard extends GoabBaseComponent implements OnInit {
|
|
262
307
|
private cdr;
|
|
263
308
|
isReady: boolean;
|
|
264
|
-
constructor(cdr: ChangeDetectorRef);
|
|
265
309
|
ngOnInit(): void;
|
|
310
|
+
/** Adds a shadow to the card. 0 shows a border, 1-3 increase shadow intensity. */
|
|
266
311
|
elevation?: number;
|
|
312
|
+
/** Sets the width of the card. */
|
|
267
313
|
width?: string;
|
|
268
314
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabCard, never>;
|
|
269
315
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabCard, "goab-card", never, { "elevation": { "alias": "elevation"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -273,7 +319,6 @@ declare class GoabCard extends GoabBaseComponent implements OnInit {
|
|
|
273
319
|
declare class GoabCardContent implements OnInit {
|
|
274
320
|
private cdr;
|
|
275
321
|
isReady: boolean;
|
|
276
|
-
constructor(cdr: ChangeDetectorRef);
|
|
277
322
|
ngOnInit(): void;
|
|
278
323
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabCardContent, never>;
|
|
279
324
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabCardContent, "goab-card-content", never, {}, {}, never, ["*"], true, never>;
|
|
@@ -282,7 +327,6 @@ declare class GoabCardContent implements OnInit {
|
|
|
282
327
|
declare class GoabCardActions implements OnInit {
|
|
283
328
|
private cdr;
|
|
284
329
|
isReady: boolean;
|
|
285
|
-
constructor(cdr: ChangeDetectorRef);
|
|
286
330
|
ngOnInit(): void;
|
|
287
331
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabCardActions, never>;
|
|
288
332
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabCardActions, "goab-card-actions", never, {}, {}, never, ["*"], true, never>;
|
|
@@ -290,10 +334,11 @@ declare class GoabCardActions implements OnInit {
|
|
|
290
334
|
|
|
291
335
|
declare class GoabCardImage implements OnInit {
|
|
292
336
|
private cdr;
|
|
337
|
+
/** @required The URL of the image to display. */
|
|
293
338
|
src: string;
|
|
339
|
+
/** @required Height of the image container. Accepts CSS values like "200px" or "100%". */
|
|
294
340
|
height: string;
|
|
295
341
|
isReady: boolean;
|
|
296
|
-
constructor(cdr: ChangeDetectorRef);
|
|
297
342
|
ngOnInit(): void;
|
|
298
343
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabCardImage, never>;
|
|
299
344
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabCardImage, "goab-card-image", never, { "src": { "alias": "src"; "required": true; }; "height": { "alias": "height"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -303,19 +348,30 @@ declare class GoabCheckbox extends GoabControlValueAccessor implements OnInit {
|
|
|
303
348
|
private cdr;
|
|
304
349
|
isReady: boolean;
|
|
305
350
|
version: string;
|
|
306
|
-
constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
307
351
|
ngOnInit(): void;
|
|
352
|
+
/** Sets the name of the checkbox input for form submission. */
|
|
308
353
|
name?: string;
|
|
354
|
+
/** Marks the checkbox item as selected. */
|
|
309
355
|
checked?: boolean;
|
|
356
|
+
/** Shows a mixed/partial selection state. Used for 'Select All' checkboxes when some items are selected. */
|
|
310
357
|
indeterminate?: boolean;
|
|
358
|
+
/** Label shown beside the checkbox. */
|
|
311
359
|
text?: string;
|
|
360
|
+
/** The value binding. */
|
|
312
361
|
value?: string | number | boolean | null;
|
|
362
|
+
/** Defines how the text will be translated for the screen reader. If not specified it will fall back to the name. */
|
|
313
363
|
ariaLabel?: string;
|
|
364
|
+
/** Sets additional description content displayed below the checkbox label. Accepts plain text or a template. */
|
|
314
365
|
description: string | TemplateRef<any>;
|
|
366
|
+
/** Sets the template for the expandable reveal slot content. */
|
|
315
367
|
reveal?: TemplateRef<any>;
|
|
368
|
+
/** Text announced by screen readers when the reveal slot content is displayed. */
|
|
316
369
|
revealArialLabel?: string;
|
|
370
|
+
/** Sets the maximum width of the checkbox. */
|
|
317
371
|
maxWidth?: string;
|
|
372
|
+
/** Sets the size of the checkbox. 'compact' reduces spacing for dense layouts. @default "default" */
|
|
318
373
|
size?: GoabCheckboxSize;
|
|
374
|
+
/** Emits when the checkbox value changes. Emits the new checkbox state as a GoabCheckboxOnChangeDetail object. */
|
|
319
375
|
onChange: EventEmitter<GoabCheckboxOnChangeDetail>;
|
|
320
376
|
getDescriptionAsString(): string;
|
|
321
377
|
getDescriptionAsTemplate(): TemplateRef<any> | null;
|
|
@@ -331,12 +387,16 @@ declare class GoabCheckboxList extends GoabControlValueAccessor implements OnIni
|
|
|
331
387
|
private cdr;
|
|
332
388
|
isReady: boolean;
|
|
333
389
|
version: string;
|
|
390
|
+
/** @required The name for the checkbox list group. Used as group identifier in change events. */
|
|
334
391
|
name: string;
|
|
392
|
+
/** Sets the maximum width of the checkbox list container. */
|
|
335
393
|
maxWidth?: string;
|
|
394
|
+
/** Sets the size of the checkbox list. 'compact' reduces spacing between items. @default "default" */
|
|
336
395
|
size?: GoabCheckboxSize;
|
|
396
|
+
/** Array of currently selected checkbox values. */
|
|
337
397
|
value?: string[];
|
|
338
|
-
constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
339
398
|
ngOnInit(): void;
|
|
399
|
+
/** Emits when a checkbox selection changes. Emits the change detail including name, value array, and event. */
|
|
340
400
|
onChange: EventEmitter<GoabCheckboxListOnChangeDetail>;
|
|
341
401
|
_onChange(e: Event): void;
|
|
342
402
|
writeValue(value: string[] | null): void;
|
|
@@ -347,14 +407,20 @@ declare class GoabCheckboxList extends GoabControlValueAccessor implements OnIni
|
|
|
347
407
|
declare class GoabChip extends GoabBaseComponent implements OnInit {
|
|
348
408
|
private cdr;
|
|
349
409
|
isReady: boolean;
|
|
350
|
-
constructor(cdr: ChangeDetectorRef);
|
|
351
410
|
ngOnInit(): void;
|
|
411
|
+
/** @deprecated Use GoabFilterChip (goab-filter-chip) instead. Icon displayed at the start of the chip. */
|
|
352
412
|
leadingIcon?: GoabIconType | null;
|
|
413
|
+
/** @deprecated Use GoabFilterChip (goab-filter-chip) instead. Shows an error state on the chip. */
|
|
353
414
|
error?: boolean;
|
|
415
|
+
/** @deprecated Use GoabFilterChip (goab-filter-chip) instead. When true, shows a delete icon and makes chip clickable. */
|
|
354
416
|
deletable?: boolean;
|
|
417
|
+
/** @deprecated Use GoabFilterChip (goab-filter-chip) instead. The text content displayed in the chip. */
|
|
355
418
|
content?: string;
|
|
419
|
+
/** @deprecated Use GoabFilterChip (goab-filter-chip) instead. The chip variant style. */
|
|
356
420
|
variant?: GoabChipVariant;
|
|
421
|
+
/** @deprecated Use GoabFilterChip (goab-filter-chip) instead. The icon theme - outline or filled. */
|
|
357
422
|
iconTheme?: GoabChipTheme;
|
|
423
|
+
/** Emits when the chip is clicked. */
|
|
358
424
|
onClick: EventEmitter<any>;
|
|
359
425
|
_onClick(): void;
|
|
360
426
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabChip, never>;
|
|
@@ -365,14 +431,19 @@ declare class GoabChip extends GoabBaseComponent implements OnInit {
|
|
|
365
431
|
|
|
366
432
|
declare class GoabCircularProgress implements OnInit {
|
|
367
433
|
private cdr;
|
|
434
|
+
/** Stretch across the full screen or use it inline. */
|
|
368
435
|
variant?: GoabCircularProgressVariant;
|
|
436
|
+
/** Size of the progress indicator. */
|
|
369
437
|
size?: GoabCircularProgressSize;
|
|
438
|
+
/** Loading message displayed under the progress indicator. */
|
|
370
439
|
message?: string;
|
|
440
|
+
/** Show/hide the page loader. This allows for fade transition to be applied in each transition. */
|
|
371
441
|
visible?: boolean;
|
|
442
|
+
/** Set the progress value. Setting this value will change the type from infinite to progress. */
|
|
372
443
|
progress?: number;
|
|
444
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
373
445
|
testId?: string;
|
|
374
446
|
isReady: boolean;
|
|
375
|
-
constructor(cdr: ChangeDetectorRef);
|
|
376
447
|
ngOnInit(): void;
|
|
377
448
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabCircularProgress, never>;
|
|
378
449
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabCircularProgress, "goab-circular-progress", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "message": { "alias": "message"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -384,7 +455,6 @@ declare class GoabColumnLayout implements OnInit {
|
|
|
384
455
|
private cdr;
|
|
385
456
|
/** no props **/
|
|
386
457
|
isReady: boolean;
|
|
387
|
-
constructor(cdr: ChangeDetectorRef);
|
|
388
458
|
ngOnInit(): void;
|
|
389
459
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabColumnLayout, never>;
|
|
390
460
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabColumnLayout, "goab-column-layout", never, {}, {}, never, ["*"], true, never>;
|
|
@@ -392,17 +462,25 @@ declare class GoabColumnLayout implements OnInit {
|
|
|
392
462
|
|
|
393
463
|
declare class GoabContainer extends GoabBaseComponent implements OnInit {
|
|
394
464
|
private cdr;
|
|
465
|
+
/** Sets the container and accent bar styling. @default "interactive" */
|
|
395
466
|
type?: GoabContainerType;
|
|
467
|
+
/** Sets the style of accent on the container. @default "filled" */
|
|
396
468
|
accent?: GoabContainerAccent;
|
|
469
|
+
/** Sets the amount of white space in the container. @default "relaxed" */
|
|
397
470
|
padding?: GoabContainerPadding;
|
|
471
|
+
/** Sets the width of the container. @default "full" */
|
|
398
472
|
width?: GoabContainerWidth;
|
|
473
|
+
/** Sets the maximum width of the container. */
|
|
399
474
|
maxWidth?: string;
|
|
475
|
+
/** Sets the minimum height of the container. */
|
|
400
476
|
minHeight?: string;
|
|
477
|
+
/** Sets the maximum height of the container. */
|
|
401
478
|
maxHeight?: string;
|
|
479
|
+
/** Sets the template for the title slot content. */
|
|
402
480
|
title: TemplateRef<any>;
|
|
481
|
+
/** Sets the template for the actions slot content. */
|
|
403
482
|
actions: TemplateRef<any>;
|
|
404
483
|
isReady: boolean;
|
|
405
|
-
constructor(cdr: ChangeDetectorRef);
|
|
406
484
|
ngOnInit(): void;
|
|
407
485
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabContainer, never>;
|
|
408
486
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabContainer, "goab-container", never, { "type": { "alias": "type"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "title": { "alias": "title"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -410,31 +488,38 @@ declare class GoabContainer extends GoabBaseComponent implements OnInit {
|
|
|
410
488
|
|
|
411
489
|
declare class GoabDataGrid implements OnInit {
|
|
412
490
|
private cdr;
|
|
491
|
+
/** Controls visibility of the keyboard navigation indicator icon. Use "visible" to show or "hidden" to hide. @default "visible" */
|
|
413
492
|
keyboardIconVisibility: "visible" | "hidden";
|
|
493
|
+
/** Position of the keyboard navigation indicator icon. @default "left" */
|
|
414
494
|
keyboardIconPosition: "left" | "right";
|
|
495
|
+
/** @required Navigation mode. "table" navigates like a table (up/down between rows), "layout" allows wrapping between rows with left/right arrows. */
|
|
415
496
|
keyboardNav: "layout" | "table";
|
|
416
497
|
isReady: boolean;
|
|
417
|
-
constructor(cdr: ChangeDetectorRef);
|
|
418
498
|
ngOnInit(): void;
|
|
419
499
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabDataGrid, never>;
|
|
420
500
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabDataGrid, "goab-data-grid", never, { "keyboardIconVisibility": { "alias": "keyboardIconVisibility"; "required": false; }; "keyboardIconPosition": { "alias": "keyboardIconPosition"; "required": false; }; "keyboardNav": { "alias": "keyboardNav"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
421
501
|
}
|
|
422
502
|
|
|
423
503
|
declare class GoabDatePicker extends GoabControlValueAccessor implements OnInit {
|
|
424
|
-
protected elementRef: ElementRef
|
|
504
|
+
protected elementRef: ElementRef<any>;
|
|
425
505
|
private cdr;
|
|
426
506
|
isReady: boolean;
|
|
427
507
|
version: string;
|
|
508
|
+
/** Sets the name of the date field. */
|
|
428
509
|
name?: string;
|
|
510
|
+
/** Sets the value of the calendar date. */
|
|
429
511
|
value?: Date | string | null | undefined;
|
|
512
|
+
/** Sets the minimum date value allowed. */
|
|
430
513
|
min?: Date | string;
|
|
514
|
+
/** Sets the maximum date value allowed. */
|
|
431
515
|
max?: Date | string;
|
|
516
|
+
/** Sets the date picker type. 'calendar' shows a calendar popup, 'input' shows just a date input. @default "calendar" */
|
|
432
517
|
type?: GoabDatePickerInputType;
|
|
433
|
-
|
|
434
|
-
* @deprecated This property has no effect and will be removed in a future version
|
|
435
|
-
*/
|
|
518
|
+
/** @deprecated This property has no effect and will be removed in a future version. */
|
|
436
519
|
relative?: boolean;
|
|
520
|
+
/** Sets the width of the date picker input. */
|
|
437
521
|
width?: string;
|
|
522
|
+
/** Emits when the selected date changes. Emits the date picker change detail including name and value. */
|
|
438
523
|
onChange: EventEmitter<GoabDatePickerOnChangeDetail>;
|
|
439
524
|
private once;
|
|
440
525
|
private formatValue;
|
|
@@ -442,7 +527,6 @@ declare class GoabDatePicker extends GoabControlValueAccessor implements OnInit
|
|
|
442
527
|
minString(): string;
|
|
443
528
|
maxString(): string;
|
|
444
529
|
_onChange(e: Event): void;
|
|
445
|
-
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
446
530
|
ngOnInit(): void;
|
|
447
531
|
setDisabledState(isDisabled: boolean): void;
|
|
448
532
|
listenDisabledChange(event: Event): void;
|
|
@@ -453,11 +537,13 @@ declare class GoabDatePicker extends GoabControlValueAccessor implements OnInit
|
|
|
453
537
|
|
|
454
538
|
declare class GoabDetails extends GoabBaseComponent implements OnInit {
|
|
455
539
|
private cdr;
|
|
540
|
+
/** @required The title heading. */
|
|
456
541
|
heading: string;
|
|
542
|
+
/** Controls if details is expanded or not. */
|
|
457
543
|
open?: boolean;
|
|
544
|
+
/** Sets the maximum width of the details. */
|
|
458
545
|
maxWidth?: string;
|
|
459
546
|
isReady: boolean;
|
|
460
|
-
constructor(cdr: ChangeDetectorRef);
|
|
461
547
|
ngOnInit(): void;
|
|
462
548
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabDetails, never>;
|
|
463
549
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabDetails, "goab-details", never, { "heading": { "alias": "heading"; "required": true; }; "open": { "alias": "open"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -467,7 +553,6 @@ declare class GoabDetails extends GoabBaseComponent implements OnInit {
|
|
|
467
553
|
declare class GoabDivider extends GoabBaseComponent implements OnInit {
|
|
468
554
|
private cdr;
|
|
469
555
|
isReady: boolean;
|
|
470
|
-
constructor(cdr: ChangeDetectorRef);
|
|
471
556
|
ngOnInit(): void;
|
|
472
557
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabDivider, never>;
|
|
473
558
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabDivider, "goab-divider", never, {}, {}, never, never, true, never>;
|
|
@@ -476,15 +561,21 @@ declare class GoabDivider extends GoabBaseComponent implements OnInit {
|
|
|
476
561
|
declare class GoabDrawer implements OnInit {
|
|
477
562
|
private cdr;
|
|
478
563
|
version: string;
|
|
564
|
+
/** @required Whether the drawer is open. */
|
|
479
565
|
open: boolean;
|
|
566
|
+
/** @required The position of the drawer. */
|
|
480
567
|
position: GoabDrawerPosition;
|
|
568
|
+
/** The heading text displayed at the top of the drawer. */
|
|
481
569
|
heading: string | TemplateRef<any>;
|
|
570
|
+
/** Sets max height on bottom position, sets width on left and right position. */
|
|
482
571
|
maxSize?: GoabDrawerSize;
|
|
572
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
483
573
|
testId?: string;
|
|
574
|
+
/** Sets the actions area content using an Angular template reference. */
|
|
484
575
|
actions: TemplateRef<any>;
|
|
576
|
+
/** Emits when the drawer is closed. */
|
|
485
577
|
onClose: EventEmitter<any>;
|
|
486
578
|
isReady: boolean;
|
|
487
|
-
constructor(cdr: ChangeDetectorRef);
|
|
488
579
|
ngOnInit(): void;
|
|
489
580
|
_onClose(): void;
|
|
490
581
|
getHeadingAsString(): string;
|
|
@@ -496,27 +587,38 @@ declare class GoabDrawer implements OnInit {
|
|
|
496
587
|
|
|
497
588
|
declare class GoabDropdown extends GoabControlValueAccessor implements OnInit {
|
|
498
589
|
private cdr;
|
|
590
|
+
/** Identifier for the dropdown. Should be unique. */
|
|
499
591
|
name?: string;
|
|
592
|
+
/** Defines how the selected value will be translated for the screen reader. If not specified it will fall back to the name. */
|
|
500
593
|
ariaLabel?: string;
|
|
594
|
+
/** The aria-labelledby attribute identifies the element(or elements) that labels the dropdown it is applied to. Normally it is the id of the label. */
|
|
501
595
|
ariaLabelledBy?: string;
|
|
596
|
+
/** When true the dropdown will have the ability to filter options by typing into the input field. */
|
|
502
597
|
filterable?: boolean;
|
|
598
|
+
/** Icon shown to the left of the dropdown input. */
|
|
503
599
|
leadingIcon?: GoabIconType;
|
|
600
|
+
/** Maximum height of the dropdown menu. Non-native only. */
|
|
504
601
|
maxHeight?: string;
|
|
602
|
+
/** When true, allows multiple items to be selected. @internal */
|
|
505
603
|
multiselect?: boolean;
|
|
604
|
+
/** When true will render the native select HTML element. */
|
|
506
605
|
native?: boolean;
|
|
606
|
+
/** The text displayed for the dropdown before a selection is made. Non-native only. */
|
|
507
607
|
placeholder?: string;
|
|
608
|
+
/** Overrides the autosized menu width. Non-native only. */
|
|
508
609
|
width?: string;
|
|
610
|
+
/** Sets the maximum width of the dropdown. Use a CSS unit (px, %, ch, rem, em). */
|
|
509
611
|
maxWidth?: string;
|
|
612
|
+
/** Specifies the autocomplete attribute for the dropdown input. Native only. */
|
|
510
613
|
autoComplete?: string;
|
|
614
|
+
/** Sets the size of the dropdown. Compact reduces height for dense layouts. @default "default" */
|
|
511
615
|
size?: GoabDropdownSize;
|
|
512
|
-
|
|
513
|
-
* @deprecated This property has no effect and will be removed in a future version
|
|
514
|
-
*/
|
|
616
|
+
/** @deprecated This property has no effect and will be removed in a future version. */
|
|
515
617
|
relative?: boolean;
|
|
618
|
+
/** Emits when the user selects a value from the dropdown. Emits a GoabDropdownOnChangeDetail object with the new value. */
|
|
516
619
|
onChange: EventEmitter<GoabDropdownOnChangeDetail>;
|
|
517
620
|
isReady: boolean;
|
|
518
621
|
version: string;
|
|
519
|
-
constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
520
622
|
ngOnInit(): void;
|
|
521
623
|
_onChange(e: Event): void;
|
|
522
624
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabDropdown, never>;
|
|
@@ -528,13 +630,17 @@ declare class GoabDropdown extends GoabControlValueAccessor implements OnInit {
|
|
|
528
630
|
|
|
529
631
|
declare class GoabDropdownItem implements OnInit {
|
|
530
632
|
private cdr;
|
|
633
|
+
/** The value submitted when this item is selected. */
|
|
531
634
|
value?: string;
|
|
635
|
+
/** Text used to filter and match this item in typeahead search. */
|
|
532
636
|
filter?: string;
|
|
637
|
+
/** Display label for the dropdown item. */
|
|
533
638
|
label?: string;
|
|
639
|
+
/** Sets the name attribute of the dropdown item. */
|
|
534
640
|
name?: string;
|
|
641
|
+
/** Controls how the item is registered with the parent dropdown. */
|
|
535
642
|
mountType?: GoabDropdownItemMountType;
|
|
536
643
|
isReady: boolean;
|
|
537
|
-
constructor(cdr: ChangeDetectorRef);
|
|
538
644
|
ngOnInit(): void;
|
|
539
645
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabDropdownItem, never>;
|
|
540
646
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabDropdownItem, "goab-dropdown-item", never, { "value": { "alias": "value"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "mountType": { "alias": "mountType"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -542,54 +648,71 @@ declare class GoabDropdownItem implements OnInit {
|
|
|
542
648
|
|
|
543
649
|
declare class GoabFileUploadCard implements OnInit {
|
|
544
650
|
private cdr;
|
|
651
|
+
/** @required The name of the uploaded file to display. */
|
|
545
652
|
filename: string;
|
|
546
|
-
size
|
|
653
|
+
/** @required The file size in bytes. Displayed in a human-readable format (KB, MB). */
|
|
654
|
+
size: number;
|
|
655
|
+
/** The MIME type of the file. Used to determine the file type icon. */
|
|
547
656
|
type?: string;
|
|
657
|
+
/** Upload progress percentage from 0-100. Use -1 to indicate upload is complete. */
|
|
548
658
|
progress?: number;
|
|
659
|
+
/** Error message to display. When set, the card shows an error state with a cancel button. */
|
|
549
660
|
error?: string;
|
|
661
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
550
662
|
testId?: string;
|
|
663
|
+
/** Emits when the user cancels a file upload. Emits a GoabFileUploadOnCancelDetail object with the filename. */
|
|
551
664
|
onCancel: EventEmitter<GoabFileUploadOnCancelDetail>;
|
|
665
|
+
/** Emits when the user removes an uploaded file. Emits a GoabFileUploadOnDeleteDetail object with the filename. */
|
|
552
666
|
onDelete: EventEmitter<GoabFileUploadOnDeleteDetail>;
|
|
553
667
|
isReady: boolean;
|
|
554
668
|
version: string;
|
|
555
|
-
constructor(cdr: ChangeDetectorRef);
|
|
556
669
|
ngOnInit(): void;
|
|
557
670
|
_onCancel(event: Event): void;
|
|
558
671
|
_onDelete(event: Event): void;
|
|
559
672
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabFileUploadCard, never>;
|
|
560
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoabFileUploadCard, "goab-file-upload-card", never, { "filename": { "alias": "filename"; "required": true; }; "size": { "alias": "size"; "required":
|
|
673
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoabFileUploadCard, "goab-file-upload-card", never, { "filename": { "alias": "filename"; "required": true; }; "size": { "alias": "size"; "required": true; }; "type": { "alias": "type"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "error": { "alias": "error"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, { "onCancel": "onCancel"; "onDelete": "onDelete"; }, never, never, true, never>;
|
|
561
674
|
static ngAcceptInputType_size: unknown;
|
|
562
675
|
static ngAcceptInputType_progress: unknown;
|
|
563
676
|
}
|
|
564
677
|
|
|
565
678
|
declare class GoabFileUploadInput extends GoabBaseComponent implements OnInit {
|
|
566
679
|
private cdr;
|
|
680
|
+
/** Sets the id attribute on the file upload input element. */
|
|
567
681
|
id?: string;
|
|
568
|
-
variant
|
|
682
|
+
/** The input display variant. "dragdrop" shows a drag-and-drop area, "button" shows a simple button. @default "dragdrop" */
|
|
683
|
+
variant?: GoabFileUploadInputVariant;
|
|
684
|
+
/** Maximum file size with unit (e.g., "5MB", "100KB", "1GB"). Files exceeding this will be rejected. @default "5MB" */
|
|
569
685
|
maxFileSize?: string;
|
|
686
|
+
/** Accepted file types as a comma-separated list of MIME types or file extensions (e.g., "image/*,.pdf"). */
|
|
570
687
|
accept?: string;
|
|
688
|
+
/** Emits when a file is selected. Emits the selected file details. */
|
|
571
689
|
onSelectFile: EventEmitter<GoabFileUploadInputOnSelectFileDetail>;
|
|
572
690
|
isReady: boolean;
|
|
573
691
|
version: string;
|
|
574
|
-
constructor(cdr: ChangeDetectorRef);
|
|
575
692
|
ngOnInit(): void;
|
|
576
693
|
_onSelectFile(e: Event): void;
|
|
577
694
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabFileUploadInput, never>;
|
|
578
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoabFileUploadInput, "goab-file-upload-input", never, { "id": { "alias": "id"; "required": false; }; "variant": { "alias": "variant"; "required":
|
|
695
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoabFileUploadInput, "goab-file-upload-input", never, { "id": { "alias": "id"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; }, { "onSelectFile": "onSelectFile"; }, never, never, true, never>;
|
|
579
696
|
}
|
|
580
697
|
|
|
581
698
|
declare class GoabFilterChip extends GoabBaseComponent implements OnInit {
|
|
582
699
|
private cdr;
|
|
700
|
+
/** Shows an error state. */
|
|
583
701
|
error?: boolean;
|
|
702
|
+
/** Marks the chip as deletable. */
|
|
584
703
|
deletable?: boolean;
|
|
704
|
+
/** Text label of the chip. */
|
|
585
705
|
content?: string;
|
|
706
|
+
/** Sets the icon theme style for the filter chip. */
|
|
586
707
|
iconTheme?: GoabChipTheme;
|
|
708
|
+
/** Secondary text displayed in a smaller size before the main content. */
|
|
587
709
|
secondaryText?: string;
|
|
710
|
+
/** Icon displayed at the start of the chip. */
|
|
588
711
|
leadingIcon?: GoabIconType | null;
|
|
712
|
+
/** Emits when the filter chip delete button is clicked. */
|
|
589
713
|
onClick: EventEmitter<any>;
|
|
590
714
|
isReady: boolean;
|
|
591
715
|
version: string;
|
|
592
|
-
constructor(cdr: ChangeDetectorRef);
|
|
593
716
|
ngOnInit(): void;
|
|
594
717
|
_onClick(): void;
|
|
595
718
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabFilterChip, never>;
|
|
@@ -600,12 +723,14 @@ declare class GoabFilterChip extends GoabBaseComponent implements OnInit {
|
|
|
600
723
|
|
|
601
724
|
declare class GoabAppFooter implements OnInit {
|
|
602
725
|
private cdr;
|
|
726
|
+
/** The maximum width of the main content area. */
|
|
603
727
|
maxContentWidth?: string;
|
|
728
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
604
729
|
testId?: string;
|
|
730
|
+
/** URL for the Government of Alberta logo link. Set to empty string to disable the link. */
|
|
605
731
|
url?: string;
|
|
606
732
|
isReady: boolean;
|
|
607
733
|
version: string;
|
|
608
|
-
constructor(cdr: ChangeDetectorRef);
|
|
609
734
|
ngOnInit(): void;
|
|
610
735
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabAppFooter, never>;
|
|
611
736
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppFooter, "goab-app-footer", never, { "maxContentWidth": { "alias": "maxContentWidth"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "url": { "alias": "url"; "required": false; }; }, {}, never, ["[slot=nav]", "goab-app-footer-meta-section", "*"], true, never>;
|
|
@@ -613,11 +738,11 @@ declare class GoabAppFooter implements OnInit {
|
|
|
613
738
|
|
|
614
739
|
declare class GoabAppFooterMetaSection implements OnInit {
|
|
615
740
|
private cdr;
|
|
741
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
616
742
|
testId?: string;
|
|
617
|
-
/**
|
|
743
|
+
/** @required Sets the slot to "meta" to render the section in the correct footer position. */
|
|
618
744
|
slot: "meta";
|
|
619
745
|
isReady: boolean;
|
|
620
|
-
constructor(cdr: ChangeDetectorRef);
|
|
621
746
|
ngOnInit(): void;
|
|
622
747
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabAppFooterMetaSection, never>;
|
|
623
748
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppFooterMetaSection, "goab-app-footer-meta-section", never, { "testId": { "alias": "testId"; "required": false; }; "slot": { "alias": "slot"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -625,23 +750,30 @@ declare class GoabAppFooterMetaSection implements OnInit {
|
|
|
625
750
|
|
|
626
751
|
declare class GoabAppFooterNavSection implements OnInit {
|
|
627
752
|
private cdr;
|
|
753
|
+
/** The section heading displayed above the navigation links. */
|
|
628
754
|
heading?: string;
|
|
755
|
+
/** Maximum number of columns to display links in on larger screens. @default 1 */
|
|
629
756
|
maxColumnCount?: number | undefined;
|
|
757
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
630
758
|
testId?: string;
|
|
631
|
-
/**
|
|
759
|
+
/** @required Sets the slot to "nav" to render the section in the correct footer position. */
|
|
632
760
|
slot: "nav";
|
|
633
761
|
isReady: boolean;
|
|
634
|
-
constructor(cdr: ChangeDetectorRef);
|
|
635
762
|
ngOnInit(): void;
|
|
636
763
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabAppFooterNavSection, never>;
|
|
637
764
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppFooterNavSection, "goab-app-footer-nav-section", never, { "heading": { "alias": "heading"; "required": false; }; "maxColumnCount": { "alias": "maxColumnCount"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "slot": { "alias": "slot"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
638
765
|
}
|
|
639
766
|
|
|
640
767
|
declare class GoabPublicForm {
|
|
768
|
+
/** The initialization status of the form. Set to "initializing" while loading external state, then "complete" when ready. @default "complete" */
|
|
641
769
|
status?: GoabPublicFormStatus;
|
|
770
|
+
/** A name identifier for the form. Useful for debugging complex forms with multiple nested forms. */
|
|
642
771
|
name?: string;
|
|
772
|
+
/** Emits when the form is initialized. */
|
|
643
773
|
onInit: EventEmitter<Event>;
|
|
774
|
+
/** Emits when the form is complete. Emits the form state. */
|
|
644
775
|
onComplete: EventEmitter<GoabFormState>;
|
|
776
|
+
/** Emits when the form state changes. Emits the updated form state. */
|
|
645
777
|
onStateChange: EventEmitter<GoabFormState>;
|
|
646
778
|
_onInit(e: Event): void;
|
|
647
779
|
_onComplete(e: Event): void;
|
|
@@ -651,18 +783,25 @@ declare class GoabPublicForm {
|
|
|
651
783
|
}
|
|
652
784
|
|
|
653
785
|
declare class GoabPublicFormPage extends GoabBaseComponent {
|
|
786
|
+
/** Sets the id of the form page. */
|
|
654
787
|
id: string;
|
|
788
|
+
/** Sets the main heading text of the form page. */
|
|
655
789
|
heading: string;
|
|
790
|
+
/** Sets the sub-heading text displayed below the main heading. */
|
|
656
791
|
subHeading: string;
|
|
792
|
+
/** Sets the heading used in the summary view for this page. */
|
|
657
793
|
summaryHeading: string;
|
|
794
|
+
/** Sets the section title displayed above the heading. */
|
|
658
795
|
sectionTitle: string;
|
|
796
|
+
/** Sets the URL for the back navigation link. */
|
|
659
797
|
backUrl: string;
|
|
798
|
+
/** Sets the type of the form page step. @default "step" */
|
|
660
799
|
type: GoabPublicFormPageStep;
|
|
800
|
+
/** Sets the text for the continue or confirm button. */
|
|
661
801
|
buttonText: string;
|
|
802
|
+
/** Sets the visibility of the continue button. @default "visible" */
|
|
662
803
|
buttonVisibility: GoabPublicFormPageButtonVisibility;
|
|
663
|
-
/**
|
|
664
|
-
* triggers when the form page continues to the next step
|
|
665
|
-
*/
|
|
804
|
+
/** Emits when the form page continues to the next step. */
|
|
666
805
|
onContinue: EventEmitter<Event>;
|
|
667
806
|
_onContinue(event: Event): void;
|
|
668
807
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabPublicFormPage, never>;
|
|
@@ -670,16 +809,22 @@ declare class GoabPublicFormPage extends GoabBaseComponent {
|
|
|
670
809
|
}
|
|
671
810
|
|
|
672
811
|
declare class GoabPublicFormSummary {
|
|
812
|
+
/** Sets the heading text displayed above the form summary. */
|
|
673
813
|
heading?: string;
|
|
674
814
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabPublicFormSummary, never>;
|
|
675
815
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabPublicFormSummary, "goab-public-form-summary", never, { "heading": { "alias": "heading"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
676
816
|
}
|
|
677
817
|
|
|
678
818
|
declare class GoabPublicSubform extends GoabBaseComponent {
|
|
819
|
+
/** Sets the id of the subform. */
|
|
679
820
|
id?: string;
|
|
821
|
+
/** Sets the name identifier for the subform. */
|
|
680
822
|
name?: string;
|
|
823
|
+
/** Sets the text for the continue button. */
|
|
681
824
|
continueMsg?: string;
|
|
825
|
+
/** Emits when the subform is initialized. */
|
|
682
826
|
onInit: EventEmitter<Event>;
|
|
827
|
+
/** Emits when the subform state changes. */
|
|
683
828
|
onStateChange: EventEmitter<Event>;
|
|
684
829
|
_onInit(e: Event): void;
|
|
685
830
|
_onStateChange(e: Event): void;
|
|
@@ -688,30 +833,40 @@ declare class GoabPublicSubform extends GoabBaseComponent {
|
|
|
688
833
|
}
|
|
689
834
|
|
|
690
835
|
declare class GoabPublicSubformIndex extends GoabBaseComponent {
|
|
836
|
+
/** Sets the heading text of the subform index page. */
|
|
691
837
|
heading?: string;
|
|
838
|
+
/** Sets the section title displayed above the heading. */
|
|
692
839
|
sectionTitle?: string;
|
|
840
|
+
/** Sets the text for the action button that navigates to the subform. */
|
|
693
841
|
actionButtonText?: string;
|
|
842
|
+
/** Sets the visibility of the continue button. @default "hidden" */
|
|
694
843
|
buttonVisibility?: "visible" | "hidden";
|
|
695
844
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabPublicSubformIndex, never>;
|
|
696
845
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabPublicSubformIndex, "goab-public-subform-index", never, { "heading": { "alias": "heading"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; "actionButtonText": { "alias": "actionButtonText"; "required": false; }; "buttonVisibility": { "alias": "buttonVisibility"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
697
846
|
}
|
|
698
847
|
|
|
699
848
|
declare class GoabPublicFormTask {
|
|
849
|
+
/** Sets the status of the task, which determines its badge display. */
|
|
700
850
|
status?: GoabPublicFormTaskStatus;
|
|
701
851
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabPublicFormTask, never>;
|
|
702
852
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabPublicFormTask, "goab-public-form-task", never, { "status": { "alias": "status"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
703
853
|
}
|
|
704
854
|
|
|
705
855
|
declare class GoabPublicFormTaskList extends GoabBaseComponent {
|
|
856
|
+
/** Sets the heading text displayed above the task list. */
|
|
706
857
|
heading?: string;
|
|
707
858
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabPublicFormTaskList, never>;
|
|
708
859
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabPublicFormTaskList, "goab-public-form-task-list", never, { "heading": { "alias": "heading"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
709
860
|
}
|
|
710
861
|
|
|
711
862
|
declare class GoabFieldset {
|
|
863
|
+
/** Sets the id of the fieldset. */
|
|
712
864
|
id?: string;
|
|
865
|
+
/** Sets the section title displayed above the fieldset content. */
|
|
713
866
|
sectionTitle?: string;
|
|
867
|
+
/** Sets when changes will be dispatched to the form. @default "continue" */
|
|
714
868
|
dispatchOn: GoabFormDispatchOn;
|
|
869
|
+
/** Emits when the fieldset continues to the next step. Emits the continue detail. */
|
|
715
870
|
onContinue: EventEmitter<GoabFieldsetOnContinueDetail>;
|
|
716
871
|
_onContinue(event: Event): void;
|
|
717
872
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabFieldset, never>;
|
|
@@ -720,31 +875,39 @@ declare class GoabFieldset {
|
|
|
720
875
|
|
|
721
876
|
declare class GoabFormItem extends GoabBaseComponent implements OnInit {
|
|
722
877
|
private cdr;
|
|
878
|
+
/** Creates a label for the form item. */
|
|
723
879
|
label?: string;
|
|
880
|
+
/** Sets the label size. 'regular' for standard, 'large' for emphasis. */
|
|
724
881
|
labelSize?: GoabFormItemLabelSize;
|
|
725
|
-
|
|
726
|
-
|
|
882
|
+
/** Help text displayed under the form field to provide additional explanation. */
|
|
883
|
+
helpText?: string | TemplateRef<any>;
|
|
884
|
+
/** Error text displayed under the form field. Leave blank to indicate a valid field. */
|
|
885
|
+
error?: string | TemplateRef<any>;
|
|
886
|
+
/** Marks the field with an optional or required label indicator. */
|
|
727
887
|
requirement?: GoabFormItemRequirement;
|
|
888
|
+
/** Sets the maximum width of the form item. */
|
|
728
889
|
maxWidth?: string;
|
|
890
|
+
/** Sets the id attribute on the form item element. */
|
|
729
891
|
id?: string;
|
|
892
|
+
/** Specifies the input type for appropriate message spacing. Used with checkbox-list or radio-group. */
|
|
730
893
|
type?: GoabFormItemType;
|
|
731
|
-
/**
|
|
732
|
-
* Public form: to arrange fields in the summary
|
|
733
|
-
*/
|
|
894
|
+
/** Sets the display order within the form summary. For public-form use only. */
|
|
734
895
|
publicFormSummaryOrder?: number;
|
|
735
|
-
/**
|
|
736
|
-
* Public form: allow to override the label value within the form-summary to provide a shorter description of the value
|
|
737
|
-
*/
|
|
896
|
+
/** Overrides the label value within the form-summary to provide a shorter description. For public-form use only. */
|
|
738
897
|
name?: string;
|
|
739
898
|
isReady: boolean;
|
|
740
899
|
version: string;
|
|
741
|
-
|
|
900
|
+
getHelpTextAsString(): string | undefined;
|
|
901
|
+
getHelpTextAsTemplate(): TemplateRef<any> | null;
|
|
902
|
+
getErrorAsString(): string | undefined;
|
|
903
|
+
getErrorAsTemplate(): TemplateRef<any> | null;
|
|
742
904
|
ngOnInit(): void;
|
|
743
905
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabFormItem, never>;
|
|
744
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoabFormItem, "goab-form-item", never, { "label": { "alias": "label"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "error": { "alias": "error"; "required": false; }; "requirement": { "alias": "requirement"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "publicFormSummaryOrder": { "alias": "publicFormSummaryOrder"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, ["*"
|
|
906
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoabFormItem, "goab-form-item", never, { "label": { "alias": "label"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "error": { "alias": "error"; "required": false; }; "requirement": { "alias": "requirement"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "publicFormSummaryOrder": { "alias": "publicFormSummaryOrder"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
745
907
|
}
|
|
746
908
|
|
|
747
909
|
declare class GoabFormItemSlot {
|
|
910
|
+
/** @required Sets which form-item slot this content should render into. */
|
|
748
911
|
slot: "helptext" | "error";
|
|
749
912
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabFormItemSlot, never>;
|
|
750
913
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabFormItemSlot, "goab-form-item-slot", never, { "slot": { "alias": "slot"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -752,10 +915,11 @@ declare class GoabFormItemSlot {
|
|
|
752
915
|
|
|
753
916
|
declare class GoabFormStep implements OnInit {
|
|
754
917
|
private cdr;
|
|
918
|
+
/** The step label text displayed to users. */
|
|
755
919
|
text?: string;
|
|
920
|
+
/** The completion status of the step. Affects visual styling and icons. */
|
|
756
921
|
status?: GoabFormStepStatus;
|
|
757
922
|
isReady: boolean;
|
|
758
|
-
constructor(cdr: ChangeDetectorRef);
|
|
759
923
|
ngOnInit(): void;
|
|
760
924
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabFormStep, never>;
|
|
761
925
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabFormStep, "goab-form-step", never, { "text": { "alias": "text"; "required": false; }; "status": { "alias": "status"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -763,10 +927,11 @@ declare class GoabFormStep implements OnInit {
|
|
|
763
927
|
|
|
764
928
|
declare class GoabFormStepper extends GoabBaseComponent implements OnInit {
|
|
765
929
|
private cdr;
|
|
930
|
+
/** The current step state value (1-based index). Leaving it blank (-1) will allow any step to be accessed. @default -1 */
|
|
766
931
|
step?: number;
|
|
932
|
+
/** Emits when the form stepper step changes. Emits the new step as GoabFormStepperOnChangeDetail. */
|
|
767
933
|
onChange: EventEmitter<GoabFormStepperOnChangeDetail>;
|
|
768
934
|
isReady: boolean;
|
|
769
|
-
constructor(cdr: ChangeDetectorRef);
|
|
770
935
|
ngOnInit(): void;
|
|
771
936
|
_onChange(e: Event): void;
|
|
772
937
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabFormStepper, never>;
|
|
@@ -776,57 +941,76 @@ declare class GoabFormStepper extends GoabBaseComponent implements OnInit {
|
|
|
776
941
|
declare class GoabGrid extends GoabBaseComponent implements OnInit {
|
|
777
942
|
private cdr;
|
|
778
943
|
isReady: boolean;
|
|
944
|
+
/** @required Minimum width of the child elements. */
|
|
779
945
|
minChildWidth: string;
|
|
946
|
+
/** Gap between child items. */
|
|
780
947
|
gap?: Spacing;
|
|
781
|
-
constructor(cdr: ChangeDetectorRef);
|
|
782
948
|
ngOnInit(): void;
|
|
783
949
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabGrid, never>;
|
|
784
950
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabGrid, "goab-grid", never, { "minChildWidth": { "alias": "minChildWidth"; "required": true; }; "gap": { "alias": "gap"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
785
951
|
}
|
|
786
952
|
|
|
787
|
-
declare class GoabAppHeader
|
|
953
|
+
declare class GoabAppHeader implements OnInit {
|
|
788
954
|
private cdr;
|
|
955
|
+
/** Sets the URL to link from the alberta.ca logo. A full url is required. */
|
|
789
956
|
url?: string;
|
|
957
|
+
/** Sets the service name to display in the app header. */
|
|
790
958
|
heading?: string;
|
|
959
|
+
/** V2 only: Secondary text displayed under the service name. */
|
|
791
960
|
secondaryText?: string;
|
|
961
|
+
/** Maximum width of the content area. */
|
|
792
962
|
maxContentWidth?: string;
|
|
963
|
+
/** Sets the breakpoint in px for the full menu to display. */
|
|
793
964
|
fullMenuBreakpoint?: number;
|
|
965
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
966
|
+
testId?: string;
|
|
794
967
|
isReady: boolean;
|
|
795
968
|
version: string;
|
|
796
|
-
constructor(cdr: ChangeDetectorRef);
|
|
797
969
|
ngOnInit(): void;
|
|
970
|
+
/** Emits when the menu button is clicked. Used for custom menu handling. */
|
|
798
971
|
onMenuClick: EventEmitter<any>;
|
|
799
972
|
_onMenuClick(): void;
|
|
800
973
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabAppHeader, never>;
|
|
801
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppHeader, "goab-app-header", never, { "url": { "alias": "url"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "secondaryText": { "alias": "secondaryText"; "required": false; }; "maxContentWidth": { "alias": "maxContentWidth"; "required": false; }; "fullMenuBreakpoint": { "alias": "fullMenuBreakpoint"; "required": false; }; }, { "onMenuClick": "onMenuClick"; }, never, ["*"], true, never>;
|
|
974
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppHeader, "goab-app-header", never, { "url": { "alias": "url"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "secondaryText": { "alias": "secondaryText"; "required": false; }; "maxContentWidth": { "alias": "maxContentWidth"; "required": false; }; "fullMenuBreakpoint": { "alias": "fullMenuBreakpoint"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, { "onMenuClick": "onMenuClick"; }, never, ["*"], true, never>;
|
|
802
975
|
static ngAcceptInputType_fullMenuBreakpoint: unknown;
|
|
803
976
|
}
|
|
804
977
|
|
|
805
|
-
declare class GoabAppHeaderMenu
|
|
978
|
+
declare class GoabAppHeaderMenu implements OnInit {
|
|
806
979
|
private cdr;
|
|
980
|
+
/** Icon displayed before the heading text. */
|
|
807
981
|
leadingIcon?: GoabIconType;
|
|
982
|
+
/** The menu heading text displayed as the dropdown trigger. */
|
|
808
983
|
heading?: string;
|
|
984
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
985
|
+
testId?: string;
|
|
986
|
+
/** Sets the slot name for the component. */
|
|
809
987
|
slotName?: string;
|
|
810
988
|
get hostSlot(): string | null;
|
|
811
989
|
isReady: boolean;
|
|
812
|
-
constructor(cdr: ChangeDetectorRef);
|
|
813
990
|
ngOnInit(): void;
|
|
814
991
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabAppHeaderMenu, never>;
|
|
815
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppHeaderMenu, "goab-app-header-menu", never, { "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "slotName": { "alias": "slotName"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
992
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoabAppHeaderMenu, "goab-app-header-menu", never, { "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "slotName": { "alias": "slotName"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
816
993
|
}
|
|
817
994
|
|
|
818
995
|
declare class GoabHeroBanner implements OnInit {
|
|
819
996
|
private cdr;
|
|
820
997
|
isReady: boolean;
|
|
998
|
+
/** Main heading text. */
|
|
821
999
|
heading?: string;
|
|
1000
|
+
/** Background image url. */
|
|
822
1001
|
backgroundUrl?: string;
|
|
1002
|
+
/** Minimum height of the hero banner. Defaults to 600px when a background image is provided. */
|
|
823
1003
|
minHeight?: string;
|
|
1004
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
824
1005
|
testId?: string;
|
|
1006
|
+
/** Maximum width of the content area. */
|
|
825
1007
|
maxContentWidth?: string;
|
|
1008
|
+
/** Hero Banner background color when no background image is provided. */
|
|
826
1009
|
backgroundColor?: string;
|
|
1010
|
+
/** Text color within the hero banner. */
|
|
827
1011
|
textColor?: string;
|
|
828
|
-
actions
|
|
829
|
-
|
|
1012
|
+
/** Content rendered in the actions slot. */
|
|
1013
|
+
actions?: TemplateRef<any>;
|
|
830
1014
|
ngOnInit(): void;
|
|
831
1015
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabHeroBanner, never>;
|
|
832
1016
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabHeroBanner, "goab-hero-banner", never, { "heading": { "alias": "heading"; "required": false; }; "backgroundUrl": { "alias": "backgroundUrl"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "maxContentWidth": { "alias": "maxContentWidth"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -834,19 +1018,28 @@ declare class GoabHeroBanner implements OnInit {
|
|
|
834
1018
|
|
|
835
1019
|
declare class GoabIcon extends GoabBaseComponent implements OnInit {
|
|
836
1020
|
private cdr;
|
|
1021
|
+
/** @required The icon type to display. See GoabIconType for available icons. */
|
|
837
1022
|
type: GoabIconType | GoabIconOverridesType;
|
|
1023
|
+
/** Sets the size of the icon. Accepts numeric (1-6) or named sizes. @default "medium" */
|
|
838
1024
|
size?: GoabIconSize;
|
|
1025
|
+
/** Sets the icon theme. 'outline' shows stroked icons, 'filled' shows solid icons. */
|
|
839
1026
|
theme?: GoabIconTheme;
|
|
1027
|
+
/** When true, inverts the icon colors for use on dark backgrounds. */
|
|
840
1028
|
inverted?: boolean;
|
|
1029
|
+
/** Sets a custom fill color for the icon. Accepts any valid CSS color value. */
|
|
841
1030
|
fillColor?: string;
|
|
1031
|
+
/** Sets the opacity of the icon from 0 (transparent) to 1 (opaque). */
|
|
842
1032
|
opacity?: number;
|
|
1033
|
+
/** Adds an accessible title to the icon SVG. Used by screen readers. */
|
|
843
1034
|
title?: string;
|
|
1035
|
+
/** Defines how the icon will be announced by screen readers. */
|
|
844
1036
|
ariaLabel?: string;
|
|
1037
|
+
/** Sets the ARIA role for the icon. Use 'presentation' for decorative icons. */
|
|
1038
|
+
role?: string;
|
|
845
1039
|
isReady: boolean;
|
|
846
|
-
constructor(cdr: ChangeDetectorRef);
|
|
847
1040
|
ngOnInit(): void;
|
|
848
1041
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabIcon, never>;
|
|
849
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoabIcon, "goab-icon", never, { "type": { "alias": "type"; "required": true; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "fillColor": { "alias": "fillColor"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "title": { "alias": "title"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
1042
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoabIcon, "goab-icon", never, { "type": { "alias": "type"; "required": true; }; "size": { "alias": "size"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "inverted": { "alias": "inverted"; "required": false; }; "fillColor": { "alias": "fillColor"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "title": { "alias": "title"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, {}, never, never, true, never>;
|
|
850
1043
|
static ngAcceptInputType_inverted: unknown;
|
|
851
1044
|
static ngAcceptInputType_opacity: unknown;
|
|
852
1045
|
}
|
|
@@ -855,60 +1048,100 @@ declare class GoabIconButton extends GoabBaseComponent implements OnInit {
|
|
|
855
1048
|
private cdr;
|
|
856
1049
|
isReady: boolean;
|
|
857
1050
|
protected readonly JSON: JSON;
|
|
1051
|
+
/** @required Sets the icon. */
|
|
858
1052
|
icon: GoabIconType;
|
|
1053
|
+
/** Sets the size of button. @default "medium" */
|
|
859
1054
|
size?: GoabIconSize;
|
|
1055
|
+
/** Styles the button to show color, light, dark or destructive action. */
|
|
860
1056
|
variant?: GoabIconButtonVariant;
|
|
1057
|
+
/** Sets the icon theme. "outline" for stroked icons, "filled" for solid icons. @default "outline" */
|
|
1058
|
+
theme?: GoabIconTheme;
|
|
1059
|
+
/** Sets the title of the button. */
|
|
861
1060
|
title?: string;
|
|
1061
|
+
/** Disables the button. */
|
|
862
1062
|
disabled?: boolean;
|
|
1063
|
+
/** Sets the aria-label of the button. */
|
|
863
1064
|
ariaLabel?: string;
|
|
1065
|
+
/** Action identifier passed in click events for event delegation patterns. */
|
|
864
1066
|
action?: string;
|
|
1067
|
+
/** Single argument value passed with the action in click events. */
|
|
865
1068
|
actionArg?: string;
|
|
1069
|
+
/** Multiple argument values passed with the action in click events. */
|
|
866
1070
|
actionArgs?: Record<string, unknown>;
|
|
1071
|
+
/** Emits when the icon button is clicked. */
|
|
867
1072
|
onClick: EventEmitter<any>;
|
|
868
|
-
constructor(cdr: ChangeDetectorRef);
|
|
869
1073
|
ngOnInit(): void;
|
|
870
1074
|
_onClick(): void;
|
|
871
1075
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabIconButton, never>;
|
|
872
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoabIconButton, "goab-icon-button", never, { "icon": { "alias": "icon"; "required": true; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "action": { "alias": "action"; "required": false; }; "actionArg": { "alias": "actionArg"; "required": false; }; "actionArgs": { "alias": "actionArgs"; "required": false; }; }, { "onClick": "onClick"; }, never, ["*"], true, never>;
|
|
1076
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoabIconButton, "goab-icon-button", never, { "icon": { "alias": "icon"; "required": true; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "action": { "alias": "action"; "required": false; }; "actionArg": { "alias": "actionArg"; "required": false; }; "actionArgs": { "alias": "actionArgs"; "required": false; }; }, { "onClick": "onClick"; }, never, ["*"], true, never>;
|
|
873
1077
|
static ngAcceptInputType_disabled: unknown;
|
|
874
1078
|
}
|
|
875
1079
|
|
|
876
1080
|
declare class GoabInput extends GoabControlValueAccessor implements OnInit {
|
|
877
1081
|
private cdr;
|
|
1082
|
+
/** Sets the type of the input field. @default "text" */
|
|
878
1083
|
type?: GoabInputType;
|
|
1084
|
+
/** Name of input value that is received in the onChange event. */
|
|
879
1085
|
name?: string;
|
|
1086
|
+
/** Debounce delay in milliseconds before firing the change event. 0 means no debounce. */
|
|
880
1087
|
debounce?: number;
|
|
1088
|
+
/** Controls whether and how text input is automatically capitalized as it is entered/edited by the user. This only works on mobile devices. */
|
|
881
1089
|
autoCapitalize?: GoabInputAutoCapitalize;
|
|
1090
|
+
/** Specifies the autocomplete attribute for the input field. */
|
|
882
1091
|
autoComplete?: string;
|
|
1092
|
+
/** Text displayed within the input when no value is set. */
|
|
883
1093
|
placeholder?: string;
|
|
1094
|
+
/** Icon shown to the left of the text. */
|
|
884
1095
|
leadingIcon?: GoabIconType;
|
|
1096
|
+
/** Icon shown to the right of the text. */
|
|
885
1097
|
trailingIcon?: GoabIconType;
|
|
1098
|
+
/** Sets the visual style variant. 'goa' for standard GoA styling, 'bare' for minimal styling. */
|
|
886
1099
|
variant?: string;
|
|
1100
|
+
/** Sets the cursor focus to the input. */
|
|
887
1101
|
focused?: boolean;
|
|
1102
|
+
/** Makes the input readonly. */
|
|
888
1103
|
readonly?: boolean;
|
|
1104
|
+
/** Sets the width of the text input area. */
|
|
889
1105
|
width?: string;
|
|
1106
|
+
/** @deprecated Use leadingContent slot instead. */
|
|
890
1107
|
prefix?: string;
|
|
1108
|
+
/** @deprecated Use trailingContent slot instead. */
|
|
891
1109
|
suffix?: string;
|
|
1110
|
+
/** Defines how the input will be translated for the screen reader. If not specified it will fall back to the name. */
|
|
892
1111
|
ariaLabel?: string;
|
|
1112
|
+
/** Sets the maximum number of characters (as UTF-16 code units) the user can enter into the input. */
|
|
893
1113
|
maxLength?: number;
|
|
1114
|
+
/** A string value that supports any number, or an ISO 8601 format if using the date or datetime type. */
|
|
894
1115
|
min?: string | number;
|
|
1116
|
+
/** A string value that supports any number, or an ISO 8601 format if using the date or datetime type. */
|
|
895
1117
|
max?: string | number;
|
|
1118
|
+
/** How much a number or date should change by. */
|
|
896
1119
|
step?: number;
|
|
1120
|
+
/** The aria-labelledby attribute identifies the element (or elements) that labels the input. */
|
|
897
1121
|
ariaLabelledBy?: string;
|
|
1122
|
+
/** Aria label for the trailing icon. Use only when the trailing icon is interactive. */
|
|
898
1123
|
trailingIconAriaLabel?: string;
|
|
1124
|
+
/** Sets the text alignment within the input field. @default "left" */
|
|
899
1125
|
textAlign?: "left" | "right";
|
|
1126
|
+
/** Sets the leading content slot, accepting a string or template reference. */
|
|
900
1127
|
leadingContent: string | TemplateRef<any>;
|
|
1128
|
+
/** Sets the trailing content slot, accepting a string or template reference. */
|
|
901
1129
|
trailingContent: string | TemplateRef<any>;
|
|
1130
|
+
/** Sets the size of the input. 'compact' reduces height for dense layouts. @default "default" */
|
|
902
1131
|
size?: GoabInputSize;
|
|
1132
|
+
/** Emits when the trailing icon is clicked. */
|
|
903
1133
|
onTrailingIconClick: EventEmitter<any>;
|
|
1134
|
+
/** Emits when the input receives focus. Emits focus detail including the current value. */
|
|
904
1135
|
onFocus: EventEmitter<GoabInputOnFocusDetail>;
|
|
1136
|
+
/** Emits when the input loses focus. Emits blur detail including the current value. */
|
|
905
1137
|
onBlur: EventEmitter<GoabInputOnBlurDetail>;
|
|
1138
|
+
/** Emits when a key is pressed in the input. Emits key press detail including the value and key pressed. */
|
|
906
1139
|
onKeyPress: EventEmitter<GoabInputOnKeyPressDetail>;
|
|
1140
|
+
/** Emits when the input value changes. Emits change detail including the new value. */
|
|
907
1141
|
onChange: EventEmitter<GoabInputOnChangeDetail>;
|
|
908
1142
|
version: string;
|
|
909
1143
|
isReady: boolean;
|
|
910
1144
|
handleTrailingIconClick: boolean;
|
|
911
|
-
constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
912
1145
|
ngOnInit(): void;
|
|
913
1146
|
_onTrailingIconClick(_: Event): void;
|
|
914
1147
|
_onChange(e: Event): void;
|
|
@@ -931,45 +1164,81 @@ declare class GoabInput extends GoabControlValueAccessor implements OnInit {
|
|
|
931
1164
|
declare class GoabInputNumber implements ControlValueAccessor, OnInit {
|
|
932
1165
|
private cdr;
|
|
933
1166
|
isReady: boolean;
|
|
1167
|
+
/** Sets the type of the input field. @default "number" */
|
|
934
1168
|
type: GoabInputType;
|
|
1169
|
+
/** Name of input value that is received in the onChange event. */
|
|
935
1170
|
name?: string;
|
|
1171
|
+
/** Unique identifier for the input element. Used for label associations and accessibility. */
|
|
936
1172
|
id?: string;
|
|
1173
|
+
/** Debounce delay in milliseconds before firing the change event. 0 means no debounce. */
|
|
937
1174
|
debounce?: number;
|
|
1175
|
+
/** Disables this input. The input will not receive focus or events. */
|
|
938
1176
|
disabled?: boolean;
|
|
1177
|
+
/** Controls whether and how text input is automatically capitalized as it is entered/edited by the user. This only works on mobile devices. */
|
|
939
1178
|
autoCapitalize?: GoabInputAutoCapitalize;
|
|
1179
|
+
/** Text displayed within the input when no value is set. */
|
|
940
1180
|
placeholder?: string;
|
|
1181
|
+
/** Icon shown to the left of the text. */
|
|
941
1182
|
leadingIcon?: GoabIconType;
|
|
1183
|
+
/** Icon shown to the right of the text. */
|
|
942
1184
|
trailingIcon?: GoabIconType;
|
|
1185
|
+
/** Sets the visual style variant. 'goa' for standard GoA styling, 'bare' for minimal styling. */
|
|
943
1186
|
variant?: string;
|
|
1187
|
+
/** Sets the cursor focus to the input. */
|
|
944
1188
|
focused?: boolean;
|
|
1189
|
+
/** Makes the input readonly. */
|
|
945
1190
|
readonly?: boolean;
|
|
1191
|
+
/** Sets the input to an error state. */
|
|
946
1192
|
error?: boolean;
|
|
1193
|
+
/** Sets the width of the text input area. */
|
|
947
1194
|
width?: string;
|
|
1195
|
+
/** @deprecated Use leadingContent slot instead. */
|
|
948
1196
|
prefix?: string;
|
|
1197
|
+
/** @deprecated Use trailingContent slot instead. */
|
|
949
1198
|
suffix?: string;
|
|
1199
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
950
1200
|
testId?: string;
|
|
1201
|
+
/** Defines how the input will be translated for the screen reader. If not specified it will fall back to the name. */
|
|
951
1202
|
ariaLabel?: string;
|
|
1203
|
+
/** Sets the maximum number of characters (as UTF-16 code units) the user can enter into the input. */
|
|
952
1204
|
maxLength?: number;
|
|
1205
|
+
/** A string value that supports any number, or an ISO 8601 format if using the date or datetime type. */
|
|
953
1206
|
min?: string | number;
|
|
1207
|
+
/** A string value that supports any number, or an ISO 8601 format if using the date or datetime type. */
|
|
954
1208
|
max?: string | number;
|
|
1209
|
+
/** How much a number or date should change by. */
|
|
955
1210
|
step?: number;
|
|
1211
|
+
/** The aria-labelledby attribute identifies the element (or elements) that labels the input. */
|
|
956
1212
|
ariaLabelledBy?: string;
|
|
1213
|
+
/** Top margin. */
|
|
957
1214
|
mt?: Spacing;
|
|
1215
|
+
/** Right margin. */
|
|
958
1216
|
mr?: Spacing;
|
|
1217
|
+
/** Bottom margin. */
|
|
959
1218
|
mb?: Spacing;
|
|
1219
|
+
/** Left margin. */
|
|
960
1220
|
ml?: Spacing;
|
|
1221
|
+
/** Aria label for the trailing icon. Use only when the trailing icon is interactive. */
|
|
961
1222
|
trailingIconAriaLabel?: string;
|
|
1223
|
+
/** Sets the text alignment within the input field. @default "right" */
|
|
962
1224
|
textAlign?: "left" | "right";
|
|
1225
|
+
/** Bound to value. */
|
|
963
1226
|
value: number | null;
|
|
1227
|
+
/** Sets the leading content slot, accepting a string or template reference. */
|
|
964
1228
|
leadingContent: string | TemplateRef<any>;
|
|
1229
|
+
/** Sets the trailing content slot, accepting a string or template reference. */
|
|
965
1230
|
trailingContent: string | TemplateRef<any>;
|
|
1231
|
+
/** Emits when the trailing icon is clicked. */
|
|
966
1232
|
onTrailingIconClick: EventEmitter<void>;
|
|
1233
|
+
/** Emits when the input receives focus. Emits focus detail including the current value. */
|
|
967
1234
|
onFocus: EventEmitter<GoabInputOnFocusDetail>;
|
|
1235
|
+
/** Emits when the input loses focus. Emits blur detail including the current value. */
|
|
968
1236
|
onBlur: EventEmitter<GoabInputOnBlurDetail>;
|
|
1237
|
+
/** Emits when a key is pressed in the input. Emits key press detail including the value and key pressed. */
|
|
969
1238
|
onKeyPress: EventEmitter<GoabInputOnKeyPressDetail>;
|
|
1239
|
+
/** Emits when the input value changes. Emits change detail including the new value. */
|
|
970
1240
|
onChange: EventEmitter<GoabInputOnChangeDetail>;
|
|
971
1241
|
handleTrailingIconClick: boolean;
|
|
972
|
-
constructor(cdr: ChangeDetectorRef);
|
|
973
1242
|
ngOnInit(): void;
|
|
974
1243
|
_onTrailingIconClick(_: Event): void;
|
|
975
1244
|
_onChange(e: Event): void;
|
|
@@ -1001,13 +1270,17 @@ declare class GoabInputNumber implements ControlValueAccessor, OnInit {
|
|
|
1001
1270
|
|
|
1002
1271
|
declare class GoabLinearProgress implements OnInit {
|
|
1003
1272
|
private cdr;
|
|
1273
|
+
/** Progress value (0-100). When undefined, shows an indeterminate loading animation. */
|
|
1004
1274
|
progress?: number | null | undefined;
|
|
1275
|
+
/** Controls visibility of the percentage text. */
|
|
1005
1276
|
percentVisibility?: "visible" | "hidden" | undefined;
|
|
1277
|
+
/** Accessible label for the progress bar. */
|
|
1006
1278
|
ariaLabel?: string;
|
|
1279
|
+
/** ID of the element that labels this progress bar. */
|
|
1007
1280
|
ariaLabelledBy?: string;
|
|
1281
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1008
1282
|
testid?: string;
|
|
1009
1283
|
isReady: boolean;
|
|
1010
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1011
1284
|
ngOnInit(): void;
|
|
1012
1285
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabLinearProgress, never>;
|
|
1013
1286
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabLinearProgress, "goab-linear-progress", never, { "progress": { "alias": "progress"; "required": false; }; "percentVisibility": { "alias": "percentVisibility"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "testid": { "alias": "testid"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1016,19 +1289,30 @@ declare class GoabLinearProgress implements OnInit {
|
|
|
1016
1289
|
declare class GoabLink implements OnInit {
|
|
1017
1290
|
private cdr;
|
|
1018
1291
|
isReady: boolean;
|
|
1292
|
+
/** Icon displayed before the link text. */
|
|
1019
1293
|
leadingIcon?: GoabIconType;
|
|
1294
|
+
/** Icon displayed after the link text. */
|
|
1020
1295
|
trailingIcon?: GoabIconType;
|
|
1296
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1021
1297
|
testId?: string;
|
|
1298
|
+
/** Custom action event name to dispatch when the link is clicked. */
|
|
1022
1299
|
action?: string;
|
|
1300
|
+
/** Sets the color theme. 'interactive' for blue, 'dark' for black, 'light' for white text. @default "interactive" */
|
|
1023
1301
|
color?: GoabLinkColor;
|
|
1302
|
+
/** Sets the text size and corresponding icon size. @default "medium" */
|
|
1024
1303
|
size?: GoabLinkSize;
|
|
1304
|
+
/** Single argument to pass with the action event (deprecated, use actionArgs). */
|
|
1025
1305
|
actionArg?: string;
|
|
1306
|
+
/** Object of arguments to pass with the action event. */
|
|
1026
1307
|
actionArgs?: Record<string, unknown>;
|
|
1308
|
+
/** Top margin. */
|
|
1027
1309
|
mt?: Spacing;
|
|
1310
|
+
/** Bottom margin. */
|
|
1028
1311
|
mb?: Spacing;
|
|
1312
|
+
/** Left margin. */
|
|
1029
1313
|
ml?: Spacing;
|
|
1314
|
+
/** Right margin. */
|
|
1030
1315
|
mr?: Spacing;
|
|
1031
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1032
1316
|
ngOnInit(): void;
|
|
1033
1317
|
protected readonly JSON: JSON;
|
|
1034
1318
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabLink, never>;
|
|
@@ -1038,16 +1322,23 @@ declare class GoabLink implements OnInit {
|
|
|
1038
1322
|
declare class GoabMicrositeHeader implements OnInit {
|
|
1039
1323
|
private cdr;
|
|
1040
1324
|
isReady: boolean;
|
|
1325
|
+
/** @required The service type which determines the badge style. "live" shows official government site text, "alpha" and "beta" show development stage badges. */
|
|
1041
1326
|
type: GoabServiceLevel;
|
|
1327
|
+
/** @required App or service version displayed on the right side of the header. */
|
|
1042
1328
|
version: string | TemplateRef<any>;
|
|
1329
|
+
/** Url to feedback page that will be displayed when provided. */
|
|
1043
1330
|
feedbackUrl?: string;
|
|
1331
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1044
1332
|
testId?: string;
|
|
1333
|
+
/** Maximum width of the content area. */
|
|
1045
1334
|
maxContentWidth?: string;
|
|
1335
|
+
/** For internal feedback urls sets target. */
|
|
1046
1336
|
feedbackUrlTarget?: GoabLinkTarget;
|
|
1337
|
+
/** Sets the target attribute for the header link. */
|
|
1047
1338
|
headerUrlTarget?: GoabLinkTarget;
|
|
1048
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1049
1339
|
ngOnInit(): void;
|
|
1050
|
-
|
|
1340
|
+
/** Emits when the feedback link is clicked. */
|
|
1341
|
+
onFeedbackClick: EventEmitter<void>;
|
|
1051
1342
|
getVersionAsString(): string;
|
|
1052
1343
|
getVersionAsTemplate(): TemplateRef<any> | null;
|
|
1053
1344
|
_onFeedbackClick(): void;
|
|
@@ -1059,22 +1350,30 @@ declare class GoabModal implements OnInit {
|
|
|
1059
1350
|
private cdr;
|
|
1060
1351
|
isReady: boolean;
|
|
1061
1352
|
version: string;
|
|
1062
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1063
1353
|
ngOnInit(): void;
|
|
1354
|
+
/** Define the context and colour of the callout modal. It is required when type is set to callout. */
|
|
1064
1355
|
calloutVariant?: GoabModalCalloutVariant;
|
|
1356
|
+
/** Controls if modal is visible or not. */
|
|
1065
1357
|
open?: boolean;
|
|
1358
|
+
/** Set the max allowed width of the modal. */
|
|
1066
1359
|
maxWidth?: string;
|
|
1360
|
+
/** Show close icon and allow clicking the background to close the modal. */
|
|
1067
1361
|
closable: boolean;
|
|
1362
|
+
/** Sets the animation transition when opening/closing. 'fast' or 'slow' for animated, 'none' for instant. */
|
|
1068
1363
|
transition?: GoabModalTransition;
|
|
1364
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1069
1365
|
testId?: string;
|
|
1070
1366
|
/**
|
|
1071
1367
|
* @deprecated The role property is deprecated and will be removed in a future version.
|
|
1072
1368
|
* The modal will always use role="dialog".
|
|
1073
1369
|
*/
|
|
1074
1370
|
role?: string;
|
|
1371
|
+
/** The heading text displayed at the top of the modal. */
|
|
1075
1372
|
heading: string | TemplateRef<any>;
|
|
1373
|
+
/** Sets the template reference for the modal action buttons. */
|
|
1076
1374
|
actions: TemplateRef<any>;
|
|
1077
|
-
|
|
1375
|
+
/** Emits when the modal is closed. */
|
|
1376
|
+
onClose: EventEmitter<void>;
|
|
1078
1377
|
getHeadingAsString(): string;
|
|
1079
1378
|
getHeadingAsTemplate(): TemplateRef<any> | null;
|
|
1080
1379
|
_onClose(): void;
|
|
@@ -1084,14 +1383,23 @@ declare class GoabModal implements OnInit {
|
|
|
1084
1383
|
}
|
|
1085
1384
|
|
|
1086
1385
|
declare class GoabMenuButton {
|
|
1386
|
+
/** The button label text. When provided, displays as a text button with a dropdown icon. */
|
|
1087
1387
|
text?: string;
|
|
1388
|
+
/** The button style variant. */
|
|
1088
1389
|
type?: GoabButtonType;
|
|
1390
|
+
/** Sets the size of the button. */
|
|
1089
1391
|
size?: GoabButtonSize;
|
|
1392
|
+
/** Sets the color variant for semantic meaning. */
|
|
1090
1393
|
variant?: GoabButtonVariant;
|
|
1394
|
+
/** Maximum width of the dropdown menu. */
|
|
1091
1395
|
maxWidth?: string;
|
|
1396
|
+
/** Icon displayed before the button text. When no text is provided, displays as an icon button. */
|
|
1092
1397
|
leadingIcon?: GoabIconType;
|
|
1398
|
+
/** Sets the aria-label for the icon button in icon-only mode. */
|
|
1093
1399
|
ariaLabel?: string;
|
|
1400
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1094
1401
|
testId?: string;
|
|
1402
|
+
/** Emits when a menu action is clicked. Emits the action detail. */
|
|
1095
1403
|
onAction: EventEmitter<GoabMenuButtonOnActionDetail>;
|
|
1096
1404
|
_onAction(e: Event): void;
|
|
1097
1405
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabMenuButton, never>;
|
|
@@ -1099,9 +1407,13 @@ declare class GoabMenuButton {
|
|
|
1099
1407
|
}
|
|
1100
1408
|
|
|
1101
1409
|
declare class GoabMenuAction {
|
|
1410
|
+
/** @required Display text for the menu action. */
|
|
1102
1411
|
text: string;
|
|
1412
|
+
/** @required Action identifier included in the click event. */
|
|
1103
1413
|
action: string;
|
|
1414
|
+
/** Icon displayed before the text. */
|
|
1104
1415
|
icon?: GoabIconType;
|
|
1416
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1105
1417
|
testId?: string;
|
|
1106
1418
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabMenuAction, never>;
|
|
1107
1419
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabMenuAction, "goab-menu-action", never, { "text": { "alias": "text"; "required": true; }; "action": { "alias": "action"; "required": true; }; "icon": { "alias": "icon"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1111,14 +1423,20 @@ declare class GoabNotification implements OnInit {
|
|
|
1111
1423
|
private cdr;
|
|
1112
1424
|
isReady: boolean;
|
|
1113
1425
|
version: string;
|
|
1426
|
+
/** Define the context and colour of the notification. @default "information" */
|
|
1114
1427
|
type?: GoabNotificationType;
|
|
1428
|
+
/** Indicates how assistive technology should handle updates to the live region. */
|
|
1115
1429
|
ariaLive?: GoabAriaLiveType;
|
|
1430
|
+
/** Maximum width of the content area. */
|
|
1116
1431
|
maxContentWidth?: string;
|
|
1432
|
+
/** Sets the visual prominence. 'high' for full background, 'low' for medium. @default "high" */
|
|
1117
1433
|
emphasis?: GoabNotificationEmphasis;
|
|
1434
|
+
/** When true, reduces padding for a more compact notification. */
|
|
1118
1435
|
compact?: boolean;
|
|
1436
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1119
1437
|
testId?: string;
|
|
1120
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1121
1438
|
ngOnInit(): void;
|
|
1439
|
+
/** Emits when the notification is dismissed. */
|
|
1122
1440
|
onDismiss: EventEmitter<any>;
|
|
1123
1441
|
_onDismiss(): void;
|
|
1124
1442
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabNotification, never>;
|
|
@@ -1129,9 +1447,10 @@ declare class GoabNotification implements OnInit {
|
|
|
1129
1447
|
declare class GoabPageBlock implements OnInit {
|
|
1130
1448
|
private cdr;
|
|
1131
1449
|
isReady: boolean;
|
|
1450
|
+
/** Maximum width of the content area. Use "full" for 100% width or a CSS dimension like "1200px". */
|
|
1132
1451
|
width?: GoabPageBlockSize;
|
|
1452
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1133
1453
|
testId?: string;
|
|
1134
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1135
1454
|
ngOnInit(): void;
|
|
1136
1455
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabPageBlock, never>;
|
|
1137
1456
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabPageBlock, "goab-page-block", never, { "width": { "alias": "width"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1140,8 +1459,8 @@ declare class GoabPageBlock implements OnInit {
|
|
|
1140
1459
|
declare class GoabPages extends GoabBaseComponent implements OnInit {
|
|
1141
1460
|
private cdr;
|
|
1142
1461
|
isReady: boolean;
|
|
1462
|
+
/** The currently visible page (1-based index). */
|
|
1143
1463
|
current?: number;
|
|
1144
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1145
1464
|
ngOnInit(): void;
|
|
1146
1465
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabPages, never>;
|
|
1147
1466
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabPages, "goab-pages", never, { "current": { "alias": "current"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1152,12 +1471,16 @@ declare class GoabPagination extends GoabBaseComponent implements OnInit {
|
|
|
1152
1471
|
private cdr;
|
|
1153
1472
|
isReady: boolean;
|
|
1154
1473
|
version: string;
|
|
1474
|
+
/** @required Total number of data items within all pages. */
|
|
1155
1475
|
itemCount: number;
|
|
1476
|
+
/** @required The current page being viewed (non-zero based). */
|
|
1156
1477
|
pageNumber: number;
|
|
1478
|
+
/** Number of data items shown per page. @default 10 */
|
|
1157
1479
|
perPageCount?: number;
|
|
1480
|
+
/** Controls which nav controls are visible. @default "all" */
|
|
1158
1481
|
variant?: GoabPaginationVariant;
|
|
1159
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1160
1482
|
ngOnInit(): void;
|
|
1483
|
+
/** Emits when the page changes. Emits the new page number as part of the change detail. */
|
|
1161
1484
|
onChange: EventEmitter<GoabPaginationOnChangeDetail>;
|
|
1162
1485
|
_onChange(e: Event): void;
|
|
1163
1486
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabPagination, never>;
|
|
@@ -1167,16 +1490,18 @@ declare class GoabPagination extends GoabBaseComponent implements OnInit {
|
|
|
1167
1490
|
declare class GoabPopover extends GoabBaseComponent implements OnInit {
|
|
1168
1491
|
private cdr;
|
|
1169
1492
|
isReady: boolean;
|
|
1493
|
+
/** Sets the maximum width of the popover container. @default "320px" */
|
|
1170
1494
|
maxWidth: string;
|
|
1495
|
+
/** Sets the minimum width of the popover container. */
|
|
1171
1496
|
minWidth?: string;
|
|
1497
|
+
/** Sets if the popover has padding. Use false when content needs to be flush with boundaries. @default true */
|
|
1172
1498
|
padded: boolean;
|
|
1499
|
+
/** Provides control to where the popover content is positioned. */
|
|
1173
1500
|
position?: GoabPopoverPosition;
|
|
1174
|
-
|
|
1175
|
-
* @deprecated This property has no effect and will be removed in a future version
|
|
1176
|
-
*/
|
|
1501
|
+
/** @deprecated This property has no effect and will be removed in a future version. */
|
|
1177
1502
|
relative?: boolean;
|
|
1503
|
+
/** @required Sets the target template reference for the popover trigger. */
|
|
1178
1504
|
target: TemplateRef<any>;
|
|
1179
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1180
1505
|
ngOnInit(): void;
|
|
1181
1506
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabPopover, never>;
|
|
1182
1507
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabPopover, "goab-popover", never, { "maxWidth": { "alias": "maxWidth"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "padded": { "alias": "padded"; "required": false; }; "position": { "alias": "position"; "required": false; }; "relative": { "alias": "relative"; "required": false; }; "target": { "alias": "target"; "required": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1185,14 +1510,19 @@ declare class GoabPopover extends GoabBaseComponent implements OnInit {
|
|
|
1185
1510
|
declare class GoabPushDrawer implements OnInit {
|
|
1186
1511
|
private cdr;
|
|
1187
1512
|
version: string;
|
|
1513
|
+
/** Sets the open state of the push drawer. */
|
|
1188
1514
|
open?: boolean;
|
|
1515
|
+
/** Sets the heading text or template for the push drawer. */
|
|
1189
1516
|
heading: string | TemplateRef<any>;
|
|
1517
|
+
/** Sets the width of the push drawer panel. */
|
|
1190
1518
|
width?: string;
|
|
1519
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1191
1520
|
testId?: string;
|
|
1521
|
+
/** Sets the template reference for the actions slot content. */
|
|
1192
1522
|
actions: TemplateRef<any>;
|
|
1193
|
-
|
|
1523
|
+
/** Emits when the push drawer closes. */
|
|
1524
|
+
onClose: EventEmitter<void>;
|
|
1194
1525
|
isReady: boolean;
|
|
1195
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1196
1526
|
ngOnInit(): void;
|
|
1197
1527
|
_onClose(): void;
|
|
1198
1528
|
getHeadingAsString(): string;
|
|
@@ -1206,35 +1536,52 @@ declare class GoabRadioGroup extends GoabControlValueAccessor implements OnInit
|
|
|
1206
1536
|
private cdr;
|
|
1207
1537
|
isReady: boolean;
|
|
1208
1538
|
version: string;
|
|
1539
|
+
/** The name for the radio group. Used for accessibility and change events. */
|
|
1209
1540
|
name?: string;
|
|
1541
|
+
/** The currently selected value in the radio group. */
|
|
1542
|
+
value?: string;
|
|
1543
|
+
/** Sets the layout direction. 'vertical' stacks items, 'horizontal' places them in a row. */
|
|
1210
1544
|
orientation?: GoabRadioGroupOrientation;
|
|
1545
|
+
/** Defines how the radio group will be announced by screen readers. */
|
|
1211
1546
|
ariaLabel?: string;
|
|
1547
|
+
/** Sets the size of all radio items. 'compact' reduces spacing for dense layouts (V2 only). @default "default" */
|
|
1212
1548
|
size?: GoabRadioGroupSize;
|
|
1213
|
-
constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
1214
1549
|
ngOnInit(): void;
|
|
1550
|
+
/** Emits when the selected radio item changes. Emits the name, value, and event of the selected item. */
|
|
1215
1551
|
onChange: EventEmitter<GoabRadioGroupOnChangeDetail>;
|
|
1216
1552
|
_onChange(e: Event): void;
|
|
1217
1553
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabRadioGroup, never>;
|
|
1218
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoabRadioGroup, "goab-radio-group", never, { "name": { "alias": "name"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
|
|
1554
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoabRadioGroup, "goab-radio-group", never, { "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
|
|
1219
1555
|
}
|
|
1220
1556
|
|
|
1221
1557
|
declare class GoabRadioItem extends GoabBaseComponent implements OnInit {
|
|
1222
1558
|
private cdr;
|
|
1559
|
+
/** The value of this radio option. Will be emitted when selected. */
|
|
1223
1560
|
value?: string;
|
|
1561
|
+
/** The display label for this radio option. Falls back to value if not provided. */
|
|
1224
1562
|
label?: string;
|
|
1563
|
+
/** The name of the radio group. Inherited from the parent RadioGroup if not set. */
|
|
1225
1564
|
name?: string;
|
|
1565
|
+
/** Additional description text displayed below the label. */
|
|
1226
1566
|
description: string | TemplateRef<any>;
|
|
1567
|
+
/** Sets the template reference for the reveal slot content. */
|
|
1227
1568
|
reveal?: TemplateRef<any>;
|
|
1569
|
+
/** Defines how this option will be announced by screen readers. */
|
|
1228
1570
|
ariaLabel?: string;
|
|
1571
|
+
/** Text announced by screen readers when the reveal slot content is displayed. */
|
|
1229
1572
|
revealAriaLabel?: string;
|
|
1573
|
+
/** Disables this radio option. Also disabled if the parent RadioGroup is disabled. */
|
|
1230
1574
|
disabled?: boolean;
|
|
1575
|
+
/** @internal Sets this radio option as checked/selected. */
|
|
1231
1576
|
checked?: boolean;
|
|
1577
|
+
/** Shows an error state on this radio option. */
|
|
1232
1578
|
error?: boolean;
|
|
1579
|
+
/** Sets the maximum width of this radio item. */
|
|
1233
1580
|
maxWidth?: string;
|
|
1581
|
+
/** Enables compact layout for the radio item, reducing spacing for dense layouts. */
|
|
1234
1582
|
compact?: boolean;
|
|
1235
1583
|
isReady: boolean;
|
|
1236
1584
|
version: string;
|
|
1237
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1238
1585
|
ngOnInit(): void;
|
|
1239
1586
|
getDescriptionAsString(): string;
|
|
1240
1587
|
getDescriptionAsTemplate(): TemplateRef<any> | null;
|
|
@@ -1250,8 +1597,8 @@ declare class GoabSideMenu implements OnInit {
|
|
|
1250
1597
|
private cdr;
|
|
1251
1598
|
isReady: boolean;
|
|
1252
1599
|
version: string;
|
|
1600
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1253
1601
|
testId?: string;
|
|
1254
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1255
1602
|
ngOnInit(): void;
|
|
1256
1603
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabSideMenu, never>;
|
|
1257
1604
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabSideMenu, "goab-side-menu", never, { "testId": { "alias": "testId"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1261,9 +1608,10 @@ declare class GoabSideMenuGroup extends GoabBaseComponent implements OnInit {
|
|
|
1261
1608
|
private cdr;
|
|
1262
1609
|
isReady: boolean;
|
|
1263
1610
|
version: string;
|
|
1611
|
+
/** @required The heading text for the menu group. */
|
|
1264
1612
|
heading: string;
|
|
1613
|
+
/** Icon displayed alongside the heading. */
|
|
1265
1614
|
icon?: GoabIconType;
|
|
1266
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1267
1615
|
ngOnInit(): void;
|
|
1268
1616
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabSideMenuGroup, never>;
|
|
1269
1617
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabSideMenuGroup, "goab-side-menu-group", never, { "heading": { "alias": "heading"; "required": true; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1273,10 +1621,12 @@ declare class GoabSideMenuHeading implements OnInit {
|
|
|
1273
1621
|
private cdr;
|
|
1274
1622
|
isReady: boolean;
|
|
1275
1623
|
version: string;
|
|
1624
|
+
/** @required Icon displayed before the heading text. */
|
|
1276
1625
|
icon: GoabIconType;
|
|
1626
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1277
1627
|
testId?: string;
|
|
1628
|
+
/** Sets the template for the meta slot content. */
|
|
1278
1629
|
meta: TemplateRef<any>;
|
|
1279
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1280
1630
|
ngOnInit(): void;
|
|
1281
1631
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabSideMenuHeading, never>;
|
|
1282
1632
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabSideMenuHeading, "goab-side-menu-heading", never, { "icon": { "alias": "icon"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "meta": { "alias": "meta"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1285,11 +1635,14 @@ declare class GoabSideMenuHeading implements OnInit {
|
|
|
1285
1635
|
declare class GoabSkeleton extends GoabBaseComponent implements OnInit {
|
|
1286
1636
|
private cdr;
|
|
1287
1637
|
isReady: boolean;
|
|
1638
|
+
/** @required Sets the skeleton shape to represent your content. */
|
|
1288
1639
|
type: GoabSkeletonType;
|
|
1640
|
+
/** Sets the maximum width. Currently only used in card skeleton type. @default "300px" */
|
|
1289
1641
|
maxWidth: string;
|
|
1642
|
+
/** Size can affect either the height, width or both for different skeleton types. */
|
|
1290
1643
|
size?: GoabSkeletonSize;
|
|
1644
|
+
/** Used within components that contain multiple lines. Currently only used in card skeleton type. */
|
|
1291
1645
|
lineCount?: number;
|
|
1292
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1293
1646
|
ngOnInit(): void;
|
|
1294
1647
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabSkeleton, never>;
|
|
1295
1648
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabSkeleton, "goab-skeleton", never, { "type": { "alias": "type"; "required": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "size": { "alias": "size"; "required": false; }; "lineCount": { "alias": "lineCount"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1299,10 +1652,12 @@ declare class GoabSkeleton extends GoabBaseComponent implements OnInit {
|
|
|
1299
1652
|
declare class GoabSpacer implements OnInit {
|
|
1300
1653
|
private cdr;
|
|
1301
1654
|
isReady: boolean;
|
|
1655
|
+
/** Horizontal spacing. */
|
|
1302
1656
|
hSpacing?: GoabSpacerHorizontalSpacing;
|
|
1657
|
+
/** Vertical spacing. */
|
|
1303
1658
|
vSpacing?: GoabSpacerVerticalSpacing;
|
|
1659
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1304
1660
|
testId?: string;
|
|
1305
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1306
1661
|
ngOnInit(): void;
|
|
1307
1662
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabSpacer, never>;
|
|
1308
1663
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabSpacer, "goab-spacer", never, { "hSpacing": { "alias": "hSpacing"; "required": false; }; "vSpacing": { "alias": "vSpacing"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1311,10 +1666,12 @@ declare class GoabSpacer implements OnInit {
|
|
|
1311
1666
|
declare class GoabTab implements OnInit {
|
|
1312
1667
|
private cdr;
|
|
1313
1668
|
isReady: boolean;
|
|
1669
|
+
/** The text label for this tab. Can also use the heading slot for custom content. */
|
|
1314
1670
|
heading: string | TemplateRef<any>;
|
|
1671
|
+
/** When true, disables the tab. */
|
|
1315
1672
|
disabled?: boolean;
|
|
1673
|
+
/** Sets the URL slug for the tab. */
|
|
1316
1674
|
slug?: string;
|
|
1317
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1318
1675
|
ngOnInit(): void;
|
|
1319
1676
|
getHeadingAsString(): string;
|
|
1320
1677
|
getHeadingAsTemplate(): TemplateRef<any> | null;
|
|
@@ -1327,13 +1684,18 @@ declare class GoabTable extends GoabBaseComponent implements OnInit {
|
|
|
1327
1684
|
private cdr;
|
|
1328
1685
|
isReady: boolean;
|
|
1329
1686
|
version: string;
|
|
1687
|
+
/** Width of the table. By default it will fit the enclosed content. */
|
|
1330
1688
|
width?: string;
|
|
1689
|
+
/** Sets a relaxed variant of the table with more vertical padding for the cells. */
|
|
1331
1690
|
variant?: GoabTableVariant;
|
|
1691
|
+
/** Sets sort mode: "single" allows one column, "multi" allows up to 2 columns. */
|
|
1332
1692
|
sortMode?: GoabTableSortMode;
|
|
1693
|
+
/** When true, alternates row background colors for improved readability. */
|
|
1333
1694
|
striped?: boolean;
|
|
1334
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1335
1695
|
ngOnInit(): void;
|
|
1696
|
+
/** Emits when a table column is sorted. Emits the sort column and direction as GoabTableOnSortDetail. */
|
|
1336
1697
|
onSort: EventEmitter<GoabTableOnSortDetail>;
|
|
1698
|
+
/** Emits when multi-column sorting changes. Emits an array of sort entries as GoabTableOnMultiSortDetail. */
|
|
1337
1699
|
onMultiSort: EventEmitter<GoabTableOnMultiSortDetail>;
|
|
1338
1700
|
_onSort(e: Event): void;
|
|
1339
1701
|
_onMultiSort(e: Event): void;
|
|
@@ -1345,10 +1707,12 @@ declare class GoabTable extends GoabBaseComponent implements OnInit {
|
|
|
1345
1707
|
declare class GoabTableSortHeader implements OnInit {
|
|
1346
1708
|
private cdr;
|
|
1347
1709
|
isReady: boolean;
|
|
1710
|
+
/** Column name identifier for sorting. */
|
|
1348
1711
|
name?: string;
|
|
1712
|
+
/** Sets the sort direction indicator. @default "none" */
|
|
1349
1713
|
direction?: GoabTableSortDirection;
|
|
1714
|
+
/** Sort order number for multi-column sort display ("1", "2", etc). */
|
|
1350
1715
|
sortOrder?: GoabTableSortOrder;
|
|
1351
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1352
1716
|
ngOnInit(): void;
|
|
1353
1717
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabTableSortHeader, never>;
|
|
1354
1718
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabTableSortHeader, "goab-table-sort-header", never, { "name": { "alias": "name"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "sortOrder": { "alias": "sortOrder"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1358,14 +1722,18 @@ declare class GoabTabs implements OnInit {
|
|
|
1358
1722
|
private cdr;
|
|
1359
1723
|
isReady: boolean;
|
|
1360
1724
|
version: string;
|
|
1725
|
+
/** The initially active tab (1-based index). If not set, the first tab is active. */
|
|
1361
1726
|
initialTab?: number;
|
|
1727
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1362
1728
|
testId?: string;
|
|
1729
|
+
/** Visual style variant. "segmented" shows pill-style tabs with animation. */
|
|
1363
1730
|
variant?: GoabTabsVariant;
|
|
1364
1731
|
/** Tab layout orientation. "auto" stacks vertically on mobile (default), "horizontal" keeps horizontal on all screen sizes. */
|
|
1365
1732
|
orientation?: GoabTabsOrientation;
|
|
1733
|
+
/** Sets the navigation mode for tab switching. "hash" updates the URL hash when switching tabs. */
|
|
1366
1734
|
navigation?: GoabTabsNavigation;
|
|
1367
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1368
1735
|
ngOnInit(): void;
|
|
1736
|
+
/** Emits when the active tab changes. Emits the new tab index as GoabTabsOnChangeDetail. */
|
|
1369
1737
|
onChange: EventEmitter<GoabTabsOnChangeDetail>;
|
|
1370
1738
|
_onChange(e: Event): void;
|
|
1371
1739
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabTabs, never>;
|
|
@@ -1378,10 +1746,12 @@ type SnackbarHorizontalPosition = "left" | "center" | "right";
|
|
|
1378
1746
|
declare class GoabTemporaryNotificationCtrl implements OnInit {
|
|
1379
1747
|
private cdr;
|
|
1380
1748
|
isReady: boolean;
|
|
1749
|
+
/** Vertical position of the notification container. @default "bottom" */
|
|
1381
1750
|
verticalPosition: SnackbarVerticalPosition;
|
|
1751
|
+
/** Horizontal position of the notification container. @default "center" */
|
|
1382
1752
|
horizontalPosition: SnackbarHorizontalPosition;
|
|
1753
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1383
1754
|
testId?: string;
|
|
1384
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1385
1755
|
ngOnInit(): void;
|
|
1386
1756
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabTemporaryNotificationCtrl, never>;
|
|
1387
1757
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabTemporaryNotificationCtrl, "goab-temporary-notification-ctrl", never, { "verticalPosition": { "alias": "verticalPosition"; "required": false; }; "horizontalPosition": { "alias": "horizontalPosition"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1389,18 +1759,26 @@ declare class GoabTemporaryNotificationCtrl implements OnInit {
|
|
|
1389
1759
|
|
|
1390
1760
|
declare class GoabText implements OnInit {
|
|
1391
1761
|
private cdr;
|
|
1762
|
+
/** The HTML element to render. Use semantic elements like 'h1'-'h6' for headings. */
|
|
1392
1763
|
tag?: GoabTextTextElement | GoabTextHeadingElement;
|
|
1764
|
+
/** Overrides the text size. */
|
|
1393
1765
|
size?: GoabTextSize;
|
|
1766
|
+
/** Sets the max width. */
|
|
1394
1767
|
maxWidth?: GoabTextMaxWidth;
|
|
1768
|
+
/** Sets the text colour. */
|
|
1395
1769
|
color?: GoabTextColor;
|
|
1770
|
+
/** Sets the id attribute on the host element. */
|
|
1396
1771
|
id?: string;
|
|
1397
1772
|
get hostId(): string | undefined;
|
|
1773
|
+
/** Top margin. */
|
|
1398
1774
|
mt?: Spacing;
|
|
1775
|
+
/** Bottom margin. */
|
|
1399
1776
|
mb?: Spacing;
|
|
1777
|
+
/** Left margin. */
|
|
1400
1778
|
ml?: Spacing;
|
|
1779
|
+
/** Right margin. */
|
|
1401
1780
|
mr?: Spacing;
|
|
1402
1781
|
isReady: boolean;
|
|
1403
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1404
1782
|
ngOnInit(): void;
|
|
1405
1783
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabText, never>;
|
|
1406
1784
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabText, "goab-text", never, { "tag": { "alias": "tag"; "required": false; }; "size": { "alias": "size"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "color": { "alias": "color"; "required": false; }; "id": { "alias": "id"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1408,23 +1786,36 @@ declare class GoabText implements OnInit {
|
|
|
1408
1786
|
|
|
1409
1787
|
declare class GoabTextArea extends GoabControlValueAccessor implements OnInit {
|
|
1410
1788
|
private cdr;
|
|
1789
|
+
/** Name of the input value that is received in the _change event. */
|
|
1411
1790
|
name?: string;
|
|
1791
|
+
/** Text displayed within the input when no value is set. */
|
|
1412
1792
|
placeholder?: string;
|
|
1793
|
+
/** Set the number of rows. @default 3 */
|
|
1413
1794
|
rows?: number;
|
|
1795
|
+
/** Sets the input to a read only state. */
|
|
1414
1796
|
readOnly?: boolean;
|
|
1797
|
+
/** Width of the text area. */
|
|
1415
1798
|
width?: string;
|
|
1799
|
+
/** Defines how the text will be translated for the screen reader. If not specified it will fall back to the name. */
|
|
1416
1800
|
ariaLabel?: string;
|
|
1801
|
+
/** Counting interval for characters or words, specifying whether to count every character or word. @default "" */
|
|
1417
1802
|
countBy?: GoabTextAreaCountBy;
|
|
1803
|
+
/** Maximum number of characters or words allowed. @default -1 */
|
|
1418
1804
|
maxCount?: number;
|
|
1805
|
+
/** Maximum width of the text area. */
|
|
1419
1806
|
maxWidth?: string;
|
|
1807
|
+
/** Specifies the autocomplete attribute for the textarea input. @default "on" */
|
|
1420
1808
|
autoComplete?: string;
|
|
1809
|
+
/** Sets the size variant of the textarea. @default "default" */
|
|
1421
1810
|
size?: GoabTextAreaSize;
|
|
1811
|
+
/** Emits when the textarea value changes. Emits the name and new value. */
|
|
1422
1812
|
onChange: EventEmitter<GoabTextAreaOnChangeDetail>;
|
|
1813
|
+
/** Emits when a key is pressed in the textarea. Emits the name, value, and key. */
|
|
1423
1814
|
onKeyPress: EventEmitter<GoabTextAreaOnKeyPressDetail>;
|
|
1815
|
+
/** Emits when the textarea loses focus. Emits the name and current value. */
|
|
1424
1816
|
onBlur: EventEmitter<GoabTextAreaOnBlurDetail>;
|
|
1425
1817
|
isReady: boolean;
|
|
1426
1818
|
version: string;
|
|
1427
|
-
constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
1428
1819
|
ngOnInit(): void;
|
|
1429
1820
|
_onChange(e: Event): void;
|
|
1430
1821
|
_onKeyPress(e: Event): void;
|
|
@@ -1438,11 +1829,14 @@ declare class GoabTextArea extends GoabControlValueAccessor implements OnInit {
|
|
|
1438
1829
|
declare class GoabTooltip extends GoabBaseComponent implements OnInit {
|
|
1439
1830
|
private cdr;
|
|
1440
1831
|
isReady: boolean;
|
|
1832
|
+
/** Position with respect to the child element. @default "top" */
|
|
1441
1833
|
position?: GoabTooltipPosition;
|
|
1834
|
+
/** The content of the tooltip. */
|
|
1442
1835
|
content?: string | TemplateRef<unknown>;
|
|
1836
|
+
/** Horizontal alignment to the child element. @default "center" */
|
|
1443
1837
|
hAlign?: GoabTooltipHorizontalAlignment;
|
|
1838
|
+
/** Sets the maximum width of the tooltip. Must use 'px' unit. */
|
|
1444
1839
|
maxWidth?: string;
|
|
1445
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1446
1840
|
ngOnInit(): void;
|
|
1447
1841
|
getContentAsString(): string;
|
|
1448
1842
|
getContentAsTemplate(): TemplateRef<unknown> | null;
|
|
@@ -1452,19 +1846,29 @@ declare class GoabTooltip extends GoabBaseComponent implements OnInit {
|
|
|
1452
1846
|
|
|
1453
1847
|
declare class GoabWorkSideMenu implements OnInit {
|
|
1454
1848
|
private cdr;
|
|
1849
|
+
/** @required The application name displayed in the header. */
|
|
1455
1850
|
heading: string;
|
|
1851
|
+
/** @required URL for the header link. Clicking the logo/heading navigates to this URL. */
|
|
1456
1852
|
url: string;
|
|
1853
|
+
/** User's name displayed in the profile section. */
|
|
1457
1854
|
userName?: string;
|
|
1855
|
+
/** Secondary text displayed below the user's name, such as role or email. */
|
|
1458
1856
|
userSecondaryText?: string;
|
|
1857
|
+
/** Controls whether the side menu is expanded or collapsed. */
|
|
1459
1858
|
open?: boolean;
|
|
1859
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1460
1860
|
testId?: string;
|
|
1861
|
+
/** Template reference for the primary navigation slot content. */
|
|
1461
1862
|
primaryContent: TemplateRef<any>;
|
|
1863
|
+
/** Template reference for the secondary navigation slot content. */
|
|
1462
1864
|
secondaryContent: TemplateRef<any>;
|
|
1865
|
+
/** Template reference for the account slot content. */
|
|
1463
1866
|
accountContent: TemplateRef<any>;
|
|
1464
|
-
|
|
1867
|
+
/** Emits when the side menu is toggled open or closed. */
|
|
1868
|
+
onToggle: EventEmitter<void>;
|
|
1869
|
+
/** Emits when a navigation link is clicked. Emits the URL as a string. */
|
|
1465
1870
|
onNavigate: EventEmitter<string>;
|
|
1466
1871
|
isReady: boolean;
|
|
1467
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1468
1872
|
ngOnInit(): void;
|
|
1469
1873
|
_onToggle(): void;
|
|
1470
1874
|
_onNavigate(e: Event): void;
|
|
@@ -1475,12 +1879,15 @@ declare class GoabWorkSideMenu implements OnInit {
|
|
|
1475
1879
|
|
|
1476
1880
|
declare class GoabWorkSideMenuGroup implements OnInit {
|
|
1477
1881
|
private cdr;
|
|
1882
|
+
/** @required The text displayed in the group heading. */
|
|
1478
1883
|
heading: string;
|
|
1884
|
+
/** Icon displayed before the group label. When omitted, no icon is rendered and no space is reserved. */
|
|
1479
1885
|
icon?: GoabIconType;
|
|
1886
|
+
/** Whether the group is open. */
|
|
1480
1887
|
open?: boolean;
|
|
1888
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1481
1889
|
testId?: string;
|
|
1482
1890
|
isReady: boolean;
|
|
1483
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1484
1891
|
ngOnInit(): void;
|
|
1485
1892
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabWorkSideMenuGroup, never>;
|
|
1486
1893
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabWorkSideMenuGroup, "goab-work-side-menu-group", never, { "heading": { "alias": "heading"; "required": true; }; "icon": { "alias": "icon"; "required": false; }; "open": { "alias": "open"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1489,17 +1896,25 @@ declare class GoabWorkSideMenuGroup implements OnInit {
|
|
|
1489
1896
|
|
|
1490
1897
|
declare class GoabWorkSideMenuItem implements OnInit {
|
|
1491
1898
|
private cdr;
|
|
1899
|
+
/** @required The text label displayed for the menu item. */
|
|
1492
1900
|
label: string;
|
|
1901
|
+
/** The URL the menu item links to. Optional — when absent, renders as a button instead of a link. */
|
|
1493
1902
|
url?: string;
|
|
1903
|
+
/** Badge text displayed alongside the menu item (e.g., notification count). */
|
|
1494
1904
|
badge?: string;
|
|
1905
|
+
/** When true, indicates this is the currently active menu item. */
|
|
1495
1906
|
current?: boolean;
|
|
1907
|
+
/** When true, displays a divider line above this menu item. */
|
|
1496
1908
|
divider?: boolean;
|
|
1909
|
+
/** Icon displayed before the menu item label. */
|
|
1497
1910
|
icon?: string;
|
|
1911
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1498
1912
|
testId?: string;
|
|
1913
|
+
/** Sets the visual style of the badge. Use "emergency" for urgent items, "success" for positive status. @default "normal" */
|
|
1499
1914
|
type?: GoabWorkSideMenuItemType;
|
|
1915
|
+
/** Template reference for the popover content slot. */
|
|
1500
1916
|
popoverContent: TemplateRef<any>;
|
|
1501
1917
|
isReady: boolean;
|
|
1502
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1503
1918
|
ngOnInit(): void;
|
|
1504
1919
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabWorkSideMenuItem, never>;
|
|
1505
1920
|
static ɵcmp: i0.ɵɵComponentDeclaration<GoabWorkSideMenuItem, "goab-work-side-menu-item", never, { "label": { "alias": "label"; "required": true; }; "url": { "alias": "url"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "current": { "alias": "current"; "required": false; }; "divider": { "alias": "divider"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "testId": { "alias": "testId"; "required": false; }; "type": { "alias": "type"; "required": false; }; "popoverContent": { "alias": "popoverContent"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1507,16 +1922,23 @@ declare class GoabWorkSideMenuItem implements OnInit {
|
|
|
1507
1922
|
|
|
1508
1923
|
declare class GoabWorkSideNotificationItem implements OnInit {
|
|
1509
1924
|
private cdr;
|
|
1925
|
+
/** Sets the visual style of the notification item. */
|
|
1510
1926
|
type?: GoabWorkSideNotificationItemType;
|
|
1927
|
+
/** The timestamp for when the notification was created. */
|
|
1511
1928
|
timestamp?: string;
|
|
1929
|
+
/** The title text of the notification item. */
|
|
1512
1930
|
title?: string;
|
|
1931
|
+
/** @required The description text of the notification item. */
|
|
1513
1932
|
description: string;
|
|
1933
|
+
/** Indicates whether the notification is read or unread. */
|
|
1514
1934
|
readStatus?: GoabWorkSideNotificationReadStatus;
|
|
1935
|
+
/** Sets the priority level of the notification. */
|
|
1515
1936
|
priority?: GoabWorkSideNotificationPriority;
|
|
1937
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1516
1938
|
testId?: string;
|
|
1939
|
+
/** Emits when the notification item is clicked. */
|
|
1517
1940
|
onClick: EventEmitter<void>;
|
|
1518
1941
|
isReady: boolean;
|
|
1519
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1520
1942
|
ngOnInit(): void;
|
|
1521
1943
|
_onClick(): void;
|
|
1522
1944
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabWorkSideNotificationItem, never>;
|
|
@@ -1525,13 +1947,17 @@ declare class GoabWorkSideNotificationItem implements OnInit {
|
|
|
1525
1947
|
|
|
1526
1948
|
declare class GoabWorkSideNotificationPanel implements OnInit {
|
|
1527
1949
|
private cdr;
|
|
1950
|
+
/** The heading text displayed at the top of the notification panel. */
|
|
1528
1951
|
heading?: string;
|
|
1952
|
+
/** Sets the initially active tab in the notification panel. */
|
|
1529
1953
|
activeTab?: GoabWorkSideNotificationActiveTabType;
|
|
1954
|
+
/** Sets a data-testid attribute for automated testing. */
|
|
1530
1955
|
testId?: string;
|
|
1956
|
+
/** Emits when the user clicks "Mark all as read". */
|
|
1531
1957
|
onMarkAllRead: EventEmitter<void>;
|
|
1958
|
+
/** Emits when the user clicks "View all". */
|
|
1532
1959
|
onViewAll: EventEmitter<void>;
|
|
1533
1960
|
isReady: boolean;
|
|
1534
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1535
1961
|
ngOnInit(): void;
|
|
1536
1962
|
_onMarkAllRead(): void;
|
|
1537
1963
|
_onViewAll(): void;
|