@agorapulse/ui-components 17.1.4 → 17.1.6
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-17.1.6.tgz +0 -0
- package/esm2022/input-group/input-group.component.mjs +3 -3
- package/esm2022/input-search/agorapulse-ui-components-input-search.mjs +5 -0
- package/esm2022/input-search/input-search.component.mjs +77 -0
- package/esm2022/input-search/public_api.mjs +2 -0
- package/esm2022/radio/radio.component.mjs +1 -2
- package/esm2022/select/dropdown-search-form/dropdown-search-form.component.mjs +6 -5
- package/fesm2022/agorapulse-ui-components-input-group.mjs +2 -2
- package/fesm2022/agorapulse-ui-components-input-group.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-input-search.mjs +84 -0
- package/fesm2022/agorapulse-ui-components-input-search.mjs.map +1 -0
- package/fesm2022/agorapulse-ui-components-radio.mjs +0 -1
- package/fesm2022/agorapulse-ui-components-radio.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-select.mjs +5 -4
- package/fesm2022/agorapulse-ui-components-select.mjs.map +1 -1
- package/input-group/input-group.component.d.ts +1 -1
- package/input-search/index.d.ts +5 -0
- package/input-search/input-search.component.d.ts +32 -0
- package/input-search/public_api.d.ts +1 -0
- package/package.json +19 -13
- package/select/dropdown-search-form/dropdown-search-form.component.d.ts +3 -2
- package/snackbars-thread/component/snackbars-thread.component.d.ts +1 -1
- package/agorapulse-ui-components-17.1.4.tgz +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agorapulse/ui-components",
|
|
3
3
|
"description": "Agorapulse UI Components Library",
|
|
4
|
-
"version": "17.1.
|
|
4
|
+
"version": "17.1.6",
|
|
5
5
|
"author": "Benoit Hediard",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -139,6 +139,12 @@
|
|
|
139
139
|
"esm": "./esm2022/input-group/agorapulse-ui-components-input-group.mjs",
|
|
140
140
|
"default": "./fesm2022/agorapulse-ui-components-input-group.mjs"
|
|
141
141
|
},
|
|
142
|
+
"./input-search": {
|
|
143
|
+
"types": "./input-search/index.d.ts",
|
|
144
|
+
"esm2022": "./esm2022/input-search/agorapulse-ui-components-input-search.mjs",
|
|
145
|
+
"esm": "./esm2022/input-search/agorapulse-ui-components-input-search.mjs",
|
|
146
|
+
"default": "./fesm2022/agorapulse-ui-components-input-search.mjs"
|
|
147
|
+
},
|
|
142
148
|
"./labels": {
|
|
143
149
|
"types": "./labels/index.d.ts",
|
|
144
150
|
"esm2022": "./esm2022/labels/agorapulse-ui-components-labels.mjs",
|
|
@@ -163,18 +169,18 @@
|
|
|
163
169
|
"esm": "./esm2022/modal/agorapulse-ui-components-modal.mjs",
|
|
164
170
|
"default": "./fesm2022/agorapulse-ui-components-modal.mjs"
|
|
165
171
|
},
|
|
166
|
-
"./notification": {
|
|
167
|
-
"types": "./notification/index.d.ts",
|
|
168
|
-
"esm2022": "./esm2022/notification/agorapulse-ui-components-notification.mjs",
|
|
169
|
-
"esm": "./esm2022/notification/agorapulse-ui-components-notification.mjs",
|
|
170
|
-
"default": "./fesm2022/agorapulse-ui-components-notification.mjs"
|
|
171
|
-
},
|
|
172
172
|
"./neo-datepicker": {
|
|
173
173
|
"types": "./neo-datepicker/index.d.ts",
|
|
174
174
|
"esm2022": "./esm2022/neo-datepicker/agorapulse-ui-components-neo-datepicker.mjs",
|
|
175
175
|
"esm": "./esm2022/neo-datepicker/agorapulse-ui-components-neo-datepicker.mjs",
|
|
176
176
|
"default": "./fesm2022/agorapulse-ui-components-neo-datepicker.mjs"
|
|
177
177
|
},
|
|
178
|
+
"./notification": {
|
|
179
|
+
"types": "./notification/index.d.ts",
|
|
180
|
+
"esm2022": "./esm2022/notification/agorapulse-ui-components-notification.mjs",
|
|
181
|
+
"esm": "./esm2022/notification/agorapulse-ui-components-notification.mjs",
|
|
182
|
+
"default": "./fesm2022/agorapulse-ui-components-notification.mjs"
|
|
183
|
+
},
|
|
178
184
|
"./paginator": {
|
|
179
185
|
"types": "./paginator/index.d.ts",
|
|
180
186
|
"esm2022": "./esm2022/paginator/agorapulse-ui-components-paginator.mjs",
|
|
@@ -199,12 +205,6 @@
|
|
|
199
205
|
"esm": "./esm2022/popmenu/agorapulse-ui-components-popmenu.mjs",
|
|
200
206
|
"default": "./fesm2022/agorapulse-ui-components-popmenu.mjs"
|
|
201
207
|
},
|
|
202
|
-
"./radio": {
|
|
203
|
-
"types": "./radio/index.d.ts",
|
|
204
|
-
"esm2022": "./esm2022/radio/agorapulse-ui-components-radio.mjs",
|
|
205
|
-
"esm": "./esm2022/radio/agorapulse-ui-components-radio.mjs",
|
|
206
|
-
"default": "./fesm2022/agorapulse-ui-components-radio.mjs"
|
|
207
|
-
},
|
|
208
208
|
"./range-slider": {
|
|
209
209
|
"types": "./range-slider/index.d.ts",
|
|
210
210
|
"esm2022": "./esm2022/range-slider/agorapulse-ui-components-range-slider.mjs",
|
|
@@ -223,6 +223,12 @@
|
|
|
223
223
|
"esm": "./esm2022/slide-toggle/agorapulse-ui-components-slide-toggle.mjs",
|
|
224
224
|
"default": "./fesm2022/agorapulse-ui-components-slide-toggle.mjs"
|
|
225
225
|
},
|
|
226
|
+
"./radio": {
|
|
227
|
+
"types": "./radio/index.d.ts",
|
|
228
|
+
"esm2022": "./esm2022/radio/agorapulse-ui-components-radio.mjs",
|
|
229
|
+
"esm": "./esm2022/radio/agorapulse-ui-components-radio.mjs",
|
|
230
|
+
"default": "./fesm2022/agorapulse-ui-components-radio.mjs"
|
|
231
|
+
},
|
|
226
232
|
"./snackbars-thread": {
|
|
227
233
|
"types": "./snackbars-thread/index.d.ts",
|
|
228
234
|
"esm2022": "./esm2022/snackbars-thread/agorapulse-ui-components-snackbars-thread.mjs",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InputSearchComponent } from '@agorapulse/ui-components/input-search';
|
|
2
|
+
import { AfterViewInit, EventEmitter, TemplateRef } from '@angular/core';
|
|
2
3
|
import { NgSelectComponent } from '@ng-select/ng-select';
|
|
3
4
|
import { BehaviorSubject } from 'rxjs';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
@@ -7,7 +8,7 @@ export declare class DropdownSearchFormComponent implements AfterViewInit {
|
|
|
7
8
|
createNewEnabled: boolean;
|
|
8
9
|
createText: string;
|
|
9
10
|
select: NgSelectComponent;
|
|
10
|
-
inputSearch:
|
|
11
|
+
inputSearch: InputSearchComponent;
|
|
11
12
|
notFoundTpl: TemplateRef<any>;
|
|
12
13
|
loadingTpl: TemplateRef<any>;
|
|
13
14
|
createNewTpl: TemplateRef<any>;
|
|
@@ -13,7 +13,7 @@ export declare class SnackbarsThreadComponent {
|
|
|
13
13
|
3: string;
|
|
14
14
|
};
|
|
15
15
|
SnackbarIconsMap: {
|
|
16
|
-
[k: number]: "ad-icon" | "add-2022" | "add-circle-bold-alternate" | "add-circle" | "add-square-alternate" | "add" | "agorapulse-de-flag" | "agorapulse-en-flag" | "agorapulse-es-flag" | "agorapulse-fr-flag" | "agorapulse-official" | "agorapulse-pt-flag" | "agorapulse-square-logo" | "ai-magic-wand" | "alarm-bell-1" | "alarm-clock-1-alternate" | "alert-circle" | "alert-triangle" | "ambassador" | "analytics-bars" | "analytics-board-bars" | "analytics-board-graph-line" | "app-window-expand" | "app-window-link" | "app-window-next" | "app-window-search-text" | "arrow-button-down-2" | "arrow-button-down" | "arrow-button-left" | "arrow-button-right" | "arrow-button-up-2" | "arrow-button-up" | "arrow-circle-right" | "arrow-corner-right" | "arrow-down-1" | "arrow-left-1" | "arrow-right-1" | "arrow-right-long" | "arrow-right" | "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" | "attachment" | "bag-shop" | "bin-1" | "bin-2" | "bin" | "bitly" | "bookmarks-1-alternate" | "bookmarks-1" | "bookmarks-document" | "boosting-dollar-icon" | "button-play" | "button-refresh-arrow" | "button-refresh-arrows" | "button-shuffle" | "button-stop-1" | "calendar-2022" | "calendar-3" | "calendar-add-1" | "calendar-setting" | "calendar" | "canva" | "certified-certificate" | "chat-translate" | "check-1" | "check-2" | "check-circle-alternate" | "check-circle" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "close" | "cog-1" | "cog" | "common-file-double" | "common-file-stack-alternate" | "common-file-text-alternate" | "common-file-upload" | "competitors" | "computer-bug" | "content-pencil-write" | "controls-pause" | "controls-play-3" | "controls-play" | "conversation-chat-1-alternate" | "conversation-chat-1" | "copy-paste" | "country-targeting-active" | "country-targeting" | "credit-card-1-alternate" | "crown" | "cursor-double-click-3" | "custom-facebook-comment" | "custom-facebook-like" | "custom-facebook-reel-comment" | "custom-facebook-reel-like" | "custom-facebook-reel-share" | "custom-facebook-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" | "custom-pinterest-link" | "custom-pinterest-lock" | "custom-pinterest-more" | "custom-pinterest-share" | "custom-tiktok-comment" | "custom-tiktok-like" | "custom-tiktok-melody" | "custom-tiktok-share" | "custom-twitter-comment" | "custom-twitter-like" | "custom-twitter-retweet-full" | "custom-twitter-retweet" | "custom-twitter-share" | "data-file-bars-add" | "data-transfer-square-horizontal" | "data-transfer-vertical-bi-color-down" | "data-transfer-vertical-bi-color-up" | "data-transfer-vertical" | "delete-2-alternate" | "delete-no-circle" | "delete" | "design-file-text-alternate" | "desktop-computer-pc-1" | "dislike-1" | "dislike-alternate" | "dislike" | "download-bottom" | "drawer-download" | "drawer-open" | "earth-heart" | "earth-search" | "email-action-add" | "email-action-reply-alternate" | "email-action-reply" | "email-action-subtract" | "email-action-sync-1" | "envelope-letter" | "envelope" | "excel" | "expand-1" | "expand" | "external-link" | "facebook-official" | "facebook" | "famous-people-man-steve-jobs" | "fans-2022" | "faq-2022" | "fast-food-burger-drink" | "feature-icon-market" | "file-csv-1" | "filter-1" | "filter-2" | "flag-plain-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-official" | "google-analytics" | "google-drive" | "google-icon" | "google-my-business-icon" | "google-my-business-official" | "google-official" | "group-of-posts" | "hash" | "hashtag" | "headphones-customer-support-human-1" | "headphones-customer-support-human" | "help-wheel" | "hourglass-alternate" | "house-chimney-1" | "hubspot-official" | "human-resources-search-men" | "hyperlink-3" | "icon-gif-search" | "icon-gif" | "icon-product-error" | "ig-grid" | "ig-reel" | "ig-story" | "image-file-bmp" | "image-file-gif" | "image-file-jpg" | "image-file-landscape-2" | "image-file-landscape" | "image-file-png" | "inbox-2022" | "information-circle" | "information" | "instagram-outline" | "instagram-user" | "instagram" | "iris-scan-approved" | "keyboard-3" | "keyboard-arrow-bottom-right" | "keyboard-arrow-right" | "keyboard-arrow-top-right" | "keyword" | "language-targeting-active" | "language-targeting" | "layers-hide" | "layers-show" | "layout-3" | "layout-agenda" | "layout-bullets" | "layout-module-1" | "layout-module" | "layout-top-1" | "library-2022" | "light-bulb" | "like-1" | "like-alternate" | "like" | "linkedin-official" | "linkedin" | "list-bullets" | "listening-2022" | "lock-password" | "logout-1-alternate" | "logout-2" | "love-it-alternate-bold" | "love-it-alternate" | "love-it-circle" | "love-it" | "maximize" | "meetings-camera" | "megaphone" | "mention" | "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" | "messages-bubble" | "microsoft-icon" | "microsoft-official" | "minimize" | "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-1-alternate" | "navigation-menu-horizontal" | "navigation-menu-vertical" | "network-search" | "notes-add" | "notes-book-text" | "notes-paper-approve" | "notes-paper-text-2" | "notes-paper" | "notes-text-flip-3" | "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-active" | "pin-location" | "pin" | "pinterest-icon" | "pinterest-official" | "plant-2" | "powerpoint" | "premium-star" | "publishing-2022" | "publishing-list-2022" | "question-circle" | "rating-star" | "read-email-at-alternate" | "remove-bold" | "remove-circle-bold-alternate-3" | "remove-circle-bold-alternate" | "remove-circle" | "reports-2022" | "repost" | "roi-2022" | "rotate-back" | "salesforce-official" | "search-alternate" | "send-email-2-alternate" | "send-email-3" | "send-email-4" | "send-for-approval" | "sentiment-negative" | "sentiment-neutral" | "sentiment-positive" | "sentiment-undefined" | "settings-slider-alternate-1" | "settings-vertical" | "share" | "shared-calendar" | "shorten" | "show-theater-mask-happy" | "single-man" | "single-neutral-actions-add" | "single-neutral" | "single-post" | "small-arrow-down" | "small-arrow-left" | "small-arrow-right" | "small-arrow-up" | "small-caps" | "smiley-happy-alternate-custom" | "smiley-happy-alternate" | "social-media-retweet-alternate" | "social-media-retweet" | "social-profile-smartphone-add" | "space-rocket-flying" | "sparkles" | "subtitle" | "subtract" | "synchronize-arrow-clock" | "synchronize-arrows-1" | "tags-add-alternate" | "tags-alternate-active" | "tags-alternate" | "taking-pictures-circle-alternate-active" | "taking-pictures-circle-alternate" | "taking-videos-circle-alternate-active" | "taking-videos-circle-alternate" | "task-checklist-check" | "task-list-clock" | "task-list-multiple" | "tiktok-official" | "tiktok-white-official" | "time-clock-circle-1-alternate" | "time-clock-circle-alternate" | "time-clock-circle" | "tools-wrench-2" | "toys-ball" | "trends-hot-flame" | "twitter-circle" | "twitter-link-placeholder" | "twitter-official" | "twitter-plus-official" | "twitter" | "union" | "upload-bottom" | "upload-button" | "user-delete" | "variable" | "vectors-anchor-square-alternate" | "video-file-avi" | "video-file-disable" | "video-file-flv" | "video-file-m-4-v" | "video-file-mov" | "video-file-mp-4" | "video-file-mpg" | "video-file-play-alternate" | "view-alternate" | "view-off-alternate" | "view-off-full" | "view-off" | "view-on-full" | "view-on" | "view" | "vintage-tv" | "volume-control-full" | "volume-control-off" | "web-blogs" | "web-news" | "wifi-signal-4" | "x-official" | "x-plus-official" | "x-white-official" | "youtube-official" | "youtube" | "instagram-official" | "instagram-story-custom";
|
|
16
|
+
[k: number]: "ad-icon" | "add-2022" | "add-circle-bold-alternate" | "add-circle" | "add-square-alternate" | "add" | "agorapulse-de-flag" | "agorapulse-en-flag" | "agorapulse-es-flag" | "agorapulse-fr-flag" | "agorapulse-official" | "agorapulse-pt-flag" | "agorapulse-square-logo" | "ai-magic-wand" | "alarm-bell-1" | "alarm-clock-1-alternate" | "alert-circle" | "alert-triangle" | "ambassador" | "analytics-bars" | "analytics-board-bars" | "analytics-board-graph-line" | "app-window-expand" | "app-window-link" | "app-window-next" | "app-window-search-text" | "arrow-button-down-2" | "arrow-button-down" | "arrow-button-left" | "arrow-button-right" | "arrow-button-up-2" | "arrow-button-up" | "arrow-circle-right" | "arrow-corner-right" | "arrow-down-1" | "arrow-left-1" | "arrow-right-1" | "arrow-right-long" | "arrow-right" | "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" | "attachment" | "bag-shop" | "bin-1" | "bin-2" | "bin" | "bitly" | "bookmarks-1-alternate" | "bookmarks-1" | "bookmarks-document" | "boosting-dollar-icon" | "button-play" | "button-refresh-arrow" | "button-refresh-arrows" | "button-shuffle" | "button-stop-1" | "calendar-2022" | "calendar-3" | "calendar-add-1" | "calendar-setting" | "calendar" | "canva" | "certified-certificate" | "chargebee-official" | "chat-translate" | "check-1" | "check-2" | "check-circle-alternate" | "check-circle" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "close" | "cog-1" | "cog" | "common-file-double" | "common-file-stack-alternate" | "common-file-text-alternate" | "common-file-upload" | "competitors" | "computer-bug" | "content-pencil-write" | "controls-pause" | "controls-play-3" | "controls-play" | "conversation-chat-1-alternate" | "conversation-chat-1" | "copy-paste" | "country-targeting-active" | "country-targeting" | "credit-card-1-alternate" | "crown" | "cursor-double-click-3" | "custom-facebook-comment" | "custom-facebook-like" | "custom-facebook-reel-comment" | "custom-facebook-reel-like" | "custom-facebook-reel-share" | "custom-facebook-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" | "custom-pinterest-link" | "custom-pinterest-lock" | "custom-pinterest-more" | "custom-pinterest-share" | "custom-tiktok-comment" | "custom-tiktok-like" | "custom-tiktok-melody" | "custom-tiktok-share" | "custom-twitter-comment" | "custom-twitter-like" | "custom-twitter-retweet-full" | "custom-twitter-retweet" | "custom-twitter-share" | "data-file-bars-add" | "data-transfer-square-horizontal" | "data-transfer-vertical-bi-color-down" | "data-transfer-vertical-bi-color-up" | "data-transfer-vertical" | "delete-2-alternate" | "delete-no-circle" | "delete" | "design-file-text-alternate" | "desktop-computer-pc-1" | "dislike-1" | "dislike-alternate" | "dislike" | "download-bottom" | "drawer-download" | "drawer-open" | "earth-heart" | "earth-search" | "email-action-add" | "email-action-reply-alternate" | "email-action-reply" | "email-action-subtract" | "email-action-sync-1" | "envelope-letter" | "envelope" | "excel" | "expand-1" | "expand" | "external-link" | "facebook-official" | "facebook" | "famous-people-man-steve-jobs" | "fans-2022" | "faq-2022" | "fast-food-burger-drink" | "feature-icon-market" | "file-csv-1" | "filter-1" | "filter-2" | "flag-plain-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-official" | "google-analytics" | "google-drive" | "google-icon" | "google-my-business-icon" | "google-my-business-official" | "google-official" | "group-of-posts" | "hash" | "hashtag" | "headphones-customer-support-human-1" | "headphones-customer-support-human" | "help-wheel" | "hourglass-alternate" | "house-chimney-1" | "hubspot-official" | "human-resources-search-men" | "hyperlink-3" | "icon-gif-search" | "icon-gif" | "icon-product-error" | "ig-grid" | "ig-reel" | "ig-story" | "image-file-bmp" | "image-file-gif" | "image-file-jpg" | "image-file-landscape-2" | "image-file-landscape" | "image-file-png" | "inbox-2022" | "information-circle" | "information" | "instagram-outline" | "instagram-sticker-link" | "instagram-user" | "instagram" | "iris-scan-approved" | "keyboard-3" | "keyboard-arrow-bottom-right" | "keyboard-arrow-right" | "keyboard-arrow-top-right" | "keyword" | "language-targeting-active" | "language-targeting" | "layers-hide" | "layers-show" | "layout-3" | "layout-agenda" | "layout-bullets" | "layout-module-1" | "layout-module" | "layout-top-1" | "library-2022" | "light-bulb" | "like-1" | "like-alternate" | "like" | "linkedin-official" | "linkedin" | "list-bullets" | "listening-2022" | "lock-password" | "logout-1-alternate" | "logout-2" | "love-it-alternate-bold" | "love-it-alternate" | "love-it-circle" | "love-it" | "maximize" | "meetings-camera" | "megaphone" | "mention" | "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" | "messages-bubble" | "microsoft-icon" | "microsoft-official" | "minimize" | "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-1-alternate" | "navigation-menu-horizontal" | "navigation-menu-vertical" | "network-search" | "notes-add" | "notes-book-text" | "notes-paper-approve" | "notes-paper-text-2" | "notes-paper" | "notes-text-flip-3" | "notif-2022" | "office-outdoors" | "open-new-tab" | "open-quote" | "organization-2" | "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-active" | "pin-location" | "pin" | "pinterest-icon" | "pinterest-official" | "planhat-official" | "plant-2" | "powerpoint" | "premium-star" | "publishing-2022" | "publishing-list-2022" | "question-circle" | "rating-star" | "read-email-at-alternate" | "remove-bold" | "remove-circle-bold-alternate-3" | "remove-circle-bold-alternate" | "remove-circle" | "reports-2022" | "repost" | "roi-2022" | "rotate-back" | "salesforce-official" | "search-alternate" | "send-email-2-alternate" | "send-email-3" | "send-email-4" | "send-for-approval" | "sentiment-negative" | "sentiment-neutral" | "sentiment-positive" | "sentiment-undefined" | "settings-slider-alternate-1" | "settings-vertical" | "share" | "shared-calendar" | "shorten" | "show-theater-mask-happy" | "single-man" | "single-neutral-actions-add" | "single-neutral" | "single-post" | "small-arrow-down" | "small-arrow-left" | "small-arrow-right" | "small-arrow-up" | "small-caps" | "smiley-happy-alternate-custom" | "smiley-happy-alternate" | "social-media-retweet-alternate" | "social-media-retweet" | "social-profile-smartphone-add" | "space-rocket-flying" | "sparkles" | "subtitle" | "subtract" | "synchronize-arrow-clock" | "synchronize-arrows-1" | "tags-add-alternate" | "tags-alternate-active" | "tags-alternate" | "taking-pictures-circle-alternate-active" | "taking-pictures-circle-alternate" | "taking-videos-circle-alternate-active" | "taking-videos-circle-alternate" | "task-checklist-check" | "task-list-clock" | "task-list-multiple" | "tiktok-official" | "tiktok-white-official" | "time-clock-circle-1-alternate" | "time-clock-circle-alternate" | "time-clock-circle" | "tools-wrench-2" | "toys-ball" | "trends-hot-flame" | "twitter-circle" | "twitter-link-placeholder" | "twitter-official" | "twitter-plus-official" | "twitter" | "union" | "upload-bottom" | "upload-button" | "user-delete" | "variable" | "vectors-anchor-square-alternate" | "video-file-avi" | "video-file-disable" | "video-file-flv" | "video-file-m-4-v" | "video-file-mov" | "video-file-mp-4" | "video-file-mpg" | "video-file-play-alternate" | "view-alternate" | "view-off-alternate" | "view-off-full" | "view-off" | "view-on-full" | "view-on" | "view" | "vintage-tv" | "volume-control-full" | "volume-control-off" | "web-blogs" | "web-news" | "wifi-signal-4" | "x-official" | "x-plus-official" | "x-white-official" | "youtube-official" | "youtube" | "instagram-official" | "instagram-story-custom";
|
|
17
17
|
};
|
|
18
18
|
constructor(snackbarsThreadService: SnackbarsThreadService, symbolRegistry: SymbolRegistry, router: Router);
|
|
19
19
|
remove(id: string): void;
|
|
Binary file
|