@covalent/core 4.0.0-beta.2 → 4.1.0-develop.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/breadcrumbs/README.md +21 -17
- package/breadcrumbs/breadcrumb/breadcrumb.component.d.ts +3 -1
- package/breadcrumbs/breadcrumbs.component.d.ts +1 -0
- package/breadcrumbs/covalent-core-breadcrumbs.d.ts +1 -1
- package/breadcrumbs/{public-api.d.ts → public_api.d.ts} +0 -0
- package/common/README.md +3 -0
- package/common/_common-theme.scss +1 -1
- package/common/behaviors/disable-ripple.mixin.d.ts +1 -1
- package/common/behaviors/disabled.mixin.d.ts +1 -1
- package/common/covalent-core-common.d.ts +1 -1
- package/common/pipes/truncate/truncate.pipe.d.ts +1 -1
- package/common/{public-api.d.ts → public_api.d.ts} +0 -0
- package/common/styles/font/README.md +4 -2
- package/covalent-core.d.ts +1 -1
- package/dialogs/README.md +38 -30
- package/dialogs/alert-dialog/alert-dialog.component.d.ts +3 -3
- package/dialogs/confirm-dialog/confirm-dialog.component.d.ts +2 -2
- package/dialogs/covalent-core-dialogs.d.ts +1 -1
- package/dialogs/dialog.component.d.ts +4 -4
- package/dialogs/dialogs.module.d.ts +1 -1
- package/dialogs/prompt-dialog/prompt-dialog.component.d.ts +3 -3
- package/dialogs/{public-api.d.ts → public_api.d.ts} +0 -0
- package/dialogs/src/README.md +223 -0
- package/dialogs/window-dialog/window-dialog.component.d.ts +5 -5
- package/dynamic-menu/README.md +6 -6
- package/dynamic-menu/covalent-core-dynamic-menu.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 -22
- package/dynamic-menu/dynamic-menu.menu.d.ts +22 -0
- package/dynamic-menu/public_api.d.ts +1 -0
- package/esm2020/breadcrumbs/breadcrumb/breadcrumb.component.mjs +21 -37
- package/esm2020/breadcrumbs/breadcrumbs.component.mjs +20 -25
- package/esm2020/breadcrumbs/breadcrumbs.module.mjs +12 -13
- package/esm2020/breadcrumbs/covalent-core-breadcrumbs.mjs +2 -2
- package/esm2020/breadcrumbs/public_api.mjs +4 -0
- package/esm2020/common/animations/bounce/bounce.animation.mjs +1 -1
- package/esm2020/common/animations/collapse/collapse.animation.mjs +1 -1
- package/esm2020/common/animations/common/interfaces.mjs +1 -1
- package/esm2020/common/animations/fade/fadeInOut.animation.mjs +1 -1
- package/esm2020/common/animations/flash/flash.animation.mjs +1 -1
- package/esm2020/common/animations/headshake/headshake.animation.mjs +17 -5
- package/esm2020/common/animations/jello/jello.animation.mjs +29 -8
- package/esm2020/common/animations/pulse/pulse.animation.mjs +1 -1
- package/esm2020/common/animations/rotate/rotate.animation.mjs +7 -2
- package/esm2020/common/behaviors/control-value-accesor.mixin.mjs +4 -2
- package/esm2020/common/behaviors/disable-ripple.mixin.mjs +1 -1
- package/esm2020/common/behaviors/disabled.mixin.mjs +1 -1
- package/esm2020/common/common.module.mjs +14 -15
- package/esm2020/common/covalent-core-common.mjs +2 -2
- package/esm2020/common/directives/fullscreen/fullscreen.directive.mjs +41 -41
- package/esm2020/common/forms/auto-trim/auto-trim.directive.mjs +19 -19
- package/esm2020/common/forms/validators/validators.mjs +6 -6
- package/esm2020/common/functions/clipboard.mjs +1 -1
- package/esm2020/common/functions/convert.mjs +1 -1
- package/esm2020/common/functions/download.mjs +1 -1
- package/esm2020/common/functions/file.mjs +1 -1
- package/esm2020/common/pipes/bytes/bytes.pipe.mjs +21 -11
- package/esm2020/common/pipes/decimal-bytes/decimal-bytes.pipe.mjs +21 -11
- package/esm2020/common/pipes/digits/digits.pipe.mjs +13 -13
- package/esm2020/common/pipes/time-ago/time-ago.pipe.mjs +9 -9
- package/esm2020/common/pipes/time-difference/time-difference.pipe.mjs +9 -9
- package/esm2020/common/pipes/time-until/time-until.pipe.mjs +9 -9
- package/esm2020/common/pipes/truncate/truncate.pipe.mjs +10 -10
- package/esm2020/common/public_api.mjs +39 -0
- package/esm2020/common/services/icon.service.mjs +6 -6
- package/esm2020/common/services/router-path.service.mjs +6 -6
- package/esm2020/covalent-core.mjs +2 -2
- package/esm2020/dialogs/alert-dialog/alert-dialog.component.mjs +9 -40
- package/esm2020/dialogs/confirm-dialog/confirm-dialog.component.mjs +9 -49
- package/esm2020/dialogs/covalent-core-dialogs.mjs +2 -2
- package/esm2020/dialogs/dialog.component.mjs +35 -76
- package/esm2020/dialogs/dialogs.module.mjs +39 -36
- package/esm2020/dialogs/prompt-dialog/prompt-dialog.component.mjs +15 -73
- package/esm2020/dialogs/public_api.mjs +9 -0
- package/esm2020/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +27 -10
- package/esm2020/dialogs/services/dialog.service.mjs +16 -13
- package/esm2020/dialogs/window-dialog/window-dialog.component.mjs +24 -55
- package/esm2020/dynamic-menu/covalent-core-dynamic-menu.mjs +2 -2
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +19 -136
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.mjs +14 -103
- package/esm2020/dynamic-menu/dynamic-menu.component.mjs +18 -101
- package/esm2020/dynamic-menu/dynamic-menu.menu.mjs +2 -0
- package/esm2020/dynamic-menu/dynamic-menu.module.mjs +44 -19
- package/esm2020/dynamic-menu/public_api.mjs +2 -1
- package/esm2020/file/covalent-core-file.mjs +2 -2
- package/esm2020/file/directives/file-drop.directive.mjs +46 -47
- package/esm2020/file/directives/file-select.directive.mjs +32 -31
- package/esm2020/file/file-input/file-input.component.mjs +41 -68
- package/esm2020/file/file-upload/file-upload.component.mjs +76 -112
- package/esm2020/file/file.module.mjs +32 -17
- package/esm2020/file/public_api.mjs +7 -0
- package/esm2020/file/services/file.service.mjs +13 -11
- package/esm2020/json-formatter/collapse.animation.mjs +51 -0
- package/esm2020/json-formatter/covalent-core-json-formatter.mjs +2 -2
- package/esm2020/json-formatter/json-formatter.component.mjs +38 -123
- package/esm2020/json-formatter/json-formatter.module.mjs +12 -13
- package/esm2020/json-formatter/public_api.mjs +3 -0
- package/esm2020/layout/covalent-core-layout.mjs +2 -2
- package/esm2020/layout/layout-card-over/layout-card-over.component.mjs +17 -64
- package/esm2020/layout/layout-footer/layout-footer.component.mjs +9 -14
- package/esm2020/layout/layout-manage-list/layout-manage-list.component.mjs +22 -51
- package/esm2020/layout/layout-manage-list/layout-manage-list.directives.mjs +47 -53
- package/esm2020/layout/layout-nav/layout-nav.component.mjs +22 -84
- package/esm2020/layout/layout-nav-list/layout-nav-list.component.mjs +37 -124
- package/esm2020/layout/layout-nav-list/layout-nav-list.directives.mjs +47 -53
- package/esm2020/layout/layout-toggle.class.mjs +12 -15
- package/esm2020/layout/layout.component.mjs +22 -43
- package/esm2020/layout/layout.directives.mjs +48 -50
- package/esm2020/layout/layout.module.mjs +34 -35
- package/esm2020/layout/navigation-drawer/navigation-drawer.component.mjs +56 -201
- package/esm2020/layout/public_api.mjs +13 -0
- package/esm2020/menu/covalent-core-menu.mjs +2 -2
- package/esm2020/menu/menu.component.mjs +7 -18
- package/esm2020/menu/menu.module.mjs +12 -13
- package/esm2020/menu/public_api.mjs +3 -0
- package/esm2020/message/collapse.animation.mjs +51 -0
- package/esm2020/message/covalent-core-message.mjs +2 -2
- package/esm2020/message/message.component.mjs +44 -102
- package/esm2020/message/message.module.mjs +19 -15
- package/esm2020/message/public_api.mjs +3 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/search/covalent-core-search.mjs +2 -2
- package/esm2020/search/public_api.mjs +4 -0
- package/esm2020/search/search-box/search-box.component.mjs +97 -123
- package/esm2020/search/search-input/search-input.component.mjs +116 -153
- package/esm2020/search/search.module.mjs +28 -13
- package/esm2020/side-sheet/covalent-core-side-sheet.mjs +2 -2
- package/esm2020/side-sheet/public_api.mjs +6 -0
- package/esm2020/side-sheet/side-sheet-container.mjs +89 -57
- package/esm2020/side-sheet/side-sheet-ref.mjs +2 -2
- package/esm2020/side-sheet/side-sheet.animation.mjs +2 -2
- package/esm2020/side-sheet/side-sheet.config.mjs +1 -1
- package/esm2020/side-sheet/side-sheet.content-directives.mjs +109 -86
- package/esm2020/side-sheet/side-sheet.mjs +44 -31
- package/esm2020/side-sheet/side-sheet.module.mjs +37 -38
- package/esm2020/user-profile/covalent-core-user-profile.mjs +2 -2
- package/esm2020/user-profile/public_api.mjs +1 -1
- package/esm2020/user-profile/user-profile-menu/user-profile-menu.component.mjs +13 -64
- package/esm2020/user-profile/user-profile.component.mjs +13 -35
- package/esm2020/user-profile/user-profile.module.mjs +32 -14
- package/fesm2015/covalent-core-breadcrumbs.mjs +35 -76
- package/fesm2015/covalent-core-breadcrumbs.mjs.map +1 -1
- package/fesm2015/covalent-core-common.mjs +170 -140
- package/fesm2015/covalent-core-common.mjs.map +1 -1
- package/fesm2015/covalent-core-dialogs.mjs +125 -358
- package/fesm2015/covalent-core-dialogs.mjs.map +1 -1
- package/fesm2015/covalent-core-dynamic-menu.mjs +73 -425
- package/fesm2015/covalent-core-dynamic-menu.mjs.map +1 -1
- package/fesm2015/covalent-core-file.mjs +148 -233
- package/fesm2015/covalent-core-file.mjs.map +1 -1
- package/fesm2015/covalent-core-json-formatter.mjs +93 -148
- package/fesm2015/covalent-core-json-formatter.mjs.map +1 -1
- package/fesm2015/covalent-core-layout.mjs +194 -747
- package/fesm2015/covalent-core-layout.mjs.map +1 -1
- package/fesm2015/covalent-core-menu.mjs +10 -28
- package/fesm2015/covalent-core-menu.mjs.map +1 -1
- package/fesm2015/covalent-core-message.mjs +79 -104
- package/fesm2015/covalent-core-message.mjs.map +1 -1
- package/fesm2015/covalent-core-search.mjs +147 -227
- package/fesm2015/covalent-core-search.mjs.map +1 -1
- package/fesm2015/covalent-core-side-sheet.mjs +202 -173
- package/fesm2015/covalent-core-side-sheet.mjs.map +1 -1
- package/fesm2015/covalent-core-user-profile.mjs +38 -114
- package/fesm2015/covalent-core-user-profile.mjs.map +1 -1
- package/fesm2015/covalent-core.mjs.map +1 -1
- package/fesm2020/covalent-core-breadcrumbs.mjs +49 -71
- package/fesm2020/covalent-core-breadcrumbs.mjs.map +1 -1
- package/fesm2020/covalent-core-common.mjs +224 -165
- package/fesm2020/covalent-core-common.mjs.map +1 -1
- package/fesm2020/covalent-core-dialogs.mjs +160 -338
- package/fesm2020/covalent-core-dialogs.mjs.map +1 -1
- package/fesm2020/covalent-core-dynamic-menu.mjs +89 -354
- package/fesm2020/covalent-core-dynamic-menu.mjs.map +1 -1
- package/fesm2020/covalent-core-file.mjs +229 -273
- package/fesm2020/covalent-core-file.mjs.map +1 -1
- package/fesm2020/covalent-core-json-formatter.mjs +97 -133
- package/fesm2020/covalent-core-json-formatter.mjs.map +1 -1
- package/fesm2020/covalent-core-layout.mjs +353 -767
- package/fesm2020/covalent-core-layout.mjs.map +1 -1
- package/fesm2020/covalent-core-menu.mjs +17 -29
- package/fesm2020/covalent-core-menu.mjs.map +1 -1
- package/fesm2020/covalent-core-message.mjs +110 -114
- package/fesm2020/covalent-core-message.mjs.map +1 -1
- package/fesm2020/covalent-core-search.mjs +233 -281
- package/fesm2020/covalent-core-search.mjs.map +1 -1
- package/fesm2020/covalent-core-side-sheet.mjs +267 -200
- package/fesm2020/covalent-core-side-sheet.mjs.map +1 -1
- package/fesm2020/covalent-core-user-profile.mjs +54 -109
- package/fesm2020/covalent-core-user-profile.mjs.map +1 -1
- package/fesm2020/covalent-core.mjs.map +1 -1
- package/file/_file-theme.scss +2 -1
- package/file/covalent-core-file.d.ts +1 -1
- package/file/directives/file-drop.directive.d.ts +6 -7
- package/file/directives/file-select.directive.d.ts +2 -2
- package/file/file-input/file-input.component.d.ts +7 -7
- package/file/file-upload/file-upload.component.d.ts +16 -9
- package/file/{public-api.d.ts → public_api.d.ts} +0 -0
- package/file/{file-input → src/file-input}/README.md +46 -37
- package/file/{file-upload → src/file-upload}/README.md +36 -27
- package/json-formatter/README.md +8 -8
- package/json-formatter/collapse.animation.d.ts +24 -0
- package/json-formatter/covalent-core-json-formatter.d.ts +1 -1
- package/json-formatter/json-formatter.component.d.ts +4 -4
- package/json-formatter/{public-api.d.ts → public_api.d.ts} +0 -0
- package/layout/README.md +48 -50
- package/layout/covalent-core-layout.d.ts +1 -1
- package/layout/layout-card-over/layout-card-over.component.d.ts +3 -3
- package/layout/layout-footer/layout-footer.component.d.ts +3 -3
- package/layout/layout-manage-list/layout-manage-list.component.d.ts +4 -4
- package/layout/layout-manage-list/layout-manage-list.directives.d.ts +5 -5
- package/layout/layout-nav/layout-nav.component.d.ts +5 -5
- package/layout/layout-nav-list/layout-nav-list.component.d.ts +9 -9
- package/layout/layout-nav-list/layout-nav-list.directives.d.ts +5 -5
- package/layout/layout-toggle.class.d.ts +1 -1
- package/layout/layout.component.d.ts +4 -4
- package/layout/layout.directives.d.ts +2 -2
- package/layout/navigation-drawer/navigation-drawer.component.d.ts +12 -12
- package/layout/{public-api.d.ts → public_api.d.ts} +0 -0
- package/layout/{layout-card-over → src/layout-card-over}/README.md +19 -17
- package/layout/{layout-manage-list → src/layout-manage-list}/README.md +24 -28
- package/layout/src/layout-nav/README.md +50 -0
- package/layout/{layout-nav-list → src/layout-nav-list}/README.md +44 -40
- package/menu/covalent-core-menu.d.ts +1 -1
- package/menu/{public-api.d.ts → public_api.d.ts} +0 -0
- package/message/README.md +26 -18
- package/message/collapse.animation.d.ts +24 -0
- package/message/covalent-core-message.d.ts +1 -1
- package/message/message.component.d.ts +4 -4
- package/message/{public-api.d.ts → public_api.d.ts} +0 -0
- package/package.json +36 -55
- package/{index.d.ts → public_api.d.ts} +0 -0
- package/search/README.md +74 -73
- package/search/covalent-core-search.d.ts +1 -1
- package/search/{public-api.d.ts → public_api.d.ts} +0 -0
- package/search/search-box/search-box.component.d.ts +10 -6
- package/search/search-input/search-input.component.d.ts +10 -6
- package/search/src/search-box/README.md +73 -0
- package/search/src/search-input/README.md +74 -0
- package/side-sheet/README.md +3 -5
- package/side-sheet/{side-sheet.theme.scss → _side-sheet.theme.scss} +0 -0
- package/side-sheet/covalent-core-side-sheet.d.ts +1 -1
- package/side-sheet/{public-api.d.ts → public_api.d.ts} +0 -0
- package/side-sheet/side-sheet-container.d.ts +18 -7
- package/side-sheet/side-sheet.content-directives.d.ts +22 -16
- package/side-sheet/side-sheet.d.ts +2 -2
- package/side-sheet/side-sheet.module.d.ts +1 -1
- package/user-profile/README.md +5 -5
- package/user-profile/covalent-core-user-profile.d.ts +1 -1
- package/user-profile/user-profile-menu/user-profile-menu.component.d.ts +2 -2
- package/user-profile/user-profile.component.d.ts +2 -2
- package/breadcrumbs/breadcrumb/breadcrumb.component.scss +0 -25
- package/breadcrumbs/breadcrumbs.component.scss +0 -8
- package/breadcrumbs/index.d.ts +0 -1
- package/common/index.d.ts +0 -1
- package/common/material-icons.css +0 -111
- package/common/material-icons.css.map +0 -1
- package/common/material-icons.scss +0 -3
- package/common/platform.css +0 -16819
- package/common/platform.css.map +0 -1
- package/common/platform.scss +0 -7
- package/common/styles/_elevation.scss +0 -280
- package/common/styles/_layout.scss +0 -605
- package/common/styles/_palette-dark.scss +0 -326
- package/common/styles/_palette-light.scss +0 -637
- package/common/styles/_rtl.scss +0 -31
- package/common/styles/_styles.scss +0 -10
- package/common/styles/_theme-functions.scss +0 -25
- package/common/styles/_typography-functions.scss +0 -35
- package/common/styles/_variables.scss +0 -98
- package/common/styles/colors/_colors-dark.scss +0 -1399
- package/common/styles/colors/_colors-light.scss +0 -3235
- package/common/styles/colors/_colors.scss +0 -7
- package/common/styles/core/_button.scss +0 -60
- package/common/styles/core/_card.scss +0 -184
- package/common/styles/core/_content.scss +0 -43
- package/common/styles/core/_core.scss +0 -23
- package/common/styles/core/_divider.scss +0 -16
- package/common/styles/core/_icons.scss +0 -22
- package/common/styles/core/_list.scss +0 -8
- package/common/styles/core/_sidenav.scss +0 -22
- package/common/styles/core/_structure.scss +0 -127
- package/common/styles/core/_toolbar.scss +0 -53
- package/common/styles/core/_whiteframe.scss +0 -130
- package/common/styles/font/MaterialIcons-Regular-v48.woff2 +0 -0
- package/common/styles/font/_font.scss +0 -99
- package/common/styles/utilities/_general.scss +0 -65
- package/common/styles/utilities/_pad.scss +0 -36
- package/common/styles/utilities/_pull.scss +0 -36
- package/common/styles/utilities/_push.scss +0 -36
- package/common/styles/utilities/_size.scss +0 -24
- package/common/styles/utilities/_text.scss +0 -105
- package/common/styles/utilities/_utilities.scss +0 -15
- package/dialogs/alert-dialog/alert-dialog.component.scss +0 -3
- package/dialogs/confirm-dialog/confirm-dialog.component.scss +0 -3
- package/dialogs/dialog.component.scss +0 -49
- package/dialogs/index.d.ts +0 -1
- package/dialogs/prompt-dialog/prompt-dialog.component.scss +0 -16
- package/dialogs/window-dialog/window-dialog.component.scss +0 -31
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.scss +0 -7
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.scss +0 -13
- package/dynamic-menu/dynamic-menu.component.scss +0 -0
- package/dynamic-menu/index.d.ts +0 -1
- package/esm2020/breadcrumbs/index.mjs +0 -2
- package/esm2020/breadcrumbs/public-api.mjs +0 -4
- package/esm2020/common/index.mjs +0 -2
- package/esm2020/common/public-api.mjs +0 -39
- package/esm2020/dialogs/index.mjs +0 -2
- package/esm2020/dialogs/public-api.mjs +0 -9
- package/esm2020/dynamic-menu/index.mjs +0 -2
- package/esm2020/file/index.mjs +0 -2
- package/esm2020/file/public-api.mjs +0 -7
- package/esm2020/index.mjs +0 -2
- package/esm2020/json-formatter/index.mjs +0 -2
- package/esm2020/json-formatter/public-api.mjs +0 -3
- package/esm2020/layout/index.mjs +0 -2
- package/esm2020/layout/public-api.mjs +0 -13
- package/esm2020/menu/index.mjs +0 -2
- package/esm2020/menu/public-api.mjs +0 -3
- package/esm2020/message/index.mjs +0 -2
- package/esm2020/message/public-api.mjs +0 -3
- package/esm2020/search/index.mjs +0 -2
- package/esm2020/search/public-api.mjs +0 -4
- package/esm2020/side-sheet/index.mjs +0 -2
- package/esm2020/side-sheet/public-api.mjs +0 -6
- package/esm2020/user-profile/index.mjs +0 -2
- package/file/file-input/file-input.component.scss +0 -22
- package/file/file-upload/file-upload.component.scss +0 -34
- package/file/index.d.ts +0 -1
- package/json-formatter/index.d.ts +0 -1
- package/json-formatter/json-formatter.component.scss +0 -74
- package/layout/index.d.ts +0 -1
- package/layout/layout-card-over/layout-card-over.component.scss +0 -45
- package/layout/layout-footer/layout-footer.component.scss +0 -4
- package/layout/layout-manage-list/layout-manage-list.component.scss +0 -82
- package/layout/layout-nav/README.md +0 -46
- package/layout/layout-nav/layout-nav.component.scss +0 -54
- package/layout/layout-nav-list/layout-nav-list.component.scss +0 -115
- package/layout/layout.component.scss +0 -16
- package/layout/navigation-drawer/navigation-drawer.component.scss +0 -81
- package/menu/index.d.ts +0 -1
- package/menu/menu.component.scss +0 -51
- package/message/index.d.ts +0 -1
- package/message/message.component.scss +0 -32
- package/schematics/README.md +0 -66
- package/schematics/ng-add/files/theme.scss +0 -64
- package/search/index.d.ts +0 -1
- package/search/search-box/README.md +0 -62
- package/search/search-box/search-box.component.scss +0 -37
- package/search/search-input/README.md +0 -65
- package/search/search-input/search-input.component.scss +0 -75
- package/side-sheet/index.d.ts +0 -1
- package/side-sheet/side-sheet.scss +0 -68
- package/theming/prebuilt/blue-grey-deep-orange.css +0 -2815
- package/theming/prebuilt/blue-grey-deep-orange.css.map +0 -1
- package/theming/prebuilt/blue-grey-deep-orange.scss +0 -20
- package/theming/prebuilt/blue-orange.css +0 -2815
- package/theming/prebuilt/blue-orange.css.map +0 -1
- package/theming/prebuilt/blue-orange.scss +0 -20
- package/theming/prebuilt/indigo-pink.css +0 -2815
- package/theming/prebuilt/indigo-pink.css.map +0 -1
- package/theming/prebuilt/indigo-pink.scss +0 -20
- package/theming/prebuilt/orange-light-blue.css +0 -2815
- package/theming/prebuilt/orange-light-blue.css.map +0 -1
- package/theming/prebuilt/orange-light-blue.scss +0 -20
- package/theming/prebuilt/teal-orange.css +0 -2815
- package/theming/prebuilt/teal-orange.css.map +0 -1
- package/theming/prebuilt/teal-orange.scss +0 -20
- package/user-profile/index.d.ts +0 -1
- package/user-profile/user-profile-menu/user-profile-menu.component.scss +0 -41
@@ -1,416 +1,59 @@
|
|
1
1
|
import * as i0 from '@angular/core';
|
2
2
|
import { EventEmitter, Component, Input, Output, ViewChild, NgModule } from '@angular/core';
|
3
|
-
import * as
|
3
|
+
import * as i5 from '@angular/common';
|
4
4
|
import { CommonModule } from '@angular/common';
|
5
|
-
import * as
|
5
|
+
import * as i1$1 from '@angular/material/button';
|
6
6
|
import { MatButtonModule } from '@angular/material/button';
|
7
|
-
import * as
|
7
|
+
import * as i2 from '@angular/material/icon';
|
8
8
|
import { MatIconModule } from '@angular/material/icon';
|
9
9
|
import { MatListModule } from '@angular/material/list';
|
10
10
|
import * as i1 from '@angular/material/menu';
|
11
11
|
import { MatMenuModule } from '@angular/material/menu';
|
12
12
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
13
|
-
import * as
|
13
|
+
import * as i3 from '@angular/material/divider';
|
14
14
|
|
15
|
-
|
16
|
-
if (rf & 1) {
|
17
|
-
i0.ɵɵelement(0, "mat-icon", 7);
|
18
|
-
}
|
19
|
-
if (rf & 2) {
|
20
|
-
const ctx_r3 = i0.ɵɵnextContext(2);
|
21
|
-
i0.ɵɵclassMap(ctx_r3.trigger.iconClasses);
|
22
|
-
i0.ɵɵproperty("svgIcon", ctx_r3.trigger.svgIcon);
|
23
|
-
}
|
24
|
-
}
|
25
|
-
function TdDynamicMenuComponent_button_0_mat_icon_2_Template(rf, ctx) {
|
26
|
-
if (rf & 1) {
|
27
|
-
i0.ɵɵelementStart(0, "mat-icon");
|
28
|
-
i0.ɵɵtext(1);
|
29
|
-
i0.ɵɵelementEnd();
|
30
|
-
}
|
31
|
-
if (rf & 2) {
|
32
|
-
const ctx_r4 = i0.ɵɵnextContext(2);
|
33
|
-
i0.ɵɵclassMap(ctx_r4.trigger.iconClasses);
|
34
|
-
i0.ɵɵadvance(1);
|
35
|
-
i0.ɵɵtextInterpolate(ctx_r4.trigger.icon);
|
36
|
-
}
|
37
|
-
}
|
38
|
-
function TdDynamicMenuComponent_button_0_Template(rf, ctx) {
|
39
|
-
if (rf & 1) {
|
40
|
-
i0.ɵɵelementStart(0, "button", 4);
|
41
|
-
i0.ɵɵtemplate(1, TdDynamicMenuComponent_button_0_mat_icon_1_Template, 1, 3, "mat-icon", 5);
|
42
|
-
i0.ɵɵtemplate(2, TdDynamicMenuComponent_button_0_mat_icon_2_Template, 2, 3, "mat-icon", 6);
|
43
|
-
i0.ɵɵelementEnd();
|
44
|
-
}
|
45
|
-
if (rf & 2) {
|
46
|
-
const ctx_r0 = i0.ɵɵnextContext();
|
47
|
-
const _r2 = i0.ɵɵreference(3);
|
48
|
-
i0.ɵɵpropertyInterpolate("id", ctx_r0.trigger.id);
|
49
|
-
i0.ɵɵproperty("matMenuTriggerFor", _r2.childMenu);
|
50
|
-
i0.ɵɵadvance(1);
|
51
|
-
i0.ɵɵproperty("ngIf", ctx_r0.trigger.svgIcon);
|
52
|
-
i0.ɵɵadvance(1);
|
53
|
-
i0.ɵɵproperty("ngIf", ctx_r0.trigger.icon);
|
54
|
-
}
|
55
|
-
}
|
56
|
-
function TdDynamicMenuComponent_button_1_mat_icon_1_Template(rf, ctx) {
|
57
|
-
if (rf & 1) {
|
58
|
-
i0.ɵɵelement(0, "mat-icon", 7);
|
59
|
-
}
|
60
|
-
if (rf & 2) {
|
61
|
-
const ctx_r5 = i0.ɵɵnextContext(2);
|
62
|
-
i0.ɵɵclassMap(ctx_r5.trigger.iconClasses);
|
63
|
-
i0.ɵɵproperty("svgIcon", ctx_r5.trigger.svgIcon);
|
64
|
-
}
|
65
|
-
}
|
66
|
-
function TdDynamicMenuComponent_button_1_mat_icon_2_Template(rf, ctx) {
|
67
|
-
if (rf & 1) {
|
68
|
-
i0.ɵɵelementStart(0, "mat-icon");
|
69
|
-
i0.ɵɵtext(1);
|
70
|
-
i0.ɵɵelementEnd();
|
71
|
-
}
|
72
|
-
if (rf & 2) {
|
73
|
-
const ctx_r6 = i0.ɵɵnextContext(2);
|
74
|
-
i0.ɵɵclassMap(ctx_r6.trigger.iconClasses);
|
75
|
-
i0.ɵɵadvance(1);
|
76
|
-
i0.ɵɵtextInterpolate(ctx_r6.trigger.icon);
|
77
|
-
}
|
78
|
-
}
|
79
|
-
function TdDynamicMenuComponent_button_1_span_3_Template(rf, ctx) {
|
80
|
-
if (rf & 1) {
|
81
|
-
i0.ɵɵelementStart(0, "span");
|
82
|
-
i0.ɵɵtext(1);
|
83
|
-
i0.ɵɵelementEnd();
|
84
|
-
}
|
85
|
-
if (rf & 2) {
|
86
|
-
const ctx_r7 = i0.ɵɵnextContext(2);
|
87
|
-
i0.ɵɵadvance(1);
|
88
|
-
i0.ɵɵtextInterpolate1(" ", ctx_r7.trigger.text, " ");
|
89
|
-
}
|
90
|
-
}
|
91
|
-
function TdDynamicMenuComponent_button_1_Template(rf, ctx) {
|
92
|
-
if (rf & 1) {
|
93
|
-
i0.ɵɵelementStart(0, "button", 8);
|
94
|
-
i0.ɵɵtemplate(1, TdDynamicMenuComponent_button_1_mat_icon_1_Template, 1, 3, "mat-icon", 5);
|
95
|
-
i0.ɵɵtemplate(2, TdDynamicMenuComponent_button_1_mat_icon_2_Template, 2, 3, "mat-icon", 6);
|
96
|
-
i0.ɵɵtemplate(3, TdDynamicMenuComponent_button_1_span_3_Template, 2, 1, "span", 9);
|
97
|
-
i0.ɵɵelementEnd();
|
98
|
-
}
|
99
|
-
if (rf & 2) {
|
100
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
101
|
-
const _r2 = i0.ɵɵreference(3);
|
102
|
-
i0.ɵɵpropertyInterpolate("id", ctx_r1.trigger.id);
|
103
|
-
i0.ɵɵproperty("matMenuTriggerFor", _r2.childMenu);
|
104
|
-
i0.ɵɵadvance(1);
|
105
|
-
i0.ɵɵproperty("ngIf", ctx_r1.trigger.svgIcon);
|
106
|
-
i0.ɵɵadvance(1);
|
107
|
-
i0.ɵɵproperty("ngIf", ctx_r1.trigger.icon);
|
108
|
-
i0.ɵɵadvance(1);
|
109
|
-
i0.ɵɵproperty("ngIf", ctx_r1.trigger.text);
|
110
|
-
}
|
111
|
-
}
|
112
|
-
class TdDynamicMenuComponent {
|
15
|
+
class TdDynamicMenuLinkComponent {
|
113
16
|
constructor() {
|
114
17
|
this.itemClicked = new EventEmitter();
|
115
18
|
}
|
116
|
-
emitClicked(
|
117
|
-
this.itemClicked.emit(
|
19
|
+
emitClicked() {
|
20
|
+
this.itemClicked.emit({ text: this.item.text, action: this.item.action });
|
118
21
|
}
|
119
22
|
}
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
i0.ɵɵtemplate(0, TdDynamicMenuComponent_button_0_Template, 3, 4, "button", 0);
|
124
|
-
i0.ɵɵtemplate(1, TdDynamicMenuComponent_button_1_Template, 4, 5, "button", 1);
|
125
|
-
i0.ɵɵelementStart(2, "td-dynamic-menu-item", 2, 3);
|
126
|
-
i0.ɵɵlistener("itemClicked", function TdDynamicMenuComponent_Template_td_dynamic_menu_item_itemClicked_2_listener($event) { return ctx.emitClicked($event); });
|
127
|
-
i0.ɵɵelementEnd();
|
128
|
-
}
|
129
|
-
if (rf & 2) {
|
130
|
-
i0.ɵɵproperty("ngIf", !ctx.trigger.text);
|
131
|
-
i0.ɵɵadvance(1);
|
132
|
-
i0.ɵɵproperty("ngIf", ctx.trigger.text);
|
133
|
-
i0.ɵɵadvance(1);
|
134
|
-
i0.ɵɵproperty("items", ctx.items);
|
135
|
-
}
|
136
|
-
}, styles: [""] });
|
137
|
-
(function () {
|
138
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdDynamicMenuComponent, [{
|
23
|
+
TdDynamicMenuLinkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdDynamicMenuLinkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
24
|
+
TdDynamicMenuLinkComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdDynamicMenuLinkComponent, selector: "td-dynamic-menu-link", inputs: { item: "item" }, outputs: { itemClicked: "itemClicked" }, ngImport: i0, template: "<a\n *ngIf=\"item.link\"\n class=\"new-tab\"\n mat-menu-item\n [id]=\"item.id\"\n [href]=\"item.link\"\n [target]=\"item.newTab ? '_blank' : '_self'\"\n (click)=\"emitClicked()\"\n>\n <mat-icon\n *ngIf=\"item.svgIcon\"\n [class]=\"item.iconClasses\"\n [svgIcon]=\"item.svgIcon\"\n ></mat-icon>\n <mat-icon *ngIf=\"item.icon\" [class]=\"item.iconClasses\">{{\n item.icon\n }}</mat-icon>\n <span>{{ item.text }}</span>\n <mat-icon *ngIf=\"item.newTab\" class=\"new-tab-icon\">launch</mat-icon>\n</a>\n<button\n *ngIf=\"item.action\"\n mat-menu-item\n [id]=\"item.id\"\n (click)=\"emitClicked()\"\n>\n <mat-icon\n *ngIf=\"item.svgIcon\"\n [class]=\"item.iconClasses\"\n [svgIcon]=\"item.svgIcon\"\n ></mat-icon>\n <mat-icon *ngIf=\"item.icon\" [class]=\"item.iconClasses\">{{\n item.icon\n }}</mat-icon>\n <span>{{ item.text }}</span>\n</button>\n", styles: [".new-tab{display:flex;justify-content:flex-start;align-items:center}.new-tab span{flex:1}.new-tab .new-tab-icon{margin:0 0 0 16px}\n"], components: [{ type: i1.MatMenuItem, selector: "[mat-menu-item]", inputs: ["disabled", "disableRipple", "role"], exportAs: ["matMenuItem"] }, { type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], directives: [{ type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdDynamicMenuLinkComponent, decorators: [{
|
139
26
|
type: Component,
|
140
|
-
args: [{ selector: 'td-dynamic-menu', template: "<
|
141
|
-
}],
|
142
|
-
type: Input
|
143
|
-
}], items: [{
|
27
|
+
args: [{ selector: 'td-dynamic-menu-link', template: "<a\n *ngIf=\"item.link\"\n class=\"new-tab\"\n mat-menu-item\n [id]=\"item.id\"\n [href]=\"item.link\"\n [target]=\"item.newTab ? '_blank' : '_self'\"\n (click)=\"emitClicked()\"\n>\n <mat-icon\n *ngIf=\"item.svgIcon\"\n [class]=\"item.iconClasses\"\n [svgIcon]=\"item.svgIcon\"\n ></mat-icon>\n <mat-icon *ngIf=\"item.icon\" [class]=\"item.iconClasses\">{{\n item.icon\n }}</mat-icon>\n <span>{{ item.text }}</span>\n <mat-icon *ngIf=\"item.newTab\" class=\"new-tab-icon\">launch</mat-icon>\n</a>\n<button\n *ngIf=\"item.action\"\n mat-menu-item\n [id]=\"item.id\"\n (click)=\"emitClicked()\"\n>\n <mat-icon\n *ngIf=\"item.svgIcon\"\n [class]=\"item.iconClasses\"\n [svgIcon]=\"item.svgIcon\"\n ></mat-icon>\n <mat-icon *ngIf=\"item.icon\" [class]=\"item.iconClasses\">{{\n item.icon\n }}</mat-icon>\n <span>{{ item.text }}</span>\n</button>\n", styles: [".new-tab{display:flex;justify-content:flex-start;align-items:center}.new-tab span{flex:1}.new-tab .new-tab-icon{margin:0 0 0 16px}\n"] }]
|
28
|
+
}], propDecorators: { item: [{
|
144
29
|
type: Input
|
145
30
|
}], itemClicked: [{
|
146
31
|
type: Output
|
147
|
-
}] });
|
148
|
-
})();
|
32
|
+
}] } });
|
149
33
|
|
150
|
-
|
151
|
-
if (rf & 1) {
|
152
|
-
i0.ɵɵelement(0, "mat-icon", 6);
|
153
|
-
}
|
154
|
-
if (rf & 2) {
|
155
|
-
const ctx_r2 = i0.ɵɵnextContext(2);
|
156
|
-
i0.ɵɵclassMap(ctx_r2.item.iconClasses);
|
157
|
-
i0.ɵɵproperty("svgIcon", ctx_r2.item.svgIcon);
|
158
|
-
}
|
159
|
-
}
|
160
|
-
function TdDynamicMenuLinkComponent_a_0_mat_icon_2_Template(rf, ctx) {
|
161
|
-
if (rf & 1) {
|
162
|
-
i0.ɵɵelementStart(0, "mat-icon");
|
163
|
-
i0.ɵɵtext(1);
|
164
|
-
i0.ɵɵelementEnd();
|
165
|
-
}
|
166
|
-
if (rf & 2) {
|
167
|
-
const ctx_r3 = i0.ɵɵnextContext(2);
|
168
|
-
i0.ɵɵclassMap(ctx_r3.item.iconClasses);
|
169
|
-
i0.ɵɵadvance(1);
|
170
|
-
i0.ɵɵtextInterpolate(ctx_r3.item.icon);
|
171
|
-
}
|
172
|
-
}
|
173
|
-
function TdDynamicMenuLinkComponent_a_0_mat_icon_5_Template(rf, ctx) {
|
174
|
-
if (rf & 1) {
|
175
|
-
i0.ɵɵelementStart(0, "mat-icon", 7);
|
176
|
-
i0.ɵɵtext(1, "launch");
|
177
|
-
i0.ɵɵelementEnd();
|
178
|
-
}
|
179
|
-
}
|
180
|
-
function TdDynamicMenuLinkComponent_a_0_Template(rf, ctx) {
|
181
|
-
if (rf & 1) {
|
182
|
-
const _r6 = i0.ɵɵgetCurrentView();
|
183
|
-
i0.ɵɵelementStart(0, "a", 2);
|
184
|
-
i0.ɵɵlistener("click", function TdDynamicMenuLinkComponent_a_0_Template_a_click_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r5 = i0.ɵɵnextContext(); return ctx_r5.emitClicked(); });
|
185
|
-
i0.ɵɵtemplate(1, TdDynamicMenuLinkComponent_a_0_mat_icon_1_Template, 1, 3, "mat-icon", 3);
|
186
|
-
i0.ɵɵtemplate(2, TdDynamicMenuLinkComponent_a_0_mat_icon_2_Template, 2, 3, "mat-icon", 4);
|
187
|
-
i0.ɵɵelementStart(3, "span");
|
188
|
-
i0.ɵɵtext(4);
|
189
|
-
i0.ɵɵelementEnd();
|
190
|
-
i0.ɵɵtemplate(5, TdDynamicMenuLinkComponent_a_0_mat_icon_5_Template, 2, 0, "mat-icon", 5);
|
191
|
-
i0.ɵɵelementEnd();
|
192
|
-
}
|
193
|
-
if (rf & 2) {
|
194
|
-
const ctx_r0 = i0.ɵɵnextContext();
|
195
|
-
i0.ɵɵproperty("id", ctx_r0.item.id)("href", ctx_r0.item.link, i0.ɵɵsanitizeUrl)("target", ctx_r0.item.newTab ? "_blank" : "_self");
|
196
|
-
i0.ɵɵadvance(1);
|
197
|
-
i0.ɵɵproperty("ngIf", ctx_r0.item.svgIcon);
|
198
|
-
i0.ɵɵadvance(1);
|
199
|
-
i0.ɵɵproperty("ngIf", ctx_r0.item.icon);
|
200
|
-
i0.ɵɵadvance(2);
|
201
|
-
i0.ɵɵtextInterpolate(ctx_r0.item.text);
|
202
|
-
i0.ɵɵadvance(1);
|
203
|
-
i0.ɵɵproperty("ngIf", ctx_r0.item.newTab);
|
204
|
-
}
|
205
|
-
}
|
206
|
-
function TdDynamicMenuLinkComponent_button_1_mat_icon_1_Template(rf, ctx) {
|
207
|
-
if (rf & 1) {
|
208
|
-
i0.ɵɵelement(0, "mat-icon", 6);
|
209
|
-
}
|
210
|
-
if (rf & 2) {
|
211
|
-
const ctx_r7 = i0.ɵɵnextContext(2);
|
212
|
-
i0.ɵɵclassMap(ctx_r7.item.iconClasses);
|
213
|
-
i0.ɵɵproperty("svgIcon", ctx_r7.item.svgIcon);
|
214
|
-
}
|
215
|
-
}
|
216
|
-
function TdDynamicMenuLinkComponent_button_1_mat_icon_2_Template(rf, ctx) {
|
217
|
-
if (rf & 1) {
|
218
|
-
i0.ɵɵelementStart(0, "mat-icon");
|
219
|
-
i0.ɵɵtext(1);
|
220
|
-
i0.ɵɵelementEnd();
|
221
|
-
}
|
222
|
-
if (rf & 2) {
|
223
|
-
const ctx_r8 = i0.ɵɵnextContext(2);
|
224
|
-
i0.ɵɵclassMap(ctx_r8.item.iconClasses);
|
225
|
-
i0.ɵɵadvance(1);
|
226
|
-
i0.ɵɵtextInterpolate(ctx_r8.item.icon);
|
227
|
-
}
|
228
|
-
}
|
229
|
-
function TdDynamicMenuLinkComponent_button_1_Template(rf, ctx) {
|
230
|
-
if (rf & 1) {
|
231
|
-
const _r10 = i0.ɵɵgetCurrentView();
|
232
|
-
i0.ɵɵelementStart(0, "button", 8);
|
233
|
-
i0.ɵɵlistener("click", function TdDynamicMenuLinkComponent_button_1_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r10); const ctx_r9 = i0.ɵɵnextContext(); return ctx_r9.emitClicked(); });
|
234
|
-
i0.ɵɵtemplate(1, TdDynamicMenuLinkComponent_button_1_mat_icon_1_Template, 1, 3, "mat-icon", 3);
|
235
|
-
i0.ɵɵtemplate(2, TdDynamicMenuLinkComponent_button_1_mat_icon_2_Template, 2, 3, "mat-icon", 4);
|
236
|
-
i0.ɵɵelementStart(3, "span");
|
237
|
-
i0.ɵɵtext(4);
|
238
|
-
i0.ɵɵelementEnd();
|
239
|
-
i0.ɵɵelementEnd();
|
240
|
-
}
|
241
|
-
if (rf & 2) {
|
242
|
-
const ctx_r1 = i0.ɵɵnextContext();
|
243
|
-
i0.ɵɵproperty("id", ctx_r1.item.id);
|
244
|
-
i0.ɵɵadvance(1);
|
245
|
-
i0.ɵɵproperty("ngIf", ctx_r1.item.svgIcon);
|
246
|
-
i0.ɵɵadvance(1);
|
247
|
-
i0.ɵɵproperty("ngIf", ctx_r1.item.icon);
|
248
|
-
i0.ɵɵadvance(2);
|
249
|
-
i0.ɵɵtextInterpolate(ctx_r1.item.text);
|
250
|
-
}
|
251
|
-
}
|
252
|
-
class TdDynamicMenuLinkComponent {
|
34
|
+
class TdDynamicMenuItemComponent {
|
253
35
|
constructor() {
|
254
36
|
this.itemClicked = new EventEmitter();
|
255
37
|
}
|
256
|
-
emitClicked() {
|
257
|
-
this.itemClicked.emit(
|
38
|
+
emitClicked(event) {
|
39
|
+
this.itemClicked.emit(event);
|
258
40
|
}
|
259
41
|
}
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
i0.ɵɵtemplate(0, TdDynamicMenuLinkComponent_a_0_Template, 6, 7, "a", 0);
|
264
|
-
i0.ɵɵtemplate(1, TdDynamicMenuLinkComponent_button_1_Template, 5, 4, "button", 1);
|
265
|
-
}
|
266
|
-
if (rf & 2) {
|
267
|
-
i0.ɵɵproperty("ngIf", ctx.item.link);
|
268
|
-
i0.ɵɵadvance(1);
|
269
|
-
i0.ɵɵproperty("ngIf", ctx.item.action);
|
270
|
-
}
|
271
|
-
}, directives: [i2.NgIf, i1.MatMenuItem, i3.MatIcon], styles: [".new-tab[_ngcontent-%COMP%]{display:-ms-flexbox;display:flex;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-align:center;align-items:center}.new-tab[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{-ms-flex:1;flex:1}.new-tab[_ngcontent-%COMP%] .new-tab-icon[_ngcontent-%COMP%]{margin:0 0 0 16px}"] });
|
272
|
-
(function () {
|
273
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdDynamicMenuLinkComponent, [{
|
42
|
+
TdDynamicMenuItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdDynamicMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
43
|
+
TdDynamicMenuItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdDynamicMenuItemComponent, selector: "td-dynamic-menu-item", inputs: { items: "items" }, outputs: { itemClicked: "itemClicked" }, viewQueries: [{ propertyName: "childMenu", first: true, predicate: ["childMenu"], descendants: true, static: true }], ngImport: i0, template: "<mat-menu #childMenu=\"matMenu\" [overlapTrigger]=\"false\">\n <ng-template let-item let-index=\"index\" ngFor [ngForOf]=\"items\">\n <ng-container *ngIf=\"item.children && item.children.length > 0\">\n <button mat-menu-item [id]=\"item.id\" [matMenuTriggerFor]=\"menu.childMenu\">\n <mat-icon\n *ngIf=\"item.svgIcon\"\n [class]=\"item.iconClasses\"\n [svgIcon]=\"item.svgIcon\"\n ></mat-icon>\n <mat-icon *ngIf=\"item.icon\" [class]=\"item.iconClasses\">{{\n item.icon\n }}</mat-icon>\n <span *ngIf=\"item.text\">\n {{ item.text }}\n </span>\n </button>\n <td-dynamic-menu-item\n #menu\n [items]=\"item.children\"\n ></td-dynamic-menu-item>\n </ng-container>\n <ng-container *ngIf=\"!item.children || item.children.length === 0\">\n <ng-container *ngIf=\"!item.link && !item.action\">\n <mat-divider class=\"group-divider\" *ngIf=\"index > 0\"></mat-divider>\n <div class=\"group-label text-sm\">{{ item.text }}</div>\n </ng-container>\n <ng-container *ngIf=\"item.link || item.action\">\n <div mat-menu-item class=\"pad-none\">\n <td-dynamic-menu-link\n [item]=\"item\"\n (itemClicked)=\"emitClicked($event)\"\n ></td-dynamic-menu-link>\n </div>\n </ng-container>\n </ng-container>\n </ng-template>\n</mat-menu>\n", styles: [".group-divider{margin:8px}.group-label{padding:16px}\n"], components: [{ type: i1.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }, { type: i1.MatMenuItem, selector: "[mat-menu-item]", inputs: ["disabled", "disableRipple", "role"], exportAs: ["matMenuItem"] }, { type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: TdDynamicMenuItemComponent, selector: "td-dynamic-menu-item", inputs: ["items"], outputs: ["itemClicked"] }, { type: i3.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { type: TdDynamicMenuLinkComponent, selector: "td-dynamic-menu-link", inputs: ["item"], outputs: ["itemClicked"] }], directives: [{ type: i5.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", exportAs: ["matMenuTrigger"] }] });
|
44
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdDynamicMenuItemComponent, decorators: [{
|
274
45
|
type: Component,
|
275
|
-
args: [{ selector: 'td-dynamic-menu-
|
276
|
-
}],
|
46
|
+
args: [{ selector: 'td-dynamic-menu-item', template: "<mat-menu #childMenu=\"matMenu\" [overlapTrigger]=\"false\">\n <ng-template let-item let-index=\"index\" ngFor [ngForOf]=\"items\">\n <ng-container *ngIf=\"item.children && item.children.length > 0\">\n <button mat-menu-item [id]=\"item.id\" [matMenuTriggerFor]=\"menu.childMenu\">\n <mat-icon\n *ngIf=\"item.svgIcon\"\n [class]=\"item.iconClasses\"\n [svgIcon]=\"item.svgIcon\"\n ></mat-icon>\n <mat-icon *ngIf=\"item.icon\" [class]=\"item.iconClasses\">{{\n item.icon\n }}</mat-icon>\n <span *ngIf=\"item.text\">\n {{ item.text }}\n </span>\n </button>\n <td-dynamic-menu-item\n #menu\n [items]=\"item.children\"\n ></td-dynamic-menu-item>\n </ng-container>\n <ng-container *ngIf=\"!item.children || item.children.length === 0\">\n <ng-container *ngIf=\"!item.link && !item.action\">\n <mat-divider class=\"group-divider\" *ngIf=\"index > 0\"></mat-divider>\n <div class=\"group-label text-sm\">{{ item.text }}</div>\n </ng-container>\n <ng-container *ngIf=\"item.link || item.action\">\n <div mat-menu-item class=\"pad-none\">\n <td-dynamic-menu-link\n [item]=\"item\"\n (itemClicked)=\"emitClicked($event)\"\n ></td-dynamic-menu-link>\n </div>\n </ng-container>\n </ng-container>\n </ng-template>\n</mat-menu>\n", styles: [".group-divider{margin:8px}.group-label{padding:16px}\n"] }]
|
47
|
+
}], propDecorators: { items: [{
|
277
48
|
type: Input
|
278
49
|
}], itemClicked: [{
|
279
50
|
type: Output
|
280
|
-
}]
|
281
|
-
|
51
|
+
}], childMenu: [{
|
52
|
+
type: ViewChild,
|
53
|
+
args: ['childMenu', { static: true }]
|
54
|
+
}] } });
|
282
55
|
|
283
|
-
|
284
|
-
function TdDynamicMenuItemComponent_ng_template_2_ng_container_0_mat_icon_2_Template(rf, ctx) {
|
285
|
-
if (rf & 1) {
|
286
|
-
i0.ɵɵelement(0, "mat-icon", 9);
|
287
|
-
}
|
288
|
-
if (rf & 2) {
|
289
|
-
const item_r2 = i0.ɵɵnextContext(2).$implicit;
|
290
|
-
i0.ɵɵclassMap(item_r2.iconClasses);
|
291
|
-
i0.ɵɵproperty("svgIcon", item_r2.svgIcon);
|
292
|
-
}
|
293
|
-
}
|
294
|
-
function TdDynamicMenuItemComponent_ng_template_2_ng_container_0_mat_icon_3_Template(rf, ctx) {
|
295
|
-
if (rf & 1) {
|
296
|
-
i0.ɵɵelementStart(0, "mat-icon");
|
297
|
-
i0.ɵɵtext(1);
|
298
|
-
i0.ɵɵelementEnd();
|
299
|
-
}
|
300
|
-
if (rf & 2) {
|
301
|
-
const item_r2 = i0.ɵɵnextContext(2).$implicit;
|
302
|
-
i0.ɵɵclassMap(item_r2.iconClasses);
|
303
|
-
i0.ɵɵadvance(1);
|
304
|
-
i0.ɵɵtextInterpolate(item_r2.icon);
|
305
|
-
}
|
306
|
-
}
|
307
|
-
function TdDynamicMenuItemComponent_ng_template_2_ng_container_0_span_4_Template(rf, ctx) {
|
308
|
-
if (rf & 1) {
|
309
|
-
i0.ɵɵelementStart(0, "span");
|
310
|
-
i0.ɵɵtext(1);
|
311
|
-
i0.ɵɵelementEnd();
|
312
|
-
}
|
313
|
-
if (rf & 2) {
|
314
|
-
const item_r2 = i0.ɵɵnextContext(2).$implicit;
|
315
|
-
i0.ɵɵadvance(1);
|
316
|
-
i0.ɵɵtextInterpolate1(" ", item_r2.text, " ");
|
317
|
-
}
|
318
|
-
}
|
319
|
-
function TdDynamicMenuItemComponent_ng_template_2_ng_container_0_Template(rf, ctx) {
|
320
|
-
if (rf & 1) {
|
321
|
-
i0.ɵɵelementContainerStart(0);
|
322
|
-
i0.ɵɵelementStart(1, "button", 4);
|
323
|
-
i0.ɵɵtemplate(2, TdDynamicMenuItemComponent_ng_template_2_ng_container_0_mat_icon_2_Template, 1, 3, "mat-icon", 5);
|
324
|
-
i0.ɵɵtemplate(3, TdDynamicMenuItemComponent_ng_template_2_ng_container_0_mat_icon_3_Template, 2, 3, "mat-icon", 6);
|
325
|
-
i0.ɵɵtemplate(4, TdDynamicMenuItemComponent_ng_template_2_ng_container_0_span_4_Template, 2, 1, "span", 3);
|
326
|
-
i0.ɵɵelementEnd();
|
327
|
-
i0.ɵɵelement(5, "td-dynamic-menu-item", 7, 8);
|
328
|
-
i0.ɵɵelementContainerEnd();
|
329
|
-
}
|
330
|
-
if (rf & 2) {
|
331
|
-
const _r9 = i0.ɵɵreference(6);
|
332
|
-
const item_r2 = i0.ɵɵnextContext().$implicit;
|
333
|
-
i0.ɵɵadvance(1);
|
334
|
-
i0.ɵɵproperty("id", item_r2.id)("matMenuTriggerFor", _r9.childMenu);
|
335
|
-
i0.ɵɵadvance(1);
|
336
|
-
i0.ɵɵproperty("ngIf", item_r2.svgIcon);
|
337
|
-
i0.ɵɵadvance(1);
|
338
|
-
i0.ɵɵproperty("ngIf", item_r2.icon);
|
339
|
-
i0.ɵɵadvance(1);
|
340
|
-
i0.ɵɵproperty("ngIf", item_r2.text);
|
341
|
-
i0.ɵɵadvance(1);
|
342
|
-
i0.ɵɵproperty("items", item_r2.children);
|
343
|
-
}
|
344
|
-
}
|
345
|
-
function TdDynamicMenuItemComponent_ng_template_2_ng_container_1_ng_container_1_mat_divider_1_Template(rf, ctx) {
|
346
|
-
if (rf & 1) {
|
347
|
-
i0.ɵɵelement(0, "mat-divider", 12);
|
348
|
-
}
|
349
|
-
}
|
350
|
-
function TdDynamicMenuItemComponent_ng_template_2_ng_container_1_ng_container_1_Template(rf, ctx) {
|
351
|
-
if (rf & 1) {
|
352
|
-
i0.ɵɵelementContainerStart(0);
|
353
|
-
i0.ɵɵtemplate(1, TdDynamicMenuItemComponent_ng_template_2_ng_container_1_ng_container_1_mat_divider_1_Template, 1, 0, "mat-divider", 10);
|
354
|
-
i0.ɵɵelementStart(2, "div", 11);
|
355
|
-
i0.ɵɵtext(3);
|
356
|
-
i0.ɵɵelementEnd();
|
357
|
-
i0.ɵɵelementContainerEnd();
|
358
|
-
}
|
359
|
-
if (rf & 2) {
|
360
|
-
const ctx_r17 = i0.ɵɵnextContext(2);
|
361
|
-
const index_r3 = ctx_r17.index;
|
362
|
-
const item_r2 = ctx_r17.$implicit;
|
363
|
-
i0.ɵɵadvance(1);
|
364
|
-
i0.ɵɵproperty("ngIf", index_r3 > 0);
|
365
|
-
i0.ɵɵadvance(2);
|
366
|
-
i0.ɵɵtextInterpolate(item_r2.text);
|
367
|
-
}
|
368
|
-
}
|
369
|
-
function TdDynamicMenuItemComponent_ng_template_2_ng_container_1_ng_container_2_Template(rf, ctx) {
|
370
|
-
if (rf & 1) {
|
371
|
-
const _r19 = i0.ɵɵgetCurrentView();
|
372
|
-
i0.ɵɵelementContainerStart(0);
|
373
|
-
i0.ɵɵelementStart(1, "div", 13);
|
374
|
-
i0.ɵɵelementStart(2, "td-dynamic-menu-link", 14);
|
375
|
-
i0.ɵɵlistener("itemClicked", function TdDynamicMenuItemComponent_ng_template_2_ng_container_1_ng_container_2_Template_td_dynamic_menu_link_itemClicked_2_listener($event) { i0.ɵɵrestoreView(_r19); const ctx_r18 = i0.ɵɵnextContext(3); return ctx_r18.emitClicked($event); });
|
376
|
-
i0.ɵɵelementEnd();
|
377
|
-
i0.ɵɵelementEnd();
|
378
|
-
i0.ɵɵelementContainerEnd();
|
379
|
-
}
|
380
|
-
if (rf & 2) {
|
381
|
-
const item_r2 = i0.ɵɵnextContext(2).$implicit;
|
382
|
-
i0.ɵɵadvance(2);
|
383
|
-
i0.ɵɵproperty("item", item_r2);
|
384
|
-
}
|
385
|
-
}
|
386
|
-
function TdDynamicMenuItemComponent_ng_template_2_ng_container_1_Template(rf, ctx) {
|
387
|
-
if (rf & 1) {
|
388
|
-
i0.ɵɵelementContainerStart(0);
|
389
|
-
i0.ɵɵtemplate(1, TdDynamicMenuItemComponent_ng_template_2_ng_container_1_ng_container_1_Template, 4, 2, "ng-container", 3);
|
390
|
-
i0.ɵɵtemplate(2, TdDynamicMenuItemComponent_ng_template_2_ng_container_1_ng_container_2_Template, 3, 1, "ng-container", 3);
|
391
|
-
i0.ɵɵelementContainerEnd();
|
392
|
-
}
|
393
|
-
if (rf & 2) {
|
394
|
-
const item_r2 = i0.ɵɵnextContext().$implicit;
|
395
|
-
i0.ɵɵadvance(1);
|
396
|
-
i0.ɵɵproperty("ngIf", !item_r2.link && !item_r2.action);
|
397
|
-
i0.ɵɵadvance(1);
|
398
|
-
i0.ɵɵproperty("ngIf", item_r2.link || item_r2.action);
|
399
|
-
}
|
400
|
-
}
|
401
|
-
function TdDynamicMenuItemComponent_ng_template_2_Template(rf, ctx) {
|
402
|
-
if (rf & 1) {
|
403
|
-
i0.ɵɵtemplate(0, TdDynamicMenuItemComponent_ng_template_2_ng_container_0_Template, 7, 6, "ng-container", 3);
|
404
|
-
i0.ɵɵtemplate(1, TdDynamicMenuItemComponent_ng_template_2_ng_container_1_Template, 3, 2, "ng-container", 3);
|
405
|
-
}
|
406
|
-
if (rf & 2) {
|
407
|
-
const item_r2 = ctx.$implicit;
|
408
|
-
i0.ɵɵproperty("ngIf", item_r2.children && item_r2.children.length > 0);
|
409
|
-
i0.ɵɵadvance(1);
|
410
|
-
i0.ɵɵproperty("ngIf", !item_r2.children || item_r2.children.length === 0);
|
411
|
-
}
|
412
|
-
}
|
413
|
-
class TdDynamicMenuItemComponent {
|
56
|
+
class TdDynamicMenuComponent {
|
414
57
|
constructor() {
|
415
58
|
this.itemClicked = new EventEmitter();
|
416
59
|
}
|
@@ -418,59 +61,64 @@ class TdDynamicMenuItemComponent {
|
|
418
61
|
this.itemClicked.emit(event);
|
419
62
|
}
|
420
63
|
}
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
i0.ɵɵviewQuery(_c0, 7);
|
425
|
-
}
|
426
|
-
if (rf & 2) {
|
427
|
-
let _t;
|
428
|
-
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.childMenu = _t.first);
|
429
|
-
}
|
430
|
-
}, inputs: { items: "items" }, outputs: { itemClicked: "itemClicked" }, decls: 3, vars: 2, consts: [[3, "overlapTrigger"], ["childMenu", "matMenu"], ["ngFor", "", 3, "ngForOf"], [4, "ngIf"], ["mat-menu-item", "", 3, "id", "matMenuTriggerFor"], [3, "class", "svgIcon", 4, "ngIf"], [3, "class", 4, "ngIf"], [3, "items"], ["menu", ""], [3, "svgIcon"], ["class", "group-divider", 4, "ngIf"], [1, "group-label", "text-sm"], [1, "group-divider"], ["mat-menu-item", "", 1, "pad-none"], [3, "item", "itemClicked"]], template: function TdDynamicMenuItemComponent_Template(rf, ctx) {
|
431
|
-
if (rf & 1) {
|
432
|
-
i0.ɵɵelementStart(0, "mat-menu", 0, 1);
|
433
|
-
i0.ɵɵtemplate(2, TdDynamicMenuItemComponent_ng_template_2_Template, 2, 2, "ng-template", 2);
|
434
|
-
i0.ɵɵelementEnd();
|
435
|
-
}
|
436
|
-
if (rf & 2) {
|
437
|
-
i0.ɵɵproperty("overlapTrigger", false);
|
438
|
-
i0.ɵɵadvance(2);
|
439
|
-
i0.ɵɵproperty("ngForOf", ctx.items);
|
440
|
-
}
|
441
|
-
}, directives: [i1.MatMenu, i2.NgForOf, i2.NgIf, i1.MatMenuItem, i1.MatMenuTrigger, i3.MatIcon, TdDynamicMenuItemComponent, i4.MatDivider, TdDynamicMenuLinkComponent], styles: [".group-divider[_ngcontent-%COMP%]{margin:8px}.group-label[_ngcontent-%COMP%]{padding:16px}"] });
|
442
|
-
(function () {
|
443
|
-
(typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TdDynamicMenuItemComponent, [{
|
64
|
+
TdDynamicMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdDynamicMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
65
|
+
TdDynamicMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: TdDynamicMenuComponent, selector: "td-dynamic-menu", inputs: { trigger: "trigger", items: "items" }, outputs: { itemClicked: "itemClicked" }, ngImport: i0, template: "<button\n *ngIf=\"!trigger.text\"\n mat-icon-button\n id=\"{{ trigger.id }}\"\n [matMenuTriggerFor]=\"menu.childMenu\"\n>\n <mat-icon\n *ngIf=\"trigger.svgIcon\"\n [class]=\"trigger.iconClasses\"\n [svgIcon]=\"trigger.svgIcon\"\n ></mat-icon>\n <mat-icon *ngIf=\"trigger.icon\" [class]=\"trigger.iconClasses\">{{\n trigger.icon\n }}</mat-icon>\n</button>\n<button\n *ngIf=\"trigger.text\"\n mat-button\n id=\"{{ trigger.id }}\"\n [matMenuTriggerFor]=\"menu.childMenu\"\n>\n <mat-icon\n *ngIf=\"trigger.svgIcon\"\n [class]=\"trigger.iconClasses\"\n [svgIcon]=\"trigger.svgIcon\"\n ></mat-icon>\n <mat-icon *ngIf=\"trigger.icon\" [class]=\"trigger.iconClasses\">{{\n trigger.icon\n }}</mat-icon>\n <span *ngIf=\"trigger.text\">\n {{ trigger.text }}\n </span>\n</button>\n\n<td-dynamic-menu-item\n #menu\n [items]=\"items\"\n (itemClicked)=\"emitClicked($event)\"\n></td-dynamic-menu-item>\n", styles: [""], components: [{ type: i1$1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: TdDynamicMenuItemComponent, selector: "td-dynamic-menu-item", inputs: ["items"], outputs: ["itemClicked"] }], directives: [{ type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", exportAs: ["matMenuTrigger"] }] });
|
66
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TdDynamicMenuComponent, decorators: [{
|
444
67
|
type: Component,
|
445
|
-
args: [{ selector: 'td-dynamic-menu
|
446
|
-
}],
|
68
|
+
args: [{ selector: 'td-dynamic-menu', template: "<button\n *ngIf=\"!trigger.text\"\n mat-icon-button\n id=\"{{ trigger.id }}\"\n [matMenuTriggerFor]=\"menu.childMenu\"\n>\n <mat-icon\n *ngIf=\"trigger.svgIcon\"\n [class]=\"trigger.iconClasses\"\n [svgIcon]=\"trigger.svgIcon\"\n ></mat-icon>\n <mat-icon *ngIf=\"trigger.icon\" [class]=\"trigger.iconClasses\">{{\n trigger.icon\n }}</mat-icon>\n</button>\n<button\n *ngIf=\"trigger.text\"\n mat-button\n id=\"{{ trigger.id }}\"\n [matMenuTriggerFor]=\"menu.childMenu\"\n>\n <mat-icon\n *ngIf=\"trigger.svgIcon\"\n [class]=\"trigger.iconClasses\"\n [svgIcon]=\"trigger.svgIcon\"\n ></mat-icon>\n <mat-icon *ngIf=\"trigger.icon\" [class]=\"trigger.iconClasses\">{{\n trigger.icon\n }}</mat-icon>\n <span *ngIf=\"trigger.text\">\n {{ trigger.text }}\n </span>\n</button>\n\n<td-dynamic-menu-item\n #menu\n [items]=\"items\"\n (itemClicked)=\"emitClicked($event)\"\n></td-dynamic-menu-item>\n", styles: [""] }]
|
69
|
+
}], propDecorators: { trigger: [{
|
70
|
+
type: Input
|
71
|
+
}], items: [{
|
447
72
|
type: Input
|
448
73
|
}], itemClicked: [{
|
449
74
|
type: Output
|
450
|
-
}]
|
451
|
-
type: ViewChild,
|
452
|
-
args: ['childMenu', { static: true }]
|
453
|
-
}] });
|
454
|
-
})();
|
75
|
+
}] } });
|
455
76
|
|
456
77
|
class CovalentDynamicMenuModule {
|
457
78
|
}
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
79
|
+
CovalentDynamicMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentDynamicMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
80
|
+
CovalentDynamicMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentDynamicMenuModule, declarations: [TdDynamicMenuComponent,
|
81
|
+
TdDynamicMenuItemComponent,
|
82
|
+
TdDynamicMenuLinkComponent], imports: [CommonModule,
|
83
|
+
MatButtonModule,
|
84
|
+
MatIconModule,
|
85
|
+
MatListModule,
|
86
|
+
MatMenuModule,
|
87
|
+
MatTooltipModule], exports: [TdDynamicMenuComponent,
|
88
|
+
TdDynamicMenuItemComponent,
|
89
|
+
TdDynamicMenuLinkComponent] });
|
90
|
+
CovalentDynamicMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentDynamicMenuModule, providers: [], imports: [[
|
91
|
+
CommonModule,
|
92
|
+
MatButtonModule,
|
93
|
+
MatIconModule,
|
94
|
+
MatListModule,
|
95
|
+
MatMenuModule,
|
96
|
+
MatTooltipModule,
|
97
|
+
]] });
|
98
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: CovalentDynamicMenuModule, decorators: [{
|
463
99
|
type: NgModule,
|
464
100
|
args: [{
|
465
|
-
declarations: [
|
466
|
-
|
101
|
+
declarations: [
|
102
|
+
TdDynamicMenuComponent,
|
103
|
+
TdDynamicMenuItemComponent,
|
104
|
+
TdDynamicMenuLinkComponent,
|
105
|
+
],
|
106
|
+
imports: [
|
107
|
+
CommonModule,
|
108
|
+
MatButtonModule,
|
109
|
+
MatIconModule,
|
110
|
+
MatListModule,
|
111
|
+
MatMenuModule,
|
112
|
+
MatTooltipModule,
|
113
|
+
],
|
467
114
|
providers: [],
|
468
|
-
exports: [
|
115
|
+
exports: [
|
116
|
+
TdDynamicMenuComponent,
|
117
|
+
TdDynamicMenuItemComponent,
|
118
|
+
TdDynamicMenuLinkComponent,
|
119
|
+
],
|
469
120
|
}]
|
470
|
-
}]
|
471
|
-
})();
|
472
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(CovalentDynamicMenuModule, { declarations: [TdDynamicMenuComponent, TdDynamicMenuItemComponent, TdDynamicMenuLinkComponent], imports: [CommonModule, MatButtonModule, MatIconModule, MatListModule, MatMenuModule, MatTooltipModule], exports: [TdDynamicMenuComponent, TdDynamicMenuItemComponent, TdDynamicMenuLinkComponent] }); })();
|
473
|
-
i0.ɵɵsetComponentScope(TdDynamicMenuComponent, [i2.NgIf, i2$1.MatButton, i1.MatMenuTrigger, i3.MatIcon, TdDynamicMenuItemComponent], []);
|
121
|
+
}] });
|
474
122
|
|
475
123
|
/**
|
476
124
|
* Generated bundle index. Do not edit.
|