@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,326 +0,0 @@
|
|
1
|
-
// Contrasting colors
|
2
|
-
$black-87-opacity: rgba(0, 0, 0, 87%);
|
3
|
-
$white-87-opacity: rgba(255, 255, 255, 87%);
|
4
|
-
// Dark color palettes.
|
5
|
-
$mat-dark-red: (
|
6
|
-
500: #f44336,
|
7
|
-
B100: #ff4336,
|
8
|
-
B65: #a62c23,
|
9
|
-
B40: #661b15,
|
10
|
-
B30: #4d1410,
|
11
|
-
B15: #330d0b,
|
12
|
-
contrast: (
|
13
|
-
500: $black-87-opacity,
|
14
|
-
B100: $black-87-opacity,
|
15
|
-
B65: $black-87-opacity,
|
16
|
-
B40: white,
|
17
|
-
B30: white,
|
18
|
-
B15: white,
|
19
|
-
),
|
20
|
-
);
|
21
|
-
|
22
|
-
$mat-dark-pink: (
|
23
|
-
500: #e91e63,
|
24
|
-
B100: #ff216b,
|
25
|
-
B65: #a41a47,
|
26
|
-
B40: #660d2b,
|
27
|
-
B30: #4d0a20,
|
28
|
-
B15: #260510,
|
29
|
-
contrast: (
|
30
|
-
500: $black-87-opacity,
|
31
|
-
B100: $black-87-opacity,
|
32
|
-
B65: $black-87-opacity,
|
33
|
-
B40: white,
|
34
|
-
B30: white,
|
35
|
-
B15: white,
|
36
|
-
),
|
37
|
-
);
|
38
|
-
|
39
|
-
$mat-dark-purple: (
|
40
|
-
500: #9c27b0,
|
41
|
-
B100: #ec80ff,
|
42
|
-
B65: #9224a6,
|
43
|
-
B40: #5a1666,
|
44
|
-
B30: #41004d,
|
45
|
-
B15: #210026,
|
46
|
-
contrast: (
|
47
|
-
500: $black-87-opacity,
|
48
|
-
B100: $black-87-opacity,
|
49
|
-
B65: $black-87-opacity,
|
50
|
-
B40: white,
|
51
|
-
B30: white,
|
52
|
-
B15: white,
|
53
|
-
),
|
54
|
-
);
|
55
|
-
|
56
|
-
$mat-dark-deep-purple: (
|
57
|
-
500: #673ab7,
|
58
|
-
B100: #ae80ff,
|
59
|
-
B65: #5e35a6,
|
60
|
-
B40: #3a2166,
|
61
|
-
B30: #1c004d,
|
62
|
-
B15: #0e0026,
|
63
|
-
contrast: (
|
64
|
-
500: white,
|
65
|
-
B100: white,
|
66
|
-
B65: white,
|
67
|
-
B40: white,
|
68
|
-
B30: white,
|
69
|
-
B15: white,
|
70
|
-
),
|
71
|
-
);
|
72
|
-
|
73
|
-
$mat-dark-indigo: (
|
74
|
-
500: #3f51b5,
|
75
|
-
B100: #8093ff,
|
76
|
-
B65: #3a4aa6,
|
77
|
-
B40: #242e66,
|
78
|
-
B30: #000b4d,
|
79
|
-
B15: #000626,
|
80
|
-
contrast: (
|
81
|
-
500: white,
|
82
|
-
B100: white,
|
83
|
-
B65: white,
|
84
|
-
B40: white,
|
85
|
-
B30: white,
|
86
|
-
B15: white,
|
87
|
-
),
|
88
|
-
);
|
89
|
-
|
90
|
-
$mat-dark-blue: (
|
91
|
-
500: #2196f3,
|
92
|
-
B100: #80c6ff,
|
93
|
-
B65: #1766a6,
|
94
|
-
B40: #0e3f66,
|
95
|
-
B30: #002a4d,
|
96
|
-
B15: #001526,
|
97
|
-
contrast: (
|
98
|
-
500: white,
|
99
|
-
B100: white,
|
100
|
-
B65: white,
|
101
|
-
B40: white,
|
102
|
-
B30: white,
|
103
|
-
B15: white,
|
104
|
-
),
|
105
|
-
);
|
106
|
-
|
107
|
-
$mat-dark-light-blue: (
|
108
|
-
500: #03a9f4,
|
109
|
-
B100: #80d7ff,
|
110
|
-
B65: #0272a6,
|
111
|
-
B40: #014666,
|
112
|
-
B30: #00344d,
|
113
|
-
B15: #001a26,
|
114
|
-
contrast: (
|
115
|
-
500: white,
|
116
|
-
B100: white,
|
117
|
-
B65: white,
|
118
|
-
B40: white,
|
119
|
-
B30: white,
|
120
|
-
B15: white,
|
121
|
-
),
|
122
|
-
);
|
123
|
-
|
124
|
-
$mat-dark-cyan: (
|
125
|
-
500: #00bcd4,
|
126
|
-
B100: #00e1ff,
|
127
|
-
B65: #0092a6,
|
128
|
-
B40: #005a66,
|
129
|
-
B30: #00444d,
|
130
|
-
B15: #002226,
|
131
|
-
contrast: (
|
132
|
-
500: white,
|
133
|
-
B100: white,
|
134
|
-
B65: white,
|
135
|
-
B40: white,
|
136
|
-
B30: white,
|
137
|
-
B15: white,
|
138
|
-
),
|
139
|
-
);
|
140
|
-
|
141
|
-
$mat-dark-teal: (
|
142
|
-
500: #009688,
|
143
|
-
B100: #00ffe5,
|
144
|
-
B65: #00a695,
|
145
|
-
B40: #00665c,
|
146
|
-
B30: #004d45,
|
147
|
-
B15: #002622,
|
148
|
-
contrast: (
|
149
|
-
500: white,
|
150
|
-
B100: white,
|
151
|
-
B65: white,
|
152
|
-
B40: white,
|
153
|
-
B30: white,
|
154
|
-
B15: white,
|
155
|
-
),
|
156
|
-
);
|
157
|
-
|
158
|
-
$mat-dark-green: (
|
159
|
-
500: #4caf50,
|
160
|
-
B100: #6eff72,
|
161
|
-
B65: #47a64a,
|
162
|
-
B40: #2c662e,
|
163
|
-
B30: #214d22,
|
164
|
-
B15: #102611,
|
165
|
-
contrast: (
|
166
|
-
500: white,
|
167
|
-
B100: white,
|
168
|
-
B65: white,
|
169
|
-
B40: white,
|
170
|
-
B30: white,
|
171
|
-
B15: white,
|
172
|
-
),
|
173
|
-
);
|
174
|
-
|
175
|
-
$mat-dark-light-green: (
|
176
|
-
500: #8bc34a,
|
177
|
-
B100: #b5ff61,
|
178
|
-
B65: #76a63f,
|
179
|
-
B40: #486627,
|
180
|
-
B30: #364d1d,
|
181
|
-
B15: #1b260f,
|
182
|
-
contrast: (
|
183
|
-
500: $black-87-opacity,
|
184
|
-
B100: $black-87-opacity,
|
185
|
-
B65: white,
|
186
|
-
B40: white,
|
187
|
-
B30: white,
|
188
|
-
B15: white,
|
189
|
-
),
|
190
|
-
);
|
191
|
-
|
192
|
-
$mat-dark-lime: (
|
193
|
-
500: #cddc39,
|
194
|
-
B100: #ecff42,
|
195
|
-
B65: #99a62b,
|
196
|
-
B40: #5e661b,
|
197
|
-
B30: #474d14,
|
198
|
-
B15: #172621,
|
199
|
-
contrast: (
|
200
|
-
500: $black-87-opacity,
|
201
|
-
B100: $black-87-opacity,
|
202
|
-
B65: $black-87-opacity,
|
203
|
-
B40: white,
|
204
|
-
B30: white,
|
205
|
-
B15: white,
|
206
|
-
),
|
207
|
-
);
|
208
|
-
|
209
|
-
$mat-dark-yellow: (
|
210
|
-
500: #ffeb3b,
|
211
|
-
B100: #ffeb3b,
|
212
|
-
B65: #a69926,
|
213
|
-
B40: #665e17,
|
214
|
-
B30: #4d4712,
|
215
|
-
B15: #26160c,
|
216
|
-
contrast: (
|
217
|
-
500: $black-87-opacity,
|
218
|
-
B100: $black-87-opacity,
|
219
|
-
B65: $black-87-opacity,
|
220
|
-
B40: white,
|
221
|
-
B30: white,
|
222
|
-
B15: white,
|
223
|
-
),
|
224
|
-
);
|
225
|
-
|
226
|
-
$mat-dark-amber: (
|
227
|
-
500: #ffc107,
|
228
|
-
B100: #ffc107,
|
229
|
-
B65: #a67e05,
|
230
|
-
B40: #664d03,
|
231
|
-
B30: #4d3a02,
|
232
|
-
B15: #261c15,
|
233
|
-
contrast: (
|
234
|
-
500: $black-87-opacity,
|
235
|
-
B100: $black-87-opacity,
|
236
|
-
B65: $black-87-opacity,
|
237
|
-
B40: white,
|
238
|
-
B30: white,
|
239
|
-
B15: white,
|
240
|
-
),
|
241
|
-
);
|
242
|
-
|
243
|
-
$mat-dark-orange: (
|
244
|
-
500: #ff9800,
|
245
|
-
B100: #ff9800,
|
246
|
-
B65: #a66300,
|
247
|
-
B40: #663d00,
|
248
|
-
B30: #4d2e00,
|
249
|
-
B15: #261700,
|
250
|
-
contrast: (
|
251
|
-
500: $black-87-opacity,
|
252
|
-
B100: $black-87-opacity,
|
253
|
-
B65: $black-87-opacity,
|
254
|
-
B40: white,
|
255
|
-
B30: white,
|
256
|
-
B15: white,
|
257
|
-
),
|
258
|
-
);
|
259
|
-
|
260
|
-
$mat-dark-deep-orange: (
|
261
|
-
500: #ff5722,
|
262
|
-
B100: #ff5722,
|
263
|
-
B65: #a63716,
|
264
|
-
B40: #66220d,
|
265
|
-
B30: #4d190a,
|
266
|
-
B15: #260d05,
|
267
|
-
contrast: (
|
268
|
-
500: $black-87-opacity,
|
269
|
-
B100: $black-87-opacity,
|
270
|
-
B65: $black-87-opacity,
|
271
|
-
B40: white,
|
272
|
-
B30: white,
|
273
|
-
B15: white,
|
274
|
-
),
|
275
|
-
);
|
276
|
-
|
277
|
-
$mat-dark-brown: (
|
278
|
-
500: #795548,
|
279
|
-
B100: #ffb499,
|
280
|
-
B65: #a67563,
|
281
|
-
B40: #66483d,
|
282
|
-
B30: #4d362e,
|
283
|
-
B15: #261b17,
|
284
|
-
contrast: (
|
285
|
-
500: white,
|
286
|
-
B100: white,
|
287
|
-
B65: white,
|
288
|
-
B40: white,
|
289
|
-
B30: white,
|
290
|
-
B15: white,
|
291
|
-
),
|
292
|
-
);
|
293
|
-
|
294
|
-
$mat-dark-grey: (
|
295
|
-
500: #9e9e9e,
|
296
|
-
B100: #ffffff,
|
297
|
-
B65: #a6a6a6,
|
298
|
-
B40: #666666,
|
299
|
-
B30: #4d4d4d,
|
300
|
-
B15: #262626,
|
301
|
-
contrast: (
|
302
|
-
500: $black-87-opacity,
|
303
|
-
B100: $black-87-opacity,
|
304
|
-
B65: $black-87-opacity,
|
305
|
-
B40: white,
|
306
|
-
B30: white,
|
307
|
-
B15: white,
|
308
|
-
),
|
309
|
-
);
|
310
|
-
|
311
|
-
$mat-dark-blue-grey: (
|
312
|
-
500: #607d8b,
|
313
|
-
B100: #b0e5ff,
|
314
|
-
B65: #7295a6,
|
315
|
-
B40: #465b66,
|
316
|
-
B30: #35454d,
|
317
|
-
B15: #1a2226,
|
318
|
-
contrast: (
|
319
|
-
500: white,
|
320
|
-
B100: white,
|
321
|
-
B65: white,
|
322
|
-
B40: white,
|
323
|
-
B30: white,
|
324
|
-
B15: white,
|
325
|
-
),
|
326
|
-
);
|