@lusso/base-ui 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -0
- package/fesm2022/lusso-base-ui.mjs +5609 -0
- package/fesm2022/lusso-base-ui.mjs.map +1 -0
- package/package.json +25 -0
- package/src/assets/icons.svg +434 -0
- package/src/assets/images/avatar1.jpeg +0 -0
- package/src/assets/images/avatar2.jpeg +0 -0
- package/src/assets/images/avatar3.jpeg +0 -0
- package/src/assets/images/avatar4.jpeg +0 -0
- package/src/assets/images/avatar5.jpeg +0 -0
- package/src/assets/images/avatar6.jpeg +0 -0
- package/src/assets/images/gallery/slide-1.png +0 -0
- package/src/assets/images/gallery/slide-2.png +0 -0
- package/src/assets/images/gallery/slide-3.png +0 -0
- package/src/assets/images/gallery/slide-4.png +0 -0
- package/src/assets/images/office.jpeg +0 -0
- package/src/assets/images/office1.jpg +0 -0
- package/src/assets/images/products/backpack.png +0 -0
- package/src/assets/images/products/headphones.png +0 -0
- package/src/assets/images/products/watch.png +0 -0
- package/src/assets/scss/index.scss +47 -0
- package/types/lusso-base-ui.d.ts +1262 -0
|
@@ -0,0 +1,1262 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { AfterContentInit, OnChanges, OnDestroy, QueryList, EventEmitter, SimpleChanges, InjectionToken, OnInit, TemplateRef, ElementRef, AfterViewInit, ChangeDetectorRef, Renderer2, PipeTransform, ComponentRef, ApplicationRef, ViewContainerRef, Type, RendererFactory2 } from '@angular/core';
|
|
3
|
+
import * as i1 from '@angular/common';
|
|
4
|
+
import * as i3 from '@angular/cdk/clipboard';
|
|
5
|
+
import * as i4 from '@angular/forms';
|
|
6
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
7
|
+
import * as rxjs from 'rxjs';
|
|
8
|
+
import { Subject, Observable } from 'rxjs';
|
|
9
|
+
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
10
|
+
|
|
11
|
+
declare class IconComponent {
|
|
12
|
+
name: string;
|
|
13
|
+
path: string;
|
|
14
|
+
color: string;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "base-icon", never, { "name": { "alias": "name"; "required": false; }; "path": { "alias": "path"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
declare class IconModule {
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconModule, never>;
|
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IconModule, never, [typeof i1.CommonModule, typeof IconComponent], [typeof IconComponent]>;
|
|
22
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IconModule>;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
declare class SidebarService {
|
|
26
|
+
private isOpenSubject;
|
|
27
|
+
isOpen$: rxjs.Observable<boolean>;
|
|
28
|
+
get isOpen(): boolean;
|
|
29
|
+
toggle(): void;
|
|
30
|
+
setOpen(open: boolean): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SidebarService>;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
declare class LogoComponent {
|
|
36
|
+
private screenSizeService;
|
|
37
|
+
sidebarService: SidebarService;
|
|
38
|
+
get currentScreenSize(): string;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogoComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogoComponent, "base-logo", never, {}, {}, never, never, true, never>;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
44
|
+
type AvatarShape = 'circle' | 'square';
|
|
45
|
+
type AvatarStatus = 'active' | 'inactive';
|
|
46
|
+
declare class AvatarComponent {
|
|
47
|
+
avatarUrl: string;
|
|
48
|
+
shape: AvatarShape;
|
|
49
|
+
status?: AvatarStatus;
|
|
50
|
+
size: AvatarSize;
|
|
51
|
+
initials: string;
|
|
52
|
+
get containerClasses(): Record<string, boolean>;
|
|
53
|
+
get innerClasses(): string;
|
|
54
|
+
get statusClasses(): Record<string, boolean>;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "base-avatar", never, { "avatarUrl": { "alias": "avatarUrl"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "status": { "alias": "status"; "required": false; }; "size": { "alias": "size"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; }, {}, never, never, true, never>;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
declare class PageBaseComponent {
|
|
60
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageBaseComponent, never>;
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageBaseComponent, "base-page-base", never, {}, {}, never, ["*"], true, never>;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
declare class PageBaseHeaderComponent {
|
|
65
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageBaseHeaderComponent, never>;
|
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageBaseHeaderComponent, "base-page-base-header", never, {}, {}, never, ["*"], true, never>;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
declare class PageBaseFooterComponent {
|
|
70
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageBaseFooterComponent, never>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageBaseFooterComponent, "base-page-base-footer", never, {}, {}, never, never, true, never>;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
declare class PageBaseBodyComponent {
|
|
75
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageBaseBodyComponent, never>;
|
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageBaseBodyComponent, "base-page-base-body", never, {}, {}, never, ["*"], true, never>;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
declare class CardComponent {
|
|
80
|
+
horizontal: boolean;
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "base-card", never, { "horizontal": { "alias": "horizontal"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
declare class CardBodyComponent {
|
|
86
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardBodyComponent, never>;
|
|
87
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardBodyComponent, "base-card-body", never, {}, {}, never, ["*"], true, never>;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
declare class CardHeaderComponent {
|
|
91
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
|
|
92
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "base-card-header", never, {}, {}, never, ["*"], true, never>;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
declare class CardFooterComponent {
|
|
96
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
|
|
97
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "base-card-footer", never, {}, {}, never, ["*"], true, never>;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
type BadgeColor = 'primary' | 'danger' | 'success' | 'accent' | 'warning' | 'primary-light' | 'danger-light' | 'success-light' | 'accent-light' | 'warning-light';
|
|
101
|
+
type BadgeSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
102
|
+
type BadgeShape = 'rectangular' | 'circle';
|
|
103
|
+
declare class BadgeComponent {
|
|
104
|
+
color: BadgeColor;
|
|
105
|
+
size: BadgeSize;
|
|
106
|
+
shape: BadgeShape;
|
|
107
|
+
get badgeClasses(): string[];
|
|
108
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
109
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "base-badge", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
declare class GroupButtonComponent {
|
|
113
|
+
icon?: string;
|
|
114
|
+
disabled: boolean;
|
|
115
|
+
active: boolean;
|
|
116
|
+
value?: any;
|
|
117
|
+
private toggleButtonService;
|
|
118
|
+
toggle(): void;
|
|
119
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupButtonComponent, never>;
|
|
120
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupButtonComponent, "base-group-button-item", never, { "icon": { "alias": "icon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "active": { "alias": "active"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
declare class ButtonGroupComponent implements AfterContentInit, OnChanges, ControlValueAccessor, OnDestroy {
|
|
124
|
+
ngModel: any;
|
|
125
|
+
buttons: QueryList<GroupButtonComponent>;
|
|
126
|
+
change: EventEmitter<any>;
|
|
127
|
+
private onChange;
|
|
128
|
+
private onTouched;
|
|
129
|
+
private currentValue;
|
|
130
|
+
private destroy$;
|
|
131
|
+
private toggleButtonService;
|
|
132
|
+
constructor();
|
|
133
|
+
ngAfterContentInit(): void;
|
|
134
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
135
|
+
ngOnDestroy(): void;
|
|
136
|
+
writeValue(value: any): void;
|
|
137
|
+
registerOnChange(fn: (value: any) => void): void;
|
|
138
|
+
registerOnTouched(fn: any): void;
|
|
139
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
140
|
+
private selectButtonByValue;
|
|
141
|
+
private onButtonClicked;
|
|
142
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonGroupComponent, never>;
|
|
143
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonGroupComponent, "base-button-group", never, { "ngModel": { "alias": "ngModel"; "required": false; }; }, { "change": "change"; }, ["buttons"], ["*"], true, never>;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
declare class InputGroupComponent {
|
|
147
|
+
control?: NgControl;
|
|
148
|
+
showErrors(): boolean;
|
|
149
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputGroupComponent, never>;
|
|
150
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputGroupComponent, "base-input-group", never, {}, {}, ["control"], ["base-label", "[base-addon-start]", "datalist", "[base-input]", "[base-textarea]", "[base-addon-end]", "base-error", "base-info-text"], true, never>;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
declare class LabelComponent {
|
|
154
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
|
|
155
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "base-label", never, {}, {}, never, ["*"], true, never>;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
declare class ErrorComponent {
|
|
159
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
|
|
160
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "base-error", never, {}, {}, never, ["*"], true, never>;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
declare class InfoTextComponent {
|
|
164
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoTextComponent, never>;
|
|
165
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoTextComponent, "base-info-text", never, {}, {}, never, ["*"], true, never>;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
type CheckboxColor = 'primary' | 'danger' | 'success' | 'accent' | 'warning';
|
|
169
|
+
declare class CheckboxComponent implements ControlValueAccessor {
|
|
170
|
+
color: CheckboxColor;
|
|
171
|
+
disabled: boolean;
|
|
172
|
+
checked: boolean;
|
|
173
|
+
private onChange;
|
|
174
|
+
private onTouched;
|
|
175
|
+
get checkboxClasses(): Record<string, boolean>;
|
|
176
|
+
onToggle(event: Event): void;
|
|
177
|
+
writeValue(value: any): void;
|
|
178
|
+
registerOnChange(fn: (value: boolean) => void): void;
|
|
179
|
+
registerOnTouched(fn: any): void;
|
|
180
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
181
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
182
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "base-checkbox", never, { "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
declare const RADIO_GROUP: InjectionToken<RadioGroupComponent>;
|
|
186
|
+
declare class RadioGroupComponent implements ControlValueAccessor {
|
|
187
|
+
value: any;
|
|
188
|
+
disabled: boolean;
|
|
189
|
+
private onChange;
|
|
190
|
+
private onTouched;
|
|
191
|
+
writeValue(value: any): void;
|
|
192
|
+
registerOnChange(fn: any): void;
|
|
193
|
+
registerOnTouched(fn: any): void;
|
|
194
|
+
setDisabledState(isDisabled: boolean): void;
|
|
195
|
+
select(value: any): void;
|
|
196
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupComponent, never>;
|
|
197
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "base-radio-group", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
type RadioColor = 'primary' | 'danger' | 'success' | 'accent' | 'warning';
|
|
201
|
+
declare class RadioButtonComponent {
|
|
202
|
+
radioGroup: RadioGroupComponent;
|
|
203
|
+
name?: string;
|
|
204
|
+
value: any;
|
|
205
|
+
color: RadioColor;
|
|
206
|
+
disabled: boolean;
|
|
207
|
+
constructor(radioGroup: RadioGroupComponent);
|
|
208
|
+
get isChecked(): boolean;
|
|
209
|
+
get isDisabled(): boolean;
|
|
210
|
+
get radioClasses(): Record<string, boolean>;
|
|
211
|
+
onInputInteraction(event: Event): void;
|
|
212
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, [{ optional: true; }]>;
|
|
213
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "base-radio-button", never, { "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
declare class AccordionItemComponent {
|
|
217
|
+
isOpen: boolean;
|
|
218
|
+
disabled: boolean;
|
|
219
|
+
toggled: EventEmitter<boolean>;
|
|
220
|
+
toggle(): void;
|
|
221
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
|
|
222
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemComponent, "base-accordion-item", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "toggled": "toggled"; }, never, ["base-accordion-item-header", "base-accordion-item-body"], true, never>;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
declare class AccordionComponent implements AfterContentInit, OnDestroy {
|
|
226
|
+
multi: boolean;
|
|
227
|
+
items: QueryList<AccordionItemComponent>;
|
|
228
|
+
private destroy$;
|
|
229
|
+
private itemToggleDestroy$;
|
|
230
|
+
ngAfterContentInit(): void;
|
|
231
|
+
private setupItems;
|
|
232
|
+
closeAllExcept(exceptItem: AccordionItemComponent): void;
|
|
233
|
+
ngOnDestroy(): void;
|
|
234
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
235
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "base-accordion", never, { "multi": { "alias": "multi"; "required": false; }; }, {}, ["items"], ["*"], true, never>;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
declare class AccordionItemHeaderComponent {
|
|
239
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemHeaderComponent, never>;
|
|
240
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemHeaderComponent, "base-accordion-item-header", never, {}, {}, never, ["*"], true, never>;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
declare class AccordionItemBodyComponent {
|
|
244
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemBodyComponent, never>;
|
|
245
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemBodyComponent, "base-accordion-item-body", never, {}, {}, never, ["*"], true, never>;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
type AlertColor = '' | 'primary' | 'success' | 'danger' | 'accent' | 'warning';
|
|
249
|
+
type AlertVariant = 'soft' | 'solid' | 'outline';
|
|
250
|
+
declare class AlertComponent implements OnInit, OnDestroy {
|
|
251
|
+
color: AlertColor;
|
|
252
|
+
variant: AlertVariant;
|
|
253
|
+
icon?: string;
|
|
254
|
+
close: boolean;
|
|
255
|
+
duration: number;
|
|
256
|
+
closed: EventEmitter<void>;
|
|
257
|
+
isClosed: boolean;
|
|
258
|
+
private timer?;
|
|
259
|
+
ngOnInit(): void;
|
|
260
|
+
ngOnDestroy(): void;
|
|
261
|
+
handleClose(): void;
|
|
262
|
+
get alertClasses(): string;
|
|
263
|
+
get iconClasses(): string;
|
|
264
|
+
get closeButtonClasses(): string;
|
|
265
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
266
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "base-alert", never, { "color": { "alias": "color"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "close": { "alias": "close"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; }, { "closed": "closed"; }, never, ["*", "base-alert-actions"], true, never>;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
type ToggleColor = 'primary' | 'danger' | 'success' | 'accent' | 'warning';
|
|
270
|
+
type ToggleSize = 'sm' | 'md' | 'lg';
|
|
271
|
+
type ToggleShape = 'rounded' | 'square' | 'smooth';
|
|
272
|
+
declare class ToggleComponent implements ControlValueAccessor {
|
|
273
|
+
color: ToggleColor;
|
|
274
|
+
size: ToggleSize;
|
|
275
|
+
shape: ToggleShape;
|
|
276
|
+
disabled: boolean;
|
|
277
|
+
checked: boolean;
|
|
278
|
+
private onChange;
|
|
279
|
+
private onTouched;
|
|
280
|
+
get containerClasses(): string;
|
|
281
|
+
get trackClasses(): string;
|
|
282
|
+
get thumbClasses(): string;
|
|
283
|
+
onToggle(event: Event): void;
|
|
284
|
+
writeValue(value: any): void;
|
|
285
|
+
registerOnChange(fn: (value: boolean) => void): void;
|
|
286
|
+
registerOnTouched(fn: any): void;
|
|
287
|
+
setDisabledState?(isDisabled: boolean): void;
|
|
288
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
|
|
289
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "base-toggle", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, {}, never, never, true, never>;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
declare class BreadcrumbComponent {
|
|
293
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
294
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "base-breadcrumb", never, {}, {}, never, ["*"], true, never>;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
declare class BreadcrumbItemComponent {
|
|
298
|
+
icon?: string;
|
|
299
|
+
link?: string;
|
|
300
|
+
label: string;
|
|
301
|
+
separator?: string;
|
|
302
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbItemComponent, never>;
|
|
303
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbItemComponent, "base-breadcrumb-item", never, { "icon": { "alias": "icon"; "required": false; }; "link": { "alias": "link"; "required": false; }; "label": { "alias": "label"; "required": false; }; "separator": { "alias": "separator"; "required": false; }; }, {}, never, never, true, never>;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
declare class TabBodyComponent {
|
|
307
|
+
bodyContent: TemplateRef<any>;
|
|
308
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabBodyComponent, never>;
|
|
309
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabBodyComponent, "base-tab-body", never, {}, {}, never, ["*"], true, never>;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
declare class TabLabelComponent {
|
|
313
|
+
icon?: string;
|
|
314
|
+
icon_position?: string;
|
|
315
|
+
isActive: boolean;
|
|
316
|
+
type?: string;
|
|
317
|
+
labelContent: TemplateRef<any>;
|
|
318
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabLabelComponent, never>;
|
|
319
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabLabelComponent, "base-tab-label", never, {}, {}, never, ["*"], true, never>;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
declare class TabComponent {
|
|
323
|
+
label: string;
|
|
324
|
+
isActive: boolean;
|
|
325
|
+
tabClass: string;
|
|
326
|
+
bodyComponent?: TabBodyComponent;
|
|
327
|
+
labelComponent?: TabLabelComponent;
|
|
328
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
|
|
329
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "base-tab", never, { "label": { "alias": "label"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "tabClass": { "alias": "tabClass"; "required": false; }; }, {}, ["bodyComponent", "labelComponent"], ["*"], true, never>;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
declare class TabsComponent implements AfterContentInit, OnChanges {
|
|
333
|
+
tabs: QueryList<TabComponent>;
|
|
334
|
+
tabChanged: Subject<TabComponent>;
|
|
335
|
+
tabItems$: Observable<TabComponent[]>;
|
|
336
|
+
defaultTab: number;
|
|
337
|
+
type?: string;
|
|
338
|
+
position?: string;
|
|
339
|
+
icon?: string;
|
|
340
|
+
scrolrestricted: boolean;
|
|
341
|
+
activeTab?: TabComponent;
|
|
342
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
343
|
+
ngAfterContentInit(): void;
|
|
344
|
+
selectTab(tabItem: TabComponent): void;
|
|
345
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
346
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "base-tabs", never, { "defaultTab": { "alias": "defaultTab"; "required": false; }; "type": { "alias": "type"; "required": false; }; "position": { "alias": "position"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "scrolrestricted": { "alias": "scrolrestricted"; "required": false; }; }, { "tabChanged": "tabChanged"; }, ["tabs"], never, true, never>;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
declare class CurrentScreenSizeService implements OnDestroy {
|
|
350
|
+
toggle(): void;
|
|
351
|
+
destroyed: Subject<void>;
|
|
352
|
+
currentScreenSize: string;
|
|
353
|
+
displayNameMap: Map<string, string>;
|
|
354
|
+
private sizeSubject;
|
|
355
|
+
size$: rxjs.Observable<string>;
|
|
356
|
+
constructor(breakpointObserver: BreakpointObserver);
|
|
357
|
+
ngOnDestroy(): void;
|
|
358
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentScreenSizeService, never>;
|
|
359
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CurrentScreenSizeService>;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
declare class SidenavComponent {
|
|
363
|
+
private screenSizeService;
|
|
364
|
+
color?: string;
|
|
365
|
+
navBarOpen: boolean;
|
|
366
|
+
constructor(screenSizeService: CurrentScreenSizeService);
|
|
367
|
+
openNavBar(): void;
|
|
368
|
+
onNavClick(): void;
|
|
369
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidenavComponent, never>;
|
|
370
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidenavComponent, "base-sidenav", never, { "color": { "alias": "color"; "required": false; }; }, {}, never, ["base-sidenav-nav", "base-sidenav-body"], true, never>;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
declare class SidenavBodyComponent {
|
|
374
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidenavBodyComponent, never>;
|
|
375
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidenavBodyComponent, "base-sidenav-body", never, {}, {}, never, ["*"], true, never>;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
declare class SidenavNavComponent {
|
|
379
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidenavNavComponent, never>;
|
|
380
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidenavNavComponent, "base-sidenav-nav", never, {}, {}, never, ["*"], true, never>;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
declare class AlertActionsComponent {
|
|
384
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertActionsComponent, never>;
|
|
385
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertActionsComponent, "base-alert-actions", never, {}, {}, never, ["*"], true, never>;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
declare class NavListComponent {
|
|
389
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavListComponent, never>;
|
|
390
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavListComponent, "base-nav-list", never, {}, {}, never, ["*"], true, never>;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
type SpinnerColor = 'primary' | 'success' | 'danger' | 'warning' | 'accent' | 'inverted';
|
|
394
|
+
type SpinnerSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
395
|
+
declare class SpinnerComponent {
|
|
396
|
+
size: SpinnerSize;
|
|
397
|
+
color: SpinnerColor;
|
|
398
|
+
get spinnerClasses(): string[];
|
|
399
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerComponent, never>;
|
|
400
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerComponent, "base-spinner", never, { "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
declare class SpinnerWrapperComponent {
|
|
404
|
+
backdrop: 'dark' | 'light';
|
|
405
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerWrapperComponent, never>;
|
|
406
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerWrapperComponent, "base-spinner-wrapper", never, { "backdrop": { "alias": "backdrop"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
declare class DividerComponent {
|
|
410
|
+
vertical: boolean;
|
|
411
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DividerComponent, never>;
|
|
412
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DividerComponent, "base-divider", never, { "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, never, true, never>;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
type ProgressColor = 'primary' | 'success' | 'danger' | 'warning' | 'accent';
|
|
416
|
+
type ProgressSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
417
|
+
declare class ProgressComponent {
|
|
418
|
+
value: number;
|
|
419
|
+
color: ProgressColor;
|
|
420
|
+
size: ProgressSize;
|
|
421
|
+
get containerClasses(): Record<string, boolean>;
|
|
422
|
+
get barClasses(): Record<string, boolean>;
|
|
423
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressComponent, never>;
|
|
424
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressComponent, "base-progress", never, { "value": { "alias": "value"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
declare class ScrollNavItemDirective {
|
|
428
|
+
elementRef: ElementRef;
|
|
429
|
+
elementId: string;
|
|
430
|
+
private _isActive;
|
|
431
|
+
private ngZone;
|
|
432
|
+
set isActive(value: boolean);
|
|
433
|
+
get isActive(): boolean;
|
|
434
|
+
clicked: EventEmitter<ScrollNavItemDirective>;
|
|
435
|
+
constructor(elementRef: ElementRef);
|
|
436
|
+
onClick(): void;
|
|
437
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollNavItemDirective, never>;
|
|
438
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollNavItemDirective, "[base-scroll-nav-item]", never, { "elementId": { "alias": "base-scroll-nav-item"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; }, { "clicked": "clicked"; }, never, never, true, never>;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
declare class ScrollNavComponent implements AfterViewInit, OnDestroy {
|
|
442
|
+
container?: ElementRef;
|
|
443
|
+
items: QueryList<ScrollNavItemDirective>;
|
|
444
|
+
percentage: number;
|
|
445
|
+
private targets;
|
|
446
|
+
private destroy$;
|
|
447
|
+
private selectedItem?;
|
|
448
|
+
private platformId;
|
|
449
|
+
ngAfterViewInit(): void;
|
|
450
|
+
private setupItemListeners;
|
|
451
|
+
ngOnDestroy(): void;
|
|
452
|
+
private updateTargets;
|
|
453
|
+
private updateActiveItem;
|
|
454
|
+
private scrollTo;
|
|
455
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollNavComponent, never>;
|
|
456
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollNavComponent, "base-scroll-nav", never, {}, {}, ["container", "items"], ["*"], true, never>;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
declare class ScrollNavContentComponent {
|
|
460
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollNavContentComponent, never>;
|
|
461
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollNavContentComponent, "base-scroll-nav-content", never, {}, {}, never, ["*"], true, never>;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
declare class ScrollNavSidebarComponent {
|
|
465
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollNavSidebarComponent, never>;
|
|
466
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollNavSidebarComponent, "base-scroll-nav-sidebar", never, {}, {}, never, ["*"], true, never>;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
declare class CodeComponent {
|
|
470
|
+
language: string;
|
|
471
|
+
showCode: boolean;
|
|
472
|
+
contentRef?: ElementRef;
|
|
473
|
+
private clipboard;
|
|
474
|
+
show(): void;
|
|
475
|
+
copyTo(): void;
|
|
476
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CodeComponent, never>;
|
|
477
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CodeComponent, "base-code", never, { "language": { "alias": "language"; "required": false; }; "showCode": { "alias": "showCode"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
interface DrawerPanel<T> {
|
|
481
|
+
templateRef: TemplateRef<T>;
|
|
482
|
+
readonly closed: EventEmitter<void>;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
type DrawerPosition = 'left' | 'right' | 'top' | 'bottom';
|
|
486
|
+
type DrawerSize = 'sm' | 'md' | 'lg' | 'xl' | string;
|
|
487
|
+
declare class DrawerComponent<T> implements DrawerPanel<T> {
|
|
488
|
+
size: DrawerSize;
|
|
489
|
+
position: DrawerPosition;
|
|
490
|
+
close: boolean;
|
|
491
|
+
templateRef: TemplateRef<T>;
|
|
492
|
+
closed: EventEmitter<void>;
|
|
493
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrawerComponent<any>, never>;
|
|
494
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrawerComponent<any>, "base-drawer", never, { "size": { "alias": "size"; "required": false; }; "position": { "alias": "position"; "required": false; }; "close": { "alias": "close"; "required": false; }; }, { "closed": "closed"; }, never, ["*"], true, never>;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
interface DropdownPanel<T> {
|
|
498
|
+
templateRef: TemplateRef<T>;
|
|
499
|
+
readonly closed: EventEmitter<void>;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
declare class DropdownMenuComponent<T> implements DropdownPanel<T> {
|
|
503
|
+
size?: string;
|
|
504
|
+
templateRef: TemplateRef<T>;
|
|
505
|
+
closed: EventEmitter<void>;
|
|
506
|
+
get menuClasses(): string;
|
|
507
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMenuComponent<any>, never>;
|
|
508
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMenuComponent<any>, "base-dropdown-menu", never, { "size": { "alias": "size"; "required": false; }; }, { "closed": "closed"; }, never, ["*"], true, never>;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
declare class DropdownMenuItemComponent {
|
|
512
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMenuItemComponent, never>;
|
|
513
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMenuItemComponent, "base-dropdown-menu-item", never, {}, {}, never, ["*"], true, never>;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
declare const GALLERY_SLIDER_TOKEN: InjectionToken<any>;
|
|
517
|
+
declare class CarouselCaptionComponent {
|
|
518
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselCaptionComponent, never>;
|
|
519
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CarouselCaptionComponent, "base-carousel-caption", never, {}, {}, never, ["*"], true, never>;
|
|
520
|
+
}
|
|
521
|
+
declare class CarouselItemComponent {
|
|
522
|
+
interval: number;
|
|
523
|
+
active: boolean;
|
|
524
|
+
private parent;
|
|
525
|
+
get isCrossfade(): boolean;
|
|
526
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CarouselItemComponent, never>;
|
|
527
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CarouselItemComponent, "base-carousel-item", never, { "interval": { "alias": "interval"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
528
|
+
}
|
|
529
|
+
declare class GallerySliderComponent implements OnInit, AfterContentInit, OnDestroy {
|
|
530
|
+
activeIndex: number;
|
|
531
|
+
animate: boolean;
|
|
532
|
+
dark: boolean;
|
|
533
|
+
direction: 'next' | 'prev';
|
|
534
|
+
interval: number;
|
|
535
|
+
pause: 'hover' | false;
|
|
536
|
+
touch: boolean;
|
|
537
|
+
transition: 'slide' | 'crossfade';
|
|
538
|
+
wrap: boolean;
|
|
539
|
+
slides: string[];
|
|
540
|
+
itemChange: EventEmitter<number>;
|
|
541
|
+
items: QueryList<CarouselItemComponent>;
|
|
542
|
+
private destroy$;
|
|
543
|
+
private platformId;
|
|
544
|
+
private cdr;
|
|
545
|
+
private timerSubscription?;
|
|
546
|
+
private startX;
|
|
547
|
+
private threshold;
|
|
548
|
+
ngOnInit(): void;
|
|
549
|
+
ngAfterContentInit(): void;
|
|
550
|
+
ngOnDestroy(): void;
|
|
551
|
+
next(): void;
|
|
552
|
+
prev(): void;
|
|
553
|
+
select(index: number, direction?: 'next' | 'prev'): void;
|
|
554
|
+
private updateActiveItem;
|
|
555
|
+
startAutoplay(): void;
|
|
556
|
+
stopAutoplay(): void;
|
|
557
|
+
restartAutoplay(): void;
|
|
558
|
+
private getActiveInterval;
|
|
559
|
+
onMouseEnter(): void;
|
|
560
|
+
onMouseLeave(): void;
|
|
561
|
+
onTouchStart(event: TouchEvent): void;
|
|
562
|
+
onTouchEnd(event: TouchEvent): void;
|
|
563
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GallerySliderComponent, never>;
|
|
564
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GallerySliderComponent, "base-gallery-slider, base-carousel", never, { "activeIndex": { "alias": "activeIndex"; "required": false; }; "animate": { "alias": "animate"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "interval": { "alias": "interval"; "required": false; }; "pause": { "alias": "pause"; "required": false; }; "touch": { "alias": "touch"; "required": false; }; "transition": { "alias": "transition"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; "slides": { "alias": "slides"; "required": false; }; }, { "itemChange": "itemChange"; }, ["items"], ["*"], true, never>;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
declare class PaginatorComponent {
|
|
568
|
+
basePaginator: boolean;
|
|
569
|
+
arrows: boolean;
|
|
570
|
+
start: number;
|
|
571
|
+
end: number;
|
|
572
|
+
decrease(): void;
|
|
573
|
+
increase(): void;
|
|
574
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorComponent, never>;
|
|
575
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "base-paginator", never, { "basePaginator": { "alias": "basePaginator"; "required": false; }; "arrows": { "alias": "arrows"; "required": false; }; }, {}, never, ["base-p-page"], true, never>;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
declare class SelectComponent implements ControlValueAccessor {
|
|
579
|
+
placeholder: string;
|
|
580
|
+
disabled: boolean;
|
|
581
|
+
value: any;
|
|
582
|
+
private onChange;
|
|
583
|
+
private onTouched;
|
|
584
|
+
onSelectChange(event: Event): void;
|
|
585
|
+
writeValue(value: any): void;
|
|
586
|
+
registerOnChange(fn: any): void;
|
|
587
|
+
registerOnTouched(fn: any): void;
|
|
588
|
+
setDisabledState(isDisabled: boolean): void;
|
|
589
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
|
|
590
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "base-select", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
declare class InputSpinnerComponent implements ControlValueAccessor {
|
|
594
|
+
disabled: boolean;
|
|
595
|
+
classes: string;
|
|
596
|
+
min: number;
|
|
597
|
+
max: number;
|
|
598
|
+
step: number;
|
|
599
|
+
value: number;
|
|
600
|
+
private onChange;
|
|
601
|
+
private onTouched;
|
|
602
|
+
writeValue(value: any): void;
|
|
603
|
+
registerOnChange(fn: any): void;
|
|
604
|
+
registerOnTouched(fn: any): void;
|
|
605
|
+
setDisabledState(isDisabled: boolean): void;
|
|
606
|
+
updateValue(add: boolean): void;
|
|
607
|
+
onInputChange(event: Event): void;
|
|
608
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSpinnerComponent, never>;
|
|
609
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSpinnerComponent, "base-input-spinner", never, { "disabled": { "alias": "disabled"; "required": false; }; "classes": { "alias": "classes"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; }, {}, never, never, true, never>;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
declare class PPageComponent {
|
|
613
|
+
active: boolean;
|
|
614
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PPageComponent, never>;
|
|
615
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPageComponent, "base-p-page", never, { "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
declare class InputAutocompleteComponent implements OnInit {
|
|
619
|
+
suggestions: string;
|
|
620
|
+
list: string;
|
|
621
|
+
id: string;
|
|
622
|
+
ngOnInit(): void;
|
|
623
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputAutocompleteComponent, never>;
|
|
624
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputAutocompleteComponent, "base-input-autocomplete", never, { "suggestions": { "alias": "suggestions"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
declare class CustomSelectComponent implements ControlValueAccessor, OnDestroy {
|
|
628
|
+
label: string;
|
|
629
|
+
placeholder: string;
|
|
630
|
+
options: any[];
|
|
631
|
+
displayKey: string;
|
|
632
|
+
valueKey: string;
|
|
633
|
+
disabled: boolean;
|
|
634
|
+
multiple: boolean;
|
|
635
|
+
selectionChange: EventEmitter<any>;
|
|
636
|
+
isOpen: boolean;
|
|
637
|
+
selectedOption: any;
|
|
638
|
+
selectedLabel: string;
|
|
639
|
+
dropdownStyles: any;
|
|
640
|
+
buttonElement: ElementRef;
|
|
641
|
+
private el;
|
|
642
|
+
private onChange;
|
|
643
|
+
private onTouched;
|
|
644
|
+
toggleDropdown(): void;
|
|
645
|
+
calculateDropdownPosition(): void;
|
|
646
|
+
private addOverlayListeners;
|
|
647
|
+
private removeOverlayListeners;
|
|
648
|
+
private updatePosition;
|
|
649
|
+
selectOption(option: any): void;
|
|
650
|
+
isSelected(option: any): boolean;
|
|
651
|
+
writeValue(value: any): void;
|
|
652
|
+
registerOnChange(fn: any): void;
|
|
653
|
+
registerOnTouched(fn: any): void;
|
|
654
|
+
setDisabledState(isDisabled: boolean): void;
|
|
655
|
+
handleClickOutside(event: Event): void;
|
|
656
|
+
ngOnDestroy(): void;
|
|
657
|
+
private updateSelectedLabel;
|
|
658
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomSelectComponent, never>;
|
|
659
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomSelectComponent, "base-custom-select", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "options": { "alias": "options"; "required": false; }; "displayKey": { "alias": "displayKey"; "required": false; }; "valueKey": { "alias": "valueKey"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
interface CalendarDate {
|
|
663
|
+
date: Date;
|
|
664
|
+
isToday: boolean;
|
|
665
|
+
isCurrentMonth: boolean;
|
|
666
|
+
isSelected?: boolean;
|
|
667
|
+
isInRange?: boolean;
|
|
668
|
+
isRangeStart?: boolean;
|
|
669
|
+
isRangeEnd?: boolean;
|
|
670
|
+
}
|
|
671
|
+
declare class CalendarComponent implements OnInit {
|
|
672
|
+
mode: 'single' | 'range';
|
|
673
|
+
selectedDate: Date | null;
|
|
674
|
+
rangeStart: Date | null;
|
|
675
|
+
rangeEnd: Date | null;
|
|
676
|
+
dateSelected: EventEmitter<Date>;
|
|
677
|
+
rangeSelected: EventEmitter<{
|
|
678
|
+
start: Date | null;
|
|
679
|
+
end: Date | null;
|
|
680
|
+
}>;
|
|
681
|
+
viewDate: Date;
|
|
682
|
+
days: CalendarDate[];
|
|
683
|
+
weekDays: string[];
|
|
684
|
+
months: string[];
|
|
685
|
+
ngOnInit(): void;
|
|
686
|
+
private initialViewDateSet;
|
|
687
|
+
generateCalendar(): void;
|
|
688
|
+
private createCalendarDate;
|
|
689
|
+
private isSameDate;
|
|
690
|
+
prevMonth(): void;
|
|
691
|
+
nextMonth(): void;
|
|
692
|
+
selectDate(calDate: CalendarDate): void;
|
|
693
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
694
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "base-calendar", never, { "mode": { "alias": "mode"; "required": false; }; "selectedDate": { "alias": "selectedDate"; "required": false; }; "rangeStart": { "alias": "rangeStart"; "required": false; }; "rangeEnd": { "alias": "rangeEnd"; "required": false; }; }, { "dateSelected": "dateSelected"; "rangeSelected": "rangeSelected"; }, never, never, true, never>;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
declare class DatepickerComponent implements ControlValueAccessor {
|
|
698
|
+
placeholder: string;
|
|
699
|
+
label: string;
|
|
700
|
+
disabled: boolean;
|
|
701
|
+
inputContainer: ElementRef;
|
|
702
|
+
value: Date | null;
|
|
703
|
+
isOpen: boolean;
|
|
704
|
+
private overlayRef;
|
|
705
|
+
private overlay;
|
|
706
|
+
private onChange;
|
|
707
|
+
private onTouched;
|
|
708
|
+
toggleCalendar(): void;
|
|
709
|
+
openCalendar(): void;
|
|
710
|
+
closeCalendar(): void;
|
|
711
|
+
selectDate(date: Date): void;
|
|
712
|
+
writeValue(value: any): void;
|
|
713
|
+
registerOnChange(fn: any): void;
|
|
714
|
+
registerOnTouched(fn: any): void;
|
|
715
|
+
setDisabledState(isDisabled: boolean): void;
|
|
716
|
+
get formattedDate(): string;
|
|
717
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
|
|
718
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "base-datepicker", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
interface DateRange {
|
|
722
|
+
start: Date | null;
|
|
723
|
+
end: Date | null;
|
|
724
|
+
}
|
|
725
|
+
declare class DateRangePickerComponent implements ControlValueAccessor {
|
|
726
|
+
placeholder: string;
|
|
727
|
+
label: string;
|
|
728
|
+
disabled: boolean;
|
|
729
|
+
inputContainer: ElementRef;
|
|
730
|
+
value: DateRange;
|
|
731
|
+
isOpen: boolean;
|
|
732
|
+
private overlayRef;
|
|
733
|
+
private overlay;
|
|
734
|
+
private onChange;
|
|
735
|
+
private onTouched;
|
|
736
|
+
toggleCalendar(): void;
|
|
737
|
+
openCalendar(): void;
|
|
738
|
+
closeCalendar(): void;
|
|
739
|
+
selectRange(range: DateRange): void;
|
|
740
|
+
writeValue(value: any): void;
|
|
741
|
+
registerOnChange(fn: any): void;
|
|
742
|
+
registerOnTouched(fn: any): void;
|
|
743
|
+
setDisabledState(isDisabled: boolean): void;
|
|
744
|
+
get formattedRange(): string;
|
|
745
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePickerComponent, never>;
|
|
746
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "base-date-range-picker", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
interface TreeNode {
|
|
750
|
+
label: string;
|
|
751
|
+
icon?: string;
|
|
752
|
+
children?: TreeNode[];
|
|
753
|
+
expanded?: boolean;
|
|
754
|
+
selected?: boolean;
|
|
755
|
+
data?: any;
|
|
756
|
+
}
|
|
757
|
+
declare class TreeComponent {
|
|
758
|
+
nodes: TreeNode[];
|
|
759
|
+
selectedNode: TreeNode | null;
|
|
760
|
+
nodeClick: EventEmitter<TreeNode>;
|
|
761
|
+
nodeExpand: EventEmitter<TreeNode>;
|
|
762
|
+
nodeCollapse: EventEmitter<TreeNode>;
|
|
763
|
+
toggleNode(node: TreeNode, event: MouseEvent): void;
|
|
764
|
+
onNodeClick(node: TreeNode): void;
|
|
765
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeComponent, never>;
|
|
766
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeComponent, "base-tree", never, { "nodes": { "alias": "nodes"; "required": false; }; }, { "nodeClick": "nodeClick"; "nodeExpand": "nodeExpand"; "nodeCollapse": "nodeCollapse"; }, never, never, true, never>;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
declare class StepComponent {
|
|
770
|
+
label: string;
|
|
771
|
+
icon: string;
|
|
772
|
+
description: string;
|
|
773
|
+
content: TemplateRef<any>;
|
|
774
|
+
isActive: boolean;
|
|
775
|
+
isCompleted: boolean;
|
|
776
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepComponent, never>;
|
|
777
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepComponent, "base-step", never, { "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
declare class StepperComponent implements AfterContentInit {
|
|
781
|
+
steps: QueryList<StepComponent>;
|
|
782
|
+
activeStepIndex: number;
|
|
783
|
+
linear: boolean;
|
|
784
|
+
stepChange: EventEmitter<number>;
|
|
785
|
+
ngAfterContentInit(): void;
|
|
786
|
+
next(): void;
|
|
787
|
+
previous(): void;
|
|
788
|
+
goToStep(index: number): void;
|
|
789
|
+
private updateSteps;
|
|
790
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, never>;
|
|
791
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "base-stepper", never, { "activeStepIndex": { "alias": "activeStepIndex"; "required": false; }; "linear": { "alias": "linear"; "required": false; }; }, { "stepChange": "stepChange"; }, ["steps"], never, true, never>;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
declare class StarRatingComponent {
|
|
795
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StarRatingComponent, never>;
|
|
796
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StarRatingComponent, "base-star-rating", never, {}, {}, never, ["*"], true, never>;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
declare class StarComponent {
|
|
800
|
+
fill: number;
|
|
801
|
+
editable: boolean;
|
|
802
|
+
ratingChanged: EventEmitter<number>;
|
|
803
|
+
ratings: {
|
|
804
|
+
val: number;
|
|
805
|
+
percentage: string;
|
|
806
|
+
}[];
|
|
807
|
+
changeRating(val: number): void;
|
|
808
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StarComponent, never>;
|
|
809
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StarComponent, "base-star", never, { "fill": { "alias": "fill"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; }, { "ratingChanged": "ratingChanged"; }, never, never, true, never>;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
interface GalleryItem {
|
|
813
|
+
id?: string | number;
|
|
814
|
+
src: string;
|
|
815
|
+
thumbSrc?: string;
|
|
816
|
+
alt?: string;
|
|
817
|
+
type?: 'image' | 'video';
|
|
818
|
+
}
|
|
819
|
+
declare class ProductGalleryComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
820
|
+
private cdr;
|
|
821
|
+
items: GalleryItem[];
|
|
822
|
+
thumbnailsPosition: 'left' | 'right' | 'top' | 'bottom';
|
|
823
|
+
showArrows: boolean;
|
|
824
|
+
objectFit: 'cover' | 'contain';
|
|
825
|
+
zoomOnClick: boolean;
|
|
826
|
+
aspectRatio?: string;
|
|
827
|
+
mainViewWidth?: string;
|
|
828
|
+
mainViewHeight?: string;
|
|
829
|
+
thumbScrollContainer?: ElementRef<HTMLDivElement>;
|
|
830
|
+
indexChange: EventEmitter<number>;
|
|
831
|
+
currentIndex: number;
|
|
832
|
+
isZooming: boolean;
|
|
833
|
+
zoomX: number;
|
|
834
|
+
zoomY: number;
|
|
835
|
+
hasThumbOverflow: boolean;
|
|
836
|
+
canScrollPrev: boolean;
|
|
837
|
+
canScrollNext: boolean;
|
|
838
|
+
private resizeObserver?;
|
|
839
|
+
isMobile: boolean;
|
|
840
|
+
private touchStartX;
|
|
841
|
+
private touchEndX;
|
|
842
|
+
constructor(cdr: ChangeDetectorRef);
|
|
843
|
+
get thumbWrapperHeight(): string;
|
|
844
|
+
get activeItem(): GalleryItem | undefined;
|
|
845
|
+
ngOnInit(): void;
|
|
846
|
+
ngAfterViewInit(): void;
|
|
847
|
+
ngOnDestroy(): void;
|
|
848
|
+
checkThumbOverflow(): void;
|
|
849
|
+
updateScrollButtons(): void;
|
|
850
|
+
private checkMobileView;
|
|
851
|
+
scrollThumbnails(direction: 1 | -1): void;
|
|
852
|
+
selectItem(index: number): void;
|
|
853
|
+
private scrollToActiveThumb;
|
|
854
|
+
next(): void;
|
|
855
|
+
prev(): void;
|
|
856
|
+
onTouchStart(event: TouchEvent): void;
|
|
857
|
+
onTouchEnd(event: TouchEvent): void;
|
|
858
|
+
onMouseMove(event: MouseEvent, element: HTMLElement): void;
|
|
859
|
+
toggleZoom(event: MouseEvent, element: HTMLElement): void;
|
|
860
|
+
onMouseLeave(): void;
|
|
861
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductGalleryComponent, never>;
|
|
862
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProductGalleryComponent, "base-product-gallery", never, { "items": { "alias": "items"; "required": false; }; "thumbnailsPosition": { "alias": "thumbnailsPosition"; "required": false; }; "showArrows": { "alias": "showArrows"; "required": false; }; "objectFit": { "alias": "objectFit"; "required": false; }; "zoomOnClick": { "alias": "zoomOnClick"; "required": false; }; "aspectRatio": { "alias": "aspectRatio"; "required": false; }; "mainViewWidth": { "alias": "mainViewWidth"; "required": false; }; "mainViewHeight": { "alias": "mainViewHeight"; "required": false; }; }, { "indexChange": "indexChange"; }, never, never, true, never>;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
declare class BaseButtonDirective implements OnInit {
|
|
866
|
+
private el;
|
|
867
|
+
private renderer;
|
|
868
|
+
color: string;
|
|
869
|
+
size: string;
|
|
870
|
+
width?: string;
|
|
871
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
872
|
+
ngOnInit(): void;
|
|
873
|
+
private applyColorStyles;
|
|
874
|
+
private applySizeStyles;
|
|
875
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseButtonDirective, never>;
|
|
876
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseButtonDirective, "[base-button]", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
declare class IconButtonDirective implements OnInit {
|
|
880
|
+
private el;
|
|
881
|
+
private renderer;
|
|
882
|
+
color: string;
|
|
883
|
+
size: string;
|
|
884
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
885
|
+
ngOnInit(): void;
|
|
886
|
+
private applyColorStyles;
|
|
887
|
+
private applySizeStyles;
|
|
888
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconButtonDirective, never>;
|
|
889
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IconButtonDirective, "[base-icon-button]", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
declare class StrokedButtonDirective implements OnInit {
|
|
893
|
+
private el;
|
|
894
|
+
private renderer;
|
|
895
|
+
color: string;
|
|
896
|
+
size: string;
|
|
897
|
+
width?: string;
|
|
898
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
899
|
+
ngOnInit(): void;
|
|
900
|
+
private applyColorStyles;
|
|
901
|
+
private applySizeStyles;
|
|
902
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StrokedButtonDirective, never>;
|
|
903
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StrokedButtonDirective, "[base-stroked-button]", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
declare class IconStrokedButtonDirective implements OnInit {
|
|
907
|
+
private el;
|
|
908
|
+
private renderer;
|
|
909
|
+
color: string;
|
|
910
|
+
size: string;
|
|
911
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
912
|
+
ngOnInit(): void;
|
|
913
|
+
private applyColorStyles;
|
|
914
|
+
private applySizeStyles;
|
|
915
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconStrokedButtonDirective, never>;
|
|
916
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IconStrokedButtonDirective, "[base-stroked-icon-button]", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
declare class BaseLinkDirective implements OnInit {
|
|
920
|
+
private el;
|
|
921
|
+
private renderer;
|
|
922
|
+
color: string;
|
|
923
|
+
size: string;
|
|
924
|
+
width?: string;
|
|
925
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
926
|
+
ngOnInit(): void;
|
|
927
|
+
private applyColorStyles;
|
|
928
|
+
private applySizeStyles;
|
|
929
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseLinkDirective, never>;
|
|
930
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseLinkDirective, "[base-link]", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
declare class BaseTabIconDirective implements OnInit {
|
|
934
|
+
private el;
|
|
935
|
+
private renderer;
|
|
936
|
+
type: string;
|
|
937
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
938
|
+
ngOnInit(): void;
|
|
939
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseTabIconDirective, never>;
|
|
940
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseTabIconDirective, "[baseTabIcon]", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
declare class BaseListItemDirective implements OnInit {
|
|
944
|
+
private el;
|
|
945
|
+
private renderer;
|
|
946
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
947
|
+
ngOnInit(): void;
|
|
948
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseListItemDirective, never>;
|
|
949
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseListItemDirective, "[base-list-item]", never, {}, {}, never, never, true, never>;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
declare class ClickOutsideDirective {
|
|
953
|
+
private elementRef;
|
|
954
|
+
baseClickOutside: EventEmitter<MouseEvent>;
|
|
955
|
+
constructor(elementRef: ElementRef);
|
|
956
|
+
onDocumentClick(event: MouseEvent, targetElement: any): void;
|
|
957
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
|
|
958
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[baseClickOutside]", never, {}, { "baseClickOutside": "baseClickOutside"; }, never, never, true, never>;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
declare class ScrollToDirective {
|
|
962
|
+
target: string;
|
|
963
|
+
private el;
|
|
964
|
+
onClick(event: Event): void;
|
|
965
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollToDirective, never>;
|
|
966
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ScrollToDirective, "[baseScrollTo]", never, { "target": { "alias": "baseScrollTo"; "required": false; }; }, {}, never, never, true, never>;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
declare class BaseBadgeIconDirective implements OnInit {
|
|
970
|
+
private renderer;
|
|
971
|
+
private el;
|
|
972
|
+
color?: string;
|
|
973
|
+
size?: string;
|
|
974
|
+
constructor(renderer: Renderer2, el: ElementRef);
|
|
975
|
+
ngOnInit(): void;
|
|
976
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseBadgeIconDirective, never>;
|
|
977
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseBadgeIconDirective, "[badge-icon]", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
declare class TooltipDirective implements OnDestroy {
|
|
981
|
+
private el;
|
|
982
|
+
private renderer;
|
|
983
|
+
tooltipTitle: string;
|
|
984
|
+
placement: string;
|
|
985
|
+
tooltipClass: string;
|
|
986
|
+
delay: string;
|
|
987
|
+
type: string;
|
|
988
|
+
canShow: boolean;
|
|
989
|
+
private tooltip;
|
|
990
|
+
private offset;
|
|
991
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
992
|
+
ngOnDestroy(): void;
|
|
993
|
+
onMouseEnter(): void;
|
|
994
|
+
onMouseLeave(): void;
|
|
995
|
+
onMouseClick(): void;
|
|
996
|
+
private show;
|
|
997
|
+
private hide;
|
|
998
|
+
private create;
|
|
999
|
+
private setPosition;
|
|
1000
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
|
|
1001
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[base-tooltip]", never, { "tooltipTitle": { "alias": "base-tooltip"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "tooltipClass": { "alias": "tooltipClass"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; "type": { "alias": "type"; "required": false; }; "canShow": { "alias": "canShow"; "required": false; }; }, {}, never, never, true, never>;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
declare class FilterPipe implements PipeTransform {
|
|
1005
|
+
transform(data: any[], filterValue: string, filterKeys?: string | string[]): any[];
|
|
1006
|
+
private matches;
|
|
1007
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterPipe, never>;
|
|
1008
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FilterPipe, "filter", true>;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
declare class DropdownMenuDirective<T> implements OnDestroy {
|
|
1012
|
+
private isDropdownOpen;
|
|
1013
|
+
private overlayRef?;
|
|
1014
|
+
private closingSubscription;
|
|
1015
|
+
placement: 'start' | 'end' | 'left' | 'right' | 'top-start' | 'top-end';
|
|
1016
|
+
dropdownPanel: DropdownPanel<T>;
|
|
1017
|
+
private overlay;
|
|
1018
|
+
private elementRef;
|
|
1019
|
+
private viewContainerRef;
|
|
1020
|
+
toggleDropdown(): void;
|
|
1021
|
+
openDropdown(): void;
|
|
1022
|
+
private getPositions;
|
|
1023
|
+
private destroyDropdown;
|
|
1024
|
+
ngOnDestroy(): void;
|
|
1025
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMenuDirective<any>, never>;
|
|
1026
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropdownMenuDirective<any>, "[base-dropdown-menu-trigger]", never, { "placement": { "alias": "placement"; "required": false; }; "dropdownPanel": { "alias": "base-dropdown-menu-trigger"; "required": false; }; }, {}, never, never, true, never>;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
declare class BaseDropdownMenuItemDirective implements OnInit {
|
|
1030
|
+
private el;
|
|
1031
|
+
private renderer;
|
|
1032
|
+
ngOnInit(): void;
|
|
1033
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseDropdownMenuItemDirective, never>;
|
|
1034
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseDropdownMenuItemDirective, "[base-dropdown-menu-item]", never, {}, {}, never, never, true, never>;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
declare class DrawerDirective<T> implements OnDestroy {
|
|
1038
|
+
private isDrawerOpen;
|
|
1039
|
+
private overlayRef?;
|
|
1040
|
+
private closingSubscription;
|
|
1041
|
+
placement: string;
|
|
1042
|
+
drawerPanel: DrawerPanel<T>;
|
|
1043
|
+
private overlay;
|
|
1044
|
+
private viewContainerRef;
|
|
1045
|
+
toggleDrawer(): void;
|
|
1046
|
+
openDrawer(): void;
|
|
1047
|
+
private destroyDrawer;
|
|
1048
|
+
ngOnDestroy(): void;
|
|
1049
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrawerDirective<any>, never>;
|
|
1050
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DrawerDirective<any>, "[base-drawer]", never, { "placement": { "alias": "placement"; "required": false; }; "drawerPanel": { "alias": "base-drawer"; "required": false; }; }, {}, never, never, true, never>;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
declare class BaseBadgeAddon implements OnInit, AfterViewInit {
|
|
1054
|
+
private renderer;
|
|
1055
|
+
private el;
|
|
1056
|
+
color: string;
|
|
1057
|
+
size: string;
|
|
1058
|
+
width: string;
|
|
1059
|
+
constructor(renderer: Renderer2, el: ElementRef);
|
|
1060
|
+
ngOnInit(): void;
|
|
1061
|
+
ngAfterViewInit(): void;
|
|
1062
|
+
private applyStyles;
|
|
1063
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseBadgeAddon, never>;
|
|
1064
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseBadgeAddon, "[base-badge-addon]", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
declare class ContainerDirective {
|
|
1068
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContainerDirective, never>;
|
|
1069
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ContainerDirective, "[container]", never, {}, {}, never, never, true, never>;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
declare class BaseInputDirective implements OnInit {
|
|
1073
|
+
private el;
|
|
1074
|
+
ngOnInit(): void;
|
|
1075
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseInputDirective, never>;
|
|
1076
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseInputDirective, "[base-input]", never, {}, {}, never, never, true, never>;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
declare class BaseTextareaDirective implements OnInit {
|
|
1080
|
+
private el;
|
|
1081
|
+
ngOnInit(): void;
|
|
1082
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseTextareaDirective, never>;
|
|
1083
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseTextareaDirective, "[base-textarea]", never, {}, {}, never, never, true, never>;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
declare class CodeDirective implements OnInit {
|
|
1087
|
+
private renderer;
|
|
1088
|
+
private el;
|
|
1089
|
+
constructor(renderer: Renderer2, el: ElementRef);
|
|
1090
|
+
ngOnInit(): void;
|
|
1091
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CodeDirective, never>;
|
|
1092
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CodeDirective, "[code]", never, {}, {}, never, never, true, never>;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
declare class BaseGroupButtonDirective {
|
|
1096
|
+
private renderer;
|
|
1097
|
+
private el;
|
|
1098
|
+
color: string;
|
|
1099
|
+
size: string;
|
|
1100
|
+
width: string;
|
|
1101
|
+
constructor(renderer: Renderer2, el: ElementRef);
|
|
1102
|
+
ngOnInit(): void;
|
|
1103
|
+
ngAfterViewInit(): void;
|
|
1104
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseGroupButtonDirective, never>;
|
|
1105
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseGroupButtonDirective, "[base-group-button]", never, { "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
declare class BaseAddonEndDirective implements OnInit {
|
|
1109
|
+
private el;
|
|
1110
|
+
ngOnInit(): void;
|
|
1111
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseAddonEndDirective, never>;
|
|
1112
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseAddonEndDirective, "[base-addon-end]", never, {}, {}, never, never, true, never>;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
declare class BaseAddonStartDirective implements OnInit {
|
|
1116
|
+
private el;
|
|
1117
|
+
ngOnInit(): void;
|
|
1118
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseAddonStartDirective, never>;
|
|
1119
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseAddonStartDirective, "[base-addon-start]", never, {}, {}, never, never, true, never>;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
declare class BaseHeadingDirective implements OnInit {
|
|
1123
|
+
private el;
|
|
1124
|
+
ngOnInit(): void;
|
|
1125
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseHeadingDirective, never>;
|
|
1126
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseHeadingDirective, "[baseHeadingText]", never, {}, {}, never, never, true, never>;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
declare class SliderDirective {
|
|
1130
|
+
private threshold;
|
|
1131
|
+
private startX;
|
|
1132
|
+
slideAction: EventEmitter<boolean>;
|
|
1133
|
+
onTouchStart(event: TouchEvent): void;
|
|
1134
|
+
onTouchEnd(event: TouchEvent): void;
|
|
1135
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SliderDirective, never>;
|
|
1136
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SliderDirective, "[baseSlider]", never, {}, { "slideAction": "slideAction"; }, never, never, true, never>;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
declare class AlertDismissDirective {
|
|
1140
|
+
private alert;
|
|
1141
|
+
onClick(): void;
|
|
1142
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertDismissDirective, never>;
|
|
1143
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AlertDismissDirective, "[baseAlertDismiss]", never, {}, {}, never, never, true, never>;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
declare class BaseUIModule {
|
|
1147
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseUIModule, never>;
|
|
1148
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BaseUIModule, never, [typeof i1.CommonModule, typeof IconModule, typeof i3.ClipboardModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof LogoComponent, typeof AvatarComponent, typeof PageBaseComponent, typeof PageBaseHeaderComponent, typeof PageBaseFooterComponent, typeof PageBaseBodyComponent, typeof CardComponent, typeof CardBodyComponent, typeof CardHeaderComponent, typeof CardFooterComponent, typeof BadgeComponent, typeof ButtonGroupComponent, typeof InputGroupComponent, typeof LabelComponent, typeof ErrorComponent, typeof InfoTextComponent, typeof CheckboxComponent, typeof RadioGroupComponent, typeof RadioButtonComponent, typeof AccordionComponent, typeof AccordionItemComponent, typeof AccordionItemHeaderComponent, typeof AccordionItemBodyComponent, typeof GroupButtonComponent, typeof AlertComponent, typeof ToggleComponent, typeof BreadcrumbComponent, typeof BreadcrumbItemComponent, typeof TabsComponent, typeof TabComponent, typeof TabLabelComponent, typeof TabBodyComponent, typeof SidenavComponent, typeof SidenavBodyComponent, typeof SidenavNavComponent, typeof AlertActionsComponent, typeof NavListComponent, typeof SpinnerComponent, typeof SpinnerWrapperComponent, typeof DividerComponent, typeof ProgressComponent, typeof ScrollNavComponent, typeof ScrollNavContentComponent, typeof ScrollNavSidebarComponent, typeof CodeComponent, typeof DrawerComponent, typeof DropdownMenuComponent, typeof DropdownMenuItemComponent, typeof GallerySliderComponent, typeof CarouselItemComponent, typeof CarouselCaptionComponent, typeof PaginatorComponent, typeof SelectComponent, typeof InputSpinnerComponent, typeof PPageComponent, typeof InputAutocompleteComponent, typeof CustomSelectComponent, typeof CalendarComponent, typeof DatepickerComponent, typeof DateRangePickerComponent, typeof TreeComponent, typeof StepperComponent, typeof StepComponent, typeof StarRatingComponent, typeof StarComponent, typeof ProductGalleryComponent, typeof BaseButtonDirective, typeof IconButtonDirective, typeof StrokedButtonDirective, typeof IconStrokedButtonDirective, typeof BaseLinkDirective, typeof BaseTabIconDirective, typeof BaseListItemDirective, typeof ClickOutsideDirective, typeof ScrollToDirective, typeof BaseBadgeIconDirective, typeof TooltipDirective, typeof FilterPipe, typeof DropdownMenuDirective, typeof BaseDropdownMenuItemDirective, typeof DrawerDirective, typeof BaseBadgeAddon, typeof ContainerDirective, typeof BaseInputDirective, typeof BaseTextareaDirective, typeof CodeDirective, typeof BaseGroupButtonDirective, typeof BaseAddonEndDirective, typeof BaseAddonStartDirective, typeof BaseHeadingDirective, typeof ScrollNavItemDirective, typeof SliderDirective, typeof AlertDismissDirective], [typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof IconModule, typeof LogoComponent, typeof AvatarComponent, typeof PageBaseComponent, typeof PageBaseHeaderComponent, typeof PageBaseFooterComponent, typeof PageBaseBodyComponent, typeof CardComponent, typeof CardBodyComponent, typeof CardHeaderComponent, typeof CardFooterComponent, typeof BadgeComponent, typeof ButtonGroupComponent, typeof InputGroupComponent, typeof LabelComponent, typeof ErrorComponent, typeof InfoTextComponent, typeof CheckboxComponent, typeof RadioGroupComponent, typeof RadioButtonComponent, typeof AccordionComponent, typeof AccordionItemComponent, typeof AccordionItemHeaderComponent, typeof AccordionItemBodyComponent, typeof GroupButtonComponent, typeof AlertComponent, typeof ToggleComponent, typeof BreadcrumbComponent, typeof BreadcrumbItemComponent, typeof TabsComponent, typeof TabComponent, typeof TabLabelComponent, typeof TabBodyComponent, typeof SidenavComponent, typeof SidenavBodyComponent, typeof SidenavNavComponent, typeof AlertActionsComponent, typeof NavListComponent, typeof SpinnerComponent, typeof SpinnerWrapperComponent, typeof DividerComponent, typeof ProgressComponent, typeof ScrollNavComponent, typeof ScrollNavContentComponent, typeof ScrollNavSidebarComponent, typeof CodeComponent, typeof DrawerComponent, typeof DropdownMenuComponent, typeof DropdownMenuItemComponent, typeof GallerySliderComponent, typeof CarouselItemComponent, typeof CarouselCaptionComponent, typeof PaginatorComponent, typeof SelectComponent, typeof InputSpinnerComponent, typeof PPageComponent, typeof InputAutocompleteComponent, typeof CustomSelectComponent, typeof CalendarComponent, typeof DatepickerComponent, typeof DateRangePickerComponent, typeof TreeComponent, typeof StepperComponent, typeof StepComponent, typeof StarRatingComponent, typeof StarComponent, typeof ProductGalleryComponent, typeof BaseButtonDirective, typeof IconButtonDirective, typeof StrokedButtonDirective, typeof IconStrokedButtonDirective, typeof BaseLinkDirective, typeof BaseTabIconDirective, typeof BaseListItemDirective, typeof ClickOutsideDirective, typeof ScrollToDirective, typeof BaseBadgeIconDirective, typeof TooltipDirective, typeof FilterPipe, typeof DropdownMenuDirective, typeof BaseDropdownMenuItemDirective, typeof DrawerDirective, typeof BaseBadgeAddon, typeof ContainerDirective, typeof BaseInputDirective, typeof BaseTextareaDirective, typeof CodeDirective, typeof BaseGroupButtonDirective, typeof BaseAddonEndDirective, typeof BaseAddonStartDirective, typeof BaseHeadingDirective, typeof ScrollNavItemDirective, typeof SliderDirective, typeof AlertDismissDirective]>;
|
|
1149
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BaseUIModule>;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
declare class ToggleButtonService {
|
|
1153
|
+
private selectButton;
|
|
1154
|
+
selectButton$: rxjs.Observable<GroupButtonComponent>;
|
|
1155
|
+
setSelectedButton(value: GroupButtonComponent): void;
|
|
1156
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonService, never>;
|
|
1157
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ToggleButtonService>;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
declare class DialogBodyComponent {
|
|
1161
|
+
height?: number;
|
|
1162
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogBodyComponent, never>;
|
|
1163
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogBodyComponent, "base-dialog-body", never, { "height": { "alias": "height"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
declare class DialogCloseDirective {
|
|
1167
|
+
ariaLabel?: string;
|
|
1168
|
+
type: string;
|
|
1169
|
+
private dialog;
|
|
1170
|
+
_onButtonClick(event: MouseEvent): void;
|
|
1171
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogCloseDirective, never>;
|
|
1172
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DialogCloseDirective, "[base-dialog-close]", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
declare class DialogContext<T = any> {
|
|
1176
|
+
private componentRef?;
|
|
1177
|
+
private appRef?;
|
|
1178
|
+
data?: T;
|
|
1179
|
+
_resolve?: (value: any) => void;
|
|
1180
|
+
_reject?: (reason: any) => void;
|
|
1181
|
+
private _promise?;
|
|
1182
|
+
constructor(componentRef?: ComponentRef<DialogContainer>);
|
|
1183
|
+
private hide;
|
|
1184
|
+
close(result?: any): void;
|
|
1185
|
+
reject(reason?: any): void;
|
|
1186
|
+
promise(componentRef: ComponentRef<DialogContainer>, appRef: ApplicationRef): Promise<any>;
|
|
1187
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogContext<any>, never>;
|
|
1188
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DialogContext<any>>;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
interface DialogContainer {
|
|
1192
|
+
context: DialogContext<any>;
|
|
1193
|
+
container: ViewContainerRef;
|
|
1194
|
+
className: string;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
declare class DialogContainerComponent implements DialogContainer {
|
|
1198
|
+
hostAnimation: boolean;
|
|
1199
|
+
className: string;
|
|
1200
|
+
container: ViewContainerRef;
|
|
1201
|
+
context: DialogContext<any>;
|
|
1202
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogContainerComponent, never>;
|
|
1203
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogContainerComponent, "base-dialog-container", never, {}, {}, never, never, true, never>;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
declare class DialogFooterComponent {
|
|
1207
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogFooterComponent, never>;
|
|
1208
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogFooterComponent, "base-dialog-footer", never, {}, {}, never, ["*"], true, never>;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
declare class DialogHeaderComponent {
|
|
1212
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogHeaderComponent, never>;
|
|
1213
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogHeaderComponent, "base-dialog-header", never, {}, {}, never, ["*"], true, never>;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
declare class DialogComponent implements AfterViewInit {
|
|
1217
|
+
width?: number;
|
|
1218
|
+
height?: number;
|
|
1219
|
+
bodyComponent?: DialogBodyComponent;
|
|
1220
|
+
ngAfterViewInit(): void;
|
|
1221
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
|
|
1222
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "base-dialog", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, {}, ["bodyComponent"], ["*"], true, never>;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
declare class DialogModule {
|
|
1226
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogModule, never>;
|
|
1227
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DialogModule, never, [typeof i1.CommonModule, typeof DialogContainerComponent, typeof DialogBodyComponent, typeof DialogFooterComponent, typeof DialogHeaderComponent, typeof DialogComponent, typeof DialogCloseDirective], [typeof DialogContainerComponent, typeof DialogBodyComponent, typeof DialogFooterComponent, typeof DialogHeaderComponent, typeof DialogComponent, typeof DialogCloseDirective]>;
|
|
1228
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DialogModule>;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
declare class DialogService {
|
|
1232
|
+
dialogBehaviour: Subject<any>;
|
|
1233
|
+
private appRef;
|
|
1234
|
+
private injector;
|
|
1235
|
+
private environmentInjector;
|
|
1236
|
+
open<T>(type: Type<any>, data?: any, className?: string, options?: {
|
|
1237
|
+
hideOnBackdropClick?: boolean;
|
|
1238
|
+
containerType?: Type<any>;
|
|
1239
|
+
}): Subject<any>;
|
|
1240
|
+
private createContainer;
|
|
1241
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, never>;
|
|
1242
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
declare class ScrollNavItemComponent {
|
|
1246
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollNavItemComponent, never>;
|
|
1247
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollNavItemComponent, "base-scroll-nav-item", never, {}, {}, never, ["*"], true, never>;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
declare class ThemeService {
|
|
1251
|
+
private renderer;
|
|
1252
|
+
private currentTheme;
|
|
1253
|
+
constructor(rendererFactory: RendererFactory2);
|
|
1254
|
+
toggleTheme(): void;
|
|
1255
|
+
setTheme(theme: 'light' | 'dark'): void;
|
|
1256
|
+
get isDarkMode(): boolean;
|
|
1257
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeService, never>;
|
|
1258
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ThemeService>;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
export { AccordionComponent, AccordionItemBodyComponent, AccordionItemComponent, AccordionItemHeaderComponent, AlertActionsComponent, AlertComponent, AlertDismissDirective, AvatarComponent, BadgeComponent, BaseAddonEndDirective, BaseAddonStartDirective, BaseBadgeAddon, BaseBadgeIconDirective, BaseButtonDirective, BaseDropdownMenuItemDirective, BaseGroupButtonDirective, BaseHeadingDirective, BaseInputDirective, BaseLinkDirective, BaseListItemDirective, BaseTabIconDirective, BaseTextareaDirective, BaseUIModule, BreadcrumbComponent, BreadcrumbItemComponent, ButtonGroupComponent, CalendarComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CarouselCaptionComponent, CarouselItemComponent, CheckboxComponent, ClickOutsideDirective, CodeComponent, CodeDirective, ContainerDirective, CurrentScreenSizeService, CustomSelectComponent, DateRangePickerComponent, DatepickerComponent, DialogBodyComponent, DialogCloseDirective, DialogComponent, DialogContainerComponent, DialogFooterComponent, DialogHeaderComponent, DialogModule, DialogService, DividerComponent, DrawerComponent, DrawerDirective, DropdownMenuComponent, DropdownMenuDirective, DropdownMenuItemComponent, ErrorComponent, FilterPipe, GALLERY_SLIDER_TOKEN, GallerySliderComponent, GroupButtonComponent, IconButtonDirective, IconComponent, IconModule, IconStrokedButtonDirective, InfoTextComponent, InputAutocompleteComponent, InputGroupComponent, InputSpinnerComponent, LabelComponent, LogoComponent, NavListComponent, PPageComponent, PageBaseBodyComponent, PageBaseComponent, PageBaseFooterComponent, PageBaseHeaderComponent, PaginatorComponent, ProductGalleryComponent, ProgressComponent, RADIO_GROUP, RadioButtonComponent, RadioGroupComponent, ScrollNavComponent, ScrollNavContentComponent, ScrollNavItemComponent, ScrollNavItemDirective, ScrollNavSidebarComponent, ScrollToDirective, SelectComponent, SidebarService, SidenavBodyComponent, SidenavComponent, SidenavNavComponent, SliderDirective, SpinnerComponent, SpinnerWrapperComponent, StarComponent, StarRatingComponent, StepComponent, StepperComponent, StrokedButtonDirective, TabBodyComponent, TabComponent, TabLabelComponent, TabsComponent, ThemeService, ToggleButtonService, ToggleComponent, TooltipDirective, TreeComponent };
|
|
1262
|
+
export type { AlertColor, AlertVariant, AvatarShape, AvatarSize, AvatarStatus, BadgeColor, BadgeShape, BadgeSize, CalendarDate, CheckboxColor, DateRange, DrawerPosition, DrawerSize, GalleryItem, ProgressColor, ProgressSize, RadioColor, SpinnerColor, SpinnerSize, ToggleColor, ToggleShape, ToggleSize, TreeNode };
|