@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,13 +0,0 @@
|
|
1
|
-
export * from './layout.module';
|
2
|
-
export * from './layout.component';
|
3
|
-
export * from './layout.directives';
|
4
|
-
export * from './layout-toggle.class';
|
5
|
-
export * from './layout-card-over/layout-card-over.component';
|
6
|
-
export * from './layout-footer/layout-footer.component';
|
7
|
-
export * from './layout-manage-list/layout-manage-list.component';
|
8
|
-
export * from './layout-manage-list/layout-manage-list.directives';
|
9
|
-
export * from './layout-nav/layout-nav.component';
|
10
|
-
export * from './layout-nav-list/layout-nav-list.component';
|
11
|
-
export * from './layout-nav-list/layout-nav-list.directives';
|
12
|
-
export * from './navigation-drawer/navigation-drawer.component';
|
13
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL2xheW91dC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYywrQ0FBK0MsQ0FBQztBQUM5RCxjQUFjLHlDQUF5QyxDQUFDO0FBQ3hELGNBQWMsbURBQW1ELENBQUM7QUFDbEUsY0FBYyxvREFBb0QsQ0FBQztBQUNuRSxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMsNkNBQTZDLENBQUM7QUFDNUQsY0FBYyw4Q0FBOEMsQ0FBQztBQUM3RCxjQUFjLGlEQUFpRCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9sYXlvdXQubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGF5b3V0LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xheW91dC5kaXJlY3RpdmVzJztcbmV4cG9ydCAqIGZyb20gJy4vbGF5b3V0LXRvZ2dsZS5jbGFzcyc7XG5leHBvcnQgKiBmcm9tICcuL2xheW91dC1jYXJkLW92ZXIvbGF5b3V0LWNhcmQtb3Zlci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9sYXlvdXQtZm9vdGVyL2xheW91dC1mb290ZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGF5b3V0LW1hbmFnZS1saXN0L2xheW91dC1tYW5hZ2UtbGlzdC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9sYXlvdXQtbWFuYWdlLWxpc3QvbGF5b3V0LW1hbmFnZS1saXN0LmRpcmVjdGl2ZXMnO1xuZXhwb3J0ICogZnJvbSAnLi9sYXlvdXQtbmF2L2xheW91dC1uYXYuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGF5b3V0LW5hdi1saXN0L2xheW91dC1uYXYtbGlzdC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9sYXlvdXQtbmF2LWxpc3QvbGF5b3V0LW5hdi1saXN0LmRpcmVjdGl2ZXMnO1xuZXhwb3J0ICogZnJvbSAnLi9uYXZpZ2F0aW9uLWRyYXdlci9uYXZpZ2F0aW9uLWRyYXdlci5jb21wb25lbnQnO1xuIl19
|
package/esm2020/menu/index.mjs
DELETED
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9tZW51L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
@@ -1,3 +0,0 @@
|
|
1
|
-
export * from './menu.module';
|
2
|
-
export * from './menu.component';
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL21lbnUvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLGtCQUFrQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9tZW51Lm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL21lbnUuY29tcG9uZW50JztcbiJdfQ==
|
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9tZXNzYWdlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
@@ -1,3 +0,0 @@
|
|
1
|
-
export * from './message.module';
|
2
|
-
export * from './message.component';
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL21lc3NhZ2UvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL21lc3NhZ2UubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbWVzc2FnZS5jb21wb25lbnQnO1xuIl19
|
package/esm2020/search/index.mjs
DELETED
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9zZWFyY2gvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
@@ -1,4 +0,0 @@
|
|
1
|
-
export * from './search.module';
|
2
|
-
export * from './search-box/search-box.component';
|
3
|
-
export * from './search-input/search-input.component';
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL3NlYXJjaC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLHVDQUF1QyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zZWFyY2gubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vc2VhcmNoLWJveC9zZWFyY2gtYm94LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3NlYXJjaC1pbnB1dC9zZWFyY2gtaW5wdXQuY29tcG9uZW50JztcbiJdfQ==
|
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS9zaWRlLXNoZWV0L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
@@ -1,6 +0,0 @@
|
|
1
|
-
export * from './side-sheet.module';
|
2
|
-
export * from './side-sheet.config';
|
3
|
-
export * from './side-sheet.content-directives';
|
4
|
-
export * from './side-sheet-ref';
|
5
|
-
export * from './side-sheet';
|
6
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9wbGF0Zm9ybS9jb3JlL3NpZGUtc2hlZXQvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zaWRlLXNoZWV0Lm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL3NpZGUtc2hlZXQuY29uZmlnJztcbmV4cG9ydCAqIGZyb20gJy4vc2lkZS1zaGVldC5jb250ZW50LWRpcmVjdGl2ZXMnO1xuZXhwb3J0ICogZnJvbSAnLi9zaWRlLXNoZWV0LXJlZic7XG5leHBvcnQgKiBmcm9tICcuL3NpZGUtc2hlZXQnO1xuIl19
|
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './public_api';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvcGxhdGZvcm0vY29yZS91c2VyLXByb2ZpbGUvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpY19hcGknO1xuIl19
|
@@ -1,22 +0,0 @@
|
|
1
|
-
:host {
|
2
|
-
.td-file-input {
|
3
|
-
padding-left: 8px;
|
4
|
-
padding-right: 8px;
|
5
|
-
}
|
6
|
-
|
7
|
-
input.td-file-input-hidden {
|
8
|
-
display: none;
|
9
|
-
}
|
10
|
-
|
11
|
-
/**
|
12
|
-
* Class that is added ondragenter by the [TdFileDrop] directive.
|
13
|
-
*/
|
14
|
-
.drop-zone {
|
15
|
-
// Animation.
|
16
|
-
border-radius: 3px;
|
17
|
-
|
18
|
-
* {
|
19
|
-
pointer-events: none; //added to fix bug that re-throws dragleave/dragenter by child elements
|
20
|
-
}
|
21
|
-
}
|
22
|
-
}
|
@@ -1,34 +0,0 @@
|
|
1
|
-
.td-file-upload {
|
2
|
-
padding-left: 8px;
|
3
|
-
padding-right: 8px;
|
4
|
-
}
|
5
|
-
|
6
|
-
.td-file-upload-cancel {
|
7
|
-
height: 24px;
|
8
|
-
width: 24px;
|
9
|
-
position: relative;
|
10
|
-
top: 24px;
|
11
|
-
left: -12px;
|
12
|
-
|
13
|
-
::ng-deep [dir='rtl'] & {
|
14
|
-
right: -12px;
|
15
|
-
left: 0;
|
16
|
-
}
|
17
|
-
|
18
|
-
mat-icon {
|
19
|
-
border-radius: 12px;
|
20
|
-
vertical-align: baseline;
|
21
|
-
}
|
22
|
-
}
|
23
|
-
|
24
|
-
/**
|
25
|
-
* Class that is added ondragenter by the [TdFileDrop] directive.
|
26
|
-
*/
|
27
|
-
.drop-zone {
|
28
|
-
// Animation.
|
29
|
-
border-radius: 3px;
|
30
|
-
|
31
|
-
* {
|
32
|
-
pointer-events: none; //added to fix bug that re-throws dragleave/dragenter by child elements
|
33
|
-
}
|
34
|
-
}
|
package/file/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
@@ -1 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
@@ -1,74 +0,0 @@
|
|
1
|
-
:host {
|
2
|
-
display: block;
|
3
|
-
}
|
4
|
-
|
5
|
-
.td-json-formatter-wrapper {
|
6
|
-
padding-top: 2px;
|
7
|
-
padding-bottom: 2px;
|
8
|
-
|
9
|
-
.td-key {
|
10
|
-
// [layout]
|
11
|
-
box-sizing: border-box;
|
12
|
-
display: flex;
|
13
|
-
// [layout="row"]
|
14
|
-
flex-direction: row;
|
15
|
-
// [layout-align="start center"]
|
16
|
-
align-items: flex-start;
|
17
|
-
align-content: center;
|
18
|
-
max-width: 100%;
|
19
|
-
justify-content: flex-start;
|
20
|
-
|
21
|
-
&.td-key-node {
|
22
|
-
&:hover {
|
23
|
-
cursor: pointer;
|
24
|
-
}
|
25
|
-
}
|
26
|
-
}
|
27
|
-
|
28
|
-
.td-object-children {
|
29
|
-
&.ng-animating {
|
30
|
-
overflow: hidden;
|
31
|
-
}
|
32
|
-
|
33
|
-
& .td-key,
|
34
|
-
& .td-object-children {
|
35
|
-
padding-left: 24px;
|
36
|
-
|
37
|
-
::ng-deep [dir='rtl'] & {
|
38
|
-
padding-right: 24px;
|
39
|
-
padding-left: 0;
|
40
|
-
}
|
41
|
-
|
42
|
-
&.td-key-leaf {
|
43
|
-
padding-left: 48px;
|
44
|
-
|
45
|
-
::ng-deep [dir='rtl'] & {
|
46
|
-
padding-right: 48px;
|
47
|
-
padding-left: 0;
|
48
|
-
}
|
49
|
-
}
|
50
|
-
}
|
51
|
-
}
|
52
|
-
|
53
|
-
.value {
|
54
|
-
margin-left: 5px;
|
55
|
-
|
56
|
-
::ng-deep [dir='rtl'] & {
|
57
|
-
padding-right: 5px;
|
58
|
-
padding-left: 0;
|
59
|
-
}
|
60
|
-
|
61
|
-
.td-empty {
|
62
|
-
opacity: 0.5;
|
63
|
-
text-decoration: line-through;
|
64
|
-
}
|
65
|
-
|
66
|
-
.string {
|
67
|
-
word-break: break-word;
|
68
|
-
}
|
69
|
-
|
70
|
-
.date {
|
71
|
-
word-break: break-word;
|
72
|
-
}
|
73
|
-
}
|
74
|
-
}
|
package/layout/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './public-api';
|
@@ -1,45 +0,0 @@
|
|
1
|
-
@import '../../common/styles/variables';
|
2
|
-
|
3
|
-
:host {
|
4
|
-
position: relative;
|
5
|
-
display: block;
|
6
|
-
z-index: 2;
|
7
|
-
width: 100%;
|
8
|
-
min-height: 100%;
|
9
|
-
height: 100%;
|
10
|
-
|
11
|
-
[td-after-card] {
|
12
|
-
display: block;
|
13
|
-
}
|
14
|
-
}
|
15
|
-
|
16
|
-
.td-layout-card-over-wrapper {
|
17
|
-
margin: -64px;
|
18
|
-
margin-left: 0;
|
19
|
-
margin-right: 0;
|
20
|
-
// [layout-fill]
|
21
|
-
width: 100%;
|
22
|
-
min-height: 100%;
|
23
|
-
height: 100%;
|
24
|
-
@media (min-width: $layout-breakpoint-xs) {
|
25
|
-
// [layout="row"]
|
26
|
-
flex-direction: row;
|
27
|
-
// [layout]
|
28
|
-
box-sizing: border-box;
|
29
|
-
display: flex;
|
30
|
-
// [layout-align]="center start"
|
31
|
-
align-items: flex-start;
|
32
|
-
align-content: flex-start;
|
33
|
-
justify-content: center;
|
34
|
-
|
35
|
-
.td-layout-card-over {
|
36
|
-
max-height: 100%;
|
37
|
-
box-sizing: border-box;
|
38
|
-
}
|
39
|
-
}
|
40
|
-
@media (max-width: $layout-breakpoint-xs - 1) {
|
41
|
-
.td-layout-card-over {
|
42
|
-
max-width: 100% !important;
|
43
|
-
}
|
44
|
-
}
|
45
|
-
}
|
@@ -1,82 +0,0 @@
|
|
1
|
-
@import '../../common/styles/core/whiteframe';
|
2
|
-
|
3
|
-
:host {
|
4
|
-
display: flex;
|
5
|
-
margin: 0;
|
6
|
-
width: 100%;
|
7
|
-
min-height: 100%;
|
8
|
-
height: 100%;
|
9
|
-
overflow: hidden;
|
10
|
-
|
11
|
-
mat-sidenav-container.td-layout-manage-list {
|
12
|
-
// [flex]
|
13
|
-
flex: 1;
|
14
|
-
|
15
|
-
& > .mat-drawer > .mat-drawer-inner-container {
|
16
|
-
&.mat-drawer-opened,
|
17
|
-
&.mat-drawer-opening,
|
18
|
-
&.mat-drawer-closed,
|
19
|
-
&.mat-drawer-closing {
|
20
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 20%);
|
21
|
-
}
|
22
|
-
}
|
23
|
-
}
|
24
|
-
|
25
|
-
.td-layout-manage-list-sidenav {
|
26
|
-
text-align: start;
|
27
|
-
// [flex]
|
28
|
-
flex: 1;
|
29
|
-
// [md-content]
|
30
|
-
display: block;
|
31
|
-
position: relative;
|
32
|
-
overflow: auto;
|
33
|
-
-webkit-overflow-scrolling: touch;
|
34
|
-
}
|
35
|
-
|
36
|
-
.td-layout-manage-list-main {
|
37
|
-
margin: 0;
|
38
|
-
width: 100%;
|
39
|
-
min-height: 100%;
|
40
|
-
height: 100%;
|
41
|
-
position: relative;
|
42
|
-
overflow: auto;
|
43
|
-
// [layout="column"]
|
44
|
-
flex-direction: column;
|
45
|
-
box-sizing: border-box;
|
46
|
-
display: flex;
|
47
|
-
|
48
|
-
.td-layout-manage-list-content {
|
49
|
-
// [md-content]
|
50
|
-
display: block;
|
51
|
-
position: relative;
|
52
|
-
overflow: auto;
|
53
|
-
-webkit-overflow-scrolling: touch;
|
54
|
-
// [flex]
|
55
|
-
flex: 1;
|
56
|
-
}
|
57
|
-
}
|
58
|
-
}
|
59
|
-
|
60
|
-
:host ::ng-deep {
|
61
|
-
mat-sidenav-container.td-layout-manage-list {
|
62
|
-
& > .mat-drawer-content {
|
63
|
-
flex-grow: 1;
|
64
|
-
}
|
65
|
-
|
66
|
-
/* Ensure the left sidenav is a flex column & 100% height */
|
67
|
-
& > .mat-drawer > .mat-drawer-inner-container {
|
68
|
-
box-shadow: $whiteframe-shadow-1dp;
|
69
|
-
box-sizing: border-box;
|
70
|
-
display: flex;
|
71
|
-
flex-direction: column;
|
72
|
-
}
|
73
|
-
}
|
74
|
-
|
75
|
-
mat-nav-list a[mat-list-item] .mat-list-item-content {
|
76
|
-
font-size: 14px;
|
77
|
-
}
|
78
|
-
|
79
|
-
.mat-toolbar {
|
80
|
-
font-weight: 400;
|
81
|
-
}
|
82
|
-
}
|
@@ -1,46 +0,0 @@
|
|
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
|
-
|
6
|
-
## API Summary
|
7
|
-
|
8
|
-
#### Inputs
|
9
|
-
|
10
|
-
+ toolbarTitle: string
|
11
|
-
+ Title set in toolbar.
|
12
|
-
+ icon: string
|
13
|
-
+ Icon name to be displayed before the title.
|
14
|
-
+ logo: string
|
15
|
-
+ Logo icon name to be displayed before the title.
|
16
|
-
+ If [icon] is set, then this will not be shown.
|
17
|
-
+ color: string
|
18
|
-
+ Optional toolbar color.
|
19
|
-
+ Defaults to primary.
|
20
|
-
+ navigationRoute: string
|
21
|
-
+ Option to set the combined route for the icon, logo, and toolbarTitle.
|
22
|
-
|
23
|
-
## Usage
|
24
|
-
|
25
|
-
`[td-menu-button]` is used to include a menu button before the logo and title.
|
26
|
-
|
27
|
-
`[td-toolbar-content]` is used to include items in the toolbar.
|
28
|
-
|
29
|
-
`td-layout-footer` is used to include items in the footer.
|
30
|
-
|
31
|
-
Example for Nav Layout:
|
32
|
-
|
33
|
-
```html
|
34
|
-
<td-layout-nav toolbarTitle="title" logo="logo" icon="icon" color="primary" navigationRoute="/">
|
35
|
-
<button mat-icon-button td-menu-button> // can use `[tdLayoutToggle]` to toggle main sidenav
|
36
|
-
<mat-icon>menu</mat-icon>
|
37
|
-
</button>
|
38
|
-
<div td-toolbar-content>
|
39
|
-
.. main toolbar content
|
40
|
-
</div>
|
41
|
-
... main content
|
42
|
-
<td-layout-footer color="primary"> // color is optional
|
43
|
-
... main footer content
|
44
|
-
</td-layout-footer>
|
45
|
-
</td-layout-nav>
|
46
|
-
```
|
@@ -1,54 +0,0 @@
|
|
1
|
-
.td-menu-button {
|
2
|
-
margin-left: 0;
|
3
|
-
|
4
|
-
::ng-deep [dir='rtl'] & {
|
5
|
-
margin-right: 0;
|
6
|
-
margin-left: 6px;
|
7
|
-
}
|
8
|
-
}
|
9
|
-
|
10
|
-
:host {
|
11
|
-
display: flex;
|
12
|
-
margin: 0;
|
13
|
-
width: 100%;
|
14
|
-
min-height: 100%;
|
15
|
-
height: 100%;
|
16
|
-
overflow: hidden;
|
17
|
-
|
18
|
-
.td-layout-nav-wrapper {
|
19
|
-
// [layout="column"]
|
20
|
-
flex-direction: column;
|
21
|
-
box-sizing: border-box;
|
22
|
-
display: flex;
|
23
|
-
// [layout-fill]
|
24
|
-
margin: 0;
|
25
|
-
width: 100%;
|
26
|
-
min-height: 100%;
|
27
|
-
height: 100%;
|
28
|
-
|
29
|
-
.td-layout-nav-toolbar-content {
|
30
|
-
// [layout="row"]
|
31
|
-
flex-direction: row;
|
32
|
-
box-sizing: border-box;
|
33
|
-
display: flex;
|
34
|
-
// [layout-align="start center"]
|
35
|
-
align-items: center;
|
36
|
-
align-content: center;
|
37
|
-
max-width: 100%;
|
38
|
-
justify-content: flex-start;
|
39
|
-
}
|
40
|
-
|
41
|
-
.td-layout-nav-content {
|
42
|
-
// [layout="column"]
|
43
|
-
flex-direction: column;
|
44
|
-
box-sizing: border-box;
|
45
|
-
display: flex;
|
46
|
-
// [flex]
|
47
|
-
flex: 1;
|
48
|
-
// [md-content]
|
49
|
-
position: relative;
|
50
|
-
overflow: auto;
|
51
|
-
-webkit-overflow-scrolling: touch;
|
52
|
-
}
|
53
|
-
}
|
54
|
-
}
|
@@ -1,115 +0,0 @@
|
|
1
|
-
@import '../../common/styles/core/whiteframe';
|
2
|
-
|
3
|
-
:host {
|
4
|
-
.td-layout-nav-list-wrapper > .mat-sidenav-container {
|
5
|
-
> mat-sidenav.mat-drawer-side {
|
6
|
-
border-right: 0;
|
7
|
-
|
8
|
-
[dir='rtl'] & {
|
9
|
-
border-left: 0;
|
10
|
-
}
|
11
|
-
}
|
12
|
-
}
|
13
|
-
// [layout-fill]
|
14
|
-
margin: 0;
|
15
|
-
width: 100%;
|
16
|
-
min-height: 100%;
|
17
|
-
height: 100%;
|
18
|
-
overflow: hidden;
|
19
|
-
// [layout="column"]
|
20
|
-
flex-direction: column;
|
21
|
-
box-sizing: border-box;
|
22
|
-
display: flex;
|
23
|
-
// [flex]
|
24
|
-
flex: 1;
|
25
|
-
|
26
|
-
.td-layout-nav-list-wrapper {
|
27
|
-
// [layout="column"]
|
28
|
-
flex-direction: column;
|
29
|
-
box-sizing: border-box;
|
30
|
-
display: flex;
|
31
|
-
// [flex]
|
32
|
-
flex: 1;
|
33
|
-
// [md-content]
|
34
|
-
position: relative;
|
35
|
-
overflow: auto;
|
36
|
-
-webkit-overflow-scrolling: touch;
|
37
|
-
|
38
|
-
.td-layout-nav-list-toolbar-content {
|
39
|
-
// [layout="row"]
|
40
|
-
flex-direction: row;
|
41
|
-
box-sizing: border-box;
|
42
|
-
display: flex;
|
43
|
-
// [layout-align="start center"]
|
44
|
-
align-items: center;
|
45
|
-
align-content: center;
|
46
|
-
max-width: 100%;
|
47
|
-
justify-content: flex-start;
|
48
|
-
}
|
49
|
-
|
50
|
-
.td-layout-nav-list-content {
|
51
|
-
text-align: start;
|
52
|
-
// [flex]
|
53
|
-
flex: 1;
|
54
|
-
// [md-content]
|
55
|
-
display: block;
|
56
|
-
position: relative;
|
57
|
-
overflow: auto;
|
58
|
-
-webkit-overflow-scrolling: touch;
|
59
|
-
}
|
60
|
-
|
61
|
-
.td-layout-nav-list-main {
|
62
|
-
// [layout="column"]
|
63
|
-
flex-direction: column;
|
64
|
-
box-sizing: border-box;
|
65
|
-
display: flex;
|
66
|
-
// [layout-fill]
|
67
|
-
margin: 0;
|
68
|
-
width: 100%;
|
69
|
-
min-height: 100%;
|
70
|
-
height: 100%;
|
71
|
-
position: relative;
|
72
|
-
overflow: auto;
|
73
|
-
|
74
|
-
.td-layout-nav-list-content {
|
75
|
-
// [md-content]
|
76
|
-
display: block;
|
77
|
-
position: relative;
|
78
|
-
overflow: auto;
|
79
|
-
-webkit-overflow-scrolling: touch;
|
80
|
-
// [flex]
|
81
|
-
flex: 1;
|
82
|
-
}
|
83
|
-
}
|
84
|
-
|
85
|
-
mat-sidenav-container.td-layout-nav-list {
|
86
|
-
// [flex]
|
87
|
-
flex: 1;
|
88
|
-
|
89
|
-
& > mat-sidenav {
|
90
|
-
&.mat-drawer-opened,
|
91
|
-
&.mat-drawer-opening,
|
92
|
-
&.mat-drawer-closed,
|
93
|
-
&.mat-drawer-closing {
|
94
|
-
box-shadow: none;
|
95
|
-
}
|
96
|
-
}
|
97
|
-
}
|
98
|
-
}
|
99
|
-
}
|
100
|
-
|
101
|
-
:host ::ng-deep {
|
102
|
-
mat-sidenav-container.td-layout-nav-list {
|
103
|
-
& > .mat-drawer-content {
|
104
|
-
flex-grow: 1;
|
105
|
-
}
|
106
|
-
|
107
|
-
/* Ensure the left sidenav is a flex column & 100% height */
|
108
|
-
& > .mat-drawer > .mat-drawer-inner-container {
|
109
|
-
box-shadow: $whiteframe-shadow-1dp;
|
110
|
-
box-sizing: border-box;
|
111
|
-
display: flex;
|
112
|
-
flex-direction: column;
|
113
|
-
}
|
114
|
-
}
|
115
|
-
}
|
@@ -1,16 +0,0 @@
|
|
1
|
-
:host {
|
2
|
-
display: flex;
|
3
|
-
margin: 0;
|
4
|
-
width: 100%;
|
5
|
-
min-height: 100%;
|
6
|
-
height: 100%;
|
7
|
-
overflow: hidden;
|
8
|
-
|
9
|
-
::ng-deep {
|
10
|
-
// Ensuring sidenav content has flex column properties
|
11
|
-
& > mat-sidenav-container .mat-drawer > .mat-drawer-inner-container {
|
12
|
-
display: flex;
|
13
|
-
flex-direction: column;
|
14
|
-
}
|
15
|
-
}
|
16
|
-
}
|
@@ -1,81 +0,0 @@
|
|
1
|
-
:host {
|
2
|
-
width: 100%;
|
3
|
-
|
4
|
-
.td-navigation-drawer-content,
|
5
|
-
.td-navigation-drawer-menu-content {
|
6
|
-
&.ng-animating {
|
7
|
-
overflow: hidden;
|
8
|
-
}
|
9
|
-
}
|
10
|
-
|
11
|
-
mat-toolbar {
|
12
|
-
padding: 16px;
|
13
|
-
|
14
|
-
&.td-toolbar-background {
|
15
|
-
background-repeat: no-repeat;
|
16
|
-
background-size: cover;
|
17
|
-
}
|
18
|
-
|
19
|
-
&.td-nagivation-drawer-toolbar {
|
20
|
-
flex-direction: column;
|
21
|
-
height: auto !important;
|
22
|
-
display: block !important;
|
23
|
-
}
|
24
|
-
|
25
|
-
.td-navigation-drawer-toolbar-content {
|
26
|
-
// [layout="row"]
|
27
|
-
flex-direction: row;
|
28
|
-
box-sizing: border-box;
|
29
|
-
display: flex;
|
30
|
-
// [layout-align="start center"]
|
31
|
-
align-items: center;
|
32
|
-
align-content: center;
|
33
|
-
max-width: 100%;
|
34
|
-
justify-content: flex-start;
|
35
|
-
|
36
|
-
.td-nagivation-drawer-toolbar-avatar {
|
37
|
-
border-radius: 50%;
|
38
|
-
height: 60px;
|
39
|
-
width: 60px;
|
40
|
-
margin: 0 12px 12px 0;
|
41
|
-
}
|
42
|
-
|
43
|
-
.td-navigation-drawer-title {
|
44
|
-
white-space: nowrap;
|
45
|
-
overflow: hidden;
|
46
|
-
text-overflow: ellipsis;
|
47
|
-
}
|
48
|
-
}
|
49
|
-
|
50
|
-
.td-navigation-drawer-name {
|
51
|
-
white-space: nowrap;
|
52
|
-
overflow: hidden;
|
53
|
-
text-overflow: ellipsis;
|
54
|
-
}
|
55
|
-
|
56
|
-
.td-navigation-drawer-menu-toggle {
|
57
|
-
// [layout="row"]
|
58
|
-
flex-direction: row;
|
59
|
-
box-sizing: border-box;
|
60
|
-
display: flex;
|
61
|
-
|
62
|
-
.td-navigation-drawer-label {
|
63
|
-
// [flex]
|
64
|
-
flex: 1;
|
65
|
-
white-space: nowrap;
|
66
|
-
overflow: hidden;
|
67
|
-
text-overflow: ellipsis;
|
68
|
-
}
|
69
|
-
|
70
|
-
.td-navigation-drawer-menu-button {
|
71
|
-
height: 24px;
|
72
|
-
line-height: 24px;
|
73
|
-
width: 24px;
|
74
|
-
}
|
75
|
-
}
|
76
|
-
}
|
77
|
-
|
78
|
-
> div {
|
79
|
-
overflow: hidden;
|
80
|
-
}
|
81
|
-
}
|
package/menu/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './public-api';
|