@agorapulse/ui-components 15.1.1 → 15.1.3
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/agorapulse-ui-components-15.1.3.tgz +0 -0
- package/avatar/avatar.component.d.ts +41 -31
- package/esm2020/avatar/avatar.component.mjs +177 -117
- package/esm2020/index.mjs +2 -1
- package/esm2020/paginator/paginator-button/paginator-button.component.mjs +2 -2
- package/esm2020/paginator/paginator.component.mjs +92 -29
- package/esm2020/radio/agorapulse-ui-components-radio.mjs +5 -0
- package/esm2020/radio/public_api.mjs +3 -0
- package/esm2020/radio/radio-control.registry.mjs +104 -0
- package/esm2020/radio/radio.component.mjs +199 -0
- package/esm2020/stepper/step.model.mjs +1 -1
- package/esm2020/stepper/stepper.component.mjs +4 -4
- package/fesm2015/agorapulse-ui-components-avatar.mjs +176 -117
- package/fesm2015/agorapulse-ui-components-avatar.mjs.map +1 -1
- package/fesm2015/agorapulse-ui-components-paginator.mjs +93 -30
- package/fesm2015/agorapulse-ui-components-paginator.mjs.map +1 -1
- package/fesm2015/agorapulse-ui-components-radio.mjs +306 -0
- package/fesm2015/agorapulse-ui-components-radio.mjs.map +1 -0
- package/fesm2015/agorapulse-ui-components-stepper.mjs +3 -3
- package/fesm2015/agorapulse-ui-components-stepper.mjs.map +1 -1
- package/fesm2015/agorapulse-ui-components.mjs +1 -0
- package/fesm2015/agorapulse-ui-components.mjs.map +1 -1
- package/fesm2020/agorapulse-ui-components-avatar.mjs +176 -116
- package/fesm2020/agorapulse-ui-components-avatar.mjs.map +1 -1
- package/fesm2020/agorapulse-ui-components-paginator.mjs +93 -30
- package/fesm2020/agorapulse-ui-components-paginator.mjs.map +1 -1
- package/fesm2020/agorapulse-ui-components-radio.mjs +305 -0
- package/fesm2020/agorapulse-ui-components-radio.mjs.map +1 -0
- package/fesm2020/agorapulse-ui-components-stepper.mjs +3 -3
- package/fesm2020/agorapulse-ui-components-stepper.mjs.map +1 -1
- package/fesm2020/agorapulse-ui-components.mjs +1 -0
- package/fesm2020/agorapulse-ui-components.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/package.json +9 -1
- package/paginator/paginator.component.d.ts +26 -8
- package/radio/index.d.ts +5 -0
- package/radio/public_api.d.ts +2 -0
- package/radio/radio-control.registry.d.ts +22 -0
- package/radio/radio.component.d.ts +57 -0
- package/snackbars-thread/component/snackbars-thread.component.d.ts +1 -1
- package/stepper/step.model.d.ts +1 -0
- package/stepper/stepper.component.d.ts +2 -2
- package/agorapulse-ui-components-15.1.1.tgz +0 -0
|
@@ -1,20 +1,38 @@
|
|
|
1
1
|
import { SymbolRegistry } from '@agorapulse/ui-symbol';
|
|
2
|
-
import { EventEmitter,
|
|
2
|
+
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class PaginatorComponent implements
|
|
4
|
+
export declare class PaginatorComponent implements OnDestroy {
|
|
5
5
|
symbolRegistry: SymbolRegistry;
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
readonly DEFAULT_MIDDLE_SIZE = 3;
|
|
7
|
+
readonly DEFAULT_ITEM_COUNT = 0;
|
|
8
|
+
readonly DEFAULT_ITEM_COUNT_PER_PAGE = 10;
|
|
9
|
+
readonly DEFAULT_CURRENT_PAGE_INDEX = 0;
|
|
10
|
+
readonly DEFAULT_EDGE_SIZE = 5;
|
|
11
|
+
set currentPageIndex(value: number);
|
|
12
|
+
get currentPageIndex(): number;
|
|
13
|
+
displayGoTo: boolean;
|
|
8
14
|
edgeSize: number;
|
|
9
|
-
|
|
10
|
-
|
|
15
|
+
goToLabel: string;
|
|
16
|
+
set itemCount(value: number);
|
|
17
|
+
get itemCount(): number;
|
|
18
|
+
set itemCountPerPage(value: number);
|
|
19
|
+
get itemCountPerPage(): number;
|
|
20
|
+
private _middleSize;
|
|
21
|
+
set middleSize(value: number);
|
|
22
|
+
get middleSize(): number;
|
|
11
23
|
currentPageIndexChange: EventEmitter<number>;
|
|
24
|
+
pageInput: string;
|
|
12
25
|
pageCount: number;
|
|
13
26
|
firstPageDisplayed: boolean;
|
|
14
27
|
lastPageDisplayed: boolean;
|
|
28
|
+
private destroy$;
|
|
29
|
+
private _itemCount;
|
|
30
|
+
private _itemCountPerPage;
|
|
31
|
+
private _currentPageIndex;
|
|
15
32
|
constructor(symbolRegistry: SymbolRegistry);
|
|
16
|
-
|
|
33
|
+
ngOnDestroy(): void;
|
|
34
|
+
onEnterKeydownPressed(): void;
|
|
17
35
|
onSelectPage(pageIndex: number): void;
|
|
18
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "ap-paginator", never, { "
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "ap-paginator", never, { "currentPageIndex": "currentPageIndex"; "displayGoTo": "displayGoTo"; "edgeSize": "edgeSize"; "goToLabel": "goToLabel"; "itemCount": "itemCount"; "itemCountPerPage": "itemCountPerPage"; "middleSize": "middleSize"; }, { "currentPageIndexChange": "currentPageIndexChange"; }, never, never, true, never>;
|
|
20
38
|
}
|
package/radio/index.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Provider } from '@angular/core';
|
|
2
|
+
import { NgControl } from '@angular/forms';
|
|
3
|
+
import { RadioComponent } from './radio.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const RADIO_VALUE_ACCESSOR: Provider;
|
|
6
|
+
export declare class RadioControlRegistry {
|
|
7
|
+
private accessors;
|
|
8
|
+
add(control: NgControl, accessor: RadioComponent): void;
|
|
9
|
+
remove(accessor: RadioComponent): void;
|
|
10
|
+
select(accessor: RadioComponent): void;
|
|
11
|
+
getIndex(accessor: RadioComponent): number;
|
|
12
|
+
getNextRadio(accessor: RadioComponent): RadioComponent;
|
|
13
|
+
getPreviousRadio(accessor: RadioComponent): RadioComponent;
|
|
14
|
+
blurAllGroup(accessor: RadioComponent): void;
|
|
15
|
+
setNegativeTabIndexToAllExcept(accessor: RadioComponent): void;
|
|
16
|
+
focusPrevious(accessor: RadioComponent): void;
|
|
17
|
+
focusNext(accessor: RadioComponent): void;
|
|
18
|
+
getFirstCheckedRadio(): RadioComponent | null;
|
|
19
|
+
private isSameGroup;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioControlRegistry, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RadioControlRegistry>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { AfterContentInit, ElementRef, EventEmitter, Injector, OnChanges, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RadioComponent implements ControlValueAccessor, AfterContentInit, OnChanges, OnInit, OnDestroy {
|
|
5
|
+
private elementRef;
|
|
6
|
+
readonly injector: Injector;
|
|
7
|
+
private readonly changeDetectorRef;
|
|
8
|
+
private readonly radioControlRegistry;
|
|
9
|
+
private readonly ngZone;
|
|
10
|
+
inputElement: ElementRef<HTMLInputElement>;
|
|
11
|
+
labelElement: ElementRef<HTMLInputElement>;
|
|
12
|
+
ariaLabel: string;
|
|
13
|
+
ariaLabelledby: string | null;
|
|
14
|
+
ariaDescribedby: string;
|
|
15
|
+
set disabled(disabled: boolean);
|
|
16
|
+
get disabled(): boolean;
|
|
17
|
+
labelPosition: 'left' | 'right';
|
|
18
|
+
radioId: string;
|
|
19
|
+
formControlName: string;
|
|
20
|
+
value: unknown;
|
|
21
|
+
required: boolean;
|
|
22
|
+
name: string;
|
|
23
|
+
onClick: EventEmitter<{
|
|
24
|
+
originalEvent: Event;
|
|
25
|
+
value: unknown;
|
|
26
|
+
}>;
|
|
27
|
+
onFocus: EventEmitter<FocusEvent>;
|
|
28
|
+
onBlur: EventEmitter<FocusEvent>;
|
|
29
|
+
inputId: string;
|
|
30
|
+
_disabled: boolean;
|
|
31
|
+
hasLabel: boolean;
|
|
32
|
+
hostDataTest: string;
|
|
33
|
+
control: NgControl;
|
|
34
|
+
checked: boolean;
|
|
35
|
+
focused: boolean;
|
|
36
|
+
radioIndex: number;
|
|
37
|
+
private readonly destroy$;
|
|
38
|
+
onModelChange: (value: unknown) => void;
|
|
39
|
+
onModelTouched: () => void;
|
|
40
|
+
constructor(elementRef: ElementRef);
|
|
41
|
+
ngOnChanges(): void;
|
|
42
|
+
ngOnInit(): void;
|
|
43
|
+
ngAfterContentInit(): void;
|
|
44
|
+
ngOnDestroy(): void;
|
|
45
|
+
handleClick(event: MouseEvent, radioButton: HTMLInputElement): void;
|
|
46
|
+
select(event: Event): void;
|
|
47
|
+
writeValue(value: unknown): void;
|
|
48
|
+
registerOnChange(fn: () => void): void;
|
|
49
|
+
registerOnTouched(fn: () => void): void;
|
|
50
|
+
onInputFocus(event: FocusEvent): void;
|
|
51
|
+
onInputBlur(event: FocusEvent): void;
|
|
52
|
+
onChange(event: Event): void;
|
|
53
|
+
private checkName;
|
|
54
|
+
private throwNameError;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "ap-radio[value][radioId]", never, { "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "disabled": "disabled"; "labelPosition": "labelPosition"; "radioId": "radioId"; "formControlName": "formControlName"; "value": "value"; "required": "required"; "name": "name"; }, { "onClick": "onClick"; "onFocus": "onFocus"; "onBlur": "onBlur"; }, never, ["*"], true, never>;
|
|
57
|
+
}
|
|
@@ -11,7 +11,7 @@ export declare class SnackbarsThreadComponent {
|
|
|
11
11
|
3: string;
|
|
12
12
|
};
|
|
13
13
|
SnackbarIconsMap: {
|
|
14
|
-
[k: number]: "attachment" | "add" | "view" | "close" | "small-caps" | "calendar" | "add-2022" | "add-circle" | "add-circle-bold-alternate" | "add-square-alternate" | "agorapulse-official" | "agorapulse-square-logo" | "ai-magic-wand" | "alarm-bell-1" | "alarm-clock-1-alternate" | "alert-circle" | "alert-triangle" | "analytics-bars" | "analytics-board-bars" | "analytics-board-graph-line" | "app-window-expand" | "app-window-search-text" | "app-window-link" | "app-window-next" | "arrow-button-down" | "arrow-button-down-2" | "arrow-button-left" | "arrow-button-right" | "arrow-button-up" | "arrow-button-up-2" | "arrow-circle-right" | "arrow-corner-right" | "arrow-down-1" | "arrow-left-1" | "arrow-right" | "arrow-right-1" | "arrow-right-long" | "arrow-thick-circle-bottom-right-corner-2" | "arrow-thick-circle-right-2" | "arrow-thick-circle-top-right-corner-2" | "arrow-thick-down-2" | "arrow-thick-left-2" | "arrow-thick-right-2" | "arrow-thick-up-2" | "arrow-up-1" | "artboard-image-1" | "bag-shop" | "bin" | "bin-1" | "bin-2" | "bitly" | "button-play" | "button-shuffle" | "button-stop-1" | "button-refresh-arrow" | "bookmarks-1" | "bookmarks-1-alternate" | "bookmarks-document" | "calendar-2022" | "calendar-3" | "calendar-add-1" | "calendar-setting" | "canva" | "certified-certificate" | "chat-translate" | "check-1" | "check-2" | "check-circle" | "check-circle-alternate" | "cog" | "cog-1" | "common-file-double" | "common-file-text-alternate" | "common-file-stack-alternate" | "common-file-upload" | "competitors" | "content-pencil-write" | "controls-pause" | "controls-play" | "controls-play-3" | "conversation-chat-1" | "conversation-chat-1-alternate" | "copy-paste" | "country-targeting" | "country-targeting-active" | "credit-card-1-alternate" | "crown" | "cursor-double-click-3" | "custom-facebook-comment" | "custom-facebook-like" | "custom-facebook-share" | "custom-tiktok-like" | "custom-tiktok-comment" | "custom-tiktok-share" | "custom-tiktok-melody" | "custom-twitter-comment" | "custom-twitter-like" | "custom-twitter-retweet" | "custom-twitter-retweet-full" | "custom-twitter-share" | "custom-inbox-post" | "custom-instagram-bookmark" | "custom-instagram-carousel" | "custom-instagram-comment" | "custom-instagram-like" | "custom-instagram-play" | "custom-instagram-reels" | "custom-instagram-share" | "custom-instagram-tags" | "custom-linkedin-comment" | "custom-linkedin-like" | "custom-linkedin-share" | "data-file-bars-add" | "data-transfer-vertical" | "data-transfer-vertical-bi-color-down" | "data-transfer-vertical-bi-color-up" | "data-transfer-square-horizontal" | "design-file-text-alternate" | "delete" | "delete-2-alternate" | "desktop-computer-pc-1" | "dislike" | "dislike-alternate" | "dislike-1" | "download-bottom" | "drawer-download" | "drawer-open" | "earth-heart" | "earth-search" | "email-action-add" | "email-action-reply" | "email-action-reply-alternate" | "email-action-subtract" | "email-action-sync-1" | "envelope" | "envelope-letter" | "excel" | "expand" | "facebook" | "famous-people-man-steve-jobs" | "fans-2022" | "faq-2022" | "fast-food-burger-drink" | "feature-icon-market" | "flag-plain-2" | "file-csv-1" | "filter-1" | "filter-2" | "flag-plain" | "flip-right" | "folder-add-alternate" | "folder-alternate" | "folder-empty" | "folder-media-alternate" | "folder-search-alternate" | "gauge-dashboard-alternate" | "gift-box" | "google-analytics" | "google-my-business-icon" | "google-icon" | "group-of-posts" | "hash" | "hashtag" | "headphones-customer-support-human" | "headphones-customer-support-human-1" | "help-wheel" | "hourglass-alternate" | "house-chimney-1" | "hyperlink-3" | "icon-gif" | "icon-gif-search" | "icon-product-error" | "ig-grid" | "ig-story" | "ig-reel" | "image-file-bmp" | "image-file-jpg" | "image-file-gif" | "image-file-landscape" | "image-file-landscape-2" | "image-file-png" | "inbox-2022" | "information" | "information-circle" | "instagram" | "instagram-outline" | "instagram-user" | "iris-scan-approved" | "keyboard-3" | "keyboard-arrow-bottom-right" | "keyboard-arrow-right" | "keyboard-arrow-top-right" | "keyword" | "language-targeting" | "language-targeting-active" | "layers-hide" | "layers-show" | "layout-3" | "layout-module" | "layout-module-1" | "layout-agenda" | "layout-bullets" | "layout-top-1" | "library-2022" | "light-bulb" | "like" | "like-alternate" | "like-1" | "linkedin" | "list-bullets" | "listening-2022" | "lock-password" | "logout-1-alternate" | "logout-2" | "love-it" | "love-it-alternate" | "love-it-alternate-bold" | "love-it-circle" | "meetings-camera" | "megaphone" | "mention" | "messages-bubble" | "messages-bubble-alternate" | "messages-bubble-dot" | "messages-bubble-empty-alternate" | "messages-bubble-forward" | "messages-bubble-graph" | "messages-bubble-question-alternate" | "messages-bubble-square-menu-alternate" | "messages-bubble-square-text" | "microsoft-icon" | "mobile-phone" | "module-three-1" | "money-wallet-open" | "move-to-bottom" | "multiple-man-1" | "multiple-users-1" | "natural-disaster-hurricane-radar-1" | "navigation-menu-horizontal" | "navigation-menu-horizontal-1-alternate" | "navigation-menu-vertical" | "network-search" | "notes-add" | "notes-text-flip-3" | "notes-book-text" | "notes-paper" | "notes-paper-approve" | "notes-paper-text-2" | "notif-2022" | "office-outdoors" | "open-new-tab" | "open-quote" | "organization" | "original-sound" | "paginate-filter-picture" | "paginate-filter-plus" | "payment-paypal" | "pencil-1" | "pencil-2" | "pencil-write-2-alternate" | "people-man-graduate" | "performance-increase" | "phone-ring-1" | "picture-landscape" | "picture-polaroid-landscape" | "picture-stack-landscape" | "pin" | "pinterest-icon" | "pin-active" | "pin-location" | "plant-2" | "publishing-2022" | "publishing-list-2022" | "powerpoint" | "premium-star" | "question-circle" | "rating-star" | "read-email-at-alternate" | "remove-bold" | "remove-circle" | "remove-circle-bold-alternate" | "remove-circle-bold-alternate-3" | "reports-2022" | "repost" | "roi-2022" | "rotate-back" | "search-alternate" | "send-email-2-alternate" | "send-email-3" | "send-email-4" | "send-for-approval" | "settings-slider-alternate-1" | "settings-vertical" | "share" | "shared-calendar" | "shorten" | "show-theater-mask-happy" | "single-man" | "single-neutral" | "single-neutral-actions-add" | "single-post" | "user-delete" | "smiley-happy-alternate" | "smiley-happy-alternate-custom" | "social-media-retweet" | "social-media-retweet-alternate" | "social-profile-smartphone-add" | "space-rocket-flying" | "sparkles" | "subtitle" | "subtract" | "synchronize-arrow-clock" | "synchronize-arrows-1" | "tags-alternate-active" | "tags-add-alternate" | "tags-alternate" | "taking-pictures-circle-alternate" | "taking-pictures-circle-alternate-active" | "taking-videos-circle-alternate" | "taking-videos-circle-alternate-active" | "task-checklist-check" | "task-list-clock" | "task-list-multiple" | "time-clock-circle" | "time-clock-circle-alternate" | "time-clock-circle-1-alternate" | "toys-ball" | "trends-hot-flame" | "twitter" | "twitter-circle" | "twitter-link-placeholder" | "union" | "upload-bottom" | "upload-button" | "variable" | "vectors-anchor-square-alternate" | "video-file-avi" | "video-file-disable" | "video-file-flv" | "video-file-mov" | "video-file-mpg" | "video-file-mp-4" | "video-file-m-4-v" | "video-file-play-alternate" | "view-alternate" | "view-off" | "view-off-alternate" | "view-off-full" | "view-on" | "view-on-full" | "vintage-tv" | "volume-control-full" | "volume-control-off" | "wifi-signal-4" | "youtube" | "facebook-official" | "google-official" | "google-my-business-official" | "google-analytics-official" | "linkedin-official" | "pinterest-official" | "tiktok-official" | "microsoft-official" | "tiktok-white-official" | "twitter-official" | "youtube-official" | "instagram-official" | "instagram-story-custom" | "agorapulse-en-flag" | "agorapulse-fr-flag" | "agorapulse-pt-flag" | "agorapulse-es-flag" | "agorapulse-de-flag";
|
|
14
|
+
[k: number]: "attachment" | "add" | "view" | "close" | "small-caps" | "calendar" | "add-2022" | "add-circle" | "add-circle-bold-alternate" | "add-square-alternate" | "agorapulse-official" | "agorapulse-square-logo" | "ai-magic-wand" | "alarm-bell-1" | "alarm-clock-1-alternate" | "alert-circle" | "alert-triangle" | "analytics-bars" | "analytics-board-bars" | "analytics-board-graph-line" | "app-window-expand" | "app-window-search-text" | "app-window-link" | "app-window-next" | "arrow-button-down" | "arrow-button-down-2" | "arrow-button-left" | "arrow-button-right" | "arrow-button-up" | "arrow-button-up-2" | "arrow-circle-right" | "arrow-corner-right" | "arrow-down-1" | "arrow-left-1" | "arrow-right" | "arrow-right-1" | "arrow-right-long" | "arrow-thick-circle-bottom-right-corner-2" | "arrow-thick-circle-right-2" | "arrow-thick-circle-top-right-corner-2" | "arrow-thick-down-2" | "arrow-thick-left-2" | "arrow-thick-right-2" | "arrow-thick-up-2" | "arrow-up-1" | "artboard-image-1" | "bag-shop" | "bin" | "bin-1" | "bin-2" | "bitly" | "button-play" | "button-shuffle" | "button-stop-1" | "button-refresh-arrow" | "button-refresh-arrows" | "bookmarks-1" | "bookmarks-1-alternate" | "bookmarks-document" | "calendar-2022" | "calendar-3" | "calendar-add-1" | "calendar-setting" | "canva" | "certified-certificate" | "chat-translate" | "check-1" | "check-2" | "check-circle" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "check-circle-alternate" | "cog" | "cog-1" | "common-file-double" | "common-file-text-alternate" | "common-file-stack-alternate" | "common-file-upload" | "competitors" | "content-pencil-write" | "controls-pause" | "controls-play" | "controls-play-3" | "conversation-chat-1" | "conversation-chat-1-alternate" | "copy-paste" | "country-targeting" | "country-targeting-active" | "credit-card-1-alternate" | "crown" | "cursor-double-click-3" | "custom-facebook-comment" | "custom-facebook-like" | "custom-facebook-share" | "custom-facebook-reel-comment" | "custom-facebook-reel-like" | "custom-facebook-reel-share" | "custom-tiktok-like" | "custom-tiktok-comment" | "custom-tiktok-share" | "custom-tiktok-melody" | "custom-twitter-comment" | "custom-twitter-like" | "custom-twitter-retweet" | "custom-twitter-retweet-full" | "custom-twitter-share" | "custom-inbox-post" | "custom-instagram-bookmark" | "custom-instagram-carousel" | "custom-instagram-comment" | "custom-instagram-like" | "custom-instagram-play" | "custom-instagram-reels" | "custom-instagram-share" | "custom-instagram-tags" | "custom-linkedin-comment" | "custom-linkedin-like" | "custom-linkedin-share" | "data-file-bars-add" | "data-transfer-vertical" | "data-transfer-vertical-bi-color-down" | "data-transfer-vertical-bi-color-up" | "data-transfer-square-horizontal" | "design-file-text-alternate" | "delete" | "delete-2-alternate" | "desktop-computer-pc-1" | "dislike" | "dislike-alternate" | "dislike-1" | "download-bottom" | "drawer-download" | "drawer-open" | "earth-heart" | "earth-search" | "email-action-add" | "email-action-reply" | "email-action-reply-alternate" | "email-action-subtract" | "email-action-sync-1" | "envelope" | "envelope-letter" | "excel" | "expand" | "facebook" | "famous-people-man-steve-jobs" | "fans-2022" | "faq-2022" | "fast-food-burger-drink" | "feature-icon-market" | "flag-plain-2" | "file-csv-1" | "filter-1" | "filter-2" | "flag-plain" | "flip-right" | "folder-add-alternate" | "folder-alternate" | "folder-empty" | "folder-media-alternate" | "folder-search-alternate" | "gauge-dashboard-alternate" | "gift-box" | "google-analytics" | "google-my-business-icon" | "google-icon" | "group-of-posts" | "hash" | "hashtag" | "headphones-customer-support-human" | "headphones-customer-support-human-1" | "help-wheel" | "hourglass-alternate" | "house-chimney-1" | "hyperlink-3" | "icon-gif" | "icon-gif-search" | "icon-product-error" | "ig-grid" | "ig-story" | "ig-reel" | "image-file-bmp" | "image-file-jpg" | "image-file-gif" | "image-file-landscape" | "image-file-landscape-2" | "image-file-png" | "inbox-2022" | "information" | "information-circle" | "instagram" | "instagram-outline" | "instagram-user" | "iris-scan-approved" | "keyboard-3" | "keyboard-arrow-bottom-right" | "keyboard-arrow-right" | "keyboard-arrow-top-right" | "keyword" | "language-targeting" | "language-targeting-active" | "layers-hide" | "layers-show" | "layout-3" | "layout-module" | "layout-module-1" | "layout-agenda" | "layout-bullets" | "layout-top-1" | "library-2022" | "light-bulb" | "like" | "like-alternate" | "like-1" | "linkedin" | "list-bullets" | "listening-2022" | "lock-password" | "logout-1-alternate" | "logout-2" | "love-it" | "love-it-alternate" | "love-it-alternate-bold" | "love-it-circle" | "meetings-camera" | "megaphone" | "mention" | "messages-bubble" | "messages-bubble-alternate" | "messages-bubble-dot" | "messages-bubble-empty-alternate" | "messages-bubble-forward" | "messages-bubble-graph" | "messages-bubble-question-alternate" | "messages-bubble-square-menu-alternate" | "messages-bubble-square-text" | "microsoft-icon" | "mobile-phone" | "module-three-1" | "money-wallet-open" | "move-to-bottom" | "multiple-man-1" | "multiple-users-1" | "natural-disaster-hurricane-radar-1" | "navigation-menu-horizontal" | "navigation-menu-horizontal-1-alternate" | "navigation-menu-vertical" | "network-search" | "notes-add" | "notes-text-flip-3" | "notes-book-text" | "notes-paper" | "notes-paper-approve" | "notes-paper-text-2" | "notif-2022" | "office-outdoors" | "open-new-tab" | "open-quote" | "organization" | "original-sound" | "paginate-filter-picture" | "paginate-filter-plus" | "payment-paypal" | "pencil-1" | "pencil-2" | "pencil-write-2-alternate" | "people-man-graduate" | "performance-increase" | "phone-ring-1" | "picture-landscape" | "picture-polaroid-landscape" | "picture-stack-landscape" | "pin" | "pinterest-icon" | "pin-active" | "pin-location" | "plant-2" | "publishing-2022" | "publishing-list-2022" | "powerpoint" | "premium-star" | "question-circle" | "rating-star" | "read-email-at-alternate" | "remove-bold" | "remove-circle" | "remove-circle-bold-alternate" | "remove-circle-bold-alternate-3" | "reports-2022" | "repost" | "roi-2022" | "rotate-back" | "search-alternate" | "send-email-2-alternate" | "send-email-3" | "send-email-4" | "send-for-approval" | "settings-slider-alternate-1" | "settings-vertical" | "share" | "shared-calendar" | "shorten" | "show-theater-mask-happy" | "single-man" | "single-neutral" | "single-neutral-actions-add" | "single-post" | "user-delete" | "small-arrow-down" | "small-arrow-up" | "small-arrow-left" | "small-arrow-right" | "smiley-happy-alternate" | "smiley-happy-alternate-custom" | "social-media-retweet" | "social-media-retweet-alternate" | "social-profile-smartphone-add" | "space-rocket-flying" | "sparkles" | "subtitle" | "subtract" | "synchronize-arrow-clock" | "synchronize-arrows-1" | "tags-alternate-active" | "tags-add-alternate" | "tags-alternate" | "taking-pictures-circle-alternate" | "taking-pictures-circle-alternate-active" | "taking-videos-circle-alternate" | "taking-videos-circle-alternate-active" | "task-checklist-check" | "task-list-clock" | "task-list-multiple" | "time-clock-circle" | "time-clock-circle-alternate" | "time-clock-circle-1-alternate" | "toys-ball" | "trends-hot-flame" | "twitter" | "twitter-circle" | "twitter-link-placeholder" | "union" | "upload-bottom" | "upload-button" | "variable" | "vectors-anchor-square-alternate" | "video-file-avi" | "video-file-disable" | "video-file-flv" | "video-file-mov" | "video-file-mpg" | "video-file-mp-4" | "video-file-m-4-v" | "video-file-play-alternate" | "view-alternate" | "view-off" | "view-off-alternate" | "view-off-full" | "view-on" | "view-on-full" | "vintage-tv" | "volume-control-full" | "volume-control-off" | "wifi-signal-4" | "youtube" | "facebook-official" | "google-official" | "google-my-business-official" | "google-analytics-official" | "linkedin-official" | "pinterest-official" | "tiktok-official" | "microsoft-official" | "tiktok-white-official" | "twitter-official" | "youtube-official" | "instagram-official" | "instagram-story-custom" | "agorapulse-en-flag" | "agorapulse-fr-flag" | "agorapulse-pt-flag" | "agorapulse-es-flag" | "agorapulse-de-flag";
|
|
15
15
|
};
|
|
16
16
|
constructor(snackbarsThreadService: SnackbarsThreadService, symbolRegistry: SymbolRegistry);
|
|
17
17
|
remove(id: string): void;
|
package/stepper/step.model.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnChanges,
|
|
1
|
+
import { OnChanges, EventEmitter } from '@angular/core';
|
|
2
2
|
import { Step } from './step.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class StepperComponent implements OnChanges {
|
|
@@ -9,7 +9,7 @@ export declare class StepperComponent implements OnChanges {
|
|
|
9
9
|
[index: number]: string;
|
|
10
10
|
};
|
|
11
11
|
currentIndex: number;
|
|
12
|
-
ngOnChanges(
|
|
12
|
+
ngOnChanges(): void;
|
|
13
13
|
clickCurrentStep(step: Step): void;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, never>;
|
|
15
15
|
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "ap-stepper", never, { "currentStep": "currentStep"; "steps": "steps"; }, { "stepClicked": "stepClicked"; }, never, never, true, never>;
|
|
Binary file
|