@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
@@ -10,7 +10,7 @@ export declare class TdLayoutManageListComponent implements ILayoutTogglable {
|
|
10
10
|
* Defaults to "side".
|
11
11
|
* See "MatSidenav" documentation for more info.
|
12
12
|
*
|
13
|
-
* https://github.com/angular/material2/tree/
|
13
|
+
* https://github.com/angular/material2/tree/main/src/lib/sidenav
|
14
14
|
*/
|
15
15
|
mode: 'side' | 'push' | 'over';
|
16
16
|
/**
|
@@ -21,7 +21,7 @@ export declare class TdLayoutManageListComponent implements ILayoutTogglable {
|
|
21
21
|
*
|
22
22
|
* See "MatSidenav" documentation for more info.
|
23
23
|
*
|
24
|
-
* https://github.com/angular/material2/tree/
|
24
|
+
* https://github.com/angular/material2/tree/main/src/lib/sidenav
|
25
25
|
*/
|
26
26
|
opened: boolean;
|
27
27
|
/**
|
@@ -30,7 +30,7 @@ export declare class TdLayoutManageListComponent implements ILayoutTogglable {
|
|
30
30
|
* Sets the "width" of the sidenav in either "px" or "%"
|
31
31
|
* Defaults to "257px".
|
32
32
|
*
|
33
|
-
* https://github.com/angular/material2/tree/
|
33
|
+
* https://github.com/angular/material2/tree/main/src/lib/sidenav
|
34
34
|
*/
|
35
35
|
sidenavWidth: string;
|
36
36
|
/**
|
@@ -41,7 +41,7 @@ export declare class TdLayoutManageListComponent implements ILayoutTogglable {
|
|
41
41
|
*
|
42
42
|
* See documentation for more info and potential performance risks.
|
43
43
|
*
|
44
|
-
* https://github.com/angular/material2/blob/
|
44
|
+
* https://github.com/angular/material2/blob/main/src/lib/sidenav/sidenav.md#resizing-an-open-sidenav
|
45
45
|
*/
|
46
46
|
containerAutosize: boolean;
|
47
47
|
/**
|
@@ -3,23 +3,23 @@ import { TdLayoutManageListComponent } from './layout-manage-list.component';
|
|
3
3
|
import { BaseLayoutToggleDirective } from '../layout-toggle.class';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class TdLayoutManageListToggleDirective extends BaseLayoutToggleDirective {
|
6
|
-
set tdLayoutManageListToggle(tdLayoutManageListToggle: boolean);
|
6
|
+
set tdLayoutManageListToggle(tdLayoutManageListToggle: boolean | string);
|
7
7
|
constructor(layout: TdLayoutManageListComponent, renderer: Renderer2, elementRef: ElementRef);
|
8
8
|
onClick(): void;
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdLayoutManageListToggleDirective, [{ optional: true; }, null, null]>;
|
10
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutManageListToggleDirective, "[tdLayoutManageListToggle]", never, { "
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutManageListToggleDirective, "[tdLayoutManageListToggle]", never, { "tdLayoutManageListToggle": "tdLayoutManageListToggle"; }, {}, never>;
|
11
11
|
}
|
12
12
|
export declare class TdLayoutManageListCloseDirective extends BaseLayoutToggleDirective {
|
13
13
|
set tdLayoutManageListClose(tdLayoutManageListClose: boolean);
|
14
14
|
constructor(layout: TdLayoutManageListComponent, renderer: Renderer2, elementRef: ElementRef);
|
15
15
|
onClick(): void;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdLayoutManageListCloseDirective, [{ optional: true; }, null, null]>;
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutManageListCloseDirective, "[tdLayoutManageListClose]", never, { "
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutManageListCloseDirective, "[tdLayoutManageListClose]", never, { "tdLayoutManageListClose": "tdLayoutManageListClose"; }, {}, never>;
|
18
18
|
}
|
19
19
|
export declare class TdLayoutManageListOpenDirective extends BaseLayoutToggleDirective {
|
20
|
-
set tdLayoutManageListOpen(tdLayoutManageListOpen: boolean);
|
20
|
+
set tdLayoutManageListOpen(tdLayoutManageListOpen: boolean | string);
|
21
21
|
constructor(layout: TdLayoutManageListComponent, renderer: Renderer2, elementRef: ElementRef);
|
22
22
|
onClick(): void;
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdLayoutManageListOpenDirective, [{ optional: true; }, null, null]>;
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutManageListOpenDirective, "[tdLayoutManageListOpen]", never, { "
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutManageListOpenDirective, "[tdLayoutManageListOpen]", never, { "tdLayoutManageListOpen": "tdLayoutManageListOpen"; }, {}, never>;
|
25
25
|
}
|
@@ -7,33 +7,33 @@ export declare class TdLayoutNavComponent {
|
|
7
7
|
*
|
8
8
|
* Title set in toolbar.
|
9
9
|
*/
|
10
|
-
toolbarTitle
|
10
|
+
toolbarTitle?: string;
|
11
11
|
/**
|
12
12
|
* icon?: string
|
13
13
|
*
|
14
14
|
* icon name to be displayed before the title
|
15
15
|
*/
|
16
|
-
icon
|
16
|
+
icon?: string;
|
17
17
|
/**
|
18
18
|
* logo?: string
|
19
19
|
*
|
20
20
|
* logo icon name to be displayed before the title.
|
21
21
|
* If [icon] is set, then this will not be shown.
|
22
22
|
*/
|
23
|
-
logo
|
23
|
+
logo?: string;
|
24
24
|
/**
|
25
25
|
* color?: 'accent' | 'primary' | 'warn'
|
26
26
|
*
|
27
27
|
* toolbar color option: primary | accent | warn.
|
28
28
|
* If [color] is not set, primary is used.
|
29
29
|
*/
|
30
|
-
color
|
30
|
+
color?: 'accent' | 'primary' | 'warn';
|
31
31
|
/**
|
32
32
|
* navigationRoute?: string
|
33
33
|
*
|
34
34
|
* option to set the combined route for the icon, logo, and toolbarTitle.
|
35
35
|
*/
|
36
|
-
navigationRoute
|
36
|
+
navigationRoute?: string;
|
37
37
|
/**
|
38
38
|
* Checks if router was injected.
|
39
39
|
*/
|
@@ -10,26 +10,26 @@ export declare class TdLayoutNavListComponent implements ILayoutTogglable {
|
|
10
10
|
*
|
11
11
|
* Title set in toolbar.
|
12
12
|
*/
|
13
|
-
toolbarTitle
|
13
|
+
toolbarTitle?: string;
|
14
14
|
/**
|
15
15
|
* icon?: string
|
16
16
|
* icon name to be displayed before the title
|
17
17
|
*/
|
18
|
-
icon
|
18
|
+
icon?: string;
|
19
19
|
/**
|
20
20
|
* logo?: string
|
21
21
|
*
|
22
22
|
* logo icon name to be displayed before the title.
|
23
23
|
* If [icon] is set, then this will not be shown.
|
24
24
|
*/
|
25
|
-
logo
|
25
|
+
logo?: string;
|
26
26
|
/**
|
27
27
|
* color?: 'accent' | 'primary' | 'warn'
|
28
28
|
*
|
29
29
|
* toolbar color option: primary | accent | warn.
|
30
30
|
* If [color] is not set, primary is used.
|
31
31
|
*/
|
32
|
-
color
|
32
|
+
color?: 'accent' | 'primary' | 'warn';
|
33
33
|
/**
|
34
34
|
* mode?: 'side', 'push' or 'over'
|
35
35
|
*
|
@@ -37,7 +37,7 @@ export declare class TdLayoutNavListComponent implements ILayoutTogglable {
|
|
37
37
|
* Defaults to "side".
|
38
38
|
* See "MatSidenav" documentation for more info.
|
39
39
|
*
|
40
|
-
* https://github.com/angular/material2/tree/
|
40
|
+
* https://github.com/angular/material2/tree/main/src/lib/sidenav
|
41
41
|
*/
|
42
42
|
mode: 'side' | 'push' | 'over';
|
43
43
|
/**
|
@@ -47,7 +47,7 @@ export declare class TdLayoutNavListComponent implements ILayoutTogglable {
|
|
47
47
|
*
|
48
48
|
* See "MatSidenav" documentation for more info.
|
49
49
|
*
|
50
|
-
* https://github.com/angular/material2/tree/
|
50
|
+
* https://github.com/angular/material2/tree/main/src/lib/sidenav
|
51
51
|
*/
|
52
52
|
opened: boolean;
|
53
53
|
/**
|
@@ -56,7 +56,7 @@ export declare class TdLayoutNavListComponent implements ILayoutTogglable {
|
|
56
56
|
* Sets the "width" of the sidenav in either "px" or "%"
|
57
57
|
* Defaults to "350px".
|
58
58
|
*
|
59
|
-
* https://github.com/angular/material2/tree/
|
59
|
+
* https://github.com/angular/material2/tree/main/src/lib/sidenav
|
60
60
|
*/
|
61
61
|
sidenavWidth: string;
|
62
62
|
/**
|
@@ -67,7 +67,7 @@ export declare class TdLayoutNavListComponent implements ILayoutTogglable {
|
|
67
67
|
*
|
68
68
|
* See documentation for more info and potential performance risks.
|
69
69
|
*
|
70
|
-
* https://github.com/angular/material2/blob/
|
70
|
+
* https://github.com/angular/material2/blob/main/src/lib/sidenav/sidenav.md#resizing-an-open-sidenav
|
71
71
|
*/
|
72
72
|
containerAutosize: boolean;
|
73
73
|
/**
|
@@ -75,7 +75,7 @@ export declare class TdLayoutNavListComponent implements ILayoutTogglable {
|
|
75
75
|
*
|
76
76
|
* option to set the combined route for the icon, logo, and toolbarTitle.
|
77
77
|
*/
|
78
|
-
navigationRoute
|
78
|
+
navigationRoute?: string;
|
79
79
|
/**
|
80
80
|
* Checks if `ESC` should close the sidenav
|
81
81
|
* Should only close it for `push` and `over` modes
|
@@ -3,23 +3,23 @@ import { TdLayoutNavListComponent } from './layout-nav-list.component';
|
|
3
3
|
import { BaseLayoutToggleDirective } from '../layout-toggle.class';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class TdLayoutNavListToggleDirective extends BaseLayoutToggleDirective {
|
6
|
-
set tdLayoutNavListToggle(tdLayoutNavListToggle: boolean);
|
6
|
+
set tdLayoutNavListToggle(tdLayoutNavListToggle: boolean | string);
|
7
7
|
constructor(layout: TdLayoutNavListComponent, renderer: Renderer2, elementRef: ElementRef);
|
8
8
|
onClick(): void;
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdLayoutNavListToggleDirective, [{ optional: true; }, null, null]>;
|
10
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutNavListToggleDirective, "[tdLayoutNavListToggle]", never, { "
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutNavListToggleDirective, "[tdLayoutNavListToggle]", never, { "tdLayoutNavListToggle": "tdLayoutNavListToggle"; }, {}, never>;
|
11
11
|
}
|
12
12
|
export declare class TdLayoutNavListCloseDirective extends BaseLayoutToggleDirective {
|
13
13
|
set tdLayoutNavListClose(tdLayoutNavListClose: boolean);
|
14
14
|
constructor(layout: TdLayoutNavListComponent, renderer: Renderer2, elementRef: ElementRef);
|
15
15
|
onClick(): void;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdLayoutNavListCloseDirective, [{ optional: true; }, null, null]>;
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutNavListCloseDirective, "[tdLayoutNavListClose]", never, { "
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutNavListCloseDirective, "[tdLayoutNavListClose]", never, { "tdLayoutNavListClose": "tdLayoutNavListClose"; }, {}, never>;
|
18
18
|
}
|
19
19
|
export declare class TdLayoutNavListOpenDirective extends BaseLayoutToggleDirective {
|
20
|
-
set tdLayoutNavListOpen(tdLayoutNavListOpen: boolean);
|
20
|
+
set tdLayoutNavListOpen(tdLayoutNavListOpen: boolean | string);
|
21
21
|
constructor(layout: TdLayoutNavListComponent, renderer: Renderer2, elementRef: ElementRef);
|
22
22
|
onClick(): void;
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdLayoutNavListOpenDirective, [{ optional: true; }, null, null]>;
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutNavListOpenDirective, "[tdLayoutNavListOpen]", never, { "
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutNavListOpenDirective, "[tdLayoutNavListOpen]", never, { "tdLayoutNavListOpen": "tdLayoutNavListOpen"; }, {}, never>;
|
25
25
|
}
|
@@ -16,7 +16,7 @@ export declare abstract class BaseLayoutToggleDirective extends _TdLayoutToggleM
|
|
16
16
|
protected _layout: ILayoutTogglable;
|
17
17
|
private _renderer;
|
18
18
|
private _elementRef;
|
19
|
-
private _toggleSubs
|
19
|
+
private _toggleSubs?;
|
20
20
|
private _initialized;
|
21
21
|
private _hideWhenOpened;
|
22
22
|
/**
|
@@ -10,7 +10,7 @@ export declare class TdLayoutComponent implements ILayoutTogglable {
|
|
10
10
|
* Defaults to "over".
|
11
11
|
* See "MatSidenav" documentation for more info.
|
12
12
|
*
|
13
|
-
* https://github.com/angular/material2/tree/
|
13
|
+
* https://github.com/angular/material2/tree/main/src/lib/sidenav
|
14
14
|
*/
|
15
15
|
mode: 'side' | 'push' | 'over';
|
16
16
|
/**
|
@@ -21,7 +21,7 @@ export declare class TdLayoutComponent implements ILayoutTogglable {
|
|
21
21
|
*
|
22
22
|
* See "MatSidenav" documentation for more info.
|
23
23
|
*
|
24
|
-
* https://github.com/angular/material2/tree/
|
24
|
+
* https://github.com/angular/material2/tree/main/src/lib/sidenav
|
25
25
|
*/
|
26
26
|
opened: boolean;
|
27
27
|
/**
|
@@ -30,7 +30,7 @@ export declare class TdLayoutComponent implements ILayoutTogglable {
|
|
30
30
|
* Sets the "width" of the sidenav in either "px" or "%"
|
31
31
|
* Defaults to "320px".
|
32
32
|
*
|
33
|
-
* https://github.com/angular/material2/tree/
|
33
|
+
* https://github.com/angular/material2/tree/main/src/lib/sidenav
|
34
34
|
*/
|
35
35
|
sidenavWidth: string;
|
36
36
|
/**
|
@@ -41,7 +41,7 @@ export declare class TdLayoutComponent implements ILayoutTogglable {
|
|
41
41
|
*
|
42
42
|
* See documentation for more info and potential performance risks.
|
43
43
|
*
|
44
|
-
* https://github.com/angular/material2/blob/
|
44
|
+
* https://github.com/angular/material2/blob/main/src/lib/sidenav/sidenav.md#resizing-an-open-sidenav
|
45
45
|
*/
|
46
46
|
containerAutosize: boolean;
|
47
47
|
/**
|
@@ -3,14 +3,14 @@ import { TdLayoutComponent } from './layout.component';
|
|
3
3
|
import { BaseLayoutToggleDirective } from './layout-toggle.class';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class TdLayoutToggleDirective extends BaseLayoutToggleDirective {
|
6
|
-
set tdLayoutToggle(tdLayoutToggle: boolean);
|
6
|
+
set tdLayoutToggle(tdLayoutToggle: boolean | string);
|
7
7
|
constructor(layout: TdLayoutComponent, renderer: Renderer2, elementRef: ElementRef);
|
8
8
|
onClick(): void;
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdLayoutToggleDirective, [{ optional: true; }, null, null]>;
|
10
10
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TdLayoutToggleDirective, "[tdLayoutToggle]", never, { "tdLayoutToggle": "tdLayoutToggle"; }, {}, never>;
|
11
11
|
}
|
12
12
|
export declare class TdLayoutCloseDirective extends BaseLayoutToggleDirective {
|
13
|
-
set tdLayoutClose(tdLayoutClose: boolean);
|
13
|
+
set tdLayoutClose(tdLayoutClose: boolean | string | undefined);
|
14
14
|
constructor(layout: TdLayoutComponent, renderer: Renderer2, elementRef: ElementRef);
|
15
15
|
onClick(): void;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdLayoutCloseDirective, [{ optional: true; }, null, null]>;
|
@@ -6,17 +6,17 @@ import { TdLayoutComponent } from '../layout.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
export declare class TdNavigationDrawerMenuDirective {
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdNavigationDrawerMenuDirective, never>;
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TdNavigationDrawerMenuDirective, "[
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdNavigationDrawerMenuDirective, "[tdNavigationDrawerMenu]", never, {}, {}, never>;
|
10
10
|
}
|
11
11
|
export declare class TdNavigationDrawerToolbarDirective {
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<TdNavigationDrawerToolbarDirective, never>;
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TdNavigationDrawerToolbarDirective, "[
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TdNavigationDrawerToolbarDirective, "[tdNavigationDrawerToolbar]", never, {}, {}, never>;
|
14
14
|
}
|
15
15
|
export declare class TdNavigationDrawerComponent implements OnInit, OnDestroy {
|
16
16
|
private _layout;
|
17
17
|
private _router;
|
18
18
|
private _sanitize;
|
19
|
-
private _closeSubscription
|
19
|
+
private _closeSubscription?;
|
20
20
|
private _menuToggled;
|
21
21
|
private _backgroundImage;
|
22
22
|
get menuToggled(): boolean;
|
@@ -38,40 +38,40 @@ export declare class TdNavigationDrawerComponent implements OnInit, OnDestroy {
|
|
38
38
|
* sidenavTitle?: string
|
39
39
|
* Title set in sideNav.
|
40
40
|
*/
|
41
|
-
sidenavTitle
|
41
|
+
sidenavTitle?: string;
|
42
42
|
/**
|
43
43
|
* icon?: string
|
44
44
|
*
|
45
45
|
* icon name to be displayed before the title
|
46
46
|
*/
|
47
|
-
icon
|
47
|
+
icon?: string;
|
48
48
|
/**
|
49
49
|
* logo?: string
|
50
50
|
*
|
51
51
|
* logo icon name to be displayed before the title.
|
52
52
|
* If [icon] is set, then this will not be shown.
|
53
53
|
*/
|
54
|
-
logo
|
54
|
+
logo?: string;
|
55
55
|
/**
|
56
56
|
* avatar?: string
|
57
57
|
*
|
58
58
|
* avatar url to be displayed before the title
|
59
59
|
* If [icon] or [logo] are set, then this will not be shown.
|
60
60
|
*/
|
61
|
-
avatar
|
61
|
+
avatar?: string;
|
62
62
|
/**
|
63
63
|
* color?: 'accent' | 'primary' | 'warn'
|
64
64
|
*
|
65
65
|
* toolbar color option: primary | accent | warn.
|
66
66
|
* If [color] is not set, default is used.
|
67
67
|
*/
|
68
|
-
color
|
68
|
+
color?: 'accent' | 'primary' | 'warn';
|
69
69
|
/**
|
70
70
|
* navigationRoute?: string
|
71
71
|
*
|
72
72
|
* option to set the combined route for the icon, logo, and sidenavTitle.
|
73
73
|
*/
|
74
|
-
navigationRoute
|
74
|
+
navigationRoute?: string;
|
75
75
|
/**
|
76
76
|
* backgroundUrl?: SafeResourceUrl
|
77
77
|
*
|
@@ -79,21 +79,21 @@ export declare class TdNavigationDrawerComponent implements OnInit, OnDestroy {
|
|
79
79
|
* URL used will be sanitized, but it should be always from a trusted source to avoid XSS.
|
80
80
|
*/
|
81
81
|
set backgroundUrl(backgroundUrl: any);
|
82
|
-
get backgroundImage(): SafeStyle;
|
82
|
+
get backgroundImage(): SafeStyle | null;
|
83
83
|
/**
|
84
84
|
* name?: string
|
85
85
|
*
|
86
86
|
* string to be displayed as part of the navigation drawer sublabel.
|
87
87
|
* if [email] is not set, then [name] will be the toggle menu text.
|
88
88
|
*/
|
89
|
-
name
|
89
|
+
name?: string;
|
90
90
|
/**
|
91
91
|
* email?: string
|
92
92
|
*
|
93
93
|
* string to be displayed as part of the navigation drawer sublabel in the [toggle] menu text.
|
94
94
|
* if [email] and [name] are not set, then the toggle menu is not rendered.
|
95
95
|
*/
|
96
|
-
email
|
96
|
+
email?: string;
|
97
97
|
/**
|
98
98
|
* Checks if router was injected.
|
99
99
|
*/
|
File without changes
|
@@ -2,21 +2,20 @@
|
|
2
2
|
|
3
3
|
`<td-layout-card-over>` is a layout component which lets you customize a `card over` view.
|
4
4
|
|
5
|
-
|
6
5
|
## API Summary
|
7
6
|
|
8
7
|
#### Inputs
|
9
8
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
9
|
+
- cardTitle: string
|
10
|
+
- Title set in card.
|
11
|
+
- cardSubtitle: string
|
12
|
+
- Subtitle set in card.
|
13
|
+
- cardWidth: string
|
14
|
+
- Card flex width in %.
|
15
|
+
- Defaults to 70.
|
16
|
+
- color: string
|
17
|
+
- Optional toolbar color.
|
18
|
+
- Defaults to primary.
|
20
19
|
|
21
20
|
## Usage
|
22
21
|
|
@@ -28,14 +27,17 @@ Example for Card Over Layout / Nav Layout combo:
|
|
28
27
|
|
29
28
|
```html
|
30
29
|
<td-layout-nav toolbarTitle="title" logo="logo" icon="icon" color="primary">
|
31
|
-
<td-layout-card-over
|
30
|
+
<td-layout-card-over
|
31
|
+
cardTitle="title"
|
32
|
+
cardSubtitle="subtitle"
|
33
|
+
cardWidth="widthIn%"
|
34
|
+
color="primary"
|
35
|
+
>
|
32
36
|
.. main content
|
33
|
-
<div td-after-card>
|
34
|
-
.. content after card
|
35
|
-
</div>
|
37
|
+
<div td-after-card>.. content after card</div>
|
36
38
|
</td-layout-card-over>
|
37
|
-
<td-layout-footer color="primary">
|
38
|
-
... main footer content
|
39
|
+
<td-layout-footer color="primary">
|
40
|
+
// color is optional ... main footer content
|
39
41
|
</td-layout-footer>
|
40
42
|
</td-layout-nav>
|
41
43
|
```
|
@@ -2,23 +2,22 @@
|
|
2
2
|
|
3
3
|
`<td-layout-manage-list>` is a layout component which lets you customize a `management` view with toolbar items, item selections and footers.
|
4
4
|
|
5
|
-
|
6
5
|
## API Summary
|
7
6
|
|
8
7
|
#### Inputs
|
9
8
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
9
|
+
- mode: 'over' | 'side' | 'push'
|
10
|
+
- The mode or styling of the sidenav. Defaults to 'side'.
|
11
|
+
- opened: boolean
|
12
|
+
- Whether or not the sidenav is opened.
|
13
|
+
- Use this binding to open/close the sidenav.
|
14
|
+
- Defaults to 'true'.
|
15
|
+
- sidenavWidth: string
|
16
|
+
- Sets the 'width' of the sidenav in either 'px' or '%'.
|
17
|
+
- Defaults to '257px'.
|
18
|
+
- containerAutosize: boolean
|
19
|
+
- Sets 'autosize' of the sidenav-container.
|
20
|
+
- Defaults to 'false'.
|
22
21
|
|
23
22
|
## Usage
|
24
23
|
|
@@ -27,7 +26,12 @@ To toggle/close/open the manage list sidenav from child layouts/components, you
|
|
27
26
|
Example:
|
28
27
|
|
29
28
|
```html
|
30
|
-
<button
|
29
|
+
<button
|
30
|
+
mat-icon-button
|
31
|
+
[tdLayoutManageListToggle]="true"
|
32
|
+
[hideWhenOpened]="true"
|
33
|
+
>
|
34
|
+
// or tdLayoutManageListOpen / tdLayoutManageListClose
|
31
35
|
<mat-icon>menu</mat-icon>
|
32
36
|
</button>
|
33
37
|
```
|
@@ -56,16 +60,10 @@ Example for Manage List Layout / Nav Layout combo:
|
|
56
60
|
|
57
61
|
```html
|
58
62
|
<td-layout-nav sidenavTitle="title" logo="logo" icon="icon" color="primary">
|
59
|
-
<div td-toolbar-content>
|
60
|
-
.. main toolbar content
|
61
|
-
</div>
|
63
|
+
<div td-toolbar-content>.. main toolbar content</div>
|
62
64
|
<td-layout-manage-list opened="true" mode="side" sidenavWidth="257px">
|
63
|
-
<mat-toolbar td-sidenav-content>
|
64
|
-
|
65
|
-
</mat-toolbar>
|
66
|
-
<mat-nav-list td-sidenav-content>
|
67
|
-
... sidenav content
|
68
|
-
</mat-nav-list>
|
65
|
+
<mat-toolbar td-sidenav-content> ... toolbar in sidenav </mat-toolbar>
|
66
|
+
<mat-nav-list td-sidenav-content> ... sidenav content </mat-nav-list>
|
69
67
|
<mat-toolbar>
|
70
68
|
<button mat-icon-button tdLayoutManageListOpen [hideWhenOpened]="true">
|
71
69
|
<mat-icon>arrow_back</mat-icon>
|
@@ -73,12 +71,10 @@ Example for Manage List Layout / Nav Layout combo:
|
|
73
71
|
... sub toolbar content
|
74
72
|
</mat-toolbar>
|
75
73
|
... main content
|
76
|
-
<td-layout-footer-inner>
|
77
|
-
... sub footer content
|
78
|
-
</td-layout-footer-inner>
|
74
|
+
<td-layout-footer-inner> ... sub footer content </td-layout-footer-inner>
|
79
75
|
</td-layout-manage-list>
|
80
|
-
<td-layout-footer color="primary">
|
81
|
-
... main footer content
|
76
|
+
<td-layout-footer color="primary">
|
77
|
+
// color is optional ... main footer content
|
82
78
|
</td-layout-footer>
|
83
79
|
</td-layout-nav>
|
84
80
|
```
|
@@ -0,0 +1,50 @@
|
|
1
|
+
## TdLayoutNavComponent: td-layout-nav
|
2
|
+
|
3
|
+
`<td-layout-nav>` is a layout component which lets you customize a `navigation` view with toolbar items and footers.
|
4
|
+
|
5
|
+
## API Summary
|
6
|
+
|
7
|
+
#### Inputs
|
8
|
+
|
9
|
+
- toolbarTitle: string
|
10
|
+
- Title set in toolbar.
|
11
|
+
- icon: string
|
12
|
+
- Icon name to be displayed before the title.
|
13
|
+
- logo: string
|
14
|
+
- Logo icon name to be displayed before the title.
|
15
|
+
- If [icon] is set, then this will not be shown.
|
16
|
+
- color: string
|
17
|
+
- Optional toolbar color.
|
18
|
+
- Defaults to primary.
|
19
|
+
- navigationRoute: string
|
20
|
+
- Option to set the combined route for the icon, logo, and toolbarTitle.
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
|
24
|
+
`[td-menu-button]` is used to include a menu button before the logo and title.
|
25
|
+
|
26
|
+
`[td-toolbar-content]` is used to include items in the toolbar.
|
27
|
+
|
28
|
+
`td-layout-footer` is used to include items in the footer.
|
29
|
+
|
30
|
+
Example for Nav Layout:
|
31
|
+
|
32
|
+
```html
|
33
|
+
<td-layout-nav
|
34
|
+
toolbarTitle="title"
|
35
|
+
logo="logo"
|
36
|
+
icon="icon"
|
37
|
+
color="primary"
|
38
|
+
navigationRoute="/"
|
39
|
+
>
|
40
|
+
<button mat-icon-button td-menu-button>
|
41
|
+
// can use `[tdLayoutToggle]` to toggle main sidenav
|
42
|
+
<mat-icon>menu</mat-icon>
|
43
|
+
</button>
|
44
|
+
<div td-toolbar-content>.. main toolbar content</div>
|
45
|
+
... main content
|
46
|
+
<td-layout-footer color="primary">
|
47
|
+
// color is optional ... main footer content
|
48
|
+
</td-layout-footer>
|
49
|
+
</td-layout-nav>
|
50
|
+
```
|