@baloise/ds-angular 0.0.5-nightly.20240301

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.
Files changed (58) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +40 -0
  3. package/app-initialize.d.ts +3 -0
  4. package/bundles.d.ts +25 -0
  5. package/components/bal-checkbox-group.d.ts +20 -0
  6. package/components/bal-checkbox.d.ts +21 -0
  7. package/components/bal-date.d.ts +30 -0
  8. package/components/bal-datepicker.d.ts +26 -0
  9. package/components/bal-file-upload.d.ts +28 -0
  10. package/components/bal-input-date.d.ts +24 -0
  11. package/components/bal-input-slider.d.ts +24 -0
  12. package/components/bal-input-stepper.d.ts +27 -0
  13. package/components/bal-input.d.ts +24 -0
  14. package/components/bal-number-input.d.ts +25 -0
  15. package/components/bal-radio-group.d.ts +20 -0
  16. package/components/bal-select.d.ts +28 -0
  17. package/components/bal-textarea.d.ts +24 -0
  18. package/components/bal-time-input.d.ts +26 -0
  19. package/components/index.d.ts +14 -0
  20. package/directives/error.component.d.ts +8 -0
  21. package/directives/focus.directive.d.ts +6 -0
  22. package/esm2020/app-initialize.mjs +28 -0
  23. package/esm2020/baloise-ds-angular.mjs +5 -0
  24. package/esm2020/bundles.mjs +167 -0
  25. package/esm2020/components/bal-checkbox-group.mjs +55 -0
  26. package/esm2020/components/bal-checkbox.mjs +59 -0
  27. package/esm2020/components/bal-date.mjs +55 -0
  28. package/esm2020/components/bal-datepicker.mjs +55 -0
  29. package/esm2020/components/bal-file-upload.mjs +55 -0
  30. package/esm2020/components/bal-input-date.mjs +55 -0
  31. package/esm2020/components/bal-input-slider.mjs +55 -0
  32. package/esm2020/components/bal-input-stepper.mjs +60 -0
  33. package/esm2020/components/bal-input.mjs +55 -0
  34. package/esm2020/components/bal-number-input.mjs +60 -0
  35. package/esm2020/components/bal-radio-group.mjs +55 -0
  36. package/esm2020/components/bal-select.mjs +55 -0
  37. package/esm2020/components/bal-textarea.mjs +55 -0
  38. package/esm2020/components/bal-time-input.mjs +55 -0
  39. package/esm2020/components/index.mjs +15 -0
  40. package/esm2020/directives/error.component.mjs +23 -0
  41. package/esm2020/directives/focus.directive.mjs +15 -0
  42. package/esm2020/generated/angular-component-lib/utils.mjs +61 -0
  43. package/esm2020/generated/meta.mjs +45 -0
  44. package/esm2020/generated/proxies.mjs +2788 -0
  45. package/esm2020/generated/value-accessor.mjs +149 -0
  46. package/esm2020/index.mjs +8 -0
  47. package/esm2020/provide.mjs +68 -0
  48. package/fesm2015/baloise-ds-angular.mjs +3908 -0
  49. package/fesm2015/baloise-ds-angular.mjs.map +1 -0
  50. package/fesm2020/baloise-ds-angular.mjs +3905 -0
  51. package/fesm2020/baloise-ds-angular.mjs.map +1 -0
  52. package/generated/angular-component-lib/utils.d.ts +9 -0
  53. package/generated/meta.d.ts +42 -0
  54. package/generated/proxies.d.ts +1000 -0
  55. package/generated/value-accessor.d.ts +41 -0
  56. package/index.d.ts +8 -0
  57. package/package.json +44 -0
  58. package/provide.d.ts +3 -0
@@ -0,0 +1,1000 @@
1
+ import { ChangeDetectorRef, ElementRef, NgZone, EventEmitter } from '@angular/core';
2
+ import type { Components } from '@baloise/ds-core/components';
3
+ import * as i0 from "@angular/core";
4
+ export declare interface BalAccordion extends Components.BalAccordion {
5
+ }
6
+ export declare class BalAccordion {
7
+ protected z: NgZone;
8
+ /** Emitted when the accordion has opened or closed */
9
+ balChange: EventEmitter<BalEvents.BalAccordionCustomEvent<boolean>>;
10
+ /** Emitted before the animation starts */
11
+ balWillAnimate: EventEmitter<BalEvents.BalAccordionCustomEvent<boolean>>;
12
+ /** Emitted after the animation has finished */
13
+ balDidAnimate: EventEmitter<BalEvents.BalAccordionCustomEvent<boolean>>;
14
+ protected el: HTMLElement;
15
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalAccordion, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalAccordion, "bal-accordion", never, { "active": "active"; "card": "card"; "closeIcon": "closeIcon"; "closeLabel": "closeLabel"; "debounce": "debounce"; "openIcon": "openIcon"; "openLabel": "openLabel"; }, { "balChange": "balChange"; "balWillAnimate": "balWillAnimate"; "balDidAnimate": "balDidAnimate"; }, never, ["*"], true, never>;
18
+ }
19
+ export declare interface BalAccordionDetails extends Components.BalAccordionDetails {
20
+ }
21
+ export declare class BalAccordionDetails {
22
+ protected z: NgZone;
23
+ protected el: HTMLElement;
24
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalAccordionDetails, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalAccordionDetails, "bal-accordion-details", never, {}, {}, never, ["*"], true, never>;
27
+ }
28
+ export declare interface BalAccordionSummary extends Components.BalAccordionSummary {
29
+ }
30
+ export declare class BalAccordionSummary {
31
+ protected z: NgZone;
32
+ protected el: HTMLElement;
33
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalAccordionSummary, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalAccordionSummary, "bal-accordion-summary", never, { "trigger": "trigger"; }, {}, never, ["*"], true, never>;
36
+ }
37
+ export declare interface BalAccordionTrigger extends Components.BalAccordionTrigger {
38
+ }
39
+ export declare class BalAccordionTrigger {
40
+ protected z: NgZone;
41
+ protected el: HTMLElement;
42
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalAccordionTrigger, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalAccordionTrigger, "bal-accordion-trigger", never, { "button": "button"; "closeIcon": "closeIcon"; "closeLabel": "closeLabel"; "color": "color"; "openIcon": "openIcon"; "openLabel": "openLabel"; "size": "size"; }, {}, never, ["*"], true, never>;
45
+ }
46
+ export declare interface BalApp extends Components.BalApp {
47
+ }
48
+ export declare class BalApp {
49
+ protected z: NgZone;
50
+ protected el: HTMLElement;
51
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalApp, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalApp, "bal-app", never, { "animated": "animated"; }, {}, never, ["*"], true, never>;
54
+ }
55
+ export declare interface BalBadge extends Components.BalBadge {
56
+ }
57
+ export declare class BalBadge {
58
+ protected z: NgZone;
59
+ protected el: HTMLElement;
60
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
61
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalBadge, never>;
62
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalBadge, "bal-badge", never, { "color": "color"; "icon": "icon"; "position": "position"; "size": "size"; }, {}, never, ["*"], true, never>;
63
+ }
64
+ export declare interface BalButton extends Components.BalButton {
65
+ }
66
+ export declare class BalButton {
67
+ protected z: NgZone;
68
+ /** Emitted when the link element has clicked. */
69
+ balNavigate: EventEmitter<BalEvents.BalButtonCustomEvent<MouseEvent>>;
70
+ /** Emitted when the button has focus. */
71
+ balFocus: EventEmitter<BalEvents.BalButtonCustomEvent<void>>;
72
+ /** Emitted when the button loses focus. */
73
+ balBlur: EventEmitter<BalEvents.BalButtonCustomEvent<void>>;
74
+ /** Emitted when the button has been rendered. */
75
+ balDidRender: EventEmitter<BalEvents.BalButtonCustomEvent<void>>;
76
+ protected el: HTMLElement;
77
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
78
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalButton, never>;
79
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalButton, "bal-button", never, { "aria": "aria"; "color": "color"; "disabled": "disabled"; "download": "download"; "elementType": "elementType"; "expanded": "expanded"; "flat": "flat"; "href": "href"; "icon": "icon"; "iconRight": "iconRight"; "iconTurn": "iconTurn"; "inverted": "inverted"; "isActive": "isActive"; "loading": "loading"; "name": "name"; "noWrap": "noWrap"; "outlined": "outlined"; "rel": "rel"; "rounded": "rounded"; "shadow": "shadow"; "size": "size"; "square": "square"; "target": "target"; "value": "value"; }, { "balNavigate": "balNavigate"; "balFocus": "balFocus"; "balBlur": "balBlur"; "balDidRender": "balDidRender"; }, never, ["*"], true, never>;
80
+ }
81
+ export declare interface BalButtonGroup extends Components.BalButtonGroup {
82
+ }
83
+ export declare class BalButtonGroup {
84
+ protected z: NgZone;
85
+ protected el: HTMLElement;
86
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
87
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalButtonGroup, never>;
88
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalButtonGroup, "bal-button-group", never, { "direction": "direction"; "position": "position"; "reverse": "reverse"; }, {}, never, ["*"], true, never>;
89
+ }
90
+ export declare interface BalCard extends Components.BalCard {
91
+ }
92
+ export declare class BalCard {
93
+ protected z: NgZone;
94
+ protected el: HTMLElement;
95
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
96
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalCard, never>;
97
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalCard, "bal-card", never, { "border": "border"; "clickable": "clickable"; "color": "color"; "flat": "flat"; "fullheight": "fullheight"; "inverted": "inverted"; "selected": "selected"; "space": "space"; "square": "square"; }, {}, never, ["*"], true, never>;
98
+ }
99
+ export declare interface BalCardActions extends Components.BalCardActions {
100
+ }
101
+ export declare class BalCardActions {
102
+ protected z: NgZone;
103
+ protected el: HTMLElement;
104
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
105
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalCardActions, never>;
106
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalCardActions, "bal-card-actions", never, { "position": "position"; }, {}, never, ["*"], true, never>;
107
+ }
108
+ export declare interface BalCardButton extends Components.BalCardButton {
109
+ }
110
+ export declare class BalCardButton {
111
+ protected z: NgZone;
112
+ protected el: HTMLElement;
113
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
114
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalCardButton, never>;
115
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalCardButton, "bal-card-button", never, { "disabled": "disabled"; "elementType": "elementType"; "href": "href"; "icon": "icon"; "iconRight": "iconRight"; "loading": "loading"; "target": "target"; }, {}, never, ["*"], true, never>;
116
+ }
117
+ export declare interface BalCardContent extends Components.BalCardContent {
118
+ }
119
+ export declare class BalCardContent {
120
+ protected z: NgZone;
121
+ protected el: HTMLElement;
122
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
123
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalCardContent, never>;
124
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalCardContent, "bal-card-content", never, {}, {}, never, ["*"], true, never>;
125
+ }
126
+ export declare interface BalCardSubtitle extends Components.BalCardSubtitle {
127
+ }
128
+ export declare class BalCardSubtitle {
129
+ protected z: NgZone;
130
+ protected el: HTMLElement;
131
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
132
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalCardSubtitle, never>;
133
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalCardSubtitle, "bal-card-subtitle", never, { "bold": "bold"; "color": "color"; "inverted": "inverted"; }, {}, never, ["*"], true, never>;
134
+ }
135
+ export declare interface BalCardTitle extends Components.BalCardTitle {
136
+ }
137
+ export declare class BalCardTitle {
138
+ protected z: NgZone;
139
+ protected el: HTMLElement;
140
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
141
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalCardTitle, never>;
142
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalCardTitle, "bal-card-title", never, { "inverted": "inverted"; }, {}, never, ["*"], true, never>;
143
+ }
144
+ export declare interface BalCarousel extends Components.BalCarousel {
145
+ }
146
+ export declare class BalCarousel {
147
+ protected z: NgZone;
148
+ /** Emitted when a option got selected. */
149
+ balChange: EventEmitter<BalEvents.BalCarouselCustomEvent<number>>;
150
+ protected el: HTMLElement;
151
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
152
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalCarousel, never>;
153
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalCarousel, "bal-carousel", never, { "aspectRatio": "aspectRatio"; "border": "border"; "controls": "controls"; "controlsOverflow": "controlsOverflow"; "controlsSticky": "controlsSticky"; "fullHeight": "fullHeight"; "interface": "interface"; "inverted": "inverted"; "itemsPerView": "itemsPerView"; "scrollY": "scrollY"; "steps": "steps"; "value": "value"; }, { "balChange": "balChange"; }, never, ["*"], true, never>;
154
+ }
155
+ export declare interface BalCarouselItem extends Components.BalCarouselItem {
156
+ }
157
+ export declare class BalCarouselItem {
158
+ protected z: NgZone;
159
+ /** Emitted when the link element has clicked. */
160
+ balNavigate: EventEmitter<BalEvents.BalCarouselItemCustomEvent<MouseEvent>>;
161
+ /** Emitted when the button has focus. */
162
+ balFocus: EventEmitter<BalEvents.BalCarouselItemCustomEvent<void>>;
163
+ /** Emitted when the button loses focus. */
164
+ balBlur: EventEmitter<BalEvents.BalCarouselItemCustomEvent<void>>;
165
+ protected el: HTMLElement;
166
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
167
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalCarouselItem, never>;
168
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalCarouselItem, "bal-carousel-item", never, { "color": "color"; "download": "download"; "elementType": "elementType"; "href": "href"; "label": "label"; "name": "name"; "rel": "rel"; "src": "src"; "target": "target"; "value": "value"; }, { "balNavigate": "balNavigate"; "balFocus": "balFocus"; "balBlur": "balBlur"; }, never, ["*"], true, never>;
169
+ }
170
+ export declare interface BalCheckboxButton extends Components.BalCheckboxButton {
171
+ }
172
+ export declare class BalCheckboxButton {
173
+ protected z: NgZone;
174
+ /** Emitted when the toggle has focus. */
175
+ balFocus: EventEmitter<BalEvents.BalCheckboxButtonCustomEvent<FocusEvent>>;
176
+ /** Emitted when the toggle loses focus. */
177
+ balBlur: EventEmitter<BalEvents.BalCheckboxButtonCustomEvent<FocusEvent>>;
178
+ protected el: HTMLElement;
179
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
180
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalCheckboxButton, never>;
181
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalCheckboxButton, "bal-checkbox-button", never, { "color": "color"; "disabled": "disabled"; "invalid": "invalid"; "readonly": "readonly"; }, { "balFocus": "balFocus"; "balBlur": "balBlur"; }, never, ["*"], true, never>;
182
+ }
183
+ export declare interface BalClose extends Components.BalClose {
184
+ }
185
+ export declare class BalClose {
186
+ protected z: NgZone;
187
+ protected el: HTMLElement;
188
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
189
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalClose, never>;
190
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalClose, "bal-close", never, { "inverted": "inverted"; "size": "size"; }, {}, never, ["*"], true, never>;
191
+ }
192
+ export declare interface BalContent extends Components.BalContent {
193
+ }
194
+ export declare class BalContent {
195
+ protected z: NgZone;
196
+ protected el: HTMLElement;
197
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
198
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalContent, never>;
199
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalContent, "bal-content", never, { "align": "align"; "layout": "layout"; "space": "space"; }, {}, never, ["*"], true, never>;
200
+ }
201
+ export declare interface BalData extends Components.BalData {
202
+ }
203
+ export declare class BalData {
204
+ protected z: NgZone;
205
+ protected el: HTMLElement;
206
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
207
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalData, never>;
208
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalData, "bal-data", never, { "border": "border"; "horizontal": "horizontal"; }, {}, never, ["*"], true, never>;
209
+ }
210
+ export declare interface BalDataItem extends Components.BalDataItem {
211
+ }
212
+ export declare class BalDataItem {
213
+ protected z: NgZone;
214
+ protected el: HTMLElement;
215
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
216
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalDataItem, never>;
217
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalDataItem, "bal-data-item", never, { "border": "border"; "disabled": "disabled"; }, {}, never, ["*"], true, never>;
218
+ }
219
+ export declare interface BalDataLabel extends Components.BalDataLabel {
220
+ }
221
+ export declare class BalDataLabel {
222
+ protected z: NgZone;
223
+ protected el: HTMLElement;
224
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
225
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalDataLabel, never>;
226
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalDataLabel, "bal-data-label", never, { "required": "required"; }, {}, never, ["*"], true, never>;
227
+ }
228
+ export declare interface BalDataValue extends Components.BalDataValue {
229
+ }
230
+ export declare class BalDataValue {
231
+ protected z: NgZone;
232
+ /** Emitted when the edit button has focus. */
233
+ balClick: EventEmitter<BalEvents.BalDataValueCustomEvent<MouseEvent>>;
234
+ /** Emitted when the edit button has focus. */
235
+ balFocus: EventEmitter<BalEvents.BalDataValueCustomEvent<void>>;
236
+ /** Emitted when the edit button loses focus. */
237
+ balBlur: EventEmitter<BalEvents.BalDataValueCustomEvent<void>>;
238
+ protected el: HTMLElement;
239
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
240
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalDataValue, never>;
241
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalDataValue, "bal-data-value", never, { "disabled": "disabled"; "editable": "editable"; "multiline": "multiline"; }, { "balClick": "balClick"; "balFocus": "balFocus"; "balBlur": "balBlur"; }, never, ["*"], true, never>;
242
+ }
243
+ export declare interface BalDateCalendar extends Components.BalDateCalendar {
244
+ }
245
+ export declare class BalDateCalendar {
246
+ protected z: NgZone;
247
+ /** Emitted when a option got selected. */
248
+ balChange: EventEmitter<BalEvents.BalDateCalendarCustomEvent<string>>;
249
+ protected el: HTMLElement;
250
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
251
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalDateCalendar, never>;
252
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalDateCalendar, "bal-date-calendar", never, { "allowedDates": "allowedDates"; "defaultDate": "defaultDate"; "max": "max"; "maxYearProp": "maxYearProp"; "min": "min"; "minYearProp": "minYearProp"; "value": "value"; }, { "balChange": "balChange"; }, never, ["*"], true, never>;
253
+ }
254
+ export declare interface BalDateCalendarCell extends Components.BalDateCalendarCell {
255
+ }
256
+ export declare class BalDateCalendarCell {
257
+ protected z: NgZone;
258
+ /** Emitted when a option got selected. */
259
+ balSelectDay: EventEmitter<BalEvents.BalDateCalendarCellCustomEvent<string>>;
260
+ protected el: HTMLElement;
261
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
262
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalDateCalendarCell, never>;
263
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalDateCalendarCell, "bal-date-calendar-cell", never, { "day": "day"; "disabled": "disabled"; "fullDate": "fullDate"; "isoDate": "isoDate"; "month": "month"; "selected": "selected"; "today": "today"; "year": "year"; }, { "balSelectDay": "balSelectDay"; }, never, ["*"], true, never>;
264
+ }
265
+ export declare interface BalDivider extends Components.BalDivider {
266
+ }
267
+ export declare class BalDivider {
268
+ protected z: NgZone;
269
+ protected el: HTMLElement;
270
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
271
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalDivider, never>;
272
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalDivider, "bal-divider", never, { "color": "color"; "layout": "layout"; "space": "space"; }, {}, never, ["*"], true, never>;
273
+ }
274
+ export declare interface BalField extends Components.BalField {
275
+ }
276
+ export declare class BalField {
277
+ protected z: NgZone;
278
+ /** Emitted after render when element is labelled */
279
+ balFormControlDidLoad: EventEmitter<BalEvents.BalFieldCustomEvent<HTMLElement>>;
280
+ protected el: HTMLElement;
281
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
282
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalField, never>;
283
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalField, "bal-field", never, { "disabled": "disabled"; "horizontal": "horizontal"; "invalid": "invalid"; "loading": "loading"; "readonly": "readonly"; "required": "required"; "valid": "valid"; }, { "balFormControlDidLoad": "balFormControlDidLoad"; }, never, ["*"], true, never>;
284
+ }
285
+ export declare interface BalFieldControl extends Components.BalFieldControl {
286
+ }
287
+ export declare class BalFieldControl {
288
+ protected z: NgZone;
289
+ protected el: HTMLElement;
290
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
291
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalFieldControl, never>;
292
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalFieldControl, "bal-field-control", never, { "expandedOnMobile": "expandedOnMobile"; "iconLeft": "iconLeft"; "iconRight": "iconRight"; "loading": "loading"; }, {}, never, ["*"], true, never>;
293
+ }
294
+ export declare interface BalFieldHint extends Components.BalFieldHint {
295
+ }
296
+ export declare class BalFieldHint {
297
+ protected z: NgZone;
298
+ protected el: HTMLElement;
299
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
300
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalFieldHint, never>;
301
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalFieldHint, "bal-field-hint", never, { "closeLabel": "closeLabel"; "small": "small"; "subject": "subject"; }, {}, never, ["*"], true, never>;
302
+ }
303
+ export declare interface BalFieldLabel extends Components.BalFieldLabel {
304
+ }
305
+ export declare class BalFieldLabel {
306
+ protected z: NgZone;
307
+ protected el: HTMLElement;
308
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
309
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalFieldLabel, never>;
310
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalFieldLabel, "bal-field-label", never, { "disabled": "disabled"; "htmlFor": "htmlFor"; "invalid": "invalid"; "readonly": "readonly"; "required": "required"; "size": "size"; "valid": "valid"; "weight": "weight"; }, {}, never, ["*"], true, never>;
311
+ }
312
+ export declare interface BalFieldMessage extends Components.BalFieldMessage {
313
+ }
314
+ export declare class BalFieldMessage {
315
+ protected z: NgZone;
316
+ protected el: HTMLElement;
317
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
318
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalFieldMessage, never>;
319
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalFieldMessage, "bal-field-message", never, { "color": "color"; "disabled": "disabled"; "invalid": "invalid"; "readonly": "readonly"; "valid": "valid"; }, {}, never, ["*"], true, never>;
320
+ }
321
+ export declare interface BalFooter extends Components.BalFooter {
322
+ }
323
+ export declare class BalFooter {
324
+ protected z: NgZone;
325
+ protected el: HTMLElement;
326
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
327
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalFooter, never>;
328
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalFooter, "bal-footer", never, { "hideLanguageSelection": "hideLanguageSelection"; "hideLinks": "hideLinks"; "showSocialMedia": "showSocialMedia"; }, {}, never, ["*"], true, never>;
329
+ }
330
+ export declare interface BalForm extends Components.BalForm {
331
+ }
332
+ export declare class BalForm {
333
+ protected z: NgZone;
334
+ protected el: HTMLElement;
335
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
336
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalForm, never>;
337
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalForm, "bal-form", never, { "native": "native"; "novalidate": "novalidate"; }, {}, never, ["*"], true, never>;
338
+ }
339
+ export declare interface BalFormCol extends Components.BalFormCol {
340
+ }
341
+ export declare class BalFormCol {
342
+ protected z: NgZone;
343
+ protected el: HTMLElement;
344
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
345
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalFormCol, never>;
346
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalFormCol, "bal-form-col", never, { "size": "size"; }, {}, never, ["*"], true, never>;
347
+ }
348
+ export declare interface BalFormGrid extends Components.BalFormGrid {
349
+ }
350
+ export declare class BalFormGrid {
351
+ protected z: NgZone;
352
+ protected el: HTMLElement;
353
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
354
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalFormGrid, never>;
355
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalFormGrid, "bal-form-grid", never, {}, {}, never, ["*"], true, never>;
356
+ }
357
+ export declare interface BalHeading extends Components.BalHeading {
358
+ }
359
+ export declare class BalHeading {
360
+ protected z: NgZone;
361
+ protected el: HTMLElement;
362
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
363
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalHeading, never>;
364
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalHeading, "bal-heading", never, { "autoLevel": "autoLevel"; "color": "color"; "inverted": "inverted"; "level": "level"; "noWrap": "noWrap"; "shadow": "shadow"; "space": "space"; "subtitle": "subtitle"; "visualLevel": "visualLevel"; }, {}, never, ["*"], true, never>;
365
+ }
366
+ export declare interface BalHint extends Components.BalHint {
367
+ }
368
+ export declare class BalHint {
369
+ protected z: NgZone;
370
+ protected el: HTMLElement;
371
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
372
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalHint, never>;
373
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalHint, "bal-hint", never, { "closeLabel": "closeLabel"; "small": "small"; }, {}, never, ["*"], true, never>;
374
+ }
375
+ export declare interface BalHintText extends Components.BalHintText {
376
+ }
377
+ export declare class BalHintText {
378
+ protected z: NgZone;
379
+ protected el: HTMLElement;
380
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
381
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalHintText, never>;
382
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalHintText, "bal-hint-text", never, {}, {}, never, ["*"], true, never>;
383
+ }
384
+ export declare interface BalHintTitle extends Components.BalHintTitle {
385
+ }
386
+ export declare class BalHintTitle {
387
+ protected z: NgZone;
388
+ protected el: HTMLElement;
389
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
390
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalHintTitle, never>;
391
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalHintTitle, "bal-hint-title", never, {}, {}, never, ["*"], true, never>;
392
+ }
393
+ export declare interface BalIcon extends Components.BalIcon {
394
+ }
395
+ export declare class BalIcon {
396
+ protected z: NgZone;
397
+ protected el: HTMLElement;
398
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
399
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalIcon, never>;
400
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalIcon, "bal-icon", never, { "color": "color"; "disabled": "disabled"; "inline": "inline"; "invalid": "invalid"; "inverted": "inverted"; "name": "name"; "shadow": "shadow"; "size": "size"; "svg": "svg"; "turn": "turn"; }, {}, never, ["*"], true, never>;
401
+ }
402
+ export declare interface BalInputGroup extends Components.BalInputGroup {
403
+ }
404
+ export declare class BalInputGroup {
405
+ protected z: NgZone;
406
+ protected el: HTMLElement;
407
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
408
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalInputGroup, never>;
409
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalInputGroup, "bal-input-group", never, { "disabled": "disabled"; "invalid": "invalid"; "readonly": "readonly"; }, {}, never, ["*"], true, never>;
410
+ }
411
+ export declare interface BalLabel extends Components.BalLabel {
412
+ }
413
+ export declare class BalLabel {
414
+ protected z: NgZone;
415
+ protected el: HTMLElement;
416
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
417
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalLabel, never>;
418
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalLabel, "bal-label", never, { "disabled": "disabled"; "htmlFor": "htmlFor"; "invalid": "invalid"; "multiline": "multiline"; "noWrap": "noWrap"; "readonly": "readonly"; "required": "required"; "size": "size"; "valid": "valid"; "weight": "weight"; }, {}, never, ["*"], true, never>;
419
+ }
420
+ export declare interface BalList extends Components.BalList {
421
+ }
422
+ export declare class BalList {
423
+ protected z: NgZone;
424
+ protected el: HTMLElement;
425
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
426
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalList, never>;
427
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalList, "bal-list", never, { "accordionOneLevel": "accordionOneLevel"; "background": "background"; "border": "border"; "disabled": "disabled"; "size": "size"; }, {}, never, ["*"], true, never>;
428
+ }
429
+ export declare interface BalListItem extends Components.BalListItem {
430
+ }
431
+ export declare class BalListItem {
432
+ protected z: NgZone;
433
+ /** Emitted when the link element has clicked */
434
+ balNavigate: EventEmitter<BalEvents.BalListItemCustomEvent<MouseEvent>>;
435
+ /** Emitted when the state of the group is changing */
436
+ balGroupStateChanged: EventEmitter<BalEvents.BalListItemCustomEvent<MouseEvent>>;
437
+ /** Emitted before the animation starts */
438
+ balWillAnimate: EventEmitter<BalEvents.BalListItemCustomEvent<boolean>>;
439
+ /** Emitted after the animation has finished */
440
+ balDidAnimate: EventEmitter<BalEvents.BalListItemCustomEvent<boolean>>;
441
+ protected el: HTMLElement;
442
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
443
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalListItem, never>;
444
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalListItem, "bal-list-item", never, { "accordion": "accordion"; "clickable": "clickable"; "disabled": "disabled"; "download": "download"; "href": "href"; "selected": "selected"; "subAccordionItem": "subAccordionItem"; "target": "target"; }, { "balNavigate": "balNavigate"; "balGroupStateChanged": "balGroupStateChanged"; "balWillAnimate": "balWillAnimate"; "balDidAnimate": "balDidAnimate"; }, never, ["*"], true, never>;
445
+ }
446
+ export declare interface BalListItemAccordionBody extends Components.BalListItemAccordionBody {
447
+ }
448
+ export declare class BalListItemAccordionBody {
449
+ protected z: NgZone;
450
+ protected el: HTMLElement;
451
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
452
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalListItemAccordionBody, never>;
453
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalListItemAccordionBody, "bal-list-item-accordion-body", never, { "accordionGroup": "accordionGroup"; "contentAlignment": "contentAlignment"; "contentSpace": "contentSpace"; }, {}, never, ["*"], true, never>;
454
+ }
455
+ export declare interface BalListItemAccordionHead extends Components.BalListItemAccordionHead {
456
+ }
457
+ export declare class BalListItemAccordionHead {
458
+ protected z: NgZone;
459
+ /** Emitted when the accordion state is changed */
460
+ balAccordionChange: EventEmitter<BalEvents.BalListItemAccordionHeadCustomEvent<boolean>>;
461
+ protected el: HTMLElement;
462
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
463
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalListItemAccordionHead, never>;
464
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalListItemAccordionHead, "bal-list-item-accordion-head", never, { "accordionOpen": "accordionOpen"; "icon": "icon"; }, { "balAccordionChange": "balAccordionChange"; }, never, ["*"], true, never>;
465
+ }
466
+ export declare interface BalListItemContent extends Components.BalListItemContent {
467
+ }
468
+ export declare class BalListItemContent {
469
+ protected z: NgZone;
470
+ protected el: HTMLElement;
471
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
472
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalListItemContent, never>;
473
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalListItemContent, "bal-list-item-content", never, { "contentAlignment": "contentAlignment"; }, {}, never, ["*"], true, never>;
474
+ }
475
+ export declare interface BalListItemIcon extends Components.BalListItemIcon {
476
+ }
477
+ export declare class BalListItemIcon {
478
+ protected z: NgZone;
479
+ protected el: HTMLElement;
480
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
481
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalListItemIcon, never>;
482
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalListItemIcon, "bal-list-item-icon", never, { "right": "right"; }, {}, never, ["*"], true, never>;
483
+ }
484
+ export declare interface BalListItemSubtitle extends Components.BalListItemSubtitle {
485
+ }
486
+ export declare class BalListItemSubtitle {
487
+ protected z: NgZone;
488
+ protected el: HTMLElement;
489
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
490
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalListItemSubtitle, never>;
491
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalListItemSubtitle, "bal-list-item-subtitle", never, {}, {}, never, ["*"], true, never>;
492
+ }
493
+ export declare interface BalListItemTitle extends Components.BalListItemTitle {
494
+ }
495
+ export declare class BalListItemTitle {
496
+ protected z: NgZone;
497
+ protected el: HTMLElement;
498
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
499
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalListItemTitle, never>;
500
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalListItemTitle, "bal-list-item-title", never, { "level": "level"; "visualLevel": "visualLevel"; }, {}, never, ["*"], true, never>;
501
+ }
502
+ export declare interface BalLogo extends Components.BalLogo {
503
+ }
504
+ export declare class BalLogo {
505
+ protected z: NgZone;
506
+ protected el: HTMLElement;
507
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
508
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalLogo, never>;
509
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalLogo, "bal-logo", never, { "animated": "animated"; "color": "color"; "size": "size"; }, {}, never, ["*"], true, never>;
510
+ }
511
+ export declare interface BalModal extends Components.BalModal {
512
+ }
513
+ export declare class BalModal {
514
+ protected z: NgZone;
515
+ /** Emitted after the modal has presented. */
516
+ balModalDidPresent: EventEmitter<BalEvents.BalModalCustomEvent<void>>;
517
+ /** Emitted before the modal has presented. */
518
+ balModalWillPresent: EventEmitter<BalEvents.BalModalCustomEvent<void>>;
519
+ /** Emitted before the modal has dismissed. */
520
+ balModalWillDismiss: EventEmitter<BalEvents.BalModalCustomEvent<any>>;
521
+ /** Emitted after the modal has dismissed. */
522
+ balModalDidDismiss: EventEmitter<BalEvents.BalModalCustomEvent<any>>;
523
+ protected el: HTMLElement;
524
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
525
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalModal, never>;
526
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalModal, "bal-modal", never, { "backdropDismiss": "backdropDismiss"; "component": "component"; "componentProps": "componentProps"; "cssClass": "cssClass"; "hasBackdrop": "hasBackdrop"; "isClosable": "isClosable"; "modalWidth": "modalWidth"; "space": "space"; }, { "balModalDidPresent": "balModalDidPresent"; "balModalWillPresent": "balModalWillPresent"; "balModalWillDismiss": "balModalWillDismiss"; "balModalDidDismiss": "balModalDidDismiss"; }, never, ["*"], true, never>;
527
+ }
528
+ export declare interface BalModalBody extends Components.BalModalBody {
529
+ }
530
+ export declare class BalModalBody {
531
+ protected z: NgZone;
532
+ protected el: HTMLElement;
533
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
534
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalModalBody, never>;
535
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalModalBody, "bal-modal-body", never, {}, {}, never, ["*"], true, never>;
536
+ }
537
+ export declare interface BalModalHeader extends Components.BalModalHeader {
538
+ }
539
+ export declare class BalModalHeader {
540
+ protected z: NgZone;
541
+ protected el: HTMLElement;
542
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
543
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalModalHeader, never>;
544
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalModalHeader, "bal-modal-header", never, {}, {}, never, ["*"], true, never>;
545
+ }
546
+ export declare interface BalNav extends Components.BalNav {
547
+ }
548
+ export declare class BalNav {
549
+ protected z: NgZone;
550
+ /** Emitted when a nav link item is clicked. This event can be used to
551
+ add data tracking */
552
+ balNavItemClick: EventEmitter<BalEvents.BalNavCustomEvent<BalEvents.BalNavItemClickDetail>>;
553
+ protected el: HTMLElement;
554
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
555
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNav, never>;
556
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNav, "bal-nav", never, { "buttons": "buttons"; "logo": "logo"; "options": "options"; }, { "balNavItemClick": "balNavItemClick"; }, never, ["*"], true, never>;
557
+ }
558
+ export declare interface BalNavLink extends Components.BalNavLink {
559
+ }
560
+ export declare class BalNavLink {
561
+ protected z: NgZone;
562
+ protected el: HTMLElement;
563
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
564
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavLink, never>;
565
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavLink, "bal-nav-link", never, { "clickable": "clickable"; "href": "href"; "selected": "selected"; "target": "target"; "variant": "variant"; }, {}, never, ["*"], true, never>;
566
+ }
567
+ export declare interface BalNavLinkGrid extends Components.BalNavLinkGrid {
568
+ }
569
+ export declare class BalNavLinkGrid {
570
+ protected z: NgZone;
571
+ protected el: HTMLElement;
572
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
573
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavLinkGrid, never>;
574
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavLinkGrid, "bal-nav-link-grid", never, {}, {}, never, ["*"], true, never>;
575
+ }
576
+ export declare interface BalNavLinkGridCol extends Components.BalNavLinkGridCol {
577
+ }
578
+ export declare class BalNavLinkGridCol {
579
+ protected z: NgZone;
580
+ protected el: HTMLElement;
581
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
582
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavLinkGridCol, never>;
583
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavLinkGridCol, "bal-nav-link-grid-col", never, { "staticCol": "staticCol"; }, {}, never, ["*"], true, never>;
584
+ }
585
+ export declare interface BalNavLinkGroup extends Components.BalNavLinkGroup {
586
+ }
587
+ export declare class BalNavLinkGroup {
588
+ protected z: NgZone;
589
+ protected el: HTMLElement;
590
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
591
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavLinkGroup, never>;
592
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavLinkGroup, "bal-nav-link-group", never, { "color": "color"; }, {}, never, ["*"], true, never>;
593
+ }
594
+ export declare interface BalNavMenuBar extends Components.BalNavMenuBar {
595
+ }
596
+ export declare class BalNavMenuBar {
597
+ protected z: NgZone;
598
+ protected el: HTMLElement;
599
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
600
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavMenuBar, never>;
601
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavMenuBar, "bal-nav-menu-bar", never, { "invisible": "invisible"; "position": "position"; }, {}, never, ["*"], true, never>;
602
+ }
603
+ export declare interface BalNavMenuFlyout extends Components.BalNavMenuFlyout {
604
+ }
605
+ export declare class BalNavMenuFlyout {
606
+ protected z: NgZone;
607
+ protected el: HTMLElement;
608
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
609
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavMenuFlyout, never>;
610
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavMenuFlyout, "bal-nav-menu-flyout", never, {}, {}, never, ["*"], true, never>;
611
+ }
612
+ export declare interface BalNavMetaBar extends Components.BalNavMetaBar {
613
+ }
614
+ export declare class BalNavMetaBar {
615
+ protected z: NgZone;
616
+ protected el: HTMLElement;
617
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
618
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavMetaBar, never>;
619
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavMetaBar, "bal-nav-meta-bar", never, { "invisible": "invisible"; "position": "position"; "size": "size"; "variant": "variant"; }, {}, never, ["*"], true, never>;
620
+ }
621
+ export declare interface BalNavbar extends Components.BalNavbar {
622
+ }
623
+ export declare class BalNavbar {
624
+ protected z: NgZone;
625
+ protected el: HTMLElement;
626
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
627
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavbar, never>;
628
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavbar, "bal-navbar", never, { "container": "container"; "interface": "interface"; "light": "light"; }, {}, never, ["*"], true, never>;
629
+ }
630
+ export declare interface BalNavbarBrand extends Components.BalNavbarBrand {
631
+ }
632
+ export declare class BalNavbarBrand {
633
+ protected z: NgZone;
634
+ /** Emitted when the link element has clicked */
635
+ balNavigate: EventEmitter<BalEvents.BalNavbarBrandCustomEvent<MouseEvent>>;
636
+ /** Emitted before the animation starts */
637
+ balWillAnimate: EventEmitter<BalEvents.BalNavbarBrandCustomEvent<boolean>>;
638
+ /** Emitted after the animation has finished */
639
+ balDidAnimate: EventEmitter<BalEvents.BalNavbarBrandCustomEvent<boolean>>;
640
+ protected el: HTMLElement;
641
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
642
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavbarBrand, never>;
643
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavbarBrand, "bal-navbar-brand", never, { "animated": "animated"; "href": "href"; "logo": "logo"; "logoSize": "logoSize"; "simple": "simple"; "target": "target"; }, { "balNavigate": "balNavigate"; "balWillAnimate": "balWillAnimate"; "balDidAnimate": "balDidAnimate"; }, never, ["*"], true, never>;
644
+ }
645
+ export declare interface BalNavbarMenu extends Components.BalNavbarMenu {
646
+ }
647
+ export declare class BalNavbarMenu {
648
+ protected z: NgZone;
649
+ protected el: HTMLElement;
650
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
651
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavbarMenu, never>;
652
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavbarMenu, "bal-navbar-menu", never, {}, {}, never, ["*"], true, never>;
653
+ }
654
+ export declare interface BalNavbarMenuEnd extends Components.BalNavbarMenuEnd {
655
+ }
656
+ export declare class BalNavbarMenuEnd {
657
+ protected z: NgZone;
658
+ protected el: HTMLElement;
659
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
660
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavbarMenuEnd, never>;
661
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavbarMenuEnd, "bal-navbar-menu-end", never, {}, {}, never, ["*"], true, never>;
662
+ }
663
+ export declare interface BalNavbarMenuStart extends Components.BalNavbarMenuStart {
664
+ }
665
+ export declare class BalNavbarMenuStart {
666
+ protected z: NgZone;
667
+ protected el: HTMLElement;
668
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
669
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNavbarMenuStart, never>;
670
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNavbarMenuStart, "bal-navbar-menu-start", never, {}, {}, never, ["*"], true, never>;
671
+ }
672
+ export declare interface BalNotices extends Components.BalNotices {
673
+ }
674
+ export declare class BalNotices {
675
+ protected z: NgZone;
676
+ protected el: HTMLElement;
677
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
678
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNotices, never>;
679
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNotices, "bal-notices", never, {}, {}, never, ["*"], true, never>;
680
+ }
681
+ export declare interface BalNotification extends Components.BalNotification {
682
+ }
683
+ export declare class BalNotification {
684
+ protected z: NgZone;
685
+ protected el: HTMLElement;
686
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
687
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalNotification, never>;
688
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalNotification, "bal-notification", never, { "color": "color"; }, {}, never, ["*"], true, never>;
689
+ }
690
+ export declare interface BalPagination extends Components.BalPagination {
691
+ }
692
+ export declare class BalPagination {
693
+ protected z: NgZone;
694
+ /** Triggers when a page change happens */
695
+ balChange: EventEmitter<BalEvents.BalPaginationCustomEvent<number>>;
696
+ protected el: HTMLElement;
697
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
698
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalPagination, never>;
699
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalPagination, "bal-pagination", never, { "align": "align"; "disabled": "disabled"; "interface": "interface"; "pageRange": "pageRange"; "size": "size"; "sticky": "sticky"; "top": "top"; "totalPages": "totalPages"; "value": "value"; }, { "balChange": "balChange"; }, never, ["*"], true, never>;
700
+ }
701
+ export declare interface BalPopover extends Components.BalPopover {
702
+ }
703
+ export declare class BalPopover {
704
+ protected z: NgZone;
705
+ /** Listen when the popover opens or closes. Returns the current value. */
706
+ balChange: EventEmitter<BalEvents.BalPopoverCustomEvent<boolean>>;
707
+ /** Emitted before the animation starts */
708
+ balWillAnimate: EventEmitter<BalEvents.BalPopoverCustomEvent<boolean>>;
709
+ /** Emitted after the animation has finished */
710
+ balDidAnimate: EventEmitter<BalEvents.BalPopoverCustomEvent<boolean>>;
711
+ protected el: HTMLElement;
712
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
713
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalPopover, never>;
714
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalPopover, "bal-popover", never, { "active": "active"; "arrow": "arrow"; "autoTrigger": "autoTrigger"; "backdrop": "backdrop"; "hint": "hint"; "hover": "hover"; "mobileTop": "mobileTop"; "offsetX": "offsetX"; "offsetY": "offsetY"; "padding": "padding"; "position": "position"; "tooltip": "tooltip"; }, { "balChange": "balChange"; "balWillAnimate": "balWillAnimate"; "balDidAnimate": "balDidAnimate"; }, never, ["*"], true, never>;
715
+ }
716
+ export declare interface BalPopoverContent extends Components.BalPopoverContent {
717
+ }
718
+ export declare class BalPopoverContent {
719
+ protected z: NgZone;
720
+ protected el: HTMLElement;
721
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
722
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalPopoverContent, never>;
723
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalPopoverContent, "bal-popover-content", never, { "color": "color"; "contentMinWidth": "contentMinWidth"; "contentWidth": "contentWidth"; "expanded": "expanded"; "mobileTop": "mobileTop"; "noShadow": "noShadow"; "radius": "radius"; "scrollable": "scrollable"; "spaceless": "spaceless"; }, {}, never, ["*"], true, never>;
724
+ }
725
+ export declare interface BalPopup extends Components.BalPopup {
726
+ }
727
+ export declare class BalPopup {
728
+ protected z: NgZone;
729
+ /** Emitted when the accordion has opened or closed */
730
+ balChange: EventEmitter<BalEvents.BalPopupCustomEvent<boolean>>;
731
+ /** Emitted before the animation starts */
732
+ balWillAnimate: EventEmitter<BalEvents.BalPopupCustomEvent<boolean>>;
733
+ /** Emitted after the animation has finished */
734
+ balDidAnimate: EventEmitter<BalEvents.BalPopupCustomEvent<boolean>>;
735
+ protected el: HTMLElement;
736
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
737
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalPopup, never>;
738
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalPopup, "bal-popup", never, { "active": "active"; "arrow": "arrow"; "backdrop": "backdrop"; "backdropDismiss": "backdropDismiss"; "closable": "closable"; "contentWidth": "contentWidth"; "label": "label"; "offset": "offset"; "placement": "placement"; "reference": "reference"; "variant": "variant"; }, { "balChange": "balChange"; "balWillAnimate": "balWillAnimate"; "balDidAnimate": "balDidAnimate"; }, never, ["*"], true, never>;
739
+ }
740
+ export declare interface BalProgressBar extends Components.BalProgressBar {
741
+ }
742
+ export declare class BalProgressBar {
743
+ protected z: NgZone;
744
+ protected el: HTMLElement;
745
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
746
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalProgressBar, never>;
747
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalProgressBar, "bal-progress-bar", never, { "background": "background"; "value": "value"; }, {}, never, ["*"], true, never>;
748
+ }
749
+ export declare interface BalRadio extends Components.BalRadio {
750
+ }
751
+ export declare class BalRadio {
752
+ protected z: NgZone;
753
+ /** Emitted when the toggle has focus. */
754
+ balFocus: EventEmitter<BalEvents.BalRadioCustomEvent<FocusEvent>>;
755
+ /** Emitted when the toggle loses focus. */
756
+ balBlur: EventEmitter<BalEvents.BalRadioCustomEvent<FocusEvent>>;
757
+ /** Emitted when the checked property has changed. */
758
+ balChange: EventEmitter<BalEvents.BalRadioCustomEvent<boolean>>;
759
+ protected el: HTMLElement;
760
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
761
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalRadio, never>;
762
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalRadio, "bal-radio", never, { "disabled": "disabled"; "flat": "flat"; "interface": "interface"; "invalid": "invalid"; "invisible": "invisible"; "label": "label"; "labelHidden": "labelHidden"; "name": "name"; "nonSubmit": "nonSubmit"; "readonly": "readonly"; "required": "required"; "value": "value"; }, { "balFocus": "balFocus"; "balBlur": "balBlur"; "balChange": "balChange"; }, never, ["*"], true, never>;
763
+ }
764
+ export declare interface BalRadioButton extends Components.BalRadioButton {
765
+ }
766
+ export declare class BalRadioButton {
767
+ protected z: NgZone;
768
+ /** Emitted when the toggle has focus. */
769
+ balFocus: EventEmitter<BalEvents.BalRadioButtonCustomEvent<FocusEvent>>;
770
+ /** Emitted when the toggle loses focus. */
771
+ balBlur: EventEmitter<BalEvents.BalRadioButtonCustomEvent<FocusEvent>>;
772
+ /** Emitted after render when element is labelled */
773
+ balFormControlDidLoad: EventEmitter<BalEvents.BalRadioButtonCustomEvent<HTMLElement>>;
774
+ protected el: HTMLElement;
775
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
776
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalRadioButton, never>;
777
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalRadioButton, "bal-radio-button", never, { "color": "color"; "disabled": "disabled"; "invalid": "invalid"; "readonly": "readonly"; }, { "balFocus": "balFocus"; "balBlur": "balBlur"; "balFormControlDidLoad": "balFormControlDidLoad"; }, never, ["*"], true, never>;
778
+ }
779
+ export declare interface BalSelectOption extends Components.BalSelectOption {
780
+ }
781
+ export declare class BalSelectOption {
782
+ protected z: NgZone;
783
+ protected el: HTMLElement;
784
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
785
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalSelectOption, never>;
786
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalSelectOption, "bal-select-option", never, { "disabled": "disabled"; "label": "label"; "value": "value"; }, {}, never, ["*"], true, never>;
787
+ }
788
+ export declare interface BalShape extends Components.BalShape {
789
+ }
790
+ export declare class BalShape {
791
+ protected z: NgZone;
792
+ protected el: HTMLElement;
793
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
794
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalShape, never>;
795
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalShape, "bal-shape", never, { "color": "color"; "rotation": "rotation"; "variation": "variation"; }, {}, never, ["*"], true, never>;
796
+ }
797
+ export declare interface BalSheet extends Components.BalSheet {
798
+ }
799
+ export declare class BalSheet {
800
+ protected z: NgZone;
801
+ protected el: HTMLElement;
802
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
803
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalSheet, never>;
804
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalSheet, "bal-sheet", never, { "containerSize": "containerSize"; }, {}, never, ["*"], true, never>;
805
+ }
806
+ export declare interface BalSnackbar extends Components.BalSnackbar {
807
+ }
808
+ export declare class BalSnackbar {
809
+ protected z: NgZone;
810
+ /** Emitted when snackbar is closed */
811
+ balClose: EventEmitter<BalEvents.BalSnackbarCustomEvent<string>>;
812
+ /** Emitted when the action button is clicked */
813
+ balAction: EventEmitter<BalEvents.BalSnackbarCustomEvent<string>>;
814
+ protected el: HTMLElement;
815
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
816
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalSnackbar, never>;
817
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalSnackbar, "bal-snackbar", never, { "action": "action"; "color": "color"; "duration": "duration"; "href": "href"; "icon": "icon"; "message": "message"; "subject": "subject"; "target": "target"; }, { "balClose": "balClose"; "balAction": "balAction"; }, never, ["*"], true, never>;
818
+ }
819
+ export declare interface BalSpinner extends Components.BalSpinner {
820
+ }
821
+ export declare class BalSpinner {
822
+ protected z: NgZone;
823
+ protected el: HTMLElement;
824
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
825
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalSpinner, never>;
826
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalSpinner, "bal-spinner", never, { "color": "color"; "deactivated": "deactivated"; "inverted": "inverted"; "small": "small"; }, {}, never, ["*"], true, never>;
827
+ }
828
+ export declare interface BalStack extends Components.BalStack {
829
+ }
830
+ export declare class BalStack {
831
+ protected z: NgZone;
832
+ protected el: HTMLElement;
833
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
834
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalStack, never>;
835
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalStack, "bal-stack", never, { "align": "align"; "fitContent": "fitContent"; "layout": "layout"; "px": "px"; "py": "py"; "space": "space"; "spaceColumn": "spaceColumn"; "spaceRow": "spaceRow"; "useWrap": "useWrap"; }, {}, never, ["*"], true, never>;
836
+ }
837
+ export declare interface BalStage extends Components.BalStage {
838
+ }
839
+ export declare class BalStage {
840
+ protected z: NgZone;
841
+ protected el: HTMLElement;
842
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
843
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalStage, never>;
844
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalStage, "bal-stage", never, { "color": "color"; "containerSize": "containerSize"; "shape": "shape"; "shapeRotation": "shapeRotation"; "shapeVariation": "shapeVariation"; "size": "size"; }, {}, never, ["*"], true, never>;
845
+ }
846
+ export declare interface BalStageBackLink extends Components.BalStageBackLink {
847
+ }
848
+ export declare class BalStageBackLink {
849
+ protected z: NgZone;
850
+ protected el: HTMLElement;
851
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
852
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalStageBackLink, never>;
853
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalStageBackLink, "bal-stage-back-link", never, { "href": "href"; "inverted": "inverted"; "shadow": "shadow"; }, {}, never, ["*"], true, never>;
854
+ }
855
+ export declare interface BalStageBody extends Components.BalStageBody {
856
+ }
857
+ export declare class BalStageBody {
858
+ protected z: NgZone;
859
+ protected el: HTMLElement;
860
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
861
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalStageBody, never>;
862
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalStageBody, "bal-stage-body", never, {}, {}, never, ["*"], true, never>;
863
+ }
864
+ export declare interface BalStageFoot extends Components.BalStageFoot {
865
+ }
866
+ export declare class BalStageFoot {
867
+ protected z: NgZone;
868
+ protected el: HTMLElement;
869
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
870
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalStageFoot, never>;
871
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalStageFoot, "bal-stage-foot", never, {}, {}, never, ["*"], true, never>;
872
+ }
873
+ export declare interface BalStageHead extends Components.BalStageHead {
874
+ }
875
+ export declare class BalStageHead {
876
+ protected z: NgZone;
877
+ protected el: HTMLElement;
878
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
879
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalStageHead, never>;
880
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalStageHead, "bal-stage-head", never, {}, {}, never, ["*"], true, never>;
881
+ }
882
+ export declare interface BalStageImage extends Components.BalStageImage {
883
+ }
884
+ export declare class BalStageImage {
885
+ protected z: NgZone;
886
+ protected el: HTMLElement;
887
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
888
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalStageImage, never>;
889
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalStageImage, "bal-stage-image", never, { "fallback": "fallback"; "srcSet": "srcSet"; }, {}, never, ["*"], true, never>;
890
+ }
891
+ export declare interface BalStepItem extends Components.BalStepItem {
892
+ }
893
+ export declare class BalStepItem {
894
+ protected z: NgZone;
895
+ /** Emitted when the link element has clicked */
896
+ balNavigate: EventEmitter<BalEvents.BalStepItemCustomEvent<MouseEvent>>;
897
+ protected el: HTMLElement;
898
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
899
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalStepItem, never>;
900
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalStepItem, "bal-step-item", never, { "active": "active"; "disabled": "disabled"; "done": "done"; "failed": "failed"; "href": "href"; "invisible": "invisible"; "label": "label"; "prevent": "prevent"; "target": "target"; "value": "value"; }, { "balNavigate": "balNavigate"; }, never, ["*"], true, never>;
901
+ }
902
+ export declare interface BalSteps extends Components.BalSteps {
903
+ }
904
+ export declare class BalSteps {
905
+ protected z: NgZone;
906
+ /** Emitted when the changes has finished. */
907
+ balChange: EventEmitter<BalEvents.BalStepsCustomEvent<string>>;
908
+ protected el: HTMLElement;
909
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
910
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalSteps, never>;
911
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalSteps, "bal-steps", never, { "clickable": "clickable"; "debounce": "debounce"; "options": "options"; "value": "value"; }, { "balChange": "balChange"; }, never, ["*"], true, never>;
912
+ }
913
+ export declare interface BalTabItem extends Components.BalTabItem {
914
+ }
915
+ export declare class BalTabItem {
916
+ protected z: NgZone;
917
+ /** Emitted when the link element has clicked */
918
+ balNavigate: EventEmitter<BalEvents.BalTabItemCustomEvent<MouseEvent>>;
919
+ protected el: HTMLElement;
920
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
921
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalTabItem, never>;
922
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalTabItem, "bal-tab-item", never, { "active": "active"; "bubble": "bubble"; "disabled": "disabled"; "href": "href"; "icon": "icon"; "invisible": "invisible"; "label": "label"; "prevent": "prevent"; "target": "target"; "value": "value"; }, { "balNavigate": "balNavigate"; }, never, ["*"], true, never>;
923
+ }
924
+ export declare interface BalTable extends Components.BalTable {
925
+ }
926
+ export declare class BalTable {
927
+ protected z: NgZone;
928
+ protected el: HTMLElement;
929
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
930
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalTable, never>;
931
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalTable, "bal-table", never, { "expanded": "expanded"; }, {}, never, ["*"], true, never>;
932
+ }
933
+ export declare interface BalTabs extends Components.BalTabs {
934
+ }
935
+ export declare class BalTabs {
936
+ protected z: NgZone;
937
+ /** Emitted when the changes has finished. */
938
+ balChange: EventEmitter<BalEvents.BalTabsCustomEvent<string>>;
939
+ /** Emitted before the animation starts */
940
+ balWillAnimate: EventEmitter<BalEvents.BalTabsCustomEvent<string>>;
941
+ /** Emitted after the animation has finished */
942
+ balDidAnimate: EventEmitter<BalEvents.BalTabsCustomEvent<string>>;
943
+ protected el: HTMLElement;
944
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
945
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalTabs, never>;
946
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalTabs, "bal-tabs", never, { "accordion": "accordion"; "border": "border"; "clickable": "clickable"; "context": "context"; "debounce": "debounce"; "expanded": "expanded"; "float": "float"; "fullwidth": "fullwidth"; "iconPosition": "iconPosition"; "inverted": "inverted"; "optionalTabSelection": "optionalTabSelection"; "options": "options"; "overflow": "overflow"; "selectOnMobile": "selectOnMobile"; "spaceless": "spaceless"; "value": "value"; "vertical": "vertical"; "verticalColSize": "verticalColSize"; }, { "balChange": "balChange"; "balWillAnimate": "balWillAnimate"; "balDidAnimate": "balDidAnimate"; }, never, ["*"], true, never>;
947
+ }
948
+ export declare interface BalTag extends Components.BalTag {
949
+ }
950
+ export declare class BalTag {
951
+ protected z: NgZone;
952
+ /** Emitted when the input got clicked. */
953
+ balCloseClick: EventEmitter<BalEvents.BalTagCustomEvent<MouseEvent>>;
954
+ protected el: HTMLElement;
955
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
956
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalTag, never>;
957
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalTag, "bal-tag", never, { "closable": "closable"; "color": "color"; "disabled": "disabled"; "invalid": "invalid"; "light": "light"; "position": "position"; "size": "size"; }, { "balCloseClick": "balCloseClick"; }, never, ["*"], true, never>;
958
+ }
959
+ export declare interface BalTagGroup extends Components.BalTagGroup {
960
+ }
961
+ export declare class BalTagGroup {
962
+ protected z: NgZone;
963
+ protected el: HTMLElement;
964
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
965
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalTagGroup, never>;
966
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalTagGroup, "bal-tag-group", never, {}, {}, never, ["*"], true, never>;
967
+ }
968
+ export declare interface BalText extends Components.BalText {
969
+ }
970
+ export declare class BalText {
971
+ protected z: NgZone;
972
+ protected el: HTMLElement;
973
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
974
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalText, never>;
975
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalText, "bal-text", never, { "bold": "bold"; "color": "color"; "disabled": "disabled"; "heading": "heading"; "inline": "inline"; "invalid": "invalid"; "inverted": "inverted"; "noWrap": "noWrap"; "shadow": "shadow"; "size": "size"; "space": "space"; }, {}, never, ["*"], true, never>;
976
+ }
977
+ export declare interface BalToast extends Components.BalToast {
978
+ }
979
+ export declare class BalToast {
980
+ protected z: NgZone;
981
+ /** Emitted when toast is closed */
982
+ balClose: EventEmitter<BalEvents.BalToastCustomEvent<string>>;
983
+ protected el: HTMLElement;
984
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
985
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalToast, never>;
986
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalToast, "bal-toast", never, { "color": "color"; "duration": "duration"; "message": "message"; }, { "balClose": "balClose"; }, never, ["*"], true, never>;
987
+ }
988
+ export declare interface BalTooltip extends Components.BalTooltip {
989
+ }
990
+ export declare class BalTooltip {
991
+ protected z: NgZone;
992
+ /** Emitted before the animation starts */
993
+ balWillAnimate: EventEmitter<BalEvents.BalTooltipCustomEvent<boolean>>;
994
+ /** Emitted after the animation has finished */
995
+ balDidAnimate: EventEmitter<BalEvents.BalTooltipCustomEvent<boolean>>;
996
+ protected el: HTMLElement;
997
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
998
+ static ɵfac: i0.ɵɵFactoryDeclaration<BalTooltip, never>;
999
+ static ɵcmp: i0.ɵɵComponentDeclaration<BalTooltip, "bal-tooltip", never, { "contentWidth": "contentWidth"; "offset": "offset"; "placement": "placement"; "reference": "reference"; }, { "balWillAnimate": "balWillAnimate"; "balDidAnimate": "balDidAnimate"; }, never, ["*"], true, never>;
1000
+ }