@covalent/core 6.3.0 → 7.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/breadcrumbs/breadcrumbs.component.d.ts +1 -1
- package/dialogs/window-dialog/window-dialog.component.d.ts +1 -1
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.d.ts +1 -1
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.d.ts +1 -1
- package/dynamic-menu/dynamic-menu.component.d.ts +1 -1
- package/esm2022/breadcrumbs/breadcrumb/breadcrumb.component.mjs +94 -0
- package/esm2022/breadcrumbs/breadcrumbs.component.mjs +135 -0
- package/{esm2020 → esm2022}/breadcrumbs/breadcrumbs.module.mjs +5 -5
- package/esm2022/common/behaviors/control-value-accesor.mixin.mjs +43 -0
- package/esm2022/common/behaviors/disable-ripple.mixin.mjs +24 -0
- package/{esm2020 → esm2022}/common/behaviors/disabled.mixin.mjs +2 -2
- package/{esm2020 → esm2022}/common/common.module.mjs +17 -17
- package/esm2022/common/directives/fullscreen/fullscreen.directive.mjs +87 -0
- package/esm2022/common/forms/auto-trim/auto-trim.directive.mjs +37 -0
- package/esm2022/common/functions/convert.mjs +84 -0
- package/esm2022/common/functions/download.mjs +75 -0
- package/esm2022/common/pipes/bytes/bytes.pipe.mjs +42 -0
- package/esm2022/common/pipes/decimal-bytes/decimal-bytes.pipe.mjs +42 -0
- package/esm2022/common/pipes/digits/digits.pipe.mjs +41 -0
- package/{esm2020 → esm2022}/common/pipes/time-ago/time-ago.pipe.mjs +4 -4
- package/{esm2020 → esm2022}/common/pipes/time-difference/time-difference.pipe.mjs +4 -4
- package/{esm2020 → esm2022}/common/pipes/time-until/time-until.pipe.mjs +4 -4
- package/esm2022/common/pipes/truncate/truncate.pipe.mjs +27 -0
- package/esm2022/common/services/icon.service.mjs +1087 -0
- package/esm2022/common/services/router-path.service.mjs +30 -0
- package/esm2022/dialogs/alert-dialog/alert-dialog.component.mjs +26 -0
- package/esm2022/dialogs/confirm-dialog/confirm-dialog.component.mjs +31 -0
- package/esm2022/dialogs/dialog.component.mjs +60 -0
- package/{esm2020 → esm2022}/dialogs/dialogs.module.mjs +39 -39
- package/esm2022/dialogs/prompt-dialog/prompt-dialog.component.mjs +84 -0
- package/esm2022/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +220 -0
- package/esm2022/dialogs/services/dialog.service.mjs +179 -0
- package/esm2022/dialogs/window-dialog/window-dialog.component.mjs +40 -0
- package/esm2022/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +30 -0
- package/esm2022/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.mjs +23 -0
- package/esm2022/dynamic-menu/dynamic-menu.component.mjs +28 -0
- package/{esm2020 → esm2022}/dynamic-menu/dynamic-menu.module.mjs +19 -19
- package/esm2022/file/directives/file-drop.directive.mjs +145 -0
- package/esm2022/file/directives/file-select.directive.mjs +78 -0
- package/esm2022/file/file-input/file-input.component.mjs +146 -0
- package/esm2022/file/file-upload/file-upload.component.mjs +185 -0
- package/{esm2020 → esm2022}/file/file.module.mjs +21 -21
- package/esm2022/file/services/file.service.mjs +66 -0
- package/esm2022/json-formatter/json-formatter.component.mjs +222 -0
- package/{esm2020 → esm2022}/json-formatter/json-formatter.module.mjs +5 -5
- package/esm2022/layout/layout-card-over/layout-card-over.component.mjs +50 -0
- package/esm2022/layout/layout-footer/layout-footer.component.mjs +36 -0
- package/esm2022/layout/layout-manage-list/layout-manage-list.component.mjs +92 -0
- package/{esm2020 → esm2022}/layout/layout-manage-list/layout-manage-list.directives.mjs +10 -10
- package/esm2022/layout/layout-nav/layout-nav.component.mjs +76 -0
- package/esm2022/layout/layout-nav-list/layout-nav-list.component.mjs +154 -0
- package/{esm2020 → esm2022}/layout/layout-nav-list/layout-nav-list.directives.mjs +10 -10
- package/esm2022/layout/layout-toggle.class.mjs +96 -0
- package/esm2022/layout/layout.component.mjs +91 -0
- package/{esm2020 → esm2022}/layout/layout.directives.mjs +10 -10
- package/{esm2020 → esm2022}/layout/layout.module.mjs +55 -55
- package/esm2022/layout/navigation-drawer/navigation-drawer.component.mjs +221 -0
- package/esm2022/loading/directives/loading.directive.mjs +133 -0
- package/esm2022/loading/loading.component.mjs +193 -0
- package/{esm2020 → esm2022}/loading/loading.module.mjs +13 -13
- package/esm2022/loading/services/loading.factory.mjs +210 -0
- package/esm2022/loading/services/loading.service.mjs +219 -0
- package/{esm2020 → esm2022}/menu/menu.component.mjs +4 -4
- package/{esm2020 → esm2022}/menu/menu.module.mjs +5 -5
- package/esm2022/message/message.component.mjs +222 -0
- package/{esm2020 → esm2022}/message/message.module.mjs +7 -7
- package/esm2022/search/search-box/search-box.component.mjs +198 -0
- package/esm2022/search/search-input/search-input.component.mjs +214 -0
- package/{esm2020 → esm2022}/search/search.module.mjs +13 -13
- package/esm2022/side-sheet/side-sheet-container.mjs +285 -0
- package/esm2022/side-sheet/side-sheet-ref.mjs +30 -0
- package/{esm2020 → esm2022}/side-sheet/side-sheet.config.mjs +2 -5
- package/esm2022/side-sheet/side-sheet.content-directives.mjs +206 -0
- package/esm2022/side-sheet/side-sheet.mjs +236 -0
- package/{esm2020 → esm2022}/side-sheet/side-sheet.module.mjs +14 -14
- package/esm2022/user-profile/user-profile-menu/user-profile-menu.component.mjs +25 -0
- package/esm2022/user-profile/user-profile.component.mjs +21 -0
- package/{esm2020 → esm2022}/user-profile/user-profile.module.mjs +15 -15
- package/{fesm2015 → fesm2022}/covalent-core-breadcrumbs.mjs +28 -22
- package/{fesm2015 → fesm2022}/covalent-core-breadcrumbs.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-core-common.mjs +1131 -1125
- package/fesm2022/covalent-core-common.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/covalent-core-dialogs.mjs +109 -80
- package/{fesm2020 → fesm2022}/covalent-core-dialogs.mjs.map +1 -1
- package/fesm2022/covalent-core-dynamic-menu.mjs +125 -0
- package/{fesm2015 → fesm2022}/covalent-core-dynamic-menu.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-core-file.mjs +148 -110
- package/{fesm2020 → fesm2022}/covalent-core-file.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-core-json-formatter.mjs +26 -21
- package/{fesm2020 → fesm2022}/covalent-core-json-formatter.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-core-layout.mjs +396 -271
- package/{fesm2015 → fesm2022}/covalent-core-layout.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-core-loading.mjs +100 -78
- package/{fesm2020 → fesm2022}/covalent-core-loading.mjs.map +1 -1
- package/{fesm2015 → fesm2022}/covalent-core-menu.mjs +7 -7
- package/{fesm2015 → fesm2022}/covalent-core-menu.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/covalent-core-message.mjs +42 -23
- package/{fesm2020 → fesm2022}/covalent-core-message.mjs.map +1 -1
- package/fesm2022/covalent-core-search.mjs +438 -0
- package/fesm2022/covalent-core-search.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/covalent-core-side-sheet.mjs +124 -99
- package/{fesm2020 → fesm2022}/covalent-core-side-sheet.mjs.map +1 -1
- package/fesm2022/covalent-core-user-profile.mjs +87 -0
- package/fesm2022/covalent-core-user-profile.mjs.map +1 -0
- package/file/directives/file-drop.directive.d.ts +1 -1
- package/file/directives/file-select.directive.d.ts +1 -1
- package/file/file-input/file-input.component.d.ts +1 -1
- package/file/file-upload/file-upload.component.d.ts +1 -1
- package/json-formatter/json-formatter.component.d.ts +1 -1
- package/layout/layout-card-over/layout-card-over.component.d.ts +1 -1
- package/layout/layout-footer/layout-footer.component.d.ts +1 -1
- package/layout/layout-manage-list/layout-manage-list.component.d.ts +1 -1
- package/layout/layout-manage-list/layout-manage-list.directives.d.ts +3 -3
- package/layout/layout-nav/layout-nav.component.d.ts +1 -1
- package/layout/layout-nav-list/layout-nav-list.component.d.ts +1 -1
- package/layout/layout-nav-list/layout-nav-list.directives.d.ts +3 -3
- package/layout/layout-toggle.class.d.ts +1 -1
- package/layout/layout.component.d.ts +1 -1
- package/layout/layout.directives.d.ts +3 -3
- package/layout/navigation-drawer/navigation-drawer.component.d.ts +1 -1
- package/loading/directives/loading.directive.d.ts +1 -1
- package/message/message.component.d.ts +1 -1
- package/package.json +55 -91
- package/search/search-box/search-box.component.d.ts +1 -1
- package/search/search-input/search-input.component.d.ts +1 -1
- package/side-sheet/side-sheet.content-directives.d.ts +2 -2
- package/user-profile/user-profile-menu/user-profile-menu.component.d.ts +1 -1
- package/user-profile/user-profile.component.d.ts +1 -1
- package/common/styles/font/README.md +0 -11
- package/dialogs/src/README.md +0 -223
- package/esm2020/breadcrumbs/breadcrumb/breadcrumb.component.mjs +0 -92
- package/esm2020/breadcrumbs/breadcrumbs.component.mjs +0 -131
- package/esm2020/common/behaviors/control-value-accesor.mixin.mjs +0 -41
- package/esm2020/common/behaviors/disable-ripple.mixin.mjs +0 -24
- package/esm2020/common/directives/fullscreen/fullscreen.directive.mjs +0 -85
- package/esm2020/common/forms/auto-trim/auto-trim.directive.mjs +0 -36
- package/esm2020/common/functions/convert.mjs +0 -84
- package/esm2020/common/functions/download.mjs +0 -75
- package/esm2020/common/pipes/bytes/bytes.pipe.mjs +0 -42
- package/esm2020/common/pipes/decimal-bytes/decimal-bytes.pipe.mjs +0 -42
- package/esm2020/common/pipes/digits/digits.pipe.mjs +0 -39
- package/esm2020/common/pipes/truncate/truncate.pipe.mjs +0 -27
- package/esm2020/common/services/icon.service.mjs +0 -1089
- package/esm2020/common/services/router-path.service.mjs +0 -29
- package/esm2020/dialogs/alert-dialog/alert-dialog.component.mjs +0 -23
- package/esm2020/dialogs/confirm-dialog/confirm-dialog.component.mjs +0 -28
- package/esm2020/dialogs/dialog.component.mjs +0 -57
- package/esm2020/dialogs/prompt-dialog/prompt-dialog.component.mjs +0 -75
- package/esm2020/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +0 -216
- package/esm2020/dialogs/services/dialog.service.mjs +0 -174
- package/esm2020/dialogs/window-dialog/window-dialog.component.mjs +0 -38
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +0 -30
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.mjs +0 -24
- package/esm2020/dynamic-menu/dynamic-menu.component.mjs +0 -28
- package/esm2020/file/directives/file-drop.directive.mjs +0 -139
- package/esm2020/file/directives/file-select.directive.mjs +0 -77
- package/esm2020/file/file-input/file-input.component.mjs +0 -128
- package/esm2020/file/file-upload/file-upload.component.mjs +0 -174
- package/esm2020/file/services/file.service.mjs +0 -64
- package/esm2020/json-formatter/json-formatter.component.mjs +0 -217
- package/esm2020/layout/layout-card-over/layout-card-over.component.mjs +0 -40
- package/esm2020/layout/layout-footer/layout-footer.component.mjs +0 -33
- package/esm2020/layout/layout-manage-list/layout-manage-list.component.mjs +0 -93
- package/esm2020/layout/layout-nav/layout-nav.component.mjs +0 -50
- package/esm2020/layout/layout-nav-list/layout-nav-list.component.mjs +0 -128
- package/esm2020/layout/layout-toggle.class.mjs +0 -92
- package/esm2020/layout/layout.component.mjs +0 -92
- package/esm2020/layout/navigation-drawer/navigation-drawer.component.mjs +0 -163
- package/esm2020/loading/directives/loading.directive.mjs +0 -126
- package/esm2020/loading/loading.component.mjs +0 -187
- package/esm2020/loading/services/loading.factory.mjs +0 -207
- package/esm2020/loading/services/loading.service.mjs +0 -213
- package/esm2020/message/message.component.mjs +0 -203
- package/esm2020/search/search-box/search-box.component.mjs +0 -194
- package/esm2020/search/search-input/search-input.component.mjs +0 -207
- package/esm2020/side-sheet/side-sheet-container.mjs +0 -274
- package/esm2020/side-sheet/side-sheet-ref.mjs +0 -26
- package/esm2020/side-sheet/side-sheet.content-directives.mjs +0 -201
- package/esm2020/side-sheet/side-sheet.mjs +0 -228
- package/esm2020/user-profile/user-profile-menu/user-profile-menu.component.mjs +0 -23
- package/esm2020/user-profile/user-profile.component.mjs +0 -19
- package/fesm2015/covalent-core-common.mjs +0 -2281
- package/fesm2015/covalent-core-common.mjs.map +0 -1
- package/fesm2015/covalent-core-dialogs.mjs +0 -668
- package/fesm2015/covalent-core-dialogs.mjs.map +0 -1
- package/fesm2015/covalent-core-dynamic-menu.mjs +0 -126
- package/fesm2015/covalent-core-file.mjs +0 -621
- package/fesm2015/covalent-core-file.mjs.map +0 -1
- package/fesm2015/covalent-core-json-formatter.mjs +0 -298
- package/fesm2015/covalent-core-json-formatter.mjs.map +0 -1
- package/fesm2015/covalent-core-layout.mjs +0 -1024
- package/fesm2015/covalent-core-loading.mjs +0 -766
- package/fesm2015/covalent-core-loading.mjs.map +0 -1
- package/fesm2015/covalent-core-message.mjs +0 -284
- package/fesm2015/covalent-core-message.mjs.map +0 -1
- package/fesm2015/covalent-core-search.mjs +0 -430
- package/fesm2015/covalent-core-search.mjs.map +0 -1
- package/fesm2015/covalent-core-side-sheet.mjs +0 -784
- package/fesm2015/covalent-core-side-sheet.mjs.map +0 -1
- package/fesm2015/covalent-core-user-profile.mjs +0 -83
- package/fesm2015/covalent-core-user-profile.mjs.map +0 -1
- package/fesm2020/covalent-core-breadcrumbs.mjs +0 -243
- package/fesm2020/covalent-core-breadcrumbs.mjs.map +0 -1
- package/fesm2020/covalent-core-common.mjs.map +0 -1
- package/fesm2020/covalent-core-dynamic-menu.mjs +0 -126
- package/fesm2020/covalent-core-dynamic-menu.mjs.map +0 -1
- package/fesm2020/covalent-core-layout.mjs.map +0 -1
- package/fesm2020/covalent-core-menu.mjs +0 -37
- package/fesm2020/covalent-core-menu.mjs.map +0 -1
- package/fesm2020/covalent-core-search.mjs +0 -427
- package/fesm2020/covalent-core-search.mjs.map +0 -1
- package/fesm2020/covalent-core-user-profile.mjs +0 -83
- package/fesm2020/covalent-core-user-profile.mjs.map +0 -1
- package/fesm2020/covalent-core.mjs +0 -4
- package/fesm2020/covalent-core.mjs.map +0 -1
- package/file/src/file-input/README.md +0 -147
- package/file/src/file-upload/README.md +0 -136
- package/layout/src/layout-card-over/README.md +0 -43
- package/layout/src/layout-manage-list/README.md +0 -80
- package/layout/src/layout-nav/README.md +0 -50
- package/layout/src/layout-nav-list/README.md +0 -105
- package/search/src/search-box/README.md +0 -73
- package/search/src/search-input/README.md +0 -74
- /package/{esm2020 → esm2022}/breadcrumbs/covalent-core-breadcrumbs.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumbs/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/common/animations/bounce/bounce.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/common/animations/collapse/collapse.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/common/animations/common/interfaces.mjs +0 -0
- /package/{esm2020 → esm2022}/common/animations/fade/fadeInOut.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/common/animations/flash/flash.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/common/animations/headshake/headshake.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/common/animations/jello/jello.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/common/animations/pulse/pulse.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/common/animations/rotate/rotate.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/common/covalent-core-common.mjs +0 -0
- /package/{esm2020 → esm2022}/common/forms/validators/validators.mjs +0 -0
- /package/{esm2020 → esm2022}/common/functions/clipboard.mjs +0 -0
- /package/{esm2020 → esm2022}/common/functions/file.mjs +0 -0
- /package/{esm2020 → esm2022}/common/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/covalent-core.mjs +0 -0
- /package/{esm2020 → esm2022}/dialogs/covalent-core-dialogs.mjs +0 -0
- /package/{esm2020 → esm2022}/dialogs/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/dynamic-menu/covalent-core-dynamic-menu.mjs +0 -0
- /package/{esm2020 → esm2022}/dynamic-menu/dynamic-menu.menu.mjs +0 -0
- /package/{esm2020 → esm2022}/dynamic-menu/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/file/covalent-core-file.mjs +0 -0
- /package/{esm2020 → esm2022}/file/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/json-formatter/collapse.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/json-formatter/covalent-core-json-formatter.mjs +0 -0
- /package/{esm2020 → esm2022}/json-formatter/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/layout/covalent-core-layout.mjs +0 -0
- /package/{esm2020 → esm2022}/layout/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/loading/covalent-core-loading.mjs +0 -0
- /package/{esm2020 → esm2022}/loading/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/menu/covalent-core-menu.mjs +0 -0
- /package/{esm2020 → esm2022}/menu/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/message/collapse.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/message/covalent-core-message.mjs +0 -0
- /package/{esm2020 → esm2022}/message/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/search/covalent-core-search.mjs +0 -0
- /package/{esm2020 → esm2022}/search/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/side-sheet/covalent-core-side-sheet.mjs +0 -0
- /package/{esm2020 → esm2022}/side-sheet/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/side-sheet/side-sheet.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/user-profile/covalent-core-user-profile.mjs +0 -0
- /package/{esm2020 → esm2022}/user-profile/public_api.mjs +0 -0
- /package/{fesm2015 → fesm2022}/covalent-core.mjs +0 -0
- /package/{fesm2015 → fesm2022}/covalent-core.mjs.map +0 -0
@@ -11,6 +11,7 @@ import { Subject } from 'rxjs';
|
|
11
11
|
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
12
12
|
|
13
13
|
class TdAutoTrimDirective {
|
14
|
+
_model;
|
14
15
|
constructor(_model) {
|
15
16
|
this._model = _model;
|
16
17
|
}
|
@@ -24,10 +25,10 @@ class TdAutoTrimDirective {
|
|
24
25
|
this._model.update.emit(this._model.value.trim());
|
25
26
|
}
|
26
27
|
}
|
28
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdAutoTrimDirective, deps: [{ token: i1.NgModel, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
29
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: TdAutoTrimDirective, selector: "[tdAutoTrim]", host: { listeners: { "blur": "onBlur($event)" } }, ngImport: i0 });
|
27
30
|
}
|
28
|
-
|
29
|
-
TdAutoTrimDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.5", type: TdAutoTrimDirective, selector: "[tdAutoTrim]", host: { listeners: { "blur": "onBlur($event)" } }, ngImport: i0 });
|
30
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdAutoTrimDirective, decorators: [{
|
31
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdAutoTrimDirective, decorators: [{
|
31
32
|
type: Directive,
|
32
33
|
args: [{
|
33
34
|
selector: '[tdAutoTrim]',
|
@@ -42,10 +43,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImpor
|
|
42
43
|
}] } });
|
43
44
|
|
44
45
|
class TdFullscreenDirective {
|
46
|
+
_document;
|
47
|
+
_el;
|
48
|
+
fullScreenIsActive = false;
|
45
49
|
constructor(_document, _el) {
|
46
50
|
this._document = _document;
|
47
51
|
this._el = _el;
|
48
|
-
this.fullScreenIsActive = false;
|
49
52
|
}
|
50
53
|
fsChangeHandler(event) {
|
51
54
|
this.fullScreenIsActive = event.srcElement === this._getFullScreenElement();
|
@@ -97,10 +100,10 @@ class TdFullscreenDirective {
|
|
97
100
|
}
|
98
101
|
return undefined;
|
99
102
|
}
|
103
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdFullscreenDirective, deps: [{ token: DOCUMENT }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
104
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: TdFullscreenDirective, selector: "[tdFullScreen]", host: { listeners: { "document:fullscreenchange": "fsChangeHandler($event)", "document:webkitfullscreenchange": "fsChangeHandler($event)", "document:mozfullscreenchange": "fsChangeHandler($event)", "document:msfullscreenchange": "fsChangeHandler($event)" } }, exportAs: ["tdFullScreen"], ngImport: i0 });
|
100
105
|
}
|
101
|
-
|
102
|
-
TdFullscreenDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.5", type: TdFullscreenDirective, selector: "[tdFullScreen]", host: { listeners: { "document:fullscreenchange": "fsChangeHandler($event)", "document:webkitfullscreenchange": "fsChangeHandler($event)", "document:mozfullscreenchange": "fsChangeHandler($event)", "document:msfullscreenchange": "fsChangeHandler($event)" } }, exportAs: ["tdFullScreen"], ngImport: i0 });
|
103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdFullscreenDirective, decorators: [{
|
106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdFullscreenDirective, decorators: [{
|
104
107
|
type: Directive,
|
105
108
|
args: [{
|
106
109
|
selector: '[tdFullScreen]',
|
@@ -183,10 +186,10 @@ class TdTimeAgoPipe {
|
|
183
186
|
return Math.floor(diff) + ' years ago';
|
184
187
|
}
|
185
188
|
}
|
189
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdTimeAgoPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
190
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: TdTimeAgoPipe, name: "timeAgo" });
|
186
191
|
}
|
187
|
-
|
188
|
-
TdTimeAgoPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: TdTimeAgoPipe, name: "timeAgo" });
|
189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdTimeAgoPipe, decorators: [{
|
192
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdTimeAgoPipe, decorators: [{
|
190
193
|
type: Pipe,
|
191
194
|
args: [{
|
192
195
|
name: 'timeAgo',
|
@@ -232,10 +235,10 @@ class TdTimeDifferencePipe {
|
|
232
235
|
pad.substring(0, pad.length - (seconds + '').length) +
|
233
236
|
seconds);
|
234
237
|
}
|
238
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdTimeDifferencePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
239
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: TdTimeDifferencePipe, name: "timeDifference" });
|
235
240
|
}
|
236
|
-
|
237
|
-
TdTimeDifferencePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: TdTimeDifferencePipe, name: "timeDifference" });
|
238
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdTimeDifferencePipe, decorators: [{
|
241
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdTimeDifferencePipe, decorators: [{
|
239
242
|
type: Pipe,
|
240
243
|
args: [{
|
241
244
|
name: 'timeDifference',
|
@@ -302,10 +305,10 @@ class TdTimeUntilPipe {
|
|
302
305
|
return 'in ' + Math.floor(diff) + ' years';
|
303
306
|
}
|
304
307
|
}
|
308
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdTimeUntilPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
309
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: TdTimeUntilPipe, name: "timeUntil" });
|
305
310
|
}
|
306
|
-
|
307
|
-
TdTimeUntilPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: TdTimeUntilPipe, name: "timeUntil" });
|
308
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdTimeUntilPipe, decorators: [{
|
311
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdTimeUntilPipe, decorators: [{
|
309
312
|
type: Pipe,
|
310
313
|
args: [{
|
311
314
|
name: 'timeUntil',
|
@@ -342,10 +345,10 @@ class TdBytesPipe {
|
|
342
345
|
}
|
343
346
|
return (parseFloat((bytes / Math.pow(k, i)).toFixed(precision)) + ' ' + sizes[i]);
|
344
347
|
}
|
348
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdBytesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
349
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: TdBytesPipe, name: "bytes" });
|
345
350
|
}
|
346
|
-
|
347
|
-
TdBytesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: TdBytesPipe, name: "bytes" });
|
348
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdBytesPipe, decorators: [{
|
351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdBytesPipe, decorators: [{
|
349
352
|
type: Pipe,
|
350
353
|
args: [{
|
351
354
|
name: 'bytes',
|
@@ -382,10 +385,10 @@ class TdDecimalBytesPipe {
|
|
382
385
|
}
|
383
386
|
return (parseFloat((bytes / Math.pow(k, i)).toFixed(precision)) + ' ' + sizes[i]);
|
384
387
|
}
|
388
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdDecimalBytesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
389
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: TdDecimalBytesPipe, name: "decimalBytes" });
|
385
390
|
}
|
386
|
-
|
387
|
-
TdDecimalBytesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: TdDecimalBytesPipe, name: "decimalBytes" });
|
388
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdDecimalBytesPipe, decorators: [{
|
391
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdDecimalBytesPipe, decorators: [{
|
389
392
|
type: Pipe,
|
390
393
|
args: [{
|
391
394
|
name: 'decimalBytes',
|
@@ -393,6 +396,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImpor
|
|
393
396
|
}] });
|
394
397
|
|
395
398
|
class TdDigitsPipe {
|
399
|
+
_locale;
|
400
|
+
_decimalPipe;
|
396
401
|
constructor(_locale = 'en') {
|
397
402
|
this._locale = _locale;
|
398
403
|
this._decimalPipe = new DecimalPipe(this._locale);
|
@@ -415,10 +420,10 @@ class TdDigitsPipe {
|
|
415
420
|
const size = sizes[i];
|
416
421
|
return (this._decimalPipe.transform(parseFloat((digits / Math.pow(k, i)).toFixed(precision))) + (size ? ' ' + size : ''));
|
417
422
|
}
|
423
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdDigitsPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe });
|
424
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: TdDigitsPipe, name: "digits" });
|
418
425
|
}
|
419
|
-
|
420
|
-
TdDigitsPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: TdDigitsPipe, name: "digits" });
|
421
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdDigitsPipe, decorators: [{
|
426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdDigitsPipe, decorators: [{
|
422
427
|
type: Pipe,
|
423
428
|
args: [{
|
424
429
|
name: 'digits',
|
@@ -443,10 +448,10 @@ class TdTruncatePipe {
|
|
443
448
|
}
|
444
449
|
return truncated;
|
445
450
|
}
|
451
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdTruncatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
452
|
+
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: TdTruncatePipe, name: "truncate" });
|
446
453
|
}
|
447
|
-
|
448
|
-
TdTruncatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: TdTruncatePipe, name: "truncate" });
|
449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: TdTruncatePipe, decorators: [{
|
454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TdTruncatePipe, decorators: [{
|
450
455
|
type: Pipe,
|
451
456
|
args: [{
|
452
457
|
name: 'truncate',
|
@@ -454,6 +459,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImpor
|
|
454
459
|
}] });
|
455
460
|
|
456
461
|
class RouterPathService {
|
462
|
+
_router;
|
463
|
+
static _previousRoute = '/';
|
457
464
|
constructor(_router) {
|
458
465
|
this._router = _router;
|
459
466
|
this._router.events
|
@@ -469,11 +476,10 @@ class RouterPathService {
|
|
469
476
|
getPreviousRoute() {
|
470
477
|
return RouterPathService._previousRoute;
|
471
478
|
}
|
479
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RouterPathService, deps: [{ token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
480
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RouterPathService });
|
472
481
|
}
|
473
|
-
|
474
|
-
RouterPathService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: RouterPathService, deps: [{ token: i1$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
475
|
-
RouterPathService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: RouterPathService });
|
476
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: RouterPathService, decorators: [{
|
482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RouterPathService, decorators: [{
|
477
483
|
type: Injectable
|
478
484
|
}], ctorParameters: function () { return [{ type: i1$1.Router }]; } });
|
479
485
|
|
@@ -482,1073 +488,1071 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImpor
|
|
482
488
|
* TERADATA CORPORATION CONFIDENTIAL AND TRADE SECRET
|
483
489
|
*/
|
484
490
|
class IconService {
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1252
|
-
|
1253
|
-
|
1254
|
-
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1268
|
-
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1273
|
-
|
1274
|
-
|
1275
|
-
|
1276
|
-
|
1277
|
-
|
1278
|
-
|
1279
|
-
|
1280
|
-
|
1281
|
-
|
1282
|
-
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
|
1299
|
-
|
1300
|
-
|
1301
|
-
|
1302
|
-
|
1303
|
-
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1322
|
-
|
1323
|
-
|
1324
|
-
|
1325
|
-
|
1326
|
-
|
1327
|
-
|
1328
|
-
|
1329
|
-
|
1330
|
-
|
1331
|
-
|
1332
|
-
|
1333
|
-
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1348
|
-
|
1349
|
-
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1353
|
-
|
1354
|
-
|
1355
|
-
|
1356
|
-
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1366
|
-
|
1367
|
-
|
1368
|
-
|
1369
|
-
|
1370
|
-
|
1371
|
-
|
1372
|
-
|
1373
|
-
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
|
1378
|
-
|
1379
|
-
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1396
|
-
|
1397
|
-
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1401
|
-
|
1402
|
-
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1419
|
-
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1429
|
-
|
1430
|
-
|
1431
|
-
|
1432
|
-
|
1433
|
-
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1440
|
-
|
1441
|
-
|
1442
|
-
|
1443
|
-
|
1444
|
-
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1451
|
-
|
1452
|
-
|
1453
|
-
|
1454
|
-
|
1455
|
-
|
1456
|
-
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
|
1493
|
-
|
1494
|
-
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1503
|
-
|
1504
|
-
|
1505
|
-
|
1506
|
-
|
1507
|
-
|
1508
|
-
|
1509
|
-
|
1510
|
-
|
1511
|
-
|
1512
|
-
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
|
1527
|
-
|
1528
|
-
|
1529
|
-
|
1530
|
-
|
1531
|
-
|
1532
|
-
|
1533
|
-
|
1534
|
-
|
1535
|
-
|
1536
|
-
|
1537
|
-
|
1538
|
-
|
1539
|
-
|
1540
|
-
|
1541
|
-
|
1542
|
-
|
1543
|
-
|
1544
|
-
|
1545
|
-
|
1546
|
-
|
1547
|
-
|
1548
|
-
|
1549
|
-
|
1550
|
-
];
|
1551
|
-
}
|
491
|
+
// To update, run this little script on https://material.io/resources/icons/?style=baseline
|
492
|
+
// JSON.stringify(
|
493
|
+
// Array.from(document.querySelectorAll('icons-library .material-icons.icon-image-preview')).map(
|
494
|
+
// ({textContent}) => textContent
|
495
|
+
// )
|
496
|
+
// );
|
497
|
+
_icons = [
|
498
|
+
'3d_rotation',
|
499
|
+
'accessibility',
|
500
|
+
'accessibility_new',
|
501
|
+
'accessible',
|
502
|
+
'accessible_forward',
|
503
|
+
'account_balance',
|
504
|
+
'account_balance_wallet',
|
505
|
+
'account_box',
|
506
|
+
'account_circle',
|
507
|
+
'add_shopping_cart',
|
508
|
+
'alarm',
|
509
|
+
'alarm_add',
|
510
|
+
'alarm_off',
|
511
|
+
'alarm_on',
|
512
|
+
'all_inbox',
|
513
|
+
'all_out',
|
514
|
+
'android',
|
515
|
+
'announcement',
|
516
|
+
'arrow_right_alt',
|
517
|
+
'aspect_ratio',
|
518
|
+
'assessment',
|
519
|
+
'assignment',
|
520
|
+
'assignment_ind',
|
521
|
+
'assignment_late',
|
522
|
+
'assignment_return',
|
523
|
+
'assignment_returned',
|
524
|
+
'assignment_turned_in',
|
525
|
+
'autorenew',
|
526
|
+
'backup',
|
527
|
+
'book',
|
528
|
+
'bookmark',
|
529
|
+
'bookmark_border',
|
530
|
+
'bookmarks',
|
531
|
+
'bug_report',
|
532
|
+
'build',
|
533
|
+
'cached',
|
534
|
+
'calendar_today',
|
535
|
+
'calendar_view_day',
|
536
|
+
'camera_enhance',
|
537
|
+
'cancel_schedule_send',
|
538
|
+
'card_giftcard',
|
539
|
+
'card_membership',
|
540
|
+
'card_travel',
|
541
|
+
'change_history',
|
542
|
+
'check_circle',
|
543
|
+
'check_circle_outline',
|
544
|
+
'chrome_reader_mode',
|
545
|
+
'class',
|
546
|
+
'code',
|
547
|
+
'commute',
|
548
|
+
'compare_arrows',
|
549
|
+
'contact_support',
|
550
|
+
'contactless',
|
551
|
+
'copyright',
|
552
|
+
'credit_card',
|
553
|
+
'dashboard',
|
554
|
+
'date_range',
|
555
|
+
'delete',
|
556
|
+
'delete_forever',
|
557
|
+
'delete_outline',
|
558
|
+
'description',
|
559
|
+
'dns',
|
560
|
+
'done',
|
561
|
+
'done_all',
|
562
|
+
'done_outline',
|
563
|
+
'donut_large',
|
564
|
+
'donut_small',
|
565
|
+
'drag_indicator',
|
566
|
+
'eco',
|
567
|
+
'eject',
|
568
|
+
'euro_symbol',
|
569
|
+
'event',
|
570
|
+
'event_seat',
|
571
|
+
'exit_to_app',
|
572
|
+
'explore',
|
573
|
+
'explore_off',
|
574
|
+
'extension',
|
575
|
+
'face',
|
576
|
+
'favorite',
|
577
|
+
'favorite_border',
|
578
|
+
'feedback',
|
579
|
+
'find_in_page',
|
580
|
+
'find_replace',
|
581
|
+
'fingerprint',
|
582
|
+
'flight_land',
|
583
|
+
'flight_takeoff',
|
584
|
+
'flip_to_back',
|
585
|
+
'flip_to_front',
|
586
|
+
'g_translate',
|
587
|
+
'gavel',
|
588
|
+
'get_app',
|
589
|
+
'gif',
|
590
|
+
'grade',
|
591
|
+
'group_work',
|
592
|
+
'help',
|
593
|
+
'help_outline',
|
594
|
+
'highlight_off',
|
595
|
+
'history',
|
596
|
+
'home',
|
597
|
+
'horizontal_split',
|
598
|
+
'hourglass_empty',
|
599
|
+
'hourglass_full',
|
600
|
+
'http',
|
601
|
+
'https',
|
602
|
+
'important_devices',
|
603
|
+
'info',
|
604
|
+
'input',
|
605
|
+
'invert_colors',
|
606
|
+
'label',
|
607
|
+
'label_important',
|
608
|
+
'label_off',
|
609
|
+
'language',
|
610
|
+
'launch',
|
611
|
+
'line_style',
|
612
|
+
'line_weight',
|
613
|
+
'list',
|
614
|
+
'lock',
|
615
|
+
'lock_open',
|
616
|
+
'loyalty',
|
617
|
+
'markunread_mailbox',
|
618
|
+
'maximize',
|
619
|
+
'minimize',
|
620
|
+
'motorcycle',
|
621
|
+
'note_add',
|
622
|
+
'offline_bolt',
|
623
|
+
'offline_pin',
|
624
|
+
'opacity',
|
625
|
+
'open_in_browser',
|
626
|
+
'open_in_new',
|
627
|
+
'open_with',
|
628
|
+
'pageview',
|
629
|
+
'pan_tool',
|
630
|
+
'payment',
|
631
|
+
'perm_camera_mic',
|
632
|
+
'perm_contact_calendar',
|
633
|
+
'perm_data_setting',
|
634
|
+
'perm_device_information',
|
635
|
+
'perm_identity',
|
636
|
+
'perm_media',
|
637
|
+
'perm_phone_msg',
|
638
|
+
'perm_scan_wifi',
|
639
|
+
'pets',
|
640
|
+
'picture_in_picture',
|
641
|
+
'picture_in_picture_alt',
|
642
|
+
'play_for_work',
|
643
|
+
'polymer',
|
644
|
+
'power_settings_new',
|
645
|
+
'pregnant_woman',
|
646
|
+
'print',
|
647
|
+
'query_builder',
|
648
|
+
'question_answer',
|
649
|
+
'receipt',
|
650
|
+
'record_voice_over',
|
651
|
+
'redeem',
|
652
|
+
'remove_shopping_cart',
|
653
|
+
'reorder',
|
654
|
+
'report_problem',
|
655
|
+
'restore',
|
656
|
+
'restore_from_trash',
|
657
|
+
'restore_page',
|
658
|
+
'room',
|
659
|
+
'rounded_corner',
|
660
|
+
'rowing',
|
661
|
+
'schedule',
|
662
|
+
'search',
|
663
|
+
'settings_applications',
|
664
|
+
'settings_backup_restore',
|
665
|
+
'settings_bluetooth',
|
666
|
+
'settings_brightness',
|
667
|
+
'settings_cell',
|
668
|
+
'settings_ethernet',
|
669
|
+
'settings_input_antenna',
|
670
|
+
'settings_input_component',
|
671
|
+
'settings_input_composite',
|
672
|
+
'settings_input_hdmi',
|
673
|
+
'settings_input_svideo',
|
674
|
+
'settings_overscan',
|
675
|
+
'settings_phone',
|
676
|
+
'settings_power',
|
677
|
+
'settings_remote',
|
678
|
+
'settings_voice',
|
679
|
+
'shop',
|
680
|
+
'shop_two',
|
681
|
+
'shopping_basket',
|
682
|
+
'shopping_cart',
|
683
|
+
'speaker_notes',
|
684
|
+
'speaker_notes_off',
|
685
|
+
'spellcheck',
|
686
|
+
'stars',
|
687
|
+
'store',
|
688
|
+
'subject',
|
689
|
+
'supervised_user_circle',
|
690
|
+
'supervisor_account',
|
691
|
+
'swap_horiz',
|
692
|
+
'swap_horizontal_circle',
|
693
|
+
'swap_vert',
|
694
|
+
'swap_vertical_circle',
|
695
|
+
'sync_alt',
|
696
|
+
'system_update_alt',
|
697
|
+
'tab',
|
698
|
+
'tab_unselected',
|
699
|
+
'text_rotate_up',
|
700
|
+
'text_rotate_vertical',
|
701
|
+
'text_rotation_angledown',
|
702
|
+
'text_rotation_angleup',
|
703
|
+
'text_rotation_down',
|
704
|
+
'text_rotation_none',
|
705
|
+
'theaters',
|
706
|
+
'thumb_down',
|
707
|
+
'thumb_up',
|
708
|
+
'thumbs_up_down',
|
709
|
+
'timeline',
|
710
|
+
'toc',
|
711
|
+
'today',
|
712
|
+
'toll',
|
713
|
+
'touch_app',
|
714
|
+
'track_changes',
|
715
|
+
'translate',
|
716
|
+
'trending_down',
|
717
|
+
'trending_flat',
|
718
|
+
'trending_up',
|
719
|
+
'turned_in',
|
720
|
+
'turned_in_not',
|
721
|
+
'update',
|
722
|
+
'verified_user',
|
723
|
+
'vertical_split',
|
724
|
+
'view_agenda',
|
725
|
+
'view_array',
|
726
|
+
'view_carousel',
|
727
|
+
'view_column',
|
728
|
+
'view_day',
|
729
|
+
'view_headline',
|
730
|
+
'view_list',
|
731
|
+
'view_module',
|
732
|
+
'view_quilt',
|
733
|
+
'view_stream',
|
734
|
+
'view_week',
|
735
|
+
'visibility',
|
736
|
+
'visibility_off',
|
737
|
+
'voice_over_off',
|
738
|
+
'watch_later',
|
739
|
+
'work',
|
740
|
+
'work_off',
|
741
|
+
'work_outline',
|
742
|
+
'youtube_searched_for',
|
743
|
+
'zoom_in',
|
744
|
+
'zoom_out',
|
745
|
+
'add_alert',
|
746
|
+
'error',
|
747
|
+
'error_outline',
|
748
|
+
'notification_important',
|
749
|
+
'warning',
|
750
|
+
'4k',
|
751
|
+
'add_to_queue',
|
752
|
+
'airplay',
|
753
|
+
'album',
|
754
|
+
'art_track',
|
755
|
+
'av_timer',
|
756
|
+
'branding_watermark',
|
757
|
+
'call_to_action',
|
758
|
+
'closed_caption',
|
759
|
+
'control_camera',
|
760
|
+
'equalizer',
|
761
|
+
'explicit',
|
762
|
+
'fast_forward',
|
763
|
+
'fast_rewind',
|
764
|
+
'featured_play_list',
|
765
|
+
'featured_video',
|
766
|
+
'fiber_dvr',
|
767
|
+
'fiber_manual_record',
|
768
|
+
'fiber_new',
|
769
|
+
'fiber_pin',
|
770
|
+
'fiber_smart_record',
|
771
|
+
'forward_10',
|
772
|
+
'forward_30',
|
773
|
+
'forward_5',
|
774
|
+
'games',
|
775
|
+
'hd',
|
776
|
+
'hearing',
|
777
|
+
'high_quality',
|
778
|
+
'library_add',
|
779
|
+
'library_books',
|
780
|
+
'library_music',
|
781
|
+
'loop',
|
782
|
+
'mic',
|
783
|
+
'mic_none',
|
784
|
+
'mic_off',
|
785
|
+
'missed_video_call',
|
786
|
+
'movie',
|
787
|
+
'music_video',
|
788
|
+
'new_releases',
|
789
|
+
'not_interested',
|
790
|
+
'note',
|
791
|
+
'pause',
|
792
|
+
'pause_circle_filled',
|
793
|
+
'pause_circle_outline',
|
794
|
+
'play_arrow',
|
795
|
+
'play_circle_filled',
|
796
|
+
'play_circle_outline',
|
797
|
+
'playlist_add',
|
798
|
+
'playlist_add_check',
|
799
|
+
'playlist_play',
|
800
|
+
'queue',
|
801
|
+
'queue_music',
|
802
|
+
'queue_play_next',
|
803
|
+
'radio',
|
804
|
+
'recent_actors',
|
805
|
+
'remove_from_queue',
|
806
|
+
'repeat',
|
807
|
+
'repeat_one',
|
808
|
+
'replay',
|
809
|
+
'replay_10',
|
810
|
+
'replay_30',
|
811
|
+
'replay_5',
|
812
|
+
'shuffle',
|
813
|
+
'skip_next',
|
814
|
+
'skip_previous',
|
815
|
+
'slow_motion_video',
|
816
|
+
'snooze',
|
817
|
+
'sort_by_alpha',
|
818
|
+
'speed',
|
819
|
+
'stop',
|
820
|
+
'subscriptions',
|
821
|
+
'subtitles',
|
822
|
+
'surround_sound',
|
823
|
+
'video_call',
|
824
|
+
'video_label',
|
825
|
+
'video_library',
|
826
|
+
'videocam',
|
827
|
+
'videocam_off',
|
828
|
+
'volume_down',
|
829
|
+
'volume_mute',
|
830
|
+
'volume_off',
|
831
|
+
'volume_up',
|
832
|
+
'web',
|
833
|
+
'web_asset',
|
834
|
+
'business',
|
835
|
+
'call',
|
836
|
+
'call_end',
|
837
|
+
'call_made',
|
838
|
+
'call_merge',
|
839
|
+
'call_missed',
|
840
|
+
'call_missed_outgoing',
|
841
|
+
'call_received',
|
842
|
+
'call_split',
|
843
|
+
'cancel_presentation',
|
844
|
+
'chat',
|
845
|
+
'chat_bubble',
|
846
|
+
'chat_bubble_outline',
|
847
|
+
'clear_all',
|
848
|
+
'comment',
|
849
|
+
'contact_mail',
|
850
|
+
'contact_phone',
|
851
|
+
'contacts',
|
852
|
+
'desktop_access_disabled',
|
853
|
+
'dialer_sip',
|
854
|
+
'dialpad',
|
855
|
+
'domain_disabled',
|
856
|
+
'duo',
|
857
|
+
'email',
|
858
|
+
'forum',
|
859
|
+
'import_contacts',
|
860
|
+
'import_export',
|
861
|
+
'invert_colors_off',
|
862
|
+
'list_alt',
|
863
|
+
'live_help',
|
864
|
+
'mail_outline',
|
865
|
+
'message',
|
866
|
+
'mobile_screen_share',
|
867
|
+
'no_sim',
|
868
|
+
'pause_presentation',
|
869
|
+
'person_add_disabled',
|
870
|
+
'phone',
|
871
|
+
'phone_disabled',
|
872
|
+
'phone_enabled',
|
873
|
+
'phonelink_erase',
|
874
|
+
'phonelink_lock',
|
875
|
+
'phonelink_ring',
|
876
|
+
'phonelink_setup',
|
877
|
+
'portable_wifi_off',
|
878
|
+
'present_to_all',
|
879
|
+
'print_disabled',
|
880
|
+
'ring_volume',
|
881
|
+
'rss_feed',
|
882
|
+
'screen_share',
|
883
|
+
'sentiment_satisfied_alt',
|
884
|
+
'speaker_phone',
|
885
|
+
'stay_current_landscape',
|
886
|
+
'stay_current_portrait',
|
887
|
+
'stay_primary_landscape',
|
888
|
+
'stay_primary_portrait',
|
889
|
+
'stop_screen_share',
|
890
|
+
'swap_calls',
|
891
|
+
'textsms',
|
892
|
+
'unsubscribe',
|
893
|
+
'voicemail',
|
894
|
+
'vpn_key',
|
895
|
+
'add',
|
896
|
+
'add_box',
|
897
|
+
'add_circle',
|
898
|
+
'add_circle_outline',
|
899
|
+
'amp_stories',
|
900
|
+
'archive',
|
901
|
+
'backspace',
|
902
|
+
'ballot',
|
903
|
+
'block',
|
904
|
+
'clear',
|
905
|
+
'create',
|
906
|
+
'delete_sweep',
|
907
|
+
'drafts',
|
908
|
+
'dynamic_feed',
|
909
|
+
'file_copy',
|
910
|
+
'filter_list',
|
911
|
+
'flag',
|
912
|
+
'font_download',
|
913
|
+
'forward',
|
914
|
+
'gesture',
|
915
|
+
'how_to_reg',
|
916
|
+
'how_to_vote',
|
917
|
+
'inbox',
|
918
|
+
'link',
|
919
|
+
'link_off',
|
920
|
+
'low_priority',
|
921
|
+
'mail',
|
922
|
+
'markunread',
|
923
|
+
'move_to_inbox',
|
924
|
+
'next_week',
|
925
|
+
'outlined_flag',
|
926
|
+
'policy',
|
927
|
+
'redo',
|
928
|
+
'remove',
|
929
|
+
'remove_circle',
|
930
|
+
'remove_circle_outline',
|
931
|
+
'reply',
|
932
|
+
'reply_all',
|
933
|
+
'report',
|
934
|
+
'report_off',
|
935
|
+
'save',
|
936
|
+
'save_alt',
|
937
|
+
'select_all',
|
938
|
+
'send',
|
939
|
+
'sort',
|
940
|
+
'square_foot',
|
941
|
+
'text_format',
|
942
|
+
'unarchive',
|
943
|
+
'undo',
|
944
|
+
'waves',
|
945
|
+
'where_to_vote',
|
946
|
+
'access_alarm',
|
947
|
+
'access_alarms',
|
948
|
+
'access_time',
|
949
|
+
'add_alarm',
|
950
|
+
'add_to_home_screen',
|
951
|
+
'airplanemode_active',
|
952
|
+
'airplanemode_inactive',
|
953
|
+
'battery_alert',
|
954
|
+
'battery_charging_full',
|
955
|
+
'battery_full',
|
956
|
+
'battery_std',
|
957
|
+
'battery_unknown',
|
958
|
+
'bluetooth',
|
959
|
+
'bluetooth_connected',
|
960
|
+
'bluetooth_disabled',
|
961
|
+
'bluetooth_searching',
|
962
|
+
'brightness_auto',
|
963
|
+
'brightness_high',
|
964
|
+
'brightness_low',
|
965
|
+
'brightness_medium',
|
966
|
+
'data_usage',
|
967
|
+
'developer_mode',
|
968
|
+
'devices',
|
969
|
+
'dvr',
|
970
|
+
'gps_fixed',
|
971
|
+
'gps_not_fixed',
|
972
|
+
'gps_off',
|
973
|
+
'graphic_eq',
|
974
|
+
'location_disabled',
|
975
|
+
'location_searching',
|
976
|
+
'mobile_friendly',
|
977
|
+
'mobile_off',
|
978
|
+
'nfc',
|
979
|
+
'screen_lock_landscape',
|
980
|
+
'screen_lock_portrait',
|
981
|
+
'screen_lock_rotation',
|
982
|
+
'screen_rotation',
|
983
|
+
'sd_storage',
|
984
|
+
'settings_system_daydream',
|
985
|
+
'signal_cellular_4_bar',
|
986
|
+
'signal_cellular_alt',
|
987
|
+
'signal_cellular_connected_no_internet_4_bar',
|
988
|
+
'signal_cellular_no_sim',
|
989
|
+
'signal_cellular_null',
|
990
|
+
'signal_cellular_off',
|
991
|
+
'signal_wifi_4_bar',
|
992
|
+
'signal_wifi_4_bar_lock',
|
993
|
+
'signal_wifi_off',
|
994
|
+
'storage',
|
995
|
+
'usb',
|
996
|
+
'wallpaper',
|
997
|
+
'widgets',
|
998
|
+
'wifi_lock',
|
999
|
+
'wifi_tethering',
|
1000
|
+
'add_comment',
|
1001
|
+
'attach_file',
|
1002
|
+
'attach_money',
|
1003
|
+
'bar_chart',
|
1004
|
+
'border_all',
|
1005
|
+
'border_bottom',
|
1006
|
+
'border_clear',
|
1007
|
+
'border_horizontal',
|
1008
|
+
'border_inner',
|
1009
|
+
'border_left',
|
1010
|
+
'border_outer',
|
1011
|
+
'border_right',
|
1012
|
+
'border_style',
|
1013
|
+
'border_top',
|
1014
|
+
'border_vertical',
|
1015
|
+
'bubble_chart',
|
1016
|
+
'drag_handle',
|
1017
|
+
'format_align_center',
|
1018
|
+
'format_align_justify',
|
1019
|
+
'format_align_left',
|
1020
|
+
'format_align_right',
|
1021
|
+
'format_bold',
|
1022
|
+
'format_clear',
|
1023
|
+
'format_color_reset',
|
1024
|
+
'format_indent_decrease',
|
1025
|
+
'format_indent_increase',
|
1026
|
+
'format_italic',
|
1027
|
+
'format_line_spacing',
|
1028
|
+
'format_list_bulleted',
|
1029
|
+
'format_list_numbered',
|
1030
|
+
'format_list_numbered_rtl',
|
1031
|
+
'format_paint',
|
1032
|
+
'format_quote',
|
1033
|
+
'format_shapes',
|
1034
|
+
'format_size',
|
1035
|
+
'format_strikethrough',
|
1036
|
+
'format_textdirection_l_to_r',
|
1037
|
+
'format_textdirection_r_to_l',
|
1038
|
+
'format_underlined',
|
1039
|
+
'functions',
|
1040
|
+
'height',
|
1041
|
+
'highlight',
|
1042
|
+
'insert_chart',
|
1043
|
+
'insert_chart_outlined',
|
1044
|
+
'insert_comment',
|
1045
|
+
'insert_drive_file',
|
1046
|
+
'insert_emoticon',
|
1047
|
+
'insert_invitation',
|
1048
|
+
'insert_link',
|
1049
|
+
'insert_photo',
|
1050
|
+
'linear_scale',
|
1051
|
+
'merge_type',
|
1052
|
+
'mode_comment',
|
1053
|
+
'monetization_on',
|
1054
|
+
'money_off',
|
1055
|
+
'multiline_chart',
|
1056
|
+
'notes',
|
1057
|
+
'pie_chart',
|
1058
|
+
'post_add',
|
1059
|
+
'publish',
|
1060
|
+
'scatter_plot',
|
1061
|
+
'score',
|
1062
|
+
'short_text',
|
1063
|
+
'show_chart',
|
1064
|
+
'space_bar',
|
1065
|
+
'strikethrough_s',
|
1066
|
+
'table_chart',
|
1067
|
+
'text_fields',
|
1068
|
+
'title',
|
1069
|
+
'vertical_align_bottom',
|
1070
|
+
'vertical_align_center',
|
1071
|
+
'vertical_align_top',
|
1072
|
+
'wrap_text',
|
1073
|
+
'attachment',
|
1074
|
+
'cloud',
|
1075
|
+
'cloud_circle',
|
1076
|
+
'cloud_done',
|
1077
|
+
'cloud_download',
|
1078
|
+
'cloud_off',
|
1079
|
+
'cloud_queue',
|
1080
|
+
'cloud_upload',
|
1081
|
+
'create_new_folder',
|
1082
|
+
'folder',
|
1083
|
+
'folder_open',
|
1084
|
+
'folder_shared',
|
1085
|
+
'cast',
|
1086
|
+
'cast_connected',
|
1087
|
+
'computer',
|
1088
|
+
'desktop_mac',
|
1089
|
+
'desktop_windows',
|
1090
|
+
'developer_board',
|
1091
|
+
'device_hub',
|
1092
|
+
'device_unknown',
|
1093
|
+
'devices_other',
|
1094
|
+
'dock',
|
1095
|
+
'gamepad',
|
1096
|
+
'headset',
|
1097
|
+
'headset_mic',
|
1098
|
+
'keyboard',
|
1099
|
+
'keyboard_arrow_down',
|
1100
|
+
'keyboard_arrow_left',
|
1101
|
+
'keyboard_arrow_right',
|
1102
|
+
'keyboard_arrow_up',
|
1103
|
+
'keyboard_backspace',
|
1104
|
+
'keyboard_capslock',
|
1105
|
+
'keyboard_hide',
|
1106
|
+
'keyboard_return',
|
1107
|
+
'keyboard_tab',
|
1108
|
+
'keyboard_voice',
|
1109
|
+
'laptop',
|
1110
|
+
'laptop_chromebook',
|
1111
|
+
'laptop_mac',
|
1112
|
+
'laptop_windows',
|
1113
|
+
'memory',
|
1114
|
+
'mouse',
|
1115
|
+
'phone_android',
|
1116
|
+
'phone_iphone',
|
1117
|
+
'phonelink',
|
1118
|
+
'phonelink_off',
|
1119
|
+
'power_input',
|
1120
|
+
'router',
|
1121
|
+
'scanner',
|
1122
|
+
'security',
|
1123
|
+
'sim_card',
|
1124
|
+
'smartphone',
|
1125
|
+
'speaker',
|
1126
|
+
'speaker_group',
|
1127
|
+
'tablet',
|
1128
|
+
'tablet_android',
|
1129
|
+
'tablet_mac',
|
1130
|
+
'toys',
|
1131
|
+
'tv',
|
1132
|
+
'videogame_asset',
|
1133
|
+
'watch',
|
1134
|
+
'add_a_photo',
|
1135
|
+
'add_photo_alternate',
|
1136
|
+
'add_to_photos',
|
1137
|
+
'adjust',
|
1138
|
+
'assistant',
|
1139
|
+
'assistant_photo',
|
1140
|
+
'audiotrack',
|
1141
|
+
'blur_circular',
|
1142
|
+
'blur_linear',
|
1143
|
+
'blur_off',
|
1144
|
+
'blur_on',
|
1145
|
+
'brightness_1',
|
1146
|
+
'brightness_2',
|
1147
|
+
'brightness_3',
|
1148
|
+
'brightness_4',
|
1149
|
+
'brightness_5',
|
1150
|
+
'brightness_6',
|
1151
|
+
'brightness_7',
|
1152
|
+
'broken_image',
|
1153
|
+
'brush',
|
1154
|
+
'burst_mode',
|
1155
|
+
'camera',
|
1156
|
+
'camera_alt',
|
1157
|
+
'camera_front',
|
1158
|
+
'camera_rear',
|
1159
|
+
'camera_roll',
|
1160
|
+
'center_focus_strong',
|
1161
|
+
'center_focus_weak',
|
1162
|
+
'collections',
|
1163
|
+
'collections_bookmark',
|
1164
|
+
'color_lens',
|
1165
|
+
'colorize',
|
1166
|
+
'compare',
|
1167
|
+
'control_point',
|
1168
|
+
'control_point_duplicate',
|
1169
|
+
'crop',
|
1170
|
+
'crop_16_9',
|
1171
|
+
'crop_3_2',
|
1172
|
+
'crop_5_4',
|
1173
|
+
'crop_7_5',
|
1174
|
+
'crop_din',
|
1175
|
+
'crop_free',
|
1176
|
+
'crop_landscape',
|
1177
|
+
'crop_original',
|
1178
|
+
'crop_portrait',
|
1179
|
+
'crop_rotate',
|
1180
|
+
'crop_square',
|
1181
|
+
'dehaze',
|
1182
|
+
'details',
|
1183
|
+
'edit',
|
1184
|
+
'euro',
|
1185
|
+
'exposure',
|
1186
|
+
'exposure_neg_1',
|
1187
|
+
'exposure_neg_2',
|
1188
|
+
'exposure_plus_1',
|
1189
|
+
'exposure_plus_2',
|
1190
|
+
'exposure_zero',
|
1191
|
+
'filter',
|
1192
|
+
'filter_1',
|
1193
|
+
'filter_2',
|
1194
|
+
'filter_3',
|
1195
|
+
'filter_4',
|
1196
|
+
'filter_5',
|
1197
|
+
'filter_6',
|
1198
|
+
'filter_7',
|
1199
|
+
'filter_8',
|
1200
|
+
'filter_9',
|
1201
|
+
'filter_9_plus',
|
1202
|
+
'filter_b_and_w',
|
1203
|
+
'filter_center_focus',
|
1204
|
+
'filter_drama',
|
1205
|
+
'filter_frames',
|
1206
|
+
'filter_hdr',
|
1207
|
+
'filter_none',
|
1208
|
+
'filter_tilt_shift',
|
1209
|
+
'filter_vintage',
|
1210
|
+
'flare',
|
1211
|
+
'flash_auto',
|
1212
|
+
'flash_off',
|
1213
|
+
'flash_on',
|
1214
|
+
'flip',
|
1215
|
+
'flip_camera_android',
|
1216
|
+
'flip_camera_ios',
|
1217
|
+
'gradient',
|
1218
|
+
'grain',
|
1219
|
+
'grid_off',
|
1220
|
+
'grid_on',
|
1221
|
+
'hdr_off',
|
1222
|
+
'hdr_on',
|
1223
|
+
'hdr_strong',
|
1224
|
+
'hdr_weak',
|
1225
|
+
'healing',
|
1226
|
+
'image',
|
1227
|
+
'image_aspect_ratio',
|
1228
|
+
'image_search',
|
1229
|
+
'iso',
|
1230
|
+
'landscape',
|
1231
|
+
'leak_add',
|
1232
|
+
'leak_remove',
|
1233
|
+
'lens',
|
1234
|
+
'linked_camera',
|
1235
|
+
'looks',
|
1236
|
+
'looks_3',
|
1237
|
+
'looks_4',
|
1238
|
+
'looks_5',
|
1239
|
+
'looks_6',
|
1240
|
+
'looks_one',
|
1241
|
+
'looks_two',
|
1242
|
+
'loupe',
|
1243
|
+
'monochrome_photos',
|
1244
|
+
'movie_creation',
|
1245
|
+
'movie_filter',
|
1246
|
+
'music_note',
|
1247
|
+
'music_off',
|
1248
|
+
'nature',
|
1249
|
+
'nature_people',
|
1250
|
+
'navigate_before',
|
1251
|
+
'navigate_next',
|
1252
|
+
'palette',
|
1253
|
+
'panorama',
|
1254
|
+
'panorama_fish_eye',
|
1255
|
+
'panorama_horizontal',
|
1256
|
+
'panorama_vertical',
|
1257
|
+
'panorama_wide_angle',
|
1258
|
+
'photo',
|
1259
|
+
'photo_album',
|
1260
|
+
'photo_camera',
|
1261
|
+
'photo_filter',
|
1262
|
+
'photo_library',
|
1263
|
+
'photo_size_select_actual',
|
1264
|
+
'photo_size_select_large',
|
1265
|
+
'photo_size_select_small',
|
1266
|
+
'picture_as_pdf',
|
1267
|
+
'portrait',
|
1268
|
+
'remove_red_eye',
|
1269
|
+
'rotate_90_degrees_ccw',
|
1270
|
+
'rotate_left',
|
1271
|
+
'rotate_right',
|
1272
|
+
'shutter_speed',
|
1273
|
+
'slideshow',
|
1274
|
+
'straighten',
|
1275
|
+
'style',
|
1276
|
+
'switch_camera',
|
1277
|
+
'switch_video',
|
1278
|
+
'tag_faces',
|
1279
|
+
'texture',
|
1280
|
+
'timelapse',
|
1281
|
+
'timer',
|
1282
|
+
'timer_10',
|
1283
|
+
'timer_3',
|
1284
|
+
'timer_off',
|
1285
|
+
'tonality',
|
1286
|
+
'transform',
|
1287
|
+
'tune',
|
1288
|
+
'view_comfy',
|
1289
|
+
'view_compact',
|
1290
|
+
'vignette',
|
1291
|
+
'wb_auto',
|
1292
|
+
'wb_cloudy',
|
1293
|
+
'wb_incandescent',
|
1294
|
+
'wb_iridescent',
|
1295
|
+
'wb_sunny',
|
1296
|
+
'360',
|
1297
|
+
'atm',
|
1298
|
+
'beenhere',
|
1299
|
+
'category',
|
1300
|
+
'compass_calibration',
|
1301
|
+
'departure_board',
|
1302
|
+
'directions',
|
1303
|
+
'directions_bike',
|
1304
|
+
'directions_boat',
|
1305
|
+
'directions_bus',
|
1306
|
+
'directions_car',
|
1307
|
+
'directions_railway',
|
1308
|
+
'directions_run',
|
1309
|
+
'directions_subway',
|
1310
|
+
'directions_transit',
|
1311
|
+
'directions_walk',
|
1312
|
+
'edit_attributes',
|
1313
|
+
'ev_station',
|
1314
|
+
'fastfood',
|
1315
|
+
'flight',
|
1316
|
+
'hotel',
|
1317
|
+
'layers',
|
1318
|
+
'layers_clear',
|
1319
|
+
'local_activity',
|
1320
|
+
'local_airport',
|
1321
|
+
'local_atm',
|
1322
|
+
'local_bar',
|
1323
|
+
'local_cafe',
|
1324
|
+
'local_car_wash',
|
1325
|
+
'local_convenience_store',
|
1326
|
+
'local_dining',
|
1327
|
+
'local_drink',
|
1328
|
+
'local_florist',
|
1329
|
+
'local_gas_station',
|
1330
|
+
'local_grocery_store',
|
1331
|
+
'local_hospital',
|
1332
|
+
'local_hotel',
|
1333
|
+
'local_laundry_service',
|
1334
|
+
'local_library',
|
1335
|
+
'local_mall',
|
1336
|
+
'local_movies',
|
1337
|
+
'local_offer',
|
1338
|
+
'local_parking',
|
1339
|
+
'local_pharmacy',
|
1340
|
+
'local_phone',
|
1341
|
+
'local_pizza',
|
1342
|
+
'local_play',
|
1343
|
+
'local_post_office',
|
1344
|
+
'local_printshop',
|
1345
|
+
'local_see',
|
1346
|
+
'local_shipping',
|
1347
|
+
'local_taxi',
|
1348
|
+
'map',
|
1349
|
+
'menu_book',
|
1350
|
+
'money',
|
1351
|
+
'museum',
|
1352
|
+
'my_location',
|
1353
|
+
'navigation',
|
1354
|
+
'near_me',
|
1355
|
+
'person_pin',
|
1356
|
+
'rate_review',
|
1357
|
+
'restaurant',
|
1358
|
+
'restaurant_menu',
|
1359
|
+
'satellite',
|
1360
|
+
'store_mall_directory',
|
1361
|
+
'streetview',
|
1362
|
+
'subway',
|
1363
|
+
'terrain',
|
1364
|
+
'traffic',
|
1365
|
+
'train',
|
1366
|
+
'tram',
|
1367
|
+
'transfer_within_a_station',
|
1368
|
+
'transit_enterexit',
|
1369
|
+
'trip_origin',
|
1370
|
+
'zoom_out_map',
|
1371
|
+
'apps',
|
1372
|
+
'arrow_back',
|
1373
|
+
'arrow_back_ios',
|
1374
|
+
'arrow_downward',
|
1375
|
+
'arrow_drop_down',
|
1376
|
+
'arrow_drop_down_circle',
|
1377
|
+
'arrow_drop_up',
|
1378
|
+
'arrow_forward',
|
1379
|
+
'arrow_forward_ios',
|
1380
|
+
'arrow_left',
|
1381
|
+
'arrow_right',
|
1382
|
+
'arrow_upward',
|
1383
|
+
'cancel',
|
1384
|
+
'check',
|
1385
|
+
'chevron_left',
|
1386
|
+
'chevron_right',
|
1387
|
+
'close',
|
1388
|
+
'double_arrow',
|
1389
|
+
'expand_less',
|
1390
|
+
'expand_more',
|
1391
|
+
'first_page',
|
1392
|
+
'fullscreen',
|
1393
|
+
'fullscreen_exit',
|
1394
|
+
'home_work',
|
1395
|
+
'last_page',
|
1396
|
+
'menu',
|
1397
|
+
'menu_open',
|
1398
|
+
'more_horiz',
|
1399
|
+
'more_vert',
|
1400
|
+
'refresh',
|
1401
|
+
'subdirectory_arrow_left',
|
1402
|
+
'subdirectory_arrow_right',
|
1403
|
+
'unfold_less',
|
1404
|
+
'unfold_more',
|
1405
|
+
'account_tree',
|
1406
|
+
'adb',
|
1407
|
+
'airline_seat_flat',
|
1408
|
+
'airline_seat_flat_angled',
|
1409
|
+
'airline_seat_individual_suite',
|
1410
|
+
'airline_seat_legroom_extra',
|
1411
|
+
'airline_seat_legroom_normal',
|
1412
|
+
'airline_seat_legroom_reduced',
|
1413
|
+
'airline_seat_recline_extra',
|
1414
|
+
'airline_seat_recline_normal',
|
1415
|
+
'bluetooth_audio',
|
1416
|
+
'confirmation_number',
|
1417
|
+
'disc_full',
|
1418
|
+
'drive_eta',
|
1419
|
+
'enhanced_encryption',
|
1420
|
+
'event_available',
|
1421
|
+
'event_busy',
|
1422
|
+
'event_note',
|
1423
|
+
'folder_special',
|
1424
|
+
'live_tv',
|
1425
|
+
'mms',
|
1426
|
+
'more',
|
1427
|
+
'network_check',
|
1428
|
+
'network_locked',
|
1429
|
+
'no_encryption',
|
1430
|
+
'ondemand_video',
|
1431
|
+
'personal_video',
|
1432
|
+
'phone_bluetooth_speaker',
|
1433
|
+
'phone_callback',
|
1434
|
+
'phone_forwarded',
|
1435
|
+
'phone_in_talk',
|
1436
|
+
'phone_locked',
|
1437
|
+
'phone_missed',
|
1438
|
+
'phone_paused',
|
1439
|
+
'power',
|
1440
|
+
'power_off',
|
1441
|
+
'priority_high',
|
1442
|
+
'sd_card',
|
1443
|
+
'sms',
|
1444
|
+
'sms_failed',
|
1445
|
+
'sync',
|
1446
|
+
'sync_disabled',
|
1447
|
+
'sync_problem',
|
1448
|
+
'system_update',
|
1449
|
+
'tap_and_play',
|
1450
|
+
'time_to_leave',
|
1451
|
+
'tv_off',
|
1452
|
+
'vibration',
|
1453
|
+
'voice_chat',
|
1454
|
+
'vpn_lock',
|
1455
|
+
'wc',
|
1456
|
+
'wifi',
|
1457
|
+
'wifi_off',
|
1458
|
+
'ac_unit',
|
1459
|
+
'airport_shuttle',
|
1460
|
+
'all_inclusive',
|
1461
|
+
'apartment',
|
1462
|
+
'bathtub',
|
1463
|
+
'beach_access',
|
1464
|
+
'business_center',
|
1465
|
+
'casino',
|
1466
|
+
'child_care',
|
1467
|
+
'child_friendly',
|
1468
|
+
'fitness_center',
|
1469
|
+
'free_breakfast',
|
1470
|
+
'golf_course',
|
1471
|
+
'hot_tub',
|
1472
|
+
'house',
|
1473
|
+
'kitchen',
|
1474
|
+
'meeting_room',
|
1475
|
+
'no_meeting_room',
|
1476
|
+
'pool',
|
1477
|
+
'room_service',
|
1478
|
+
'rv_hookup',
|
1479
|
+
'smoke_free',
|
1480
|
+
'smoking_rooms',
|
1481
|
+
'spa',
|
1482
|
+
'storefront',
|
1483
|
+
'cake',
|
1484
|
+
'deck',
|
1485
|
+
'emoji_emotions',
|
1486
|
+
'emoji_events',
|
1487
|
+
'emoji_flags',
|
1488
|
+
'emoji_food_beverage',
|
1489
|
+
'emoji_nature',
|
1490
|
+
'emoji_objects',
|
1491
|
+
'emoji_people',
|
1492
|
+
'emoji_symbols',
|
1493
|
+
'emoji_transportation',
|
1494
|
+
'fireplace',
|
1495
|
+
'group',
|
1496
|
+
'group_add',
|
1497
|
+
'king_bed',
|
1498
|
+
'location_city',
|
1499
|
+
'mood',
|
1500
|
+
'mood_bad',
|
1501
|
+
'nights_stay',
|
1502
|
+
'notifications',
|
1503
|
+
'notifications_active',
|
1504
|
+
'notifications_none',
|
1505
|
+
'notifications_off',
|
1506
|
+
'notifications_paused',
|
1507
|
+
'outdoor_grill',
|
1508
|
+
'pages',
|
1509
|
+
'party_mode',
|
1510
|
+
'people',
|
1511
|
+
'people_alt',
|
1512
|
+
'people_outline',
|
1513
|
+
'person',
|
1514
|
+
'person_add',
|
1515
|
+
'person_outline',
|
1516
|
+
'plus_one',
|
1517
|
+
'poll',
|
1518
|
+
'public',
|
1519
|
+
'school',
|
1520
|
+
'sentiment_dissatisfied',
|
1521
|
+
'sentiment_satisfied',
|
1522
|
+
'sentiment_very_dissatisfied',
|
1523
|
+
'sentiment_very_satisfied',
|
1524
|
+
'share',
|
1525
|
+
'single_bed',
|
1526
|
+
'sports',
|
1527
|
+
'sports_baseball',
|
1528
|
+
'sports_basketball',
|
1529
|
+
'sports_cricket',
|
1530
|
+
'sports_esports',
|
1531
|
+
'sports_football',
|
1532
|
+
'sports_golf',
|
1533
|
+
'sports_handball',
|
1534
|
+
'sports_hockey',
|
1535
|
+
'sports_kabaddi',
|
1536
|
+
'sports_mma',
|
1537
|
+
'sports_motorsports',
|
1538
|
+
'sports_rugby',
|
1539
|
+
'sports_soccer',
|
1540
|
+
'sports_tennis',
|
1541
|
+
'sports_volleyball',
|
1542
|
+
'thumb_down_alt',
|
1543
|
+
'thumb_up_alt',
|
1544
|
+
'whatshot',
|
1545
|
+
'check_box',
|
1546
|
+
'check_box_outline_blank',
|
1547
|
+
'indeterminate_check_box',
|
1548
|
+
'radio_button_checked',
|
1549
|
+
'radio_button_unchecked',
|
1550
|
+
'star',
|
1551
|
+
'star_border',
|
1552
|
+
'star_half',
|
1553
|
+
'toggle_off',
|
1554
|
+
'toggle_on',
|
1555
|
+
];
|
1552
1556
|
get icons() {
|
1553
1557
|
return this._icons;
|
1554
1558
|
}
|
@@ -1557,10 +1561,10 @@ class IconService {
|
|
1557
1561
|
return el.toLowerCase().indexOf(query ? query.toLowerCase() : '') > -1;
|
1558
1562
|
});
|
1559
1563
|
}
|
1564
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: IconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
1565
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: IconService });
|
1560
1566
|
}
|
1561
|
-
|
1562
|
-
IconService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: IconService });
|
1563
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: IconService, decorators: [{
|
1567
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: IconService, decorators: [{
|
1564
1568
|
type: Injectable
|
1565
1569
|
}] });
|
1566
1570
|
|
@@ -1577,23 +1581,23 @@ const TD_PIPES = [
|
|
1577
1581
|
TdTruncatePipe,
|
1578
1582
|
];
|
1579
1583
|
class CovalentCommonModule {
|
1584
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentCommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1585
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: CovalentCommonModule, declarations: [TdAutoTrimDirective, TdFullscreenDirective, TdTimeAgoPipe,
|
1586
|
+
TdTimeDifferencePipe,
|
1587
|
+
TdTimeUntilPipe,
|
1588
|
+
TdBytesPipe,
|
1589
|
+
TdDecimalBytesPipe,
|
1590
|
+
TdDigitsPipe,
|
1591
|
+
TdTruncatePipe], imports: [FormsModule, CommonModule], exports: [FormsModule, CommonModule, TdAutoTrimDirective, TdFullscreenDirective, TdTimeAgoPipe,
|
1592
|
+
TdTimeDifferencePipe,
|
1593
|
+
TdTimeUntilPipe,
|
1594
|
+
TdBytesPipe,
|
1595
|
+
TdDecimalBytesPipe,
|
1596
|
+
TdDigitsPipe,
|
1597
|
+
TdTruncatePipe] });
|
1598
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentCommonModule, providers: [RouterPathService, IconService], imports: [FormsModule, CommonModule, FormsModule, CommonModule] });
|
1580
1599
|
}
|
1581
|
-
|
1582
|
-
CovalentCommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.5", ngImport: i0, type: CovalentCommonModule, declarations: [TdAutoTrimDirective, TdFullscreenDirective, TdTimeAgoPipe,
|
1583
|
-
TdTimeDifferencePipe,
|
1584
|
-
TdTimeUntilPipe,
|
1585
|
-
TdBytesPipe,
|
1586
|
-
TdDecimalBytesPipe,
|
1587
|
-
TdDigitsPipe,
|
1588
|
-
TdTruncatePipe], imports: [FormsModule, CommonModule], exports: [FormsModule, CommonModule, TdAutoTrimDirective, TdFullscreenDirective, TdTimeAgoPipe,
|
1589
|
-
TdTimeDifferencePipe,
|
1590
|
-
TdTimeUntilPipe,
|
1591
|
-
TdBytesPipe,
|
1592
|
-
TdDecimalBytesPipe,
|
1593
|
-
TdDigitsPipe,
|
1594
|
-
TdTruncatePipe] });
|
1595
|
-
CovalentCommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentCommonModule, providers: [RouterPathService, IconService], imports: [FormsModule, CommonModule, FormsModule, CommonModule] });
|
1596
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.5", ngImport: i0, type: CovalentCommonModule, decorators: [{
|
1600
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: CovalentCommonModule, decorators: [{
|
1597
1601
|
type: NgModule,
|
1598
1602
|
args: [{
|
1599
1603
|
imports: [FormsModule, CommonModule],
|
@@ -1961,13 +1965,13 @@ const noop = () => {
|
|
1961
1965
|
/** Mixin to augment a component with ngModel support. */
|
1962
1966
|
function mixinControlValueAccessor(base, initialValue) {
|
1963
1967
|
return class extends base {
|
1968
|
+
_value = initialValue instanceof Array
|
1969
|
+
? Object.assign([], initialValue)
|
1970
|
+
: initialValue;
|
1971
|
+
_subjectValueChanges;
|
1972
|
+
valueChanges;
|
1964
1973
|
constructor(...args) {
|
1965
1974
|
super(...args);
|
1966
|
-
this._value = initialValue instanceof Array
|
1967
|
-
? Object.assign([], initialValue)
|
1968
|
-
: initialValue;
|
1969
|
-
this.onChange = (_) => noop;
|
1970
|
-
this.onTouched = () => noop;
|
1971
1975
|
this._subjectValueChanges = new Subject();
|
1972
1976
|
this.valueChanges = this._subjectValueChanges.asObservable();
|
1973
1977
|
}
|
@@ -1992,15 +1996,17 @@ function mixinControlValueAccessor(base, initialValue) {
|
|
1992
1996
|
registerOnTouched(fn) {
|
1993
1997
|
this.onTouched = fn;
|
1994
1998
|
}
|
1999
|
+
onChange = (_) => noop;
|
2000
|
+
onTouched = () => noop;
|
1995
2001
|
};
|
1996
2002
|
}
|
1997
2003
|
|
1998
2004
|
/** Mixin to augment a component or directive with a `disabled` property. */
|
1999
2005
|
function mixinDisabled(base) {
|
2000
2006
|
return class extends base {
|
2007
|
+
_disabled = false;
|
2001
2008
|
constructor(...args) {
|
2002
2009
|
super(...args);
|
2003
|
-
this._disabled = false;
|
2004
2010
|
}
|
2005
2011
|
get disabled() {
|
2006
2012
|
return this._disabled;
|
@@ -2021,9 +2027,9 @@ function mixinDisabled(base) {
|
|
2021
2027
|
/** Mixin to augment a component or directive with a `disabled` property. */
|
2022
2028
|
function mixinDisableRipple(base) {
|
2023
2029
|
return class extends base {
|
2030
|
+
_disableRipple = false;
|
2024
2031
|
constructor(...args) {
|
2025
2032
|
super(...args);
|
2026
|
-
this._disableRipple = false;
|
2027
2033
|
}
|
2028
2034
|
get disableRipple() {
|
2029
2035
|
return this._disableRipple;
|