@crowdfarming/oliva-ds 1.6.0 → 1.7.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/fesm2022/crowdfarming-oliva-ds.mjs +1286 -421
- package/fesm2022/crowdfarming-oliva-ds.mjs.map +1 -1
- package/index.d.ts +20 -8
- package/lib/accordion/src/index.d.ts +1 -0
- package/lib/accordion/src/lib/accordion/accordion.component.d.ts +18 -0
- package/lib/alert/src/index.d.ts +1 -0
- package/lib/alert/src/lib/alert/alert.component.d.ts +16 -0
- package/lib/badge/src/index.d.ts +1 -0
- package/lib/badge/src/lib/badge/badge.component.d.ts +8 -0
- package/lib/helper-text/src/index.d.ts +1 -0
- package/lib/input-payment/src/index.d.ts +1 -0
- package/lib/input-payment/src/lib/input-payment/input-payment.component.d.ts +42 -0
- package/lib/input-upload/src/index.d.ts +1 -0
- package/lib/input-upload/src/lib/input-upload/input-upload.component.d.ts +33 -0
- package/lib/pagination/src/index.d.ts +1 -0
- package/lib/pagination/src/lib/pagination/pagination.component.d.ts +18 -0
- package/lib/select/src/index.d.ts +1 -0
- package/lib/select/src/lib/select/select.component.d.ts +61 -0
- package/lib/switch/src/index.d.ts +1 -0
- package/lib/switch/src/lib/switch/switch.component.d.ts +12 -0
- package/lib/tabs/src/index.d.ts +1 -0
- package/lib/tabs/src/lib/tabs/tabs.component.d.ts +15 -0
- package/lib/tag/src/index.d.ts +1 -0
- package/lib/tag/src/lib/tag/tag.component.d.ts +14 -0
- package/lib/tile/src/index.d.ts +1 -0
- package/lib/tile/src/lib/tile/tile.component.d.ts +13 -0
- package/lib/toast/src/index.d.ts +1 -0
- package/lib/toast/src/lib/toast/toast.component.d.ts +16 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,23 +1,35 @@
|
|
|
1
|
+
export * from './lib/accordion/src/index';
|
|
2
|
+
export * from './lib/alert/src/index';
|
|
1
3
|
export * from './lib/avatar/src/index';
|
|
2
|
-
export * from './lib/
|
|
4
|
+
export * from './lib/badge/src/index';
|
|
3
5
|
export * from './lib/button-icon/src/index';
|
|
4
6
|
export * from './lib/button-set/src/index';
|
|
5
|
-
export * from './lib/
|
|
7
|
+
export * from './lib/button/src/index';
|
|
6
8
|
export * from './lib/checkbox-group/src/index';
|
|
9
|
+
export * from './lib/checkbox/src/index';
|
|
7
10
|
export * from './lib/chips/src/index';
|
|
8
11
|
export * from './lib/design-tokens/src/index';
|
|
12
|
+
export * from './lib/helper-text/src/index';
|
|
13
|
+
export * from './lib/icon/src/index';
|
|
14
|
+
export * from './lib/input-date/src/index';
|
|
9
15
|
export * from './lib/input-label/src/index';
|
|
16
|
+
export * from './lib/input-number/src/index';
|
|
17
|
+
export * from './lib/input-payment/src/index';
|
|
18
|
+
export * from './lib/input-search/src/index';
|
|
19
|
+
export * from './lib/input-upload/src/index';
|
|
10
20
|
export * from './lib/link/src/index';
|
|
21
|
+
export * from './lib/pagination/src/index';
|
|
11
22
|
export * from './lib/password-input/src/index';
|
|
12
|
-
export * from './lib/radio/src/index';
|
|
13
23
|
export * from './lib/radio-group/src/index';
|
|
24
|
+
export * from './lib/radio/src/index';
|
|
14
25
|
export * from './lib/segmented-control/src/index';
|
|
26
|
+
export * from './lib/select/src/index';
|
|
27
|
+
export * from './lib/switch/src/index';
|
|
28
|
+
export * from './lib/tabs/src/index';
|
|
29
|
+
export * from './lib/tag/src/index';
|
|
15
30
|
export * from './lib/text-input/src/index';
|
|
16
31
|
export * from './lib/textarea/src/index';
|
|
17
32
|
export * from './lib/thumbnail/src/index';
|
|
33
|
+
export * from './lib/tile/src/index';
|
|
34
|
+
export * from './lib/toast/src/index';
|
|
18
35
|
export * from './lib/tooltip/src/index';
|
|
19
|
-
export * from './lib/icon/src/index';
|
|
20
|
-
export * from './lib/input-date/src/index';
|
|
21
|
-
export * from './lib/input-number/src/index';
|
|
22
|
-
export * from './lib/input-search/src/index';
|
|
23
|
-
export * from './lib/password-input/src/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/accordion/accordion.component';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter, TemplateRef, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AccordionComponent implements OnInit {
|
|
4
|
+
id?: string;
|
|
5
|
+
expanded: boolean;
|
|
6
|
+
size: 'sm' | 'md';
|
|
7
|
+
title: string;
|
|
8
|
+
showText: boolean;
|
|
9
|
+
text: string;
|
|
10
|
+
showSlot: boolean;
|
|
11
|
+
swapTemplate?: TemplateRef<any>;
|
|
12
|
+
expandedChange: EventEmitter<boolean>;
|
|
13
|
+
toggled: EventEmitter<boolean>;
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
toggle(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "lib-accordion", never, { "id": { "alias": "id"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "size": { "alias": "size"; "required": false; }; "title": { "alias": "title"; "required": false; }; "showText": { "alias": "showText"; "required": false; }; "text": { "alias": "text"; "required": false; }; "showSlot": { "alias": "showSlot"; "required": false; }; "swapTemplate": { "alias": "swapTemplate"; "required": false; }; }, { "expandedChange": "expandedChange"; "toggled": "toggled"; }, never, ["*"], true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/alert/alert.component';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AlertComponent implements OnInit {
|
|
4
|
+
variant: 'alert' | 'warning' | 'success' | 'info' | 'neutral';
|
|
5
|
+
text: string;
|
|
6
|
+
title: string;
|
|
7
|
+
time: number;
|
|
8
|
+
extraClass: string;
|
|
9
|
+
showIcon: boolean;
|
|
10
|
+
visibility: boolean;
|
|
11
|
+
closeActive: boolean;
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
close(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "lib-alert", never, { "variant": { "alias": "variant"; "required": false; }; "text": { "alias": "text"; "required": false; }; "title": { "alias": "title"; "required": false; }; "time": { "alias": "time"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/badge/badge.component';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class BadgeComponent {
|
|
3
|
+
extraClass: string;
|
|
4
|
+
text: string;
|
|
5
|
+
showText: boolean;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "lib-badge", never, { "extraClass": { "alias": "extraClass"; "required": false; }; "text": { "alias": "text"; "required": false; }; "showText": { "alias": "showText"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/helper-text/helper-text.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/input-payment/input-payment.component';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InputPaymentComponent implements ControlValueAccessor {
|
|
5
|
+
label: string;
|
|
6
|
+
placeholder: string;
|
|
7
|
+
helperText: string;
|
|
8
|
+
alertText: string;
|
|
9
|
+
successText: string;
|
|
10
|
+
error: boolean;
|
|
11
|
+
success: boolean;
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
readonly: boolean;
|
|
14
|
+
required: boolean;
|
|
15
|
+
size: 'sm' | 'md' | 'lg';
|
|
16
|
+
emitCardNumber: EventEmitter<string>;
|
|
17
|
+
emitDateValue: EventEmitter<string>;
|
|
18
|
+
dateInput: ElementRef<HTMLInputElement>;
|
|
19
|
+
cardNumberRaw: string;
|
|
20
|
+
cardNumberDisplay: string;
|
|
21
|
+
dateNumberRaw: string;
|
|
22
|
+
dateNumberDisplay: string;
|
|
23
|
+
private onChangeFn;
|
|
24
|
+
private onTouchedFn;
|
|
25
|
+
writeValue(value: {
|
|
26
|
+
card: string;
|
|
27
|
+
date: string;
|
|
28
|
+
} | null): void;
|
|
29
|
+
registerOnChange(fn: any): void;
|
|
30
|
+
registerOnTouched(fn: any): void;
|
|
31
|
+
setDisabledState(isDisabled: boolean): void;
|
|
32
|
+
onCardInput(event: Event): void;
|
|
33
|
+
onDateInput(event: Event): void;
|
|
34
|
+
/** marca como “tocado” */
|
|
35
|
+
onBlur(): void;
|
|
36
|
+
get inputClass(): string[];
|
|
37
|
+
get ariaDescribedBy(): string | null;
|
|
38
|
+
private formatCard;
|
|
39
|
+
private formatDate;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputPaymentComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputPaymentComponent, "lib-input-payment", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "alertText": { "alias": "alertText"; "required": false; }; "successText": { "alias": "successText"; "required": false; }; "error": { "alias": "error"; "required": false; }; "success": { "alias": "success"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "emitCardNumber": "emitCardNumber"; "emitDateValue": "emitDateValue"; }, never, never, true, never>;
|
|
42
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/input-upload/input-upload.component';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { EventEmitter, ElementRef } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InputUploadComponent implements ControlValueAccessor {
|
|
5
|
+
label: string;
|
|
6
|
+
placeholder: string;
|
|
7
|
+
helperText: string;
|
|
8
|
+
alertText: string;
|
|
9
|
+
successText: string;
|
|
10
|
+
error: boolean;
|
|
11
|
+
success: boolean;
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
readonly: boolean;
|
|
14
|
+
required: boolean;
|
|
15
|
+
size: 'sm' | 'md' | 'lg';
|
|
16
|
+
allowedExtensions: string[];
|
|
17
|
+
emitValue: EventEmitter<File>;
|
|
18
|
+
fileInput: ElementRef<HTMLInputElement>;
|
|
19
|
+
fileName: string;
|
|
20
|
+
private onChangeFn;
|
|
21
|
+
private onTouchedFn;
|
|
22
|
+
writeValue(value: File | null): void;
|
|
23
|
+
registerOnChange(fn: any): void;
|
|
24
|
+
registerOnTouched(fn: any): void;
|
|
25
|
+
setDisabledState(isDisabled: boolean): void;
|
|
26
|
+
onFileSelected(event: Event): void;
|
|
27
|
+
onBlur(): void;
|
|
28
|
+
get acceptString(): string | null;
|
|
29
|
+
get inputClass(): string[];
|
|
30
|
+
get ariaDescribedBy(): string | null;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputUploadComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputUploadComponent, "lib-input-upload", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "alertText": { "alias": "alertText"; "required": false; }; "successText": { "alias": "successText"; "required": false; }; "error": { "alias": "error"; "required": false; }; "success": { "alias": "success"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "size": { "alias": "size"; "required": false; }; "allowedExtensions": { "alias": "allowedExtensions"; "required": false; }; }, { "emitValue": "emitValue"; }, never, never, true, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/pagination/pagination.component';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
type PageItem = number | 'ellipsis';
|
|
4
|
+
export declare class PaginationComponent implements OnChanges {
|
|
5
|
+
totalPages: number;
|
|
6
|
+
currentPage: number;
|
|
7
|
+
size: 'sm' | 'md';
|
|
8
|
+
pageChange: EventEmitter<number>;
|
|
9
|
+
pages: PageItem[];
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
private buildPages;
|
|
12
|
+
select(page: PageItem): void;
|
|
13
|
+
prev(): void;
|
|
14
|
+
next(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "lib-pagination", never, { "totalPages": { "alias": "totalPages"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/select/select.component';
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, AfterViewInit, ElementRef, QueryList, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface Option {
|
|
5
|
+
label: string;
|
|
6
|
+
value: any;
|
|
7
|
+
}
|
|
8
|
+
export interface OptionGroup {
|
|
9
|
+
label: string;
|
|
10
|
+
options: Option[];
|
|
11
|
+
}
|
|
12
|
+
export declare class SelectComponent implements OnInit, AfterViewInit, ControlValueAccessor {
|
|
13
|
+
private elementRef;
|
|
14
|
+
private cdr;
|
|
15
|
+
options: OptionGroup[];
|
|
16
|
+
multiple: boolean;
|
|
17
|
+
placeholder: string;
|
|
18
|
+
label: string;
|
|
19
|
+
helperText: string;
|
|
20
|
+
alertText: string;
|
|
21
|
+
successText: string;
|
|
22
|
+
error: boolean;
|
|
23
|
+
success: boolean;
|
|
24
|
+
disabled: boolean;
|
|
25
|
+
readonly: boolean;
|
|
26
|
+
required: boolean;
|
|
27
|
+
searchable: boolean;
|
|
28
|
+
size: 'sm' | 'md' | 'lg';
|
|
29
|
+
selectionChange: EventEmitter<any>;
|
|
30
|
+
container: ElementRef<HTMLElement>;
|
|
31
|
+
badgeElems: QueryList<ElementRef<HTMLElement>>;
|
|
32
|
+
isOpen: boolean;
|
|
33
|
+
filterText: string;
|
|
34
|
+
selectedOptions: Option[];
|
|
35
|
+
filteredOptions: OptionGroup[];
|
|
36
|
+
visibleBadges: Option[];
|
|
37
|
+
hiddenCount: number;
|
|
38
|
+
private calculating;
|
|
39
|
+
private onChangeFn;
|
|
40
|
+
private onTouchedFn;
|
|
41
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
42
|
+
ngOnInit(): void;
|
|
43
|
+
ngAfterViewInit(): void;
|
|
44
|
+
writeValue(value: Option | Option[] | null): void;
|
|
45
|
+
registerOnChange(fn: any): void;
|
|
46
|
+
registerOnTouched(fn: any): void;
|
|
47
|
+
setDisabledState(isDisabled: boolean): void;
|
|
48
|
+
isSelected(opt: Option): boolean;
|
|
49
|
+
toggleDropdown(): void;
|
|
50
|
+
selectOption(option: Option): void;
|
|
51
|
+
onDelete(opt?: Option): void;
|
|
52
|
+
onSearch(value: string): void;
|
|
53
|
+
filterOptions(): void;
|
|
54
|
+
/** ControlValueAccessor touch on blur of the combobox */
|
|
55
|
+
onBlur(): void;
|
|
56
|
+
private updateVisibleBadges;
|
|
57
|
+
onResize(): void;
|
|
58
|
+
onClickOutside(target: HTMLElement): void;
|
|
59
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "lib-select", never, { "options": { "alias": "options"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "alertText": { "alias": "alertText"; "required": false; }; "successText": { "alias": "successText"; "required": false; }; "error": { "alias": "error"; "required": false; }; "success": { "alias": "success"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
61
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/switch/switch.component';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SwitchComponent {
|
|
4
|
+
checked: boolean;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
label: string;
|
|
7
|
+
required: boolean;
|
|
8
|
+
checkedChange: EventEmitter<boolean>;
|
|
9
|
+
onToggle(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "lib-switch", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "checkedChange": "checkedChange"; }, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/tabs/tabs.component';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface TabOption {
|
|
4
|
+
label: string;
|
|
5
|
+
value: string;
|
|
6
|
+
}
|
|
7
|
+
export declare class TabsComponent implements OnInit {
|
|
8
|
+
options: TabOption[];
|
|
9
|
+
valueChange: EventEmitter<string>;
|
|
10
|
+
selectedValue: string | number;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
onClick($event: any, value: string): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "lib-tabs", never, { "options": { "alias": "options"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/tag/tag.component';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TagComponent {
|
|
4
|
+
variant: 'alert' | 'warning' | 'success' | 'info' | 'neutral' | 'primary' | 'secondary' | 'disabled';
|
|
5
|
+
text: string;
|
|
6
|
+
extraClass: string;
|
|
7
|
+
showBadge: boolean;
|
|
8
|
+
closeActive: boolean;
|
|
9
|
+
emphasis: boolean;
|
|
10
|
+
closeEvent: EventEmitter<void>;
|
|
11
|
+
onClose(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TagComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TagComponent, "lib-tag", never, { "variant": { "alias": "variant"; "required": false; }; "text": { "alias": "text"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "showBadge": { "alias": "showBadge"; "required": false; }; "closeActive": { "alias": "closeActive"; "required": false; }; "emphasis": { "alias": "emphasis"; "required": false; }; }, { "closeEvent": "closeEvent"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/tile/tile.component';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TileComponent {
|
|
4
|
+
variant: 'radio' | 'checkbox' | 'neutral';
|
|
5
|
+
title: string;
|
|
6
|
+
name: string;
|
|
7
|
+
value: boolean;
|
|
8
|
+
disabled: boolean;
|
|
9
|
+
valueExport: EventEmitter<boolean>;
|
|
10
|
+
onClick(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TileComponent, "lib-tile", never, { "variant": { "alias": "variant"; "required": false; }; "title": { "alias": "title"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueExport": "valueExport"; }, never, ["*"], true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/toast/toast.component';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ToastComponent implements OnInit {
|
|
4
|
+
variant: 'alert' | 'warning' | 'success' | 'info' | 'neutral';
|
|
5
|
+
text: string;
|
|
6
|
+
title: string;
|
|
7
|
+
time: number;
|
|
8
|
+
extraClass: string;
|
|
9
|
+
showIcon: boolean;
|
|
10
|
+
visibility: boolean;
|
|
11
|
+
closeActive: boolean;
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
close(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "lib-toast", never, { "variant": { "alias": "variant"; "required": false; }; "text": { "alias": "text"; "required": false; }; "title": { "alias": "title"; "required": false; }; "time": { "alias": "time"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
|
+
}
|