@covalent/core 3.1.2 → 4.0.0-beta.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/breadcrumbs/breadcrumb/breadcrumb.component.d.ts +3 -0
- package/breadcrumbs/breadcrumb/breadcrumb.component.scss +3 -0
- package/breadcrumbs/breadcrumbs.component.d.ts +3 -0
- package/breadcrumbs/breadcrumbs.component.scss +1 -0
- package/breadcrumbs/breadcrumbs.module.d.ts +8 -0
- package/breadcrumbs/covalent-core-breadcrumbs.d.ts +1 -0
- package/breadcrumbs/package.json +6 -7
- package/common/_common-theme.scss +2 -0
- package/common/common.module.d.ts +15 -0
- package/common/covalent-core-common.d.ts +1 -2
- package/common/directives/fullscreen/fullscreen.directive.d.ts +3 -0
- package/common/forms/auto-trim/auto-trim.directive.d.ts +3 -0
- package/common/material-icons.css +31 -18
- package/common/material-icons.css.map +1 -1
- package/common/package.json +6 -7
- package/common/pipes/bytes/bytes.pipe.d.ts +3 -0
- package/common/pipes/decimal-bytes/decimal-bytes.pipe.d.ts +3 -0
- package/common/pipes/digits/digits.pipe.d.ts +3 -0
- package/common/pipes/time-ago/time-ago.pipe.d.ts +3 -0
- package/common/pipes/time-difference/time-difference.pipe.d.ts +3 -0
- package/common/pipes/time-until/time-until.pipe.d.ts +3 -0
- package/common/pipes/truncate/truncate.pipe.d.ts +3 -0
- package/common/platform.css +11828 -10433
- package/common/platform.css.map +1 -1
- package/common/services/icon.service.d.ts +3 -0
- package/common/services/router-path.service.d.ts +3 -0
- package/common/styles/_layout.scss +12 -10
- package/common/styles/_palette-dark.scss +2 -2
- package/common/styles/_palette-light.scss +6 -6
- package/common/styles/_rtl.scss +3 -0
- package/common/styles/_variables.scss +5 -5
- package/common/styles/colors/_colors-dark.scss +327 -0
- package/common/styles/colors/_colors-light.scss +748 -0
- package/common/styles/core/_button.scss +2 -1
- package/common/styles/core/_card.scss +27 -7
- package/common/styles/core/_content.scss +2 -1
- package/common/styles/core/_divider.scss +1 -0
- package/common/styles/core/_icons.scss +2 -0
- package/common/styles/core/_sidenav.scss +2 -0
- package/common/styles/core/_structure.scss +6 -7
- package/common/styles/core/_toolbar.scss +7 -0
- package/common/styles/core/_whiteframe.scss +2 -2
- package/common/styles/font/_font.scss +10 -4
- package/common/styles/utilities/_general.scss +14 -0
- package/common/styles/utilities/_text.scss +21 -0
- package/covalent-core.d.ts +1 -0
- package/dialogs/_dialog-theme.scss +1 -0
- package/dialogs/alert-dialog/alert-dialog.component.d.ts +3 -0
- package/dialogs/confirm-dialog/confirm-dialog.component.d.ts +3 -0
- package/dialogs/covalent-core-dialogs.d.ts +1 -1
- package/dialogs/dialog.component.d.ts +9 -0
- package/dialogs/dialog.component.scss +5 -0
- package/dialogs/dialogs.module.d.ts +17 -0
- package/dialogs/package.json +6 -7
- package/dialogs/prompt-dialog/prompt-dialog.component.d.ts +3 -0
- package/dialogs/prompt-dialog/prompt-dialog.component.scss +1 -0
- package/dialogs/public-api.d.ts +1 -0
- package/dialogs/services/dialog.service.d.ts +3 -0
- package/dialogs/window-dialog/window-dialog.component.d.ts +3 -0
- package/dynamic-menu/covalent-core-dynamic-menu.d.ts +1 -1
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.d.ts +3 -0
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.scss +1 -0
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.d.ts +3 -0
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.scss +3 -1
- package/dynamic-menu/dynamic-menu.component.d.ts +3 -0
- package/dynamic-menu/dynamic-menu.module.d.ts +13 -0
- package/dynamic-menu/package.json +6 -7
- package/dynamic-menu/public_api.d.ts +1 -0
- package/esm2020/breadcrumbs/breadcrumb/breadcrumb.component.mjs +108 -0
- package/esm2020/breadcrumbs/breadcrumbs.component.mjs +139 -0
- package/esm2020/breadcrumbs/breadcrumbs.module.mjs +21 -0
- package/esm2020/breadcrumbs/covalent-core-breadcrumbs.mjs +5 -0
- package/esm2020/breadcrumbs/index.mjs +2 -0
- package/esm2020/breadcrumbs/public-api.mjs +4 -0
- package/esm2020/common/animations/bounce/bounce.animation.mjs +70 -0
- package/esm2020/common/animations/collapse/collapse.animation.mjs +51 -0
- package/esm2020/common/animations/common/interfaces.mjs +2 -0
- package/esm2020/common/animations/fade/fadeInOut.animation.mjs +37 -0
- package/esm2020/common/animations/flash/flash.animation.mjs +34 -0
- package/esm2020/common/animations/headshake/headshake.animation.mjs +35 -0
- package/esm2020/common/animations/jello/jello.animation.mjs +38 -0
- package/esm2020/common/animations/pulse/pulse.animation.mjs +32 -0
- package/esm2020/common/animations/rotate/rotate.animation.mjs +25 -0
- package/esm2020/common/behaviors/control-value-accesor.mixin.mjs +39 -0
- package/esm2020/common/behaviors/disable-ripple.mixin.mjs +24 -0
- package/esm2020/common/behaviors/disabled.mixin.mjs +24 -0
- package/esm2020/common/common.module.mjs +64 -0
- package/esm2020/common/covalent-core-common.mjs +5 -0
- package/esm2020/common/directives/fullscreen/fullscreen.directive.mjs +85 -0
- package/esm2020/common/forms/auto-trim/auto-trim.directive.mjs +36 -0
- package/esm2020/common/forms/validators/validators.mjs +29 -0
- package/{esm2015/common/functions/clipboard.js → esm2020/common/functions/clipboard.mjs} +3 -10
- package/esm2020/common/functions/convert.mjs +84 -0
- package/esm2020/common/functions/download.mjs +75 -0
- package/esm2020/common/functions/file.mjs +16 -0
- package/esm2020/common/index.mjs +2 -0
- package/esm2020/common/pipes/bytes/bytes.pipe.mjs +32 -0
- package/esm2020/common/pipes/decimal-bytes/decimal-bytes.pipe.mjs +32 -0
- package/esm2020/common/pipes/digits/digits.pipe.mjs +39 -0
- package/esm2020/common/pipes/time-ago/time-ago.pipe.mjs +72 -0
- package/esm2020/common/pipes/time-difference/time-difference.pipe.mjs +51 -0
- package/esm2020/common/pipes/time-until/time-until.pipe.mjs +72 -0
- package/esm2020/common/pipes/truncate/truncate.pipe.mjs +27 -0
- package/esm2020/common/public-api.mjs +39 -0
- package/esm2020/common/services/icon.service.mjs +1089 -0
- package/esm2020/common/services/router-path.service.mjs +29 -0
- package/esm2020/covalent-core.mjs +5 -0
- package/esm2020/dialogs/alert-dialog/alert-dialog.component.mjs +54 -0
- package/esm2020/dialogs/confirm-dialog/confirm-dialog.component.mjs +68 -0
- package/esm2020/dialogs/covalent-core-dialogs.mjs +5 -0
- package/esm2020/dialogs/dialog.component.mjs +97 -0
- package/esm2020/dialogs/dialogs.module.mjs +86 -0
- package/esm2020/dialogs/index.mjs +2 -0
- package/esm2020/dialogs/prompt-dialog/prompt-dialog.component.mjs +104 -0
- package/esm2020/dialogs/public-api.mjs +9 -0
- package/esm2020/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +199 -0
- package/esm2020/dialogs/services/dialog.service.mjs +168 -0
- package/esm2020/dialogs/window-dialog/window-dialog.component.mjs +69 -0
- package/esm2020/dynamic-menu/covalent-core-dynamic-menu.mjs +5 -0
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +147 -0
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.mjs +113 -0
- package/esm2020/dynamic-menu/dynamic-menu.component.mjs +111 -0
- package/esm2020/dynamic-menu/dynamic-menu.module.mjs +32 -0
- package/esm2020/dynamic-menu/index.mjs +2 -0
- package/esm2020/dynamic-menu/public_api.mjs +5 -0
- package/esm2020/file/covalent-core-file.mjs +5 -0
- package/esm2020/file/directives/file-drop.directive.mjs +148 -0
- package/esm2020/file/directives/file-select.directive.mjs +76 -0
- package/esm2020/file/file-input/file-input.component.mjs +137 -0
- package/esm2020/file/file-upload/file-upload.component.mjs +210 -0
- package/esm2020/file/file.module.mjs +43 -0
- package/esm2020/file/index.mjs +2 -0
- package/esm2020/file/public-api.mjs +7 -0
- package/esm2020/file/services/file.service.mjs +62 -0
- package/esm2020/index.mjs +2 -0
- package/esm2020/json-formatter/covalent-core-json-formatter.mjs +5 -0
- package/esm2020/json-formatter/index.mjs +2 -0
- package/esm2020/json-formatter/json-formatter.component.mjs +302 -0
- package/esm2020/json-formatter/json-formatter.module.mjs +21 -0
- package/esm2020/json-formatter/public-api.mjs +3 -0
- package/esm2020/layout/covalent-core-layout.mjs +5 -0
- package/esm2020/layout/index.mjs +2 -0
- package/esm2020/layout/layout-card-over/layout-card-over.component.mjs +87 -0
- package/esm2020/layout/layout-footer/layout-footer.component.mjs +38 -0
- package/esm2020/layout/layout-manage-list/layout-manage-list.component.mjs +122 -0
- package/esm2020/layout/layout-manage-list/layout-manage-list.directives.mjs +90 -0
- package/esm2020/layout/layout-nav/layout-nav.component.mjs +112 -0
- package/esm2020/layout/layout-nav-list/layout-nav-list.component.mjs +215 -0
- package/esm2020/layout/layout-nav-list/layout-nav-list.directives.mjs +90 -0
- package/esm2020/layout/layout-toggle.class.mjs +95 -0
- package/esm2020/layout/layout.component.mjs +113 -0
- package/esm2020/layout/layout.directives.mjs +87 -0
- package/esm2020/layout/layout.module.mjs +118 -0
- package/esm2020/layout/navigation-drawer/navigation-drawer.component.mjs +306 -0
- package/esm2020/layout/public-api.mjs +13 -0
- package/esm2020/menu/covalent-core-menu.mjs +5 -0
- package/esm2020/menu/index.mjs +2 -0
- package/esm2020/menu/menu.component.mjs +23 -0
- package/esm2020/menu/menu.module.mjs +22 -0
- package/esm2020/menu/public-api.mjs +3 -0
- package/esm2020/message/covalent-core-message.mjs +5 -0
- package/esm2020/message/index.mjs +2 -0
- package/esm2020/message/message.component.mjs +261 -0
- package/esm2020/message/message.module.mjs +21 -0
- package/esm2020/message/public-api.mjs +3 -0
- package/esm2020/search/covalent-core-search.mjs +5 -0
- package/esm2020/search/index.mjs +2 -0
- package/esm2020/search/public-api.mjs +4 -0
- package/esm2020/search/search-box/search-box.component.mjs +220 -0
- package/esm2020/search/search-input/search-input.component.mjs +240 -0
- package/esm2020/search/search.module.mjs +24 -0
- package/esm2020/side-sheet/covalent-core-side-sheet.mjs +5 -0
- package/esm2020/side-sheet/index.mjs +2 -0
- package/esm2020/side-sheet/public-api.mjs +6 -0
- package/esm2020/side-sheet/side-sheet-container.mjs +242 -0
- package/esm2020/side-sheet/side-sheet-ref.mjs +21 -0
- package/esm2020/side-sheet/side-sheet.animation.mjs +12 -0
- package/esm2020/side-sheet/side-sheet.config.mjs +4 -0
- package/esm2020/side-sheet/side-sheet.content-directives.mjs +178 -0
- package/esm2020/side-sheet/side-sheet.mjs +208 -0
- package/esm2020/side-sheet/side-sheet.module.mjs +46 -0
- package/esm2020/user-profile/covalent-core-user-profile.mjs +5 -0
- package/esm2020/user-profile/index.mjs +2 -0
- package/esm2020/user-profile/public_api.mjs +4 -0
- package/esm2020/user-profile/user-profile-menu/user-profile-menu.component.mjs +75 -0
- package/esm2020/user-profile/user-profile.component.mjs +41 -0
- package/esm2020/user-profile/user-profile.module.mjs +26 -0
- package/fesm2015/covalent-core-breadcrumbs.mjs +287 -0
- package/fesm2015/covalent-core-breadcrumbs.mjs.map +1 -0
- package/fesm2015/covalent-core-common.mjs +2251 -0
- package/fesm2015/covalent-core-common.mjs.map +1 -0
- package/fesm2015/covalent-core-dialogs.mjs +872 -0
- package/fesm2015/covalent-core-dialogs.mjs.map +1 -0
- package/fesm2015/covalent-core-dynamic-menu.mjs +480 -0
- package/fesm2015/covalent-core-dynamic-menu.mjs.map +1 -0
- package/fesm2015/covalent-core-file.mjs +698 -0
- package/fesm2015/covalent-core-file.mjs.map +1 -0
- package/fesm2015/covalent-core-json-formatter.mjs +353 -0
- package/fesm2015/covalent-core-json-formatter.mjs.map +1 -0
- package/fesm2015/covalent-core-layout.mjs +1577 -0
- package/fesm2015/covalent-core-layout.mjs.map +1 -0
- package/fesm2015/covalent-core-menu.mjs +55 -0
- package/fesm2015/covalent-core-menu.mjs.map +1 -0
- package/fesm2015/covalent-core-message.mjs +309 -0
- package/fesm2015/covalent-core-message.mjs.map +1 -0
- package/fesm2015/covalent-core-search.mjs +508 -0
- package/fesm2015/covalent-core-search.mjs.map +1 -0
- package/fesm2015/covalent-core-side-sheet.mjs +733 -0
- package/fesm2015/covalent-core-side-sheet.mjs.map +1 -0
- package/fesm2015/covalent-core-user-profile.mjs +162 -0
- package/fesm2015/covalent-core-user-profile.mjs.map +1 -0
- package/{chips/covalent-core-chips.d.ts → fesm2015/covalent-core.mjs} +1 -1
- package/fesm2015/covalent-core.mjs.map +1 -0
- package/fesm2020/covalent-core-breadcrumbs.mjs +268 -0
- package/{fesm2015/covalent-core-breadcrumbs.js.map → fesm2020/covalent-core-breadcrumbs.mjs.map} +1 -1
- package/{fesm2015/covalent-core-common.js → fesm2020/covalent-core-common.mjs} +213 -768
- package/fesm2020/covalent-core-common.mjs.map +1 -0
- package/fesm2020/covalent-core-dialogs.mjs +812 -0
- package/fesm2020/covalent-core-dialogs.mjs.map +1 -0
- package/fesm2020/covalent-core-dynamic-menu.mjs +393 -0
- package/fesm2020/covalent-core-dynamic-menu.mjs.map +1 -0
- package/fesm2020/covalent-core-file.mjs +651 -0
- package/fesm2020/covalent-core-file.mjs.map +1 -0
- package/fesm2020/covalent-core-json-formatter.mjs +326 -0
- package/fesm2020/covalent-core-json-formatter.mjs.map +1 -0
- package/fesm2020/covalent-core-layout.mjs +1414 -0
- package/fesm2020/covalent-core-layout.mjs.map +1 -0
- package/fesm2020/covalent-core-menu.mjs +49 -0
- package/fesm2020/covalent-core-menu.mjs.map +1 -0
- package/fesm2020/covalent-core-message.mjs +286 -0
- package/fesm2020/covalent-core-message.mjs.map +1 -0
- package/fesm2020/covalent-core-search.mjs +473 -0
- package/fesm2020/covalent-core-search.mjs.map +1 -0
- package/{fesm2015/covalent-core-side-sheet.js → fesm2020/covalent-core-side-sheet.mjs} +202 -646
- package/fesm2020/covalent-core-side-sheet.mjs.map +1 -0
- package/fesm2020/covalent-core-user-profile.mjs +141 -0
- package/fesm2020/covalent-core-user-profile.mjs.map +1 -0
- package/{data-table/covalent-core-data-table.d.ts → fesm2020/covalent-core.mjs} +1 -1
- package/fesm2020/covalent-core.mjs.map +1 -0
- package/file/_file-theme.scss +1 -0
- package/file/covalent-core-file.d.ts +1 -0
- package/file/directives/file-drop.directive.d.ts +3 -0
- package/file/directives/file-select.directive.d.ts +3 -0
- package/file/file-input/file-input.component.d.ts +5 -0
- package/file/file-input/file-input.component.scss +2 -0
- package/file/file-upload/file-upload.component.d.ts +3 -0
- package/file/file-upload/file-upload.component.scss +4 -0
- package/file/file.module.d.ts +13 -0
- package/file/package.json +6 -7
- package/file/services/file.service.d.ts +3 -0
- package/json-formatter/_json-formatter-theme.scss +10 -0
- package/json-formatter/covalent-core-json-formatter.d.ts +1 -0
- package/json-formatter/json-formatter.component.d.ts +3 -0
- package/json-formatter/json-formatter.component.scss +13 -0
- package/json-formatter/json-formatter.module.d.ts +8 -0
- package/json-formatter/package.json +6 -7
- package/layout/_layout-theme.scss +12 -0
- package/layout/covalent-core-layout.d.ts +1 -0
- package/layout/layout-card-over/layout-card-over.component.d.ts +3 -0
- package/layout/layout-card-over/layout-card-over.component.scss +3 -0
- package/layout/layout-footer/layout-footer.component.d.ts +3 -0
- package/layout/layout-manage-list/layout-manage-list.component.d.ts +3 -0
- package/layout/layout-manage-list/layout-manage-list.component.scss +9 -5
- package/layout/layout-manage-list/layout-manage-list.directives.d.ts +7 -0
- package/layout/layout-nav/layout-nav.component.d.ts +3 -0
- package/layout/layout-nav/layout-nav.component.scss +4 -0
- package/layout/layout-nav-list/layout-nav-list.component.d.ts +3 -0
- package/layout/layout-nav-list/layout-nav-list.component.scss +9 -4
- package/layout/layout-nav-list/layout-nav-list.directives.d.ts +7 -0
- package/layout/layout-toggle.class.d.ts +3 -0
- package/layout/layout.component.d.ts +3 -0
- package/layout/layout.component.scss +0 -4
- package/layout/layout.directives.d.ts +7 -0
- package/layout/layout.module.d.ts +23 -0
- package/layout/navigation-drawer/navigation-drawer.component.d.ts +7 -0
- package/layout/navigation-drawer/navigation-drawer.component.scss +8 -0
- package/layout/package.json +6 -7
- package/menu/covalent-core-menu.d.ts +1 -0
- package/menu/menu.component.d.ts +3 -0
- package/menu/menu.component.scss +9 -1
- package/menu/menu.module.d.ts +8 -0
- package/menu/package.json +6 -7
- package/message/_message-theme.scss +3 -0
- package/message/covalent-core-message.d.ts +1 -0
- package/message/message.component.d.ts +5 -0
- package/message/message.component.scss +3 -0
- package/message/message.module.d.ts +7 -0
- package/message/package.json +6 -7
- package/package.json +126 -15
- package/search/covalent-core-search.d.ts +1 -0
- package/search/package.json +6 -7
- package/search/search-box/search-box.component.d.ts +3 -0
- package/search/search-box/search-box.component.scss +5 -0
- package/search/search-input/search-input.component.d.ts +3 -0
- package/search/search-input/search-input.component.scss +12 -0
- package/search/search.module.d.ts +11 -0
- package/side-sheet/covalent-core-side-sheet.d.ts +1 -2
- package/side-sheet/package.json +6 -7
- package/side-sheet/side-sheet-container.d.ts +5 -0
- package/side-sheet/side-sheet.content-directives.d.ts +11 -0
- package/side-sheet/side-sheet.d.ts +5 -0
- package/side-sheet/side-sheet.module.d.ts +9 -0
- package/side-sheet/side-sheet.scss +1 -2
- package/theming/_all-theme.scss +0 -14
- package/theming/prebuilt/blue-grey-deep-orange.css +1714 -1581
- package/theming/prebuilt/blue-grey-deep-orange.css.map +1 -1
- package/theming/prebuilt/blue-grey-deep-orange.scss +15 -8
- package/theming/prebuilt/blue-orange.css +1713 -1580
- package/theming/prebuilt/blue-orange.css.map +1 -1
- package/theming/prebuilt/blue-orange.scss +15 -8
- package/theming/prebuilt/indigo-pink.css +1714 -1581
- package/theming/prebuilt/indigo-pink.css.map +1 -1
- package/theming/prebuilt/indigo-pink.scss +15 -8
- package/theming/prebuilt/orange-light-blue.css +1713 -1580
- package/theming/prebuilt/orange-light-blue.css.map +1 -1
- package/theming/prebuilt/orange-light-blue.scss +15 -8
- package/theming/prebuilt/teal-orange.css +1713 -1580
- package/theming/prebuilt/teal-orange.css.map +1 -1
- package/theming/prebuilt/teal-orange.scss +15 -8
- package/typography/_all-typography.scss +0 -10
- package/user-profile/covalent-core-user-profile.d.ts +1 -0
- package/user-profile/package.json +6 -7
- package/user-profile/user-profile-menu/user-profile-menu.component.d.ts +3 -0
- package/user-profile/user-profile-menu/user-profile-menu.component.scss +3 -0
- package/user-profile/user-profile.component.d.ts +3 -0
- package/user-profile/user-profile.module.d.ts +12 -0
- package/breadcrumbs/covalent-core-breadcrumbs.metadata.json +0 -1
- package/bundles/covalent-core-breadcrumbs.umd.js +0 -490
- package/bundles/covalent-core-breadcrumbs.umd.js.map +0 -1
- package/bundles/covalent-core-breadcrumbs.umd.min.js +0 -2
- package/bundles/covalent-core-breadcrumbs.umd.min.js.map +0 -1
- package/bundles/covalent-core-chips.umd.js +0 -1507
- package/bundles/covalent-core-chips.umd.js.map +0 -1
- package/bundles/covalent-core-chips.umd.min.js +0 -16
- package/bundles/covalent-core-chips.umd.min.js.map +0 -1
- package/bundles/covalent-core-common.umd.js +0 -3188
- package/bundles/covalent-core-common.umd.js.map +0 -1
- package/bundles/covalent-core-common.umd.min.js +0 -17
- package/bundles/covalent-core-common.umd.min.js.map +0 -1
- package/bundles/covalent-core-data-table.umd.js +0 -2756
- package/bundles/covalent-core-data-table.umd.js.map +0 -1
- package/bundles/covalent-core-data-table.umd.min.js +0 -16
- package/bundles/covalent-core-data-table.umd.min.js.map +0 -1
- package/bundles/covalent-core-dialogs.umd.js +0 -1318
- package/bundles/covalent-core-dialogs.umd.js.map +0 -1
- package/bundles/covalent-core-dialogs.umd.min.js +0 -2
- package/bundles/covalent-core-dialogs.umd.min.js.map +0 -1
- package/bundles/covalent-core-dynamic-menu.umd.js +0 -215
- package/bundles/covalent-core-dynamic-menu.umd.js.map +0 -1
- package/bundles/covalent-core-dynamic-menu.umd.min.js +0 -2
- package/bundles/covalent-core-dynamic-menu.umd.min.js.map +0 -1
- package/bundles/covalent-core-expansion-panel.umd.js +0 -853
- package/bundles/covalent-core-expansion-panel.umd.js.map +0 -1
- package/bundles/covalent-core-expansion-panel.umd.min.js +0 -16
- package/bundles/covalent-core-expansion-panel.umd.min.js.map +0 -1
- package/bundles/covalent-core-file.umd.js +0 -1211
- package/bundles/covalent-core-file.umd.js.map +0 -1
- package/bundles/covalent-core-file.umd.min.js +0 -17
- package/bundles/covalent-core-file.umd.min.js.map +0 -1
- package/bundles/covalent-core-json-formatter.umd.js +0 -408
- package/bundles/covalent-core-json-formatter.umd.js.map +0 -1
- package/bundles/covalent-core-json-formatter.umd.min.js +0 -2
- package/bundles/covalent-core-json-formatter.umd.min.js.map +0 -1
- package/bundles/covalent-core-layout.umd.js +0 -2084
- package/bundles/covalent-core-layout.umd.js.map +0 -1
- package/bundles/covalent-core-layout.umd.min.js +0 -17
- package/bundles/covalent-core-layout.umd.min.js.map +0 -1
- package/bundles/covalent-core-loading.umd.js +0 -1534
- package/bundles/covalent-core-loading.umd.js.map +0 -1
- package/bundles/covalent-core-loading.umd.min.js +0 -16
- package/bundles/covalent-core-loading.umd.min.js.map +0 -1
- package/bundles/covalent-core-media.umd.js +0 -749
- package/bundles/covalent-core-media.umd.js.map +0 -1
- package/bundles/covalent-core-media.umd.min.js +0 -16
- package/bundles/covalent-core-media.umd.min.js.map +0 -1
- package/bundles/covalent-core-menu.umd.js +0 -69
- package/bundles/covalent-core-menu.umd.js.map +0 -1
- package/bundles/covalent-core-menu.umd.min.js +0 -2
- package/bundles/covalent-core-menu.umd.min.js.map +0 -1
- package/bundles/covalent-core-message.umd.js +0 -375
- package/bundles/covalent-core-message.umd.js.map +0 -1
- package/bundles/covalent-core-message.umd.min.js +0 -2
- package/bundles/covalent-core-message.umd.min.js.map +0 -1
- package/bundles/covalent-core-nav-links.umd.js +0 -197
- package/bundles/covalent-core-nav-links.umd.js.map +0 -1
- package/bundles/covalent-core-nav-links.umd.min.js +0 -2
- package/bundles/covalent-core-nav-links.umd.min.js.map +0 -1
- package/bundles/covalent-core-notifications.umd.js +0 -275
- package/bundles/covalent-core-notifications.umd.js.map +0 -1
- package/bundles/covalent-core-notifications.umd.min.js +0 -2
- package/bundles/covalent-core-notifications.umd.min.js.map +0 -1
- package/bundles/covalent-core-paging.umd.js +0 -491
- package/bundles/covalent-core-paging.umd.js.map +0 -1
- package/bundles/covalent-core-paging.umd.min.js +0 -2
- package/bundles/covalent-core-paging.umd.min.js.map +0 -1
- package/bundles/covalent-core-search.umd.js +0 -877
- package/bundles/covalent-core-search.umd.js.map +0 -1
- package/bundles/covalent-core-search.umd.min.js +0 -16
- package/bundles/covalent-core-search.umd.min.js.map +0 -1
- package/bundles/covalent-core-side-sheet.umd.js +0 -1458
- package/bundles/covalent-core-side-sheet.umd.js.map +0 -1
- package/bundles/covalent-core-side-sheet.umd.min.js +0 -16
- package/bundles/covalent-core-side-sheet.umd.min.js.map +0 -1
- package/bundles/covalent-core-sidesheet.umd.js +0 -145
- package/bundles/covalent-core-sidesheet.umd.js.map +0 -1
- package/bundles/covalent-core-sidesheet.umd.min.js +0 -2
- package/bundles/covalent-core-sidesheet.umd.min.js.map +0 -1
- package/bundles/covalent-core-steps.umd.js +0 -1756
- package/bundles/covalent-core-steps.umd.js.map +0 -1
- package/bundles/covalent-core-steps.umd.min.js +0 -16
- package/bundles/covalent-core-steps.umd.min.js.map +0 -1
- package/bundles/covalent-core-tab-select.umd.js +0 -732
- package/bundles/covalent-core-tab-select.umd.js.map +0 -1
- package/bundles/covalent-core-tab-select.umd.min.js +0 -16
- package/bundles/covalent-core-tab-select.umd.min.js.map +0 -1
- package/bundles/covalent-core-user-profile.umd.js +0 -124
- package/bundles/covalent-core-user-profile.umd.js.map +0 -1
- package/bundles/covalent-core-user-profile.umd.min.js +0 -2
- package/bundles/covalent-core-user-profile.umd.min.js.map +0 -1
- package/bundles/covalent-core-virtual-scroll.umd.js +0 -785
- package/bundles/covalent-core-virtual-scroll.umd.js.map +0 -1
- package/bundles/covalent-core-virtual-scroll.umd.min.js +0 -16
- package/bundles/covalent-core-virtual-scroll.umd.min.js.map +0 -1
- package/bundles/covalent-core.umd.js +0 -9
- package/bundles/covalent-core.umd.js.map +0 -1
- package/bundles/covalent-core.umd.min.js +0 -2
- package/bundles/covalent-core.umd.min.js.map +0 -1
- package/chips/README.md +0 -99
- package/chips/_chips-theme.scss +0 -87
- package/chips/chips.component.d.ts +0 -287
- package/chips/chips.component.scss +0 -147
- package/chips/chips.module.d.ts +0 -2
- package/chips/covalent-core-chips.metadata.json +0 -1
- package/chips/index.d.ts +0 -1
- package/chips/package.json +0 -11
- package/chips/public-api.d.ts +0 -2
- package/common/covalent-core-common.metadata.json +0 -1
- package/covalent-core.metadata.json +0 -1
- package/data-table/README.md +0 -134
- package/data-table/_data-table-theme.scss +0 -115
- package/data-table/covalent-core-data-table.metadata.json +0 -1
- package/data-table/data-table-cell/data-table-cell.component.d.ts +0 -22
- package/data-table/data-table-cell/data-table-cell.component.scss +0 -58
- package/data-table/data-table-column/data-table-column.component.d.ts +0 -63
- package/data-table/data-table-column/data-table-column.component.scss +0 -80
- package/data-table/data-table-row/data-table-row.component.d.ts +0 -20
- package/data-table/data-table-row/data-table-row.component.scss +0 -12
- package/data-table/data-table-table/data-table-table.component.d.ts +0 -6
- package/data-table/data-table-table/data-table-table.component.scss +0 -7
- package/data-table/data-table.component.d.ts +0 -356
- package/data-table/data-table.component.scss +0 -93
- package/data-table/data-table.module.d.ts +0 -2
- package/data-table/directives/data-table-template.directive.d.ts +0 -6
- package/data-table/index.d.ts +0 -1
- package/data-table/package.json +0 -11
- package/data-table/public-api.d.ts +0 -8
- package/data-table/services/data-table.service.d.ts +0 -31
- package/dialogs/covalent-core-dialogs.metadata.json +0 -1
- package/dynamic-menu/covalent-core-dynamic-menu.metadata.json +0 -1
- package/esm2015/breadcrumbs/breadcrumb/breadcrumb.component.js +0 -171
- package/esm2015/breadcrumbs/breadcrumbs.component.js +0 -241
- package/esm2015/breadcrumbs/breadcrumbs.module.js +0 -20
- package/esm2015/breadcrumbs/covalent-core-breadcrumbs.js +0 -10
- package/esm2015/breadcrumbs/index.js +0 -7
- package/esm2015/breadcrumbs/public-api.js +0 -9
- package/esm2015/chips/chips.component.js +0 -1115
- package/esm2015/chips/chips.module.js +0 -23
- package/esm2015/chips/covalent-core-chips.js +0 -10
- package/esm2015/chips/index.js +0 -7
- package/esm2015/chips/public-api.js +0 -8
- package/esm2015/common/animations/bounce/bounce.animation.js +0 -76
- package/esm2015/common/animations/collapse/collapse.animation.js +0 -67
- package/esm2015/common/animations/common/interfaces.js +0 -18
- package/esm2015/common/animations/fade/fadeInOut.animation.js +0 -53
- package/esm2015/common/animations/flash/flash.animation.js +0 -40
- package/esm2015/common/animations/headshake/headshake.animation.js +0 -41
- package/esm2015/common/animations/jello/jello.animation.js +0 -44
- package/esm2015/common/animations/pulse/pulse.animation.js +0 -38
- package/esm2015/common/animations/rotate/rotate.animation.js +0 -41
- package/esm2015/common/behaviors/control-value-accesor.mixin.js +0 -107
- package/esm2015/common/behaviors/disable-ripple.mixin.js +0 -63
- package/esm2015/common/behaviors/disabled.mixin.js +0 -63
- package/esm2015/common/common.module.js +0 -54
- package/esm2015/common/covalent-core-common.js +0 -12
- package/esm2015/common/directives/fullscreen/fullscreen.directive.js +0 -180
- package/esm2015/common/forms/auto-trim/auto-trim.directive.js +0 -46
- package/esm2015/common/forms/validators/validators.js +0 -58
- package/esm2015/common/functions/convert.js +0 -103
- package/esm2015/common/functions/download.js +0 -88
- package/esm2015/common/functions/file.js +0 -29
- package/esm2015/common/index.js +0 -7
- package/esm2015/common/pipes/bytes/bytes.pipe.js +0 -41
- package/esm2015/common/pipes/decimal-bytes/decimal-bytes.pipe.js +0 -41
- package/esm2015/common/pipes/digits/digits.pipe.js +0 -65
- package/esm2015/common/pipes/time-ago/time-ago.pipe.js +0 -81
- package/esm2015/common/pipes/time-difference/time-difference.pipe.js +0 -66
- package/esm2015/common/pipes/time-until/time-until.pipe.js +0 -81
- package/esm2015/common/pipes/truncate/truncate.pipe.js +0 -34
- package/esm2015/common/public-api.js +0 -44
- package/esm2015/common/services/icon.service.js +0 -1109
- package/esm2015/common/services/router-path.service.js +0 -60
- package/esm2015/covalent-core.js +0 -10
- package/esm2015/data-table/covalent-core-data-table.js +0 -10
- package/esm2015/data-table/data-table-cell/data-table-cell.component.js +0 -88
- package/esm2015/data-table/data-table-column/data-table-column.component.js +0 -218
- package/esm2015/data-table/data-table-row/data-table-row.component.js +0 -132
- package/esm2015/data-table/data-table-table/data-table-table.component.js +0 -43
- package/esm2015/data-table/data-table.component.js +0 -1640
- package/esm2015/data-table/data-table.module.js +0 -39
- package/esm2015/data-table/directives/data-table-template.directive.js +0 -32
- package/esm2015/data-table/index.js +0 -7
- package/esm2015/data-table/public-api.js +0 -14
- package/esm2015/data-table/services/data-table.service.js +0 -116
- package/esm2015/dialogs/alert-dialog/alert-dialog.component.js +0 -47
- package/esm2015/dialogs/confirm-dialog/confirm-dialog.component.js +0 -59
- package/esm2015/dialogs/covalent-core-dialogs.js +0 -11
- package/esm2015/dialogs/dialog.component.js +0 -58
- package/esm2015/dialogs/dialogs.module.js +0 -57
- package/esm2015/dialogs/index.js +0 -7
- package/esm2015/dialogs/prompt-dialog/prompt-dialog.component.js +0 -83
- package/esm2015/dialogs/public-api.js +0 -13
- package/esm2015/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.js +0 -325
- package/esm2015/dialogs/services/dialog.service.js +0 -316
- package/esm2015/dialogs/window-dialog/window-dialog.component.js +0 -56
- package/esm2015/dynamic-menu/covalent-core-dynamic-menu.js +0 -11
- package/esm2015/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.js +0 -40
- package/esm2015/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.js +0 -35
- package/esm2015/dynamic-menu/dynamic-menu.component.js +0 -89
- package/esm2015/dynamic-menu/dynamic-menu.module.js +0 -26
- package/esm2015/dynamic-menu/index.js +0 -7
- package/esm2015/dynamic-menu/public_api.js +0 -9
- package/esm2015/expansion-panel/covalent-core-expansion-panel.js +0 -10
- package/esm2015/expansion-panel/expansion-panel-group.component.js +0 -212
- package/esm2015/expansion-panel/expansion-panel.component.js +0 -272
- package/esm2015/expansion-panel/expansion-panel.module.js +0 -31
- package/esm2015/expansion-panel/index.js +0 -7
- package/esm2015/expansion-panel/public-api.js +0 -9
- package/esm2015/file/covalent-core-file.js +0 -10
- package/esm2015/file/directives/file-drop.directive.js +0 -191
- package/esm2015/file/directives/file-select.directive.js +0 -98
- package/esm2015/file/file-input/file-input.component.js +0 -186
- package/esm2015/file/file-upload/file-upload.component.js +0 -237
- package/esm2015/file/file.module.js +0 -35
- package/esm2015/file/index.js +0 -7
- package/esm2015/file/public-api.js +0 -12
- package/esm2015/file/services/file.service.js +0 -109
- package/esm2015/index.js +0 -7
- package/esm2015/json-formatter/covalent-core-json-formatter.js +0 -10
- package/esm2015/json-formatter/index.js +0 -7
- package/esm2015/json-formatter/json-formatter.component.js +0 -338
- package/esm2015/json-formatter/json-formatter.module.js +0 -20
- package/esm2015/json-formatter/public-api.js +0 -8
- package/esm2015/layout/covalent-core-layout.js +0 -10
- package/esm2015/layout/index.js +0 -7
- package/esm2015/layout/layout-card-over/layout-card-over.component.js +0 -71
- package/esm2015/layout/layout-footer/layout-footer.component.js +0 -71
- package/esm2015/layout/layout-manage-list/layout-manage-list.component.js +0 -145
- package/esm2015/layout/layout-manage-list/layout-manage-list.directives.js +0 -132
- package/esm2015/layout/layout-nav/layout-nav.component.js +0 -100
- package/esm2015/layout/layout-nav-list/layout-nav-list.component.js +0 -220
- package/esm2015/layout/layout-nav-list/layout-nav-list.directives.js +0 -132
- package/esm2015/layout/layout-toggle.class.js +0 -188
- package/esm2015/layout/layout.component.js +0 -145
- package/esm2015/layout/layout.directives.js +0 -129
- package/esm2015/layout/layout.module.js +0 -64
- package/esm2015/layout/navigation-drawer/navigation-drawer.component.js +0 -280
- package/esm2015/layout/public-api.js +0 -18
- package/esm2015/loading/covalent-core-loading.js +0 -10
- package/esm2015/loading/directives/loading.directive.js +0 -231
- package/esm2015/loading/index.js +0 -7
- package/esm2015/loading/loading.component.js +0 -302
- package/esm2015/loading/loading.module.js +0 -30
- package/esm2015/loading/public-api.js +0 -11
- package/esm2015/loading/services/loading.factory.js +0 -297
- package/esm2015/loading/services/loading.service.js +0 -319
- package/esm2015/media/covalent-core-media.js +0 -10
- package/esm2015/media/directives/media-toggle.directive.js +0 -207
- package/esm2015/media/index.js +0 -7
- package/esm2015/media/media.module.js +0 -20
- package/esm2015/media/public-api.js +0 -9
- package/esm2015/media/services/media.service.js +0 -169
- package/esm2015/menu/covalent-core-menu.js +0 -10
- package/esm2015/menu/index.js +0 -7
- package/esm2015/menu/menu.component.js +0 -16
- package/esm2015/menu/menu.module.js +0 -22
- package/esm2015/menu/public-api.js +0 -8
- package/esm2015/message/covalent-core-message.js +0 -10
- package/esm2015/message/index.js +0 -7
- package/esm2015/message/message.component.js +0 -307
- package/esm2015/message/message.module.js +0 -21
- package/esm2015/message/public-api.js +0 -8
- package/esm2015/nav-links/covalent-core-nav-links.js +0 -10
- package/esm2015/nav-links/index.js +0 -7
- package/esm2015/nav-links/nav-links.component.js +0 -138
- package/esm2015/nav-links/nav-links.module.js +0 -37
- package/esm2015/nav-links/public-api.js +0 -8
- package/esm2015/notifications/covalent-core-notifications.js +0 -10
- package/esm2015/notifications/index.js +0 -7
- package/esm2015/notifications/notification-count.component.js +0 -191
- package/esm2015/notifications/notifications.module.js +0 -20
- package/esm2015/notifications/public-api.js +0 -8
- package/esm2015/paging/covalent-core-paging.js +0 -10
- package/esm2015/paging/index.js +0 -7
- package/esm2015/paging/paging-bar.component.js +0 -412
- package/esm2015/paging/paging.module.js +0 -20
- package/esm2015/paging/public-api.js +0 -8
- package/esm2015/search/covalent-core-search.js +0 -10
- package/esm2015/search/index.js +0 -7
- package/esm2015/search/public-api.js +0 -9
- package/esm2015/search/search-box/search-box.component.js +0 -270
- package/esm2015/search/search-input/search-input.component.js +0 -260
- package/esm2015/search/search.module.js +0 -23
- package/esm2015/side-sheet/covalent-core-side-sheet.js +0 -12
- package/esm2015/side-sheet/index.js +0 -7
- package/esm2015/side-sheet/public-api.js +0 -11
- package/esm2015/side-sheet/side-sheet-container.js +0 -402
- package/esm2015/side-sheet/side-sheet-ref.js +0 -50
- package/esm2015/side-sheet/side-sheet.animation.js +0 -20
- package/esm2015/side-sheet/side-sheet.config.js +0 -12
- package/esm2015/side-sheet/side-sheet.content-directives.js +0 -255
- package/esm2015/side-sheet/side-sheet.js +0 -360
- package/esm2015/side-sheet/side-sheet.module.js +0 -36
- package/esm2015/sidesheet/covalent-core-sidesheet.js +0 -10
- package/esm2015/sidesheet/index.js +0 -7
- package/esm2015/sidesheet/public-api.js +0 -8
- package/esm2015/sidesheet/sidesheet.component.js +0 -72
- package/esm2015/sidesheet/sidesheet.module.js +0 -27
- package/esm2015/steps/covalent-core-steps.js +0 -10
- package/esm2015/steps/index.js +0 -7
- package/esm2015/steps/nav/nav-step-link/nav-step-link.component.js +0 -144
- package/esm2015/steps/nav/nav-steps-horizontal/nav-steps-horizontal.component.js +0 -371
- package/esm2015/steps/nav/nav-steps-vertical/nav-steps-vertical.component.js +0 -130
- package/esm2015/steps/public-api.js +0 -14
- package/esm2015/steps/step-body/step-body.component.js +0 -83
- package/esm2015/steps/step-header/step-header.component.js +0 -79
- package/esm2015/steps/step.component.js +0 -312
- package/esm2015/steps/steps.component.js +0 -234
- package/esm2015/steps/steps.module.js +0 -44
- package/esm2015/tab-select/covalent-core-tab-select.js +0 -10
- package/esm2015/tab-select/index.js +0 -7
- package/esm2015/tab-select/public-api.js +0 -9
- package/esm2015/tab-select/tab-option.component.js +0 -82
- package/esm2015/tab-select/tab-select.component.js +0 -291
- package/esm2015/tab-select/tab-select.module.js +0 -31
- package/esm2015/user-profile/covalent-core-user-profile.js +0 -10
- package/esm2015/user-profile/index.js +0 -7
- package/esm2015/user-profile/public_api.js +0 -9
- package/esm2015/user-profile/user-profile-menu/user-profile-menu.component.js +0 -35
- package/esm2015/user-profile/user-profile.component.js +0 -26
- package/esm2015/user-profile/user-profile.module.js +0 -33
- package/esm2015/virtual-scroll/covalent-core-virtual-scroll.js +0 -10
- package/esm2015/virtual-scroll/index.js +0 -7
- package/esm2015/virtual-scroll/public-api.js +0 -9
- package/esm2015/virtual-scroll/virtual-scroll-container.component.js +0 -391
- package/esm2015/virtual-scroll/virtual-scroll-row.directive.js +0 -25
- package/esm2015/virtual-scroll/virtual-scroll.module.js +0 -21
- package/expansion-panel/README.md +0 -116
- package/expansion-panel/_expansion-panel-theme.scss +0 -80
- package/expansion-panel/covalent-core-expansion-panel.d.ts +0 -4
- package/expansion-panel/covalent-core-expansion-panel.metadata.json +0 -1
- package/expansion-panel/expansion-panel-group.component.d.ts +0 -31
- package/expansion-panel/expansion-panel-group.component.scss +0 -0
- package/expansion-panel/expansion-panel.component.d.ts +0 -82
- package/expansion-panel/expansion-panel.component.scss +0 -50
- package/expansion-panel/expansion-panel.module.d.ts +0 -2
- package/expansion-panel/index.d.ts +0 -1
- package/expansion-panel/package.json +0 -11
- package/expansion-panel/public-api.d.ts +0 -3
- package/fesm2015/covalent-core-breadcrumbs.js +0 -448
- package/fesm2015/covalent-core-chips.js +0 -1151
- package/fesm2015/covalent-core-chips.js.map +0 -1
- package/fesm2015/covalent-core-common.js.map +0 -1
- package/fesm2015/covalent-core-data-table.js +0 -2309
- package/fesm2015/covalent-core-data-table.js.map +0 -1
- package/fesm2015/covalent-core-dialogs.js +0 -1001
- package/fesm2015/covalent-core-dialogs.js.map +0 -1
- package/fesm2015/covalent-core-dynamic-menu.js +0 -204
- package/fesm2015/covalent-core-dynamic-menu.js.map +0 -1
- package/fesm2015/covalent-core-expansion-panel.js +0 -528
- package/fesm2015/covalent-core-expansion-panel.js.map +0 -1
- package/fesm2015/covalent-core-file.js +0 -855
- package/fesm2015/covalent-core-file.js.map +0 -1
- package/fesm2015/covalent-core-json-formatter.js +0 -377
- package/fesm2015/covalent-core-json-formatter.js.map +0 -1
- package/fesm2015/covalent-core-layout.js +0 -1663
- package/fesm2015/covalent-core-layout.js.map +0 -1
- package/fesm2015/covalent-core-loading.js +0 -1179
- package/fesm2015/covalent-core-loading.js.map +0 -1
- package/fesm2015/covalent-core-media.js +0 -411
- package/fesm2015/covalent-core-media.js.map +0 -1
- package/fesm2015/covalent-core-menu.js +0 -57
- package/fesm2015/covalent-core-menu.js.map +0 -1
- package/fesm2015/covalent-core-message.js +0 -347
- package/fesm2015/covalent-core-message.js.map +0 -1
- package/fesm2015/covalent-core-nav-links.js +0 -193
- package/fesm2015/covalent-core-nav-links.js.map +0 -1
- package/fesm2015/covalent-core-notifications.js +0 -228
- package/fesm2015/covalent-core-notifications.js.map +0 -1
- package/fesm2015/covalent-core-paging.js +0 -451
- package/fesm2015/covalent-core-paging.js.map +0 -1
- package/fesm2015/covalent-core-search.js +0 -564
- package/fesm2015/covalent-core-search.js.map +0 -1
- package/fesm2015/covalent-core-side-sheet.js.map +0 -1
- package/fesm2015/covalent-core-sidesheet.js +0 -118
- package/fesm2015/covalent-core-sidesheet.js.map +0 -1
- package/fesm2015/covalent-core-steps.js +0 -1384
- package/fesm2015/covalent-core-steps.js.map +0 -1
- package/fesm2015/covalent-core-tab-select.js +0 -416
- package/fesm2015/covalent-core-tab-select.js.map +0 -1
- package/fesm2015/covalent-core-user-profile.js +0 -111
- package/fesm2015/covalent-core-user-profile.js.map +0 -1
- package/fesm2015/covalent-core-virtual-scroll.js +0 -453
- package/fesm2015/covalent-core-virtual-scroll.js.map +0 -1
- package/fesm2015/covalent-core.js +0 -12
- package/fesm2015/covalent-core.js.map +0 -1
- package/file/covalent-core-file.metadata.json +0 -1
- package/json-formatter/covalent-core-json-formatter.metadata.json +0 -1
- package/layout/covalent-core-layout.metadata.json +0 -1
- package/loading/README.md +0 -180
- package/loading/_loading-theme.scss +0 -10
- package/loading/covalent-core-loading.d.ts +0 -4
- package/loading/covalent-core-loading.metadata.json +0 -1
- package/loading/directives/loading.directive.d.ts +0 -71
- package/loading/index.d.ts +0 -1
- package/loading/loading.component.d.ts +0 -87
- package/loading/loading.component.scss +0 -42
- package/loading/loading.module.d.ts +0 -2
- package/loading/package.json +0 -11
- package/loading/public-api.d.ts +0 -5
- package/loading/services/loading.factory.d.ts +0 -66
- package/loading/services/loading.service.d.ts +0 -118
- package/media/covalent-core-media.d.ts +0 -4
- package/media/covalent-core-media.metadata.json +0 -1
- package/media/directives/media-toggle.directive.d.ts +0 -42
- package/media/index.d.ts +0 -1
- package/media/media.module.d.ts +0 -2
- package/media/package.json +0 -11
- package/media/public-api.d.ts +0 -3
- package/media/services/media.service.d.ts +0 -31
- package/menu/covalent-core-menu.metadata.json +0 -1
- package/message/covalent-core-message.metadata.json +0 -1
- package/nav-links/README.md +0 -1
- package/nav-links/covalent-core-nav-links.d.ts +0 -4
- package/nav-links/covalent-core-nav-links.metadata.json +0 -1
- package/nav-links/index.d.ts +0 -1
- package/nav-links/nav-links.component.d.ts +0 -51
- package/nav-links/nav-links.component.scss +0 -15
- package/nav-links/nav-links.module.d.ts +0 -2
- package/nav-links/package.json +0 -11
- package/nav-links/public-api.d.ts +0 -2
- package/notifications/README.md +0 -69
- package/notifications/_notification-count-theme.scss +0 -27
- package/notifications/covalent-core-notifications.d.ts +0 -4
- package/notifications/covalent-core-notifications.metadata.json +0 -1
- package/notifications/index.d.ts +0 -1
- package/notifications/notification-count.component.d.ts +0 -74
- package/notifications/notification-count.component.scss +0 -90
- package/notifications/notifications.module.d.ts +0 -2
- package/notifications/package.json +0 -11
- package/notifications/public-api.d.ts +0 -2
- package/paging/README.md +0 -141
- package/paging/_paging-bar-theme.scss +0 -26
- package/paging/covalent-core-paging.d.ts +0 -4
- package/paging/covalent-core-paging.metadata.json +0 -1
- package/paging/index.d.ts +0 -1
- package/paging/package.json +0 -11
- package/paging/paging-bar.component.d.ts +0 -115
- package/paging/paging-bar.component.scss +0 -23
- package/paging/paging.module.d.ts +0 -2
- package/paging/public-api.d.ts +0 -2
- package/schematics/collection.json +0 -11
- package/schematics/components.js +0 -124
- package/schematics/components.js.map +0 -1
- package/schematics/migration.json +0 -10
- package/schematics/ng-add/index.js +0 -58
- package/schematics/ng-add/index.js.map +0 -1
- package/schematics/ng-add/schema.js +0 -3
- package/schematics/ng-add/schema.js.map +0 -1
- package/schematics/ng-add/schema.json +0 -81
- package/schematics/ng-update/index.js +0 -52
- package/schematics/ng-update/index.js.map +0 -1
- package/schematics/ng-update/target-version.js +0 -8
- package/schematics/ng-update/target-version.js.map +0 -1
- package/schematics/version-names.js +0 -6
- package/schematics/version-names.js.map +0 -1
- package/search/covalent-core-search.metadata.json +0 -1
- package/side-sheet/covalent-core-side-sheet.metadata.json +0 -1
- package/sidesheet/README.md +0 -68
- package/sidesheet/covalent-core-sidesheet.d.ts +0 -4
- package/sidesheet/covalent-core-sidesheet.metadata.json +0 -1
- package/sidesheet/index.d.ts +0 -1
- package/sidesheet/package.json +0 -11
- package/sidesheet/public-api.d.ts +0 -2
- package/sidesheet/sidesheet.component.d.ts +0 -13
- package/sidesheet/sidesheet.component.scss +0 -101
- package/sidesheet/sidesheet.module.d.ts +0 -2
- package/steps/README.md +0 -159
- package/steps/_steps-theme.scss +0 -108
- package/steps/covalent-core-steps.d.ts +0 -4
- package/steps/covalent-core-steps.metadata.json +0 -1
- package/steps/index.d.ts +0 -1
- package/steps/nav/README.md +0 -90
- package/steps/nav/nav-step-link/nav-step-link.component.d.ts +0 -42
- package/steps/nav/nav-step-link/nav-step-link.component.scss +0 -17
- package/steps/nav/nav-steps-horizontal/nav-steps-horizontal.component.d.ts +0 -79
- package/steps/nav/nav-steps-horizontal/nav-steps-horizontal.component.scss +0 -83
- package/steps/nav/nav-steps-vertical/nav-steps-vertical.component.d.ts +0 -18
- package/steps/nav/nav-steps-vertical/nav-steps-vertical.component.scss +0 -18
- package/steps/package.json +0 -11
- package/steps/public-api.d.ts +0 -8
- package/steps/step-body/step-body.component.d.ts +0 -25
- package/steps/step-body/step-body.component.scss +0 -29
- package/steps/step-header/step-header.component.d.ts +0 -35
- package/steps/step-header/step-header.component.scss +0 -90
- package/steps/step.component.d.ts +0 -97
- package/steps/steps.component.d.ts +0 -60
- package/steps/steps.component.scss +0 -55
- package/steps/steps.module.d.ts +0 -2
- package/tab-select/README.md +0 -93
- package/tab-select/covalent-core-tab-select.d.ts +0 -4
- package/tab-select/covalent-core-tab-select.metadata.json +0 -1
- package/tab-select/index.d.ts +0 -1
- package/tab-select/package.json +0 -11
- package/tab-select/public-api.d.ts +0 -3
- package/tab-select/tab-option.component.d.ts +0 -20
- package/tab-select/tab-option.component.scss +0 -0
- package/tab-select/tab-select.component.d.ts +0 -62
- package/tab-select/tab-select.component.scss +0 -3
- package/tab-select/tab-select.module.d.ts +0 -2
- package/user-profile/covalent-core-user-profile.metadata.json +0 -1
- package/virtual-scroll/README.md +0 -68
- package/virtual-scroll/covalent-core-virtual-scroll.d.ts +0 -4
- package/virtual-scroll/covalent-core-virtual-scroll.metadata.json +0 -1
- package/virtual-scroll/index.d.ts +0 -1
- package/virtual-scroll/package.json +0 -11
- package/virtual-scroll/public-api.d.ts +0 -3
- package/virtual-scroll/virtual-scroll-container.component.d.ts +0 -73
- package/virtual-scroll/virtual-scroll-container.component.scss +0 -7
- package/virtual-scroll/virtual-scroll-row.directive.d.ts +0 -5
- package/virtual-scroll/virtual-scroll.module.d.ts +0 -2
@@ -1,3 +1,5 @@
|
|
1
|
+
/* stylelint-disable selector-class-pattern */
|
2
|
+
|
1
3
|
@import '../theme-functions';
|
2
4
|
@import '../palette-dark';
|
3
5
|
|
@@ -8,57 +10,75 @@
|
|
8
10
|
.tc-dark-red-500 {
|
9
11
|
color: mat-color($mat-dark-red, 500) !important;
|
10
12
|
}
|
13
|
+
|
11
14
|
.tc-dark-pink-500 {
|
12
15
|
color: mat-color($mat-dark-pink, 500) !important;
|
13
16
|
}
|
17
|
+
|
14
18
|
.tc-dark-purple-500 {
|
15
19
|
color: mat-color($mat-dark-purple, 500) !important;
|
16
20
|
}
|
21
|
+
|
17
22
|
.tc-dark-deep-purple-500 {
|
18
23
|
color: mat-color($mat-dark-deep-purple, 500) !important;
|
19
24
|
}
|
25
|
+
|
20
26
|
.tc-dark-indigo-500 {
|
21
27
|
color: mat-color($mat-dark-indigo, 500) !important;
|
22
28
|
}
|
29
|
+
|
23
30
|
.tc-dark-blue-500 {
|
24
31
|
color: mat-color($mat-dark-blue, 500) !important;
|
25
32
|
}
|
33
|
+
|
26
34
|
.tc-dark-light-blue-500 {
|
27
35
|
color: mat-color($mat-dark-light-blue, 500) !important;
|
28
36
|
}
|
37
|
+
|
29
38
|
.tc-dark-cyan-500 {
|
30
39
|
color: mat-color($mat-dark-cyan, 500) !important;
|
31
40
|
}
|
41
|
+
|
32
42
|
.tc-dark-teal-500 {
|
33
43
|
color: mat-color($mat-dark-teal, 500) !important;
|
34
44
|
}
|
45
|
+
|
35
46
|
.tc-dark-green-500 {
|
36
47
|
color: mat-color($mat-dark-green, 500) !important;
|
37
48
|
}
|
49
|
+
|
38
50
|
.tc-dark-light-green-500 {
|
39
51
|
color: mat-color($mat-dark-light-green, 500) !important;
|
40
52
|
}
|
53
|
+
|
41
54
|
.tc-dark-lime-500 {
|
42
55
|
color: mat-color($mat-dark-lime, 500) !important;
|
43
56
|
}
|
57
|
+
|
44
58
|
.tc-dark-yellow-500 {
|
45
59
|
color: mat-color($mat-dark-yellow, 500) !important;
|
46
60
|
}
|
61
|
+
|
47
62
|
.tc-dark-amber-500 {
|
48
63
|
color: mat-color($mat-dark-amber, 500) !important;
|
49
64
|
}
|
65
|
+
|
50
66
|
.tc-dark-orange-500 {
|
51
67
|
color: mat-color($mat-dark-orange, 500) !important;
|
52
68
|
}
|
69
|
+
|
53
70
|
.tc-dark-deep-orange-500 {
|
54
71
|
color: mat-color($mat-dark-deep-orange, 500) !important;
|
55
72
|
}
|
73
|
+
|
56
74
|
.tc-dark-brown-500 {
|
57
75
|
color: mat-color($mat-dark-brown, 500) !important;
|
58
76
|
}
|
77
|
+
|
59
78
|
.tc-dark-grey-500 {
|
60
79
|
color: mat-color($mat-dark-grey, 500) !important;
|
61
80
|
}
|
81
|
+
|
62
82
|
.tc-dark-blue-grey-500 {
|
63
83
|
color: mat-color($mat-dark-blue-grey, 500) !important;
|
64
84
|
}
|
@@ -67,57 +87,75 @@
|
|
67
87
|
.tc-dark-red-B100 {
|
68
88
|
color: mat-color($mat-dark-red, B100) !important;
|
69
89
|
}
|
90
|
+
|
70
91
|
.tc-dark-pink-B100 {
|
71
92
|
color: mat-color($mat-dark-pink, B100) !important;
|
72
93
|
}
|
94
|
+
|
73
95
|
.tc-dark-purple-B100 {
|
74
96
|
color: mat-color($mat-dark-purple, B100) !important;
|
75
97
|
}
|
98
|
+
|
76
99
|
.tc-dark-deep-purple-B100 {
|
77
100
|
color: mat-color($mat-dark-deep-purple, B100) !important;
|
78
101
|
}
|
102
|
+
|
79
103
|
.tc-dark-indigo-B100 {
|
80
104
|
color: mat-color($mat-dark-indigo, B100) !important;
|
81
105
|
}
|
106
|
+
|
82
107
|
.tc-dark-blue-B100 {
|
83
108
|
color: mat-color($mat-dark-blue, B100) !important;
|
84
109
|
}
|
110
|
+
|
85
111
|
.tc-dark-light-blue-B100 {
|
86
112
|
color: mat-color($mat-dark-light-blue, B100) !important;
|
87
113
|
}
|
114
|
+
|
88
115
|
.tc-dark-cyan-B100 {
|
89
116
|
color: mat-color($mat-dark-cyan, B100) !important;
|
90
117
|
}
|
118
|
+
|
91
119
|
.tc-dark-teal-B100 {
|
92
120
|
color: mat-color($mat-dark-teal, B100) !important;
|
93
121
|
}
|
122
|
+
|
94
123
|
.tc-dark-green-B100 {
|
95
124
|
color: mat-color($mat-dark-green, B100) !important;
|
96
125
|
}
|
126
|
+
|
97
127
|
.tc-dark-light-green-B100 {
|
98
128
|
color: mat-color($mat-dark-light-green, B100) !important;
|
99
129
|
}
|
130
|
+
|
100
131
|
.tc-dark-lime-B100 {
|
101
132
|
color: mat-color($mat-dark-lime, B100) !important;
|
102
133
|
}
|
134
|
+
|
103
135
|
.tc-dark-yellow-B100 {
|
104
136
|
color: mat-color($mat-dark-yellow, B100) !important;
|
105
137
|
}
|
138
|
+
|
106
139
|
.tc-dark-amber-B100 {
|
107
140
|
color: mat-color($mat-dark-amber, B100) !important;
|
108
141
|
}
|
142
|
+
|
109
143
|
.tc-dark-orange-B100 {
|
110
144
|
color: mat-color($mat-dark-orange, B100) !important;
|
111
145
|
}
|
146
|
+
|
112
147
|
.tc-dark-deep-orange-B100 {
|
113
148
|
color: mat-color($mat-dark-deep-orange, B100) !important;
|
114
149
|
}
|
150
|
+
|
115
151
|
.tc-dark-brown-B100 {
|
116
152
|
color: mat-color($mat-dark-brown, B100) !important;
|
117
153
|
}
|
154
|
+
|
118
155
|
.tc-dark-grey-B100 {
|
119
156
|
color: mat-color($mat-dark-grey, B100) !important;
|
120
157
|
}
|
158
|
+
|
121
159
|
.tc-dark-blue-grey-B100 {
|
122
160
|
color: mat-color($mat-dark-blue-grey, B100) !important;
|
123
161
|
}
|
@@ -126,57 +164,75 @@
|
|
126
164
|
.tc-dark-red-B65 {
|
127
165
|
color: mat-color($mat-dark-red, B65) !important;
|
128
166
|
}
|
167
|
+
|
129
168
|
.tc-dark-pink-B65 {
|
130
169
|
color: mat-color($mat-dark-pink, B65) !important;
|
131
170
|
}
|
171
|
+
|
132
172
|
.tc-dark-purple-B65 {
|
133
173
|
color: mat-color($mat-dark-purple, B65) !important;
|
134
174
|
}
|
175
|
+
|
135
176
|
.tc-dark-deep-purple-B65 {
|
136
177
|
color: mat-color($mat-dark-deep-purple, B65) !important;
|
137
178
|
}
|
179
|
+
|
138
180
|
.tc-dark-indigo-B65 {
|
139
181
|
color: mat-color($mat-dark-indigo, B65) !important;
|
140
182
|
}
|
183
|
+
|
141
184
|
.tc-dark-blue-B65 {
|
142
185
|
color: mat-color($mat-dark-blue, B65) !important;
|
143
186
|
}
|
187
|
+
|
144
188
|
.tc-dark-light-blue-B65 {
|
145
189
|
color: mat-color($mat-dark-light-blue, B65) !important;
|
146
190
|
}
|
191
|
+
|
147
192
|
.tc-dark-cyan-B65 {
|
148
193
|
color: mat-color($mat-dark-cyan, B65) !important;
|
149
194
|
}
|
195
|
+
|
150
196
|
.tc-dark-teal-B65 {
|
151
197
|
color: mat-color($mat-dark-teal, B65) !important;
|
152
198
|
}
|
199
|
+
|
153
200
|
.tc-dark-green-B65 {
|
154
201
|
color: mat-color($mat-dark-green, B65) !important;
|
155
202
|
}
|
203
|
+
|
156
204
|
.tc-dark-light-green-B65 {
|
157
205
|
color: mat-color($mat-dark-light-green, B65) !important;
|
158
206
|
}
|
207
|
+
|
159
208
|
.tc-dark-lime-B65 {
|
160
209
|
color: mat-color($mat-dark-lime, B65) !important;
|
161
210
|
}
|
211
|
+
|
162
212
|
.tc-dark-yellow-B65 {
|
163
213
|
color: mat-color($mat-dark-yellow, B65) !important;
|
164
214
|
}
|
215
|
+
|
165
216
|
.tc-dark-amber-B65 {
|
166
217
|
color: mat-color($mat-dark-amber, B65) !important;
|
167
218
|
}
|
219
|
+
|
168
220
|
.tc-dark-orange-B65 {
|
169
221
|
color: mat-color($mat-dark-orange, B65) !important;
|
170
222
|
}
|
223
|
+
|
171
224
|
.tc-dark-deep-orange-B65 {
|
172
225
|
color: mat-color($mat-dark-deep-orange, B65) !important;
|
173
226
|
}
|
227
|
+
|
174
228
|
.tc-dark-brown-B65 {
|
175
229
|
color: mat-color($mat-dark-brown, B65) !important;
|
176
230
|
}
|
231
|
+
|
177
232
|
.tc-dark-grey-B65 {
|
178
233
|
color: mat-color($mat-dark-grey, B65) !important;
|
179
234
|
}
|
235
|
+
|
180
236
|
.tc-dark-blue-grey-B65 {
|
181
237
|
color: mat-color($mat-dark-blue-grey, B65) !important;
|
182
238
|
}
|
@@ -185,57 +241,75 @@
|
|
185
241
|
.tc-dark-red-B40 {
|
186
242
|
color: mat-color($mat-dark-red, B40) !important;
|
187
243
|
}
|
244
|
+
|
188
245
|
.tc-dark-pink-B40 {
|
189
246
|
color: mat-color($mat-dark-pink, B40) !important;
|
190
247
|
}
|
248
|
+
|
191
249
|
.tc-dark-purple-B40 {
|
192
250
|
color: mat-color($mat-dark-purple, B40) !important;
|
193
251
|
}
|
252
|
+
|
194
253
|
.tc-dark-deep-purple-B40 {
|
195
254
|
color: mat-color($mat-dark-deep-purple, B40) !important;
|
196
255
|
}
|
256
|
+
|
197
257
|
.tc-dark-indigo-B40 {
|
198
258
|
color: mat-color($mat-dark-indigo, B40) !important;
|
199
259
|
}
|
260
|
+
|
200
261
|
.tc-dark-blue-B40 {
|
201
262
|
color: mat-color($mat-dark-blue, B40) !important;
|
202
263
|
}
|
264
|
+
|
203
265
|
.tc-dark-light-blue-B40 {
|
204
266
|
color: mat-color($mat-dark-light-blue, B40) !important;
|
205
267
|
}
|
268
|
+
|
206
269
|
.tc-dark-cyan-B40 {
|
207
270
|
color: mat-color($mat-dark-cyan, B40) !important;
|
208
271
|
}
|
272
|
+
|
209
273
|
.tc-dark-teal-B40 {
|
210
274
|
color: mat-color($mat-dark-teal, B40) !important;
|
211
275
|
}
|
276
|
+
|
212
277
|
.tc-dark-green-B40 {
|
213
278
|
color: mat-color($mat-dark-green, B40) !important;
|
214
279
|
}
|
280
|
+
|
215
281
|
.tc-dark-light-green-B40 {
|
216
282
|
color: mat-color($mat-dark-light-green, B40) !important;
|
217
283
|
}
|
284
|
+
|
218
285
|
.tc-dark-lime-B40 {
|
219
286
|
color: mat-color($mat-dark-lime, B40) !important;
|
220
287
|
}
|
288
|
+
|
221
289
|
.tc-dark-yellow-B40 {
|
222
290
|
color: mat-color($mat-dark-yellow, B40) !important;
|
223
291
|
}
|
292
|
+
|
224
293
|
.tc-dark-amber-B40 {
|
225
294
|
color: mat-color($mat-dark-amber, B40) !important;
|
226
295
|
}
|
296
|
+
|
227
297
|
.tc-dark-orange-B40 {
|
228
298
|
color: mat-color($mat-dark-orange, B40) !important;
|
229
299
|
}
|
300
|
+
|
230
301
|
.tc-dark-deep-orange-B40 {
|
231
302
|
color: mat-color($mat-dark-deep-orange, B40) !important;
|
232
303
|
}
|
304
|
+
|
233
305
|
.tc-dark-brown-B40 {
|
234
306
|
color: mat-color($mat-dark-brown, B40) !important;
|
235
307
|
}
|
308
|
+
|
236
309
|
.tc-dark-grey-B40 {
|
237
310
|
color: mat-color($mat-dark-grey, B40) !important;
|
238
311
|
}
|
312
|
+
|
239
313
|
.tc-dark-blue-grey-B40 {
|
240
314
|
color: mat-color($mat-dark-blue-grey, B40) !important;
|
241
315
|
}
|
@@ -244,57 +318,75 @@
|
|
244
318
|
.tc-dark-red-B30 {
|
245
319
|
color: mat-color($mat-dark-red, B30) !important;
|
246
320
|
}
|
321
|
+
|
247
322
|
.tc-dark-pink-B30 {
|
248
323
|
color: mat-color($mat-dark-pink, B30) !important;
|
249
324
|
}
|
325
|
+
|
250
326
|
.tc-dark-purple-B30 {
|
251
327
|
color: mat-color($mat-dark-purple, B30) !important;
|
252
328
|
}
|
329
|
+
|
253
330
|
.tc-dark-deep-purple-B30 {
|
254
331
|
color: mat-color($mat-dark-deep-purple, B30) !important;
|
255
332
|
}
|
333
|
+
|
256
334
|
.tc-dark-indigo-B30 {
|
257
335
|
color: mat-color($mat-dark-indigo, B30) !important;
|
258
336
|
}
|
337
|
+
|
259
338
|
.tc-dark-blue-B30 {
|
260
339
|
color: mat-color($mat-dark-blue, B30) !important;
|
261
340
|
}
|
341
|
+
|
262
342
|
.tc-dark-light-blue-B30 {
|
263
343
|
color: mat-color($mat-dark-light-blue, B30) !important;
|
264
344
|
}
|
345
|
+
|
265
346
|
.tc-dark-cyan-B30 {
|
266
347
|
color: mat-color($mat-dark-cyan, B30) !important;
|
267
348
|
}
|
349
|
+
|
268
350
|
.tc-dark-teal-B30 {
|
269
351
|
color: mat-color($mat-dark-teal, B30) !important;
|
270
352
|
}
|
353
|
+
|
271
354
|
.tc-dark-green-B30 {
|
272
355
|
color: mat-color($mat-dark-green, B30) !important;
|
273
356
|
}
|
357
|
+
|
274
358
|
.tc-dark-light-green-B30 {
|
275
359
|
color: mat-color($mat-dark-light-green, B30) !important;
|
276
360
|
}
|
361
|
+
|
277
362
|
.tc-dark-lime-B30 {
|
278
363
|
color: mat-color($mat-dark-lime, B30) !important;
|
279
364
|
}
|
365
|
+
|
280
366
|
.tc-dark-yellow-B30 {
|
281
367
|
color: mat-color($mat-dark-yellow, B30) !important;
|
282
368
|
}
|
369
|
+
|
283
370
|
.tc-dark-amber-B30 {
|
284
371
|
color: mat-color($mat-dark-amber, B30) !important;
|
285
372
|
}
|
373
|
+
|
286
374
|
.tc-dark-orange-B30 {
|
287
375
|
color: mat-color($mat-dark-orange, B30) !important;
|
288
376
|
}
|
377
|
+
|
289
378
|
.tc-dark-deep-orange-B30 {
|
290
379
|
color: mat-color($mat-dark-deep-orange, B30) !important;
|
291
380
|
}
|
381
|
+
|
292
382
|
.tc-dark-brown-B30 {
|
293
383
|
color: mat-color($mat-dark-brown, B30) !important;
|
294
384
|
}
|
385
|
+
|
295
386
|
.tc-dark-grey-B30 {
|
296
387
|
color: mat-color($mat-dark-grey, B30) !important;
|
297
388
|
}
|
389
|
+
|
298
390
|
.tc-dark-blue-grey-B30 {
|
299
391
|
color: mat-color($mat-dark-blue-grey, B30) !important;
|
300
392
|
}
|
@@ -303,57 +395,75 @@
|
|
303
395
|
.tc-dark-red-B15 {
|
304
396
|
color: mat-color($mat-dark-red, B15) !important;
|
305
397
|
}
|
398
|
+
|
306
399
|
.tc-dark-pink-B15 {
|
307
400
|
color: mat-color($mat-dark-pink, B15) !important;
|
308
401
|
}
|
402
|
+
|
309
403
|
.tc-dark-purple-B15 {
|
310
404
|
color: mat-color($mat-dark-purple, B15) !important;
|
311
405
|
}
|
406
|
+
|
312
407
|
.tc-dark-deep-purple-B15 {
|
313
408
|
color: mat-color($mat-dark-deep-purple, B15) !important;
|
314
409
|
}
|
410
|
+
|
315
411
|
.tc-dark-indigo-B15 {
|
316
412
|
color: mat-color($mat-dark-indigo, B15) !important;
|
317
413
|
}
|
414
|
+
|
318
415
|
.tc-dark-blue-B15 {
|
319
416
|
color: mat-color($mat-dark-blue, B15) !important;
|
320
417
|
}
|
418
|
+
|
321
419
|
.tc-dark-light-blue-B15 {
|
322
420
|
color: mat-color($mat-dark-light-blue, B15) !important;
|
323
421
|
}
|
422
|
+
|
324
423
|
.tc-dark-cyan-B15 {
|
325
424
|
color: mat-color($mat-dark-cyan, B15) !important;
|
326
425
|
}
|
426
|
+
|
327
427
|
.tc-dark-teal-B15 {
|
328
428
|
color: mat-color($mat-dark-teal, B15) !important;
|
329
429
|
}
|
430
|
+
|
330
431
|
.tc-dark-green-B15 {
|
331
432
|
color: mat-color($mat-dark-green, B15) !important;
|
332
433
|
}
|
434
|
+
|
333
435
|
.tc-dark-light-green-B15 {
|
334
436
|
color: mat-color($mat-dark-light-green, B15) !important;
|
335
437
|
}
|
438
|
+
|
336
439
|
.tc-dark-lime-B15 {
|
337
440
|
color: mat-color($mat-dark-lime, B15) !important;
|
338
441
|
}
|
442
|
+
|
339
443
|
.tc-dark-yellow-B15 {
|
340
444
|
color: mat-color($mat-dark-yellow, B15) !important;
|
341
445
|
}
|
446
|
+
|
342
447
|
.tc-dark-amber-B15 {
|
343
448
|
color: mat-color($mat-dark-amber, B15) !important;
|
344
449
|
}
|
450
|
+
|
345
451
|
.tc-dark-orange-B15 {
|
346
452
|
color: mat-color($mat-dark-orange, B15) !important;
|
347
453
|
}
|
454
|
+
|
348
455
|
.tc-dark-deep-orange-B15 {
|
349
456
|
color: mat-color($mat-dark-deep-orange, B15) !important;
|
350
457
|
}
|
458
|
+
|
351
459
|
.tc-dark-brown-B15 {
|
352
460
|
color: mat-color($mat-dark-brown, B15) !important;
|
353
461
|
}
|
462
|
+
|
354
463
|
.tc-dark-grey-B15 {
|
355
464
|
color: mat-color($mat-dark-grey, B15) !important;
|
356
465
|
}
|
466
|
+
|
357
467
|
.tc-dark-blue-grey-B15 {
|
358
468
|
color: mat-color($mat-dark-blue-grey, B15) !important;
|
359
469
|
}
|
@@ -364,57 +474,75 @@
|
|
364
474
|
.bgc-dark-red-500 {
|
365
475
|
background-color: mat-color($mat-dark-red, 500) !important;
|
366
476
|
}
|
477
|
+
|
367
478
|
.bgc-dark-pink-500 {
|
368
479
|
background-color: mat-color($mat-dark-pink, 500) !important;
|
369
480
|
}
|
481
|
+
|
370
482
|
.bgc-dark-purple-500 {
|
371
483
|
background-color: mat-color($mat-dark-purple, 500) !important;
|
372
484
|
}
|
485
|
+
|
373
486
|
.bgc-dark-deep-purple-500 {
|
374
487
|
background-color: mat-color($mat-dark-deep-purple, 500) !important;
|
375
488
|
}
|
489
|
+
|
376
490
|
.bgc-dark-indigo-500 {
|
377
491
|
background-color: mat-color($mat-dark-indigo, 500) !important;
|
378
492
|
}
|
493
|
+
|
379
494
|
.bgc-dark-blue-500 {
|
380
495
|
background-color: mat-color($mat-dark-blue, 500) !important;
|
381
496
|
}
|
497
|
+
|
382
498
|
.bgc-dark-light-blue-500 {
|
383
499
|
background-color: mat-color($mat-dark-light-blue, 500) !important;
|
384
500
|
}
|
501
|
+
|
385
502
|
.bgc-dark-cyan-500 {
|
386
503
|
background-color: mat-color($mat-dark-cyan, 500) !important;
|
387
504
|
}
|
505
|
+
|
388
506
|
.bgc-dark-teal-500 {
|
389
507
|
background-color: mat-color($mat-dark-teal, 500) !important;
|
390
508
|
}
|
509
|
+
|
391
510
|
.bgc-dark-green-500 {
|
392
511
|
background-color: mat-color($mat-dark-green, 500) !important;
|
393
512
|
}
|
513
|
+
|
394
514
|
.bgc-dark-light-green-500 {
|
395
515
|
background-color: mat-color($mat-dark-light-green, 500) !important;
|
396
516
|
}
|
517
|
+
|
397
518
|
.bgc-dark-lime-500 {
|
398
519
|
background-color: mat-color($mat-dark-lime, 500) !important;
|
399
520
|
}
|
521
|
+
|
400
522
|
.bgc-dark-yellow-500 {
|
401
523
|
background-color: mat-color($mat-dark-yellow, 500) !important;
|
402
524
|
}
|
525
|
+
|
403
526
|
.bgc-dark-amber-500 {
|
404
527
|
background-color: mat-color($mat-dark-amber, 500) !important;
|
405
528
|
}
|
529
|
+
|
406
530
|
.bgc-dark-orange-500 {
|
407
531
|
background-color: mat-color($mat-dark-orange, 500) !important;
|
408
532
|
}
|
533
|
+
|
409
534
|
.bgc-dark-deep-orange-500 {
|
410
535
|
background-color: mat-color($mat-dark-deep-orange, 500) !important;
|
411
536
|
}
|
537
|
+
|
412
538
|
.bgc-dark-brown-500 {
|
413
539
|
background-color: mat-color($mat-dark-brown, 500) !important;
|
414
540
|
}
|
541
|
+
|
415
542
|
.bgc-dark-grey-500 {
|
416
543
|
background-color: mat-color($mat-dark-grey, 500) !important;
|
417
544
|
}
|
545
|
+
|
418
546
|
.bgc-dark-blue-grey-500 {
|
419
547
|
background-color: mat-color($mat-dark-blue-grey, 500) !important;
|
420
548
|
}
|
@@ -423,57 +551,75 @@
|
|
423
551
|
.bgc-dark-red-B100 {
|
424
552
|
background-color: mat-color($mat-dark-red, B100) !important;
|
425
553
|
}
|
554
|
+
|
426
555
|
.bgc-dark-pink-B100 {
|
427
556
|
background-color: mat-color($mat-dark-pink, B100) !important;
|
428
557
|
}
|
558
|
+
|
429
559
|
.bgc-dark-purple-B100 {
|
430
560
|
background-color: mat-color($mat-dark-purple, B100) !important;
|
431
561
|
}
|
562
|
+
|
432
563
|
.bgc-dark-deep-purple-B100 {
|
433
564
|
background-color: mat-color($mat-dark-deep-purple, B100) !important;
|
434
565
|
}
|
566
|
+
|
435
567
|
.bgc-dark-indigo-B100 {
|
436
568
|
background-color: mat-color($mat-dark-indigo, B100) !important;
|
437
569
|
}
|
570
|
+
|
438
571
|
.bgc-dark-blue-B100 {
|
439
572
|
background-color: mat-color($mat-dark-blue, B100) !important;
|
440
573
|
}
|
574
|
+
|
441
575
|
.bgc-dark-light-blue-B100 {
|
442
576
|
background-color: mat-color($mat-dark-light-blue, B100) !important;
|
443
577
|
}
|
578
|
+
|
444
579
|
.bgc-dark-cyan-B100 {
|
445
580
|
background-color: mat-color($mat-dark-cyan, B100) !important;
|
446
581
|
}
|
582
|
+
|
447
583
|
.bgc-dark-teal-B100 {
|
448
584
|
background-color: mat-color($mat-dark-teal, B100) !important;
|
449
585
|
}
|
586
|
+
|
450
587
|
.bgc-dark-green-B100 {
|
451
588
|
background-color: mat-color($mat-dark-green, B100) !important;
|
452
589
|
}
|
590
|
+
|
453
591
|
.bgc-dark-light-green-B100 {
|
454
592
|
background-color: mat-color($mat-dark-light-green, B100) !important;
|
455
593
|
}
|
594
|
+
|
456
595
|
.bgc-dark-lime-B100 {
|
457
596
|
background-color: mat-color($mat-dark-lime, B100) !important;
|
458
597
|
}
|
598
|
+
|
459
599
|
.bgc-dark-yellow-B100 {
|
460
600
|
background-color: mat-color($mat-dark-yellow, B100) !important;
|
461
601
|
}
|
602
|
+
|
462
603
|
.bgc-dark-amber-B100 {
|
463
604
|
background-color: mat-color($mat-dark-amber, B100) !important;
|
464
605
|
}
|
606
|
+
|
465
607
|
.bgc-dark-orange-B100 {
|
466
608
|
background-color: mat-color($mat-dark-orange, B100) !important;
|
467
609
|
}
|
610
|
+
|
468
611
|
.bgc-dark-deep-orange-B100 {
|
469
612
|
background-color: mat-color($mat-dark-deep-orange, B100) !important;
|
470
613
|
}
|
614
|
+
|
471
615
|
.bgc-dark-brown-B100 {
|
472
616
|
background-color: mat-color($mat-dark-brown, B100) !important;
|
473
617
|
}
|
618
|
+
|
474
619
|
.bgc-dark-grey-B100 {
|
475
620
|
background-color: mat-color($mat-dark-grey, B100) !important;
|
476
621
|
}
|
622
|
+
|
477
623
|
.bgc-dark-blue-grey-B100 {
|
478
624
|
background-color: mat-color($mat-dark-blue-grey, B100) !important;
|
479
625
|
}
|
@@ -482,57 +628,75 @@
|
|
482
628
|
.bgc-dark-red-B65 {
|
483
629
|
background-color: mat-color($mat-dark-red, B65) !important;
|
484
630
|
}
|
631
|
+
|
485
632
|
.bgc-dark-pink-B65 {
|
486
633
|
background-color: mat-color($mat-dark-pink, B65) !important;
|
487
634
|
}
|
635
|
+
|
488
636
|
.bgc-dark-purple-B65 {
|
489
637
|
background-color: mat-color($mat-dark-purple, B65) !important;
|
490
638
|
}
|
639
|
+
|
491
640
|
.bgc-dark-deep-purple-B65 {
|
492
641
|
background-color: mat-color($mat-dark-deep-purple, B65) !important;
|
493
642
|
}
|
643
|
+
|
494
644
|
.bgc-dark-indigo-B65 {
|
495
645
|
background-color: mat-color($mat-dark-indigo, B65) !important;
|
496
646
|
}
|
647
|
+
|
497
648
|
.bgc-dark-blue-B65 {
|
498
649
|
background-color: mat-color($mat-dark-blue, B65) !important;
|
499
650
|
}
|
651
|
+
|
500
652
|
.bgc-dark-light-blue-B65 {
|
501
653
|
background-color: mat-color($mat-dark-light-blue, B65) !important;
|
502
654
|
}
|
655
|
+
|
503
656
|
.bgc-dark-cyan-B65 {
|
504
657
|
background-color: mat-color($mat-dark-cyan, B65) !important;
|
505
658
|
}
|
659
|
+
|
506
660
|
.bgc-dark-teal-B65 {
|
507
661
|
background-color: mat-color($mat-dark-teal, B65) !important;
|
508
662
|
}
|
663
|
+
|
509
664
|
.bgc-dark-green-B65 {
|
510
665
|
background-color: mat-color($mat-dark-green, B65) !important;
|
511
666
|
}
|
667
|
+
|
512
668
|
.bgc-dark-light-green-B65 {
|
513
669
|
background-color: mat-color($mat-dark-light-green, B65) !important;
|
514
670
|
}
|
671
|
+
|
515
672
|
.bgc-dark-lime-B65 {
|
516
673
|
background-color: mat-color($mat-dark-lime, B65) !important;
|
517
674
|
}
|
675
|
+
|
518
676
|
.bgc-dark-yellow-B65 {
|
519
677
|
background-color: mat-color($mat-dark-yellow, B65) !important;
|
520
678
|
}
|
679
|
+
|
521
680
|
.bgc-dark-amber-B65 {
|
522
681
|
background-color: mat-color($mat-dark-amber, B65) !important;
|
523
682
|
}
|
683
|
+
|
524
684
|
.bgc-dark-orange-B65 {
|
525
685
|
background-color: mat-color($mat-dark-orange, B65) !important;
|
526
686
|
}
|
687
|
+
|
527
688
|
.bgc-dark-deep-orange-B65 {
|
528
689
|
background-color: mat-color($mat-dark-deep-orange, B65) !important;
|
529
690
|
}
|
691
|
+
|
530
692
|
.bgc-dark-brown-B65 {
|
531
693
|
background-color: mat-color($mat-dark-brown, B65) !important;
|
532
694
|
}
|
695
|
+
|
533
696
|
.bgc-dark-grey-B65 {
|
534
697
|
background-color: mat-color($mat-dark-grey, B65) !important;
|
535
698
|
}
|
699
|
+
|
536
700
|
.bgc-dark-blue-grey-B65 {
|
537
701
|
background-color: mat-color($mat-dark-blue-grey, B65) !important;
|
538
702
|
}
|
@@ -541,57 +705,75 @@
|
|
541
705
|
.bgc-dark-red-B40 {
|
542
706
|
background-color: mat-color($mat-dark-red, B40) !important;
|
543
707
|
}
|
708
|
+
|
544
709
|
.bgc-dark-pink-B40 {
|
545
710
|
background-color: mat-color($mat-dark-pink, B40) !important;
|
546
711
|
}
|
712
|
+
|
547
713
|
.bgc-dark-purple-B40 {
|
548
714
|
background-color: mat-color($mat-dark-purple, B40) !important;
|
549
715
|
}
|
716
|
+
|
550
717
|
.bgc-dark-deep-purple-B40 {
|
551
718
|
background-color: mat-color($mat-dark-deep-purple, B40) !important;
|
552
719
|
}
|
720
|
+
|
553
721
|
.bgc-dark-indigo-B40 {
|
554
722
|
background-color: mat-color($mat-dark-indigo, B40) !important;
|
555
723
|
}
|
724
|
+
|
556
725
|
.bgc-dark-blue-B40 {
|
557
726
|
background-color: mat-color($mat-dark-blue, B40) !important;
|
558
727
|
}
|
728
|
+
|
559
729
|
.bgc-dark-light-blue-B40 {
|
560
730
|
background-color: mat-color($mat-dark-light-blue, B40) !important;
|
561
731
|
}
|
732
|
+
|
562
733
|
.bgc-dark-cyan-B40 {
|
563
734
|
background-color: mat-color($mat-dark-cyan, B40) !important;
|
564
735
|
}
|
736
|
+
|
565
737
|
.bgc-dark-teal-B40 {
|
566
738
|
background-color: mat-color($mat-dark-teal, B40) !important;
|
567
739
|
}
|
740
|
+
|
568
741
|
.bgc-dark-green-B40 {
|
569
742
|
background-color: mat-color($mat-dark-green, B40) !important;
|
570
743
|
}
|
744
|
+
|
571
745
|
.bgc-dark-light-green-B40 {
|
572
746
|
background-color: mat-color($mat-dark-light-green, B40) !important;
|
573
747
|
}
|
748
|
+
|
574
749
|
.bgc-dark-lime-B40 {
|
575
750
|
background-color: mat-color($mat-dark-lime, B40) !important;
|
576
751
|
}
|
752
|
+
|
577
753
|
.bgc-dark-yellow-B40 {
|
578
754
|
background-color: mat-color($mat-dark-yellow, B40) !important;
|
579
755
|
}
|
756
|
+
|
580
757
|
.bgc-dark-amber-B40 {
|
581
758
|
background-color: mat-color($mat-dark-amber, B40) !important;
|
582
759
|
}
|
760
|
+
|
583
761
|
.bgc-dark-orange-B40 {
|
584
762
|
background-color: mat-color($mat-dark-orange, B40) !important;
|
585
763
|
}
|
764
|
+
|
586
765
|
.bgc-dark-deep-orange-B40 {
|
587
766
|
background-color: mat-color($mat-dark-deep-orange, B40) !important;
|
588
767
|
}
|
768
|
+
|
589
769
|
.bgc-dark-brown-B40 {
|
590
770
|
background-color: mat-color($mat-dark-brown, B40) !important;
|
591
771
|
}
|
772
|
+
|
592
773
|
.bgc-dark-grey-B40 {
|
593
774
|
background-color: mat-color($mat-dark-grey, B40) !important;
|
594
775
|
}
|
776
|
+
|
595
777
|
.bgc-dark-blue-grey-B40 {
|
596
778
|
background-color: mat-color($mat-dark-blue-grey, B40) !important;
|
597
779
|
}
|
@@ -600,57 +782,75 @@
|
|
600
782
|
.bgc-dark-red-B30 {
|
601
783
|
background-color: mat-color($mat-dark-red, B30) !important;
|
602
784
|
}
|
785
|
+
|
603
786
|
.bgc-dark-pink-B30 {
|
604
787
|
background-color: mat-color($mat-dark-pink, B30) !important;
|
605
788
|
}
|
789
|
+
|
606
790
|
.bgc-dark-purple-B30 {
|
607
791
|
background-color: mat-color($mat-dark-purple, B30) !important;
|
608
792
|
}
|
793
|
+
|
609
794
|
.bgc-dark-deep-purple-B30 {
|
610
795
|
background-color: mat-color($mat-dark-deep-purple, B30) !important;
|
611
796
|
}
|
797
|
+
|
612
798
|
.bgc-dark-indigo-B30 {
|
613
799
|
background-color: mat-color($mat-dark-indigo, B30) !important;
|
614
800
|
}
|
801
|
+
|
615
802
|
.bgc-dark-blue-B30 {
|
616
803
|
background-color: mat-color($mat-dark-blue, B30) !important;
|
617
804
|
}
|
805
|
+
|
618
806
|
.bgc-dark-light-blue-B30 {
|
619
807
|
background-color: mat-color($mat-dark-light-blue, B30) !important;
|
620
808
|
}
|
809
|
+
|
621
810
|
.bgc-dark-cyan-B30 {
|
622
811
|
background-color: mat-color($mat-dark-cyan, B30) !important;
|
623
812
|
}
|
813
|
+
|
624
814
|
.bgc-dark-teal-B30 {
|
625
815
|
background-color: mat-color($mat-dark-teal, B30) !important;
|
626
816
|
}
|
817
|
+
|
627
818
|
.bgc-dark-green-B30 {
|
628
819
|
background-color: mat-color($mat-dark-green, B30) !important;
|
629
820
|
}
|
821
|
+
|
630
822
|
.bgc-dark-light-green-B30 {
|
631
823
|
background-color: mat-color($mat-dark-light-green, B30) !important;
|
632
824
|
}
|
825
|
+
|
633
826
|
.bgc-dark-lime-B30 {
|
634
827
|
background-color: mat-color($mat-dark-lime, B30) !important;
|
635
828
|
}
|
829
|
+
|
636
830
|
.bgc-dark-yellow-B30 {
|
637
831
|
background-color: mat-color($mat-dark-yellow, B30) !important;
|
638
832
|
}
|
833
|
+
|
639
834
|
.bgc-dark-amber-B30 {
|
640
835
|
background-color: mat-color($mat-dark-amber, B30) !important;
|
641
836
|
}
|
837
|
+
|
642
838
|
.bgc-dark-orange-B30 {
|
643
839
|
background-color: mat-color($mat-dark-orange, B30) !important;
|
644
840
|
}
|
841
|
+
|
645
842
|
.bgc-dark-deep-orange-B30 {
|
646
843
|
background-color: mat-color($mat-dark-deep-orange, B30) !important;
|
647
844
|
}
|
845
|
+
|
648
846
|
.bgc-dark-brown-B30 {
|
649
847
|
background-color: mat-color($mat-dark-brown, B30) !important;
|
650
848
|
}
|
849
|
+
|
651
850
|
.bgc-dark-grey-B30 {
|
652
851
|
background-color: mat-color($mat-dark-grey, B30) !important;
|
653
852
|
}
|
853
|
+
|
654
854
|
.bgc-dark-blue-grey-B30 {
|
655
855
|
background-color: mat-color($mat-dark-blue-grey, B30) !important;
|
656
856
|
}
|
@@ -659,57 +859,75 @@
|
|
659
859
|
.bgc-dark-red-B15 {
|
660
860
|
background-color: mat-color($mat-dark-red, B15) !important;
|
661
861
|
}
|
862
|
+
|
662
863
|
.bgc-dark-pink-B15 {
|
663
864
|
background-color: mat-color($mat-dark-pink, B15) !important;
|
664
865
|
}
|
866
|
+
|
665
867
|
.bgc-dark-purple-B15 {
|
666
868
|
background-color: mat-color($mat-dark-purple, B15) !important;
|
667
869
|
}
|
870
|
+
|
668
871
|
.bgc-dark-deep-purple-B15 {
|
669
872
|
background-color: mat-color($mat-dark-deep-purple, B15) !important;
|
670
873
|
}
|
874
|
+
|
671
875
|
.bgc-dark-indigo-B15 {
|
672
876
|
background-color: mat-color($mat-dark-indigo, B15) !important;
|
673
877
|
}
|
878
|
+
|
674
879
|
.bgc-dark-blue-B15 {
|
675
880
|
background-color: mat-color($mat-dark-blue, B15) !important;
|
676
881
|
}
|
882
|
+
|
677
883
|
.bgc-dark-light-blue-B15 {
|
678
884
|
background-color: mat-color($mat-dark-light-blue, B15) !important;
|
679
885
|
}
|
886
|
+
|
680
887
|
.bgc-dark-cyan-B15 {
|
681
888
|
background-color: mat-color($mat-dark-cyan, B15) !important;
|
682
889
|
}
|
890
|
+
|
683
891
|
.bgc-dark-teal-B15 {
|
684
892
|
background-color: mat-color($mat-dark-teal, B15) !important;
|
685
893
|
}
|
894
|
+
|
686
895
|
.bgc-dark-green-B15 {
|
687
896
|
background-color: mat-color($mat-dark-green, B15) !important;
|
688
897
|
}
|
898
|
+
|
689
899
|
.bgc-dark-light-green-B15 {
|
690
900
|
background-color: mat-color($mat-dark-light-green, B15) !important;
|
691
901
|
}
|
902
|
+
|
692
903
|
.bgc-dark-lime-B15 {
|
693
904
|
background-color: mat-color($mat-dark-lime, B15) !important;
|
694
905
|
}
|
906
|
+
|
695
907
|
.bgc-dark-yellow-B15 {
|
696
908
|
background-color: mat-color($mat-dark-yellow, B15) !important;
|
697
909
|
}
|
910
|
+
|
698
911
|
.bgc-dark-amber-B15 {
|
699
912
|
background-color: mat-color($mat-dark-amber, B15) !important;
|
700
913
|
}
|
914
|
+
|
701
915
|
.bgc-dark-orange-B15 {
|
702
916
|
background-color: mat-color($mat-dark-orange, B15) !important;
|
703
917
|
}
|
918
|
+
|
704
919
|
.bgc-dark-deep-orange-B15 {
|
705
920
|
background-color: mat-color($mat-dark-deep-orange, B15) !important;
|
706
921
|
}
|
922
|
+
|
707
923
|
.bgc-dark-brown-B15 {
|
708
924
|
background-color: mat-color($mat-dark-brown, B15) !important;
|
709
925
|
}
|
926
|
+
|
710
927
|
.bgc-dark-grey-B15 {
|
711
928
|
background-color: mat-color($mat-dark-grey, B15) !important;
|
712
929
|
}
|
930
|
+
|
713
931
|
.bgc-dark-blue-grey-B15 {
|
714
932
|
background-color: mat-color($mat-dark-blue-grey, B15) !important;
|
715
933
|
}
|
@@ -720,57 +938,75 @@
|
|
720
938
|
.fill-red-500 {
|
721
939
|
fill: mat-color($mat-dark-red, 500) !important;
|
722
940
|
}
|
941
|
+
|
723
942
|
.fill-pink-500 {
|
724
943
|
fill: mat-color($mat-dark-pink, 500) !important;
|
725
944
|
}
|
945
|
+
|
726
946
|
.fill-purple-500 {
|
727
947
|
fill: mat-color($mat-dark-purple, 500) !important;
|
728
948
|
}
|
949
|
+
|
729
950
|
.fill-deep-purple-500 {
|
730
951
|
fill: mat-color($mat-dark-deep-purple, 500) !important;
|
731
952
|
}
|
953
|
+
|
732
954
|
.fill-indigo-500 {
|
733
955
|
fill: mat-color($mat-dark-indigo, 500) !important;
|
734
956
|
}
|
957
|
+
|
735
958
|
.fill-blue-500 {
|
736
959
|
fill: mat-color($mat-dark-blue, 500) !important;
|
737
960
|
}
|
961
|
+
|
738
962
|
.fill-light-blue-500 {
|
739
963
|
fill: mat-color($mat-dark-light-blue, 500) !important;
|
740
964
|
}
|
965
|
+
|
741
966
|
.fill-cyan-500 {
|
742
967
|
fill: mat-color($mat-dark-cyan, 500) !important;
|
743
968
|
}
|
969
|
+
|
744
970
|
.fill-teal-500 {
|
745
971
|
fill: mat-color($mat-dark-teal, 500) !important;
|
746
972
|
}
|
973
|
+
|
747
974
|
.fill-green-500 {
|
748
975
|
fill: mat-color($mat-dark-green, 500) !important;
|
749
976
|
}
|
977
|
+
|
750
978
|
.fill-light-green-500 {
|
751
979
|
fill: mat-color($mat-dark-light-green, 500) !important;
|
752
980
|
}
|
981
|
+
|
753
982
|
.fill-lime-500 {
|
754
983
|
fill: mat-color($mat-dark-lime, 500) !important;
|
755
984
|
}
|
985
|
+
|
756
986
|
.fill-yellow-500 {
|
757
987
|
fill: mat-color($mat-dark-yellow, 500) !important;
|
758
988
|
}
|
989
|
+
|
759
990
|
.fill-amber-500 {
|
760
991
|
fill: mat-color($mat-dark-amber, 500) !important;
|
761
992
|
}
|
993
|
+
|
762
994
|
.fill-orange-500 {
|
763
995
|
fill: mat-color($mat-dark-orange, 500) !important;
|
764
996
|
}
|
997
|
+
|
765
998
|
.fill-deep-orange-500 {
|
766
999
|
fill: mat-color($mat-dark-deep-orange, 500) !important;
|
767
1000
|
}
|
1001
|
+
|
768
1002
|
.fill-brown-500 {
|
769
1003
|
fill: mat-color($mat-dark-brown, 500) !important;
|
770
1004
|
}
|
1005
|
+
|
771
1006
|
.fill-grey-500 {
|
772
1007
|
fill: mat-color($mat-dark-grey, 500) !important;
|
773
1008
|
}
|
1009
|
+
|
774
1010
|
.fill-blue-grey-500 {
|
775
1011
|
fill: mat-color($mat-dark-blue-grey, 500) !important;
|
776
1012
|
}
|
@@ -779,57 +1015,75 @@
|
|
779
1015
|
.fill-red-B100 {
|
780
1016
|
fill: mat-color($mat-dark-red, B100) !important;
|
781
1017
|
}
|
1018
|
+
|
782
1019
|
.fill-pink-B100 {
|
783
1020
|
fill: mat-color($mat-dark-pink, B100) !important;
|
784
1021
|
}
|
1022
|
+
|
785
1023
|
.fill-purple-B100 {
|
786
1024
|
fill: mat-color($mat-dark-purple, B100) !important;
|
787
1025
|
}
|
1026
|
+
|
788
1027
|
.fill-deep-purple-B100 {
|
789
1028
|
fill: mat-color($mat-dark-deep-purple, B100) !important;
|
790
1029
|
}
|
1030
|
+
|
791
1031
|
.fill-indigo-B100 {
|
792
1032
|
fill: mat-color($mat-dark-indigo, B100) !important;
|
793
1033
|
}
|
1034
|
+
|
794
1035
|
.fill-blue-B100 {
|
795
1036
|
fill: mat-color($mat-dark-blue, B100) !important;
|
796
1037
|
}
|
1038
|
+
|
797
1039
|
.fill-light-blue-B100 {
|
798
1040
|
fill: mat-color($mat-dark-light-blue, B100) !important;
|
799
1041
|
}
|
1042
|
+
|
800
1043
|
.fill-cyan-B100 {
|
801
1044
|
fill: mat-color($mat-dark-cyan, B100) !important;
|
802
1045
|
}
|
1046
|
+
|
803
1047
|
.fill-teal-B100 {
|
804
1048
|
fill: mat-color($mat-dark-teal, B100) !important;
|
805
1049
|
}
|
1050
|
+
|
806
1051
|
.fill-green-B100 {
|
807
1052
|
fill: mat-color($mat-dark-green, B100) !important;
|
808
1053
|
}
|
1054
|
+
|
809
1055
|
.fill-light-green-B100 {
|
810
1056
|
fill: mat-color($mat-dark-light-green, B100) !important;
|
811
1057
|
}
|
1058
|
+
|
812
1059
|
.fill-lime-B100 {
|
813
1060
|
fill: mat-color($mat-dark-lime, B100) !important;
|
814
1061
|
}
|
1062
|
+
|
815
1063
|
.fill-yellow-B100 {
|
816
1064
|
fill: mat-color($mat-dark-yellow, B100) !important;
|
817
1065
|
}
|
1066
|
+
|
818
1067
|
.fill-amber-B100 {
|
819
1068
|
fill: mat-color($mat-dark-amber, B100) !important;
|
820
1069
|
}
|
1070
|
+
|
821
1071
|
.fill-orange-B100 {
|
822
1072
|
fill: mat-color($mat-dark-orange, B100) !important;
|
823
1073
|
}
|
1074
|
+
|
824
1075
|
.fill-deep-orange-B100 {
|
825
1076
|
fill: mat-color($mat-dark-deep-orange, B100) !important;
|
826
1077
|
}
|
1078
|
+
|
827
1079
|
.fill-brown-B100 {
|
828
1080
|
fill: mat-color($mat-dark-brown, B100) !important;
|
829
1081
|
}
|
1082
|
+
|
830
1083
|
.fill-grey-B100 {
|
831
1084
|
fill: mat-color($mat-dark-grey, B100) !important;
|
832
1085
|
}
|
1086
|
+
|
833
1087
|
.fill-blue-grey-B100 {
|
834
1088
|
fill: mat-color($mat-dark-blue-grey, B100) !important;
|
835
1089
|
}
|
@@ -838,57 +1092,75 @@
|
|
838
1092
|
.fill-red-B65 {
|
839
1093
|
fill: mat-color($mat-dark-red, B65) !important;
|
840
1094
|
}
|
1095
|
+
|
841
1096
|
.fill-pink-B65 {
|
842
1097
|
fill: mat-color($mat-dark-pink, B65) !important;
|
843
1098
|
}
|
1099
|
+
|
844
1100
|
.fill-purple-B65 {
|
845
1101
|
fill: mat-color($mat-dark-purple, B65) !important;
|
846
1102
|
}
|
1103
|
+
|
847
1104
|
.fill-deep-purple-B65 {
|
848
1105
|
fill: mat-color($mat-dark-deep-purple, B65) !important;
|
849
1106
|
}
|
1107
|
+
|
850
1108
|
.fill-indigo-B65 {
|
851
1109
|
fill: mat-color($mat-dark-indigo, B65) !important;
|
852
1110
|
}
|
1111
|
+
|
853
1112
|
.fill-blue-B65 {
|
854
1113
|
fill: mat-color($mat-dark-blue, B65) !important;
|
855
1114
|
}
|
1115
|
+
|
856
1116
|
.fill-light-blue-B65 {
|
857
1117
|
fill: mat-color($mat-dark-light-blue, B65) !important;
|
858
1118
|
}
|
1119
|
+
|
859
1120
|
.fill-cyan-B65 {
|
860
1121
|
fill: mat-color($mat-dark-cyan, B65) !important;
|
861
1122
|
}
|
1123
|
+
|
862
1124
|
.fill-teal-B65 {
|
863
1125
|
fill: mat-color($mat-dark-teal, B65) !important;
|
864
1126
|
}
|
1127
|
+
|
865
1128
|
.fill-green-B65 {
|
866
1129
|
fill: mat-color($mat-dark-green, B65) !important;
|
867
1130
|
}
|
1131
|
+
|
868
1132
|
.fill-light-green-B65 {
|
869
1133
|
fill: mat-color($mat-dark-light-green, B65) !important;
|
870
1134
|
}
|
1135
|
+
|
871
1136
|
.fill-lime-B65 {
|
872
1137
|
fill: mat-color($mat-dark-lime, B65) !important;
|
873
1138
|
}
|
1139
|
+
|
874
1140
|
.fill-yellow-B65 {
|
875
1141
|
fill: mat-color($mat-dark-yellow, B65) !important;
|
876
1142
|
}
|
1143
|
+
|
877
1144
|
.fill-amber-B65 {
|
878
1145
|
fill: mat-color($mat-dark-amber, B65) !important;
|
879
1146
|
}
|
1147
|
+
|
880
1148
|
.fill-orange-B65 {
|
881
1149
|
fill: mat-color($mat-dark-orange, B65) !important;
|
882
1150
|
}
|
1151
|
+
|
883
1152
|
.fill-deep-orange-B65 {
|
884
1153
|
fill: mat-color($mat-dark-deep-orange, B65) !important;
|
885
1154
|
}
|
1155
|
+
|
886
1156
|
.fill-brown-B65 {
|
887
1157
|
fill: mat-color($mat-dark-brown, B65) !important;
|
888
1158
|
}
|
1159
|
+
|
889
1160
|
.fill-grey-B65 {
|
890
1161
|
fill: mat-color($mat-dark-grey, B65) !important;
|
891
1162
|
}
|
1163
|
+
|
892
1164
|
.fill-blue-grey-B65 {
|
893
1165
|
fill: mat-color($mat-dark-blue-grey, B65) !important;
|
894
1166
|
}
|
@@ -897,57 +1169,75 @@
|
|
897
1169
|
.fill-red-B40 {
|
898
1170
|
fill: mat-color($mat-dark-red, B40) !important;
|
899
1171
|
}
|
1172
|
+
|
900
1173
|
.fill-pink-B40 {
|
901
1174
|
fill: mat-color($mat-dark-pink, B40) !important;
|
902
1175
|
}
|
1176
|
+
|
903
1177
|
.fill-purple-B40 {
|
904
1178
|
fill: mat-color($mat-dark-purple, B40) !important;
|
905
1179
|
}
|
1180
|
+
|
906
1181
|
.fill-deep-purple-B40 {
|
907
1182
|
fill: mat-color($mat-dark-deep-purple, B40) !important;
|
908
1183
|
}
|
1184
|
+
|
909
1185
|
.fill-indigo-B40 {
|
910
1186
|
fill: mat-color($mat-dark-indigo, B40) !important;
|
911
1187
|
}
|
1188
|
+
|
912
1189
|
.fill-blue-B40 {
|
913
1190
|
fill: mat-color($mat-dark-blue, B40) !important;
|
914
1191
|
}
|
1192
|
+
|
915
1193
|
.fill-light-blue-B40 {
|
916
1194
|
fill: mat-color($mat-dark-light-blue, B40) !important;
|
917
1195
|
}
|
1196
|
+
|
918
1197
|
.fill-cyan-B40 {
|
919
1198
|
fill: mat-color($mat-dark-cyan, B40) !important;
|
920
1199
|
}
|
1200
|
+
|
921
1201
|
.fill-teal-B40 {
|
922
1202
|
fill: mat-color($mat-dark-teal, B40) !important;
|
923
1203
|
}
|
1204
|
+
|
924
1205
|
.fill-green-B40 {
|
925
1206
|
fill: mat-color($mat-dark-green, B40) !important;
|
926
1207
|
}
|
1208
|
+
|
927
1209
|
.fill-light-green-B40 {
|
928
1210
|
fill: mat-color($mat-dark-light-green, B40) !important;
|
929
1211
|
}
|
1212
|
+
|
930
1213
|
.fill-lime-B40 {
|
931
1214
|
fill: mat-color($mat-dark-lime, B40) !important;
|
932
1215
|
}
|
1216
|
+
|
933
1217
|
.fill-yellow-B40 {
|
934
1218
|
fill: mat-color($mat-dark-yellow, B40) !important;
|
935
1219
|
}
|
1220
|
+
|
936
1221
|
.fill-amber-B40 {
|
937
1222
|
fill: mat-color($mat-dark-amber, B40) !important;
|
938
1223
|
}
|
1224
|
+
|
939
1225
|
.fill-orange-B40 {
|
940
1226
|
fill: mat-color($mat-dark-orange, B40) !important;
|
941
1227
|
}
|
1228
|
+
|
942
1229
|
.fill-deep-orange-B40 {
|
943
1230
|
fill: mat-color($mat-dark-deep-orange, B40) !important;
|
944
1231
|
}
|
1232
|
+
|
945
1233
|
.fill-brown-B40 {
|
946
1234
|
fill: mat-color($mat-dark-brown, B40) !important;
|
947
1235
|
}
|
1236
|
+
|
948
1237
|
.fill-grey-B40 {
|
949
1238
|
fill: mat-color($mat-dark-grey, B40) !important;
|
950
1239
|
}
|
1240
|
+
|
951
1241
|
.fill-blue-grey-B40 {
|
952
1242
|
fill: mat-color($mat-dark-blue-grey, B40) !important;
|
953
1243
|
}
|
@@ -956,57 +1246,75 @@
|
|
956
1246
|
.fill-red-B30 {
|
957
1247
|
fill: mat-color($mat-dark-red, B30) !important;
|
958
1248
|
}
|
1249
|
+
|
959
1250
|
.fill-pink-B30 {
|
960
1251
|
fill: mat-color($mat-dark-pink, B30) !important;
|
961
1252
|
}
|
1253
|
+
|
962
1254
|
.fill-purple-B30 {
|
963
1255
|
fill: mat-color($mat-dark-purple, B30) !important;
|
964
1256
|
}
|
1257
|
+
|
965
1258
|
.fill-deep-purple-B30 {
|
966
1259
|
fill: mat-color($mat-dark-deep-purple, B30) !important;
|
967
1260
|
}
|
1261
|
+
|
968
1262
|
.fill-indigo-B30 {
|
969
1263
|
fill: mat-color($mat-dark-indigo, B30) !important;
|
970
1264
|
}
|
1265
|
+
|
971
1266
|
.fill-blue-B30 {
|
972
1267
|
fill: mat-color($mat-dark-blue, B30) !important;
|
973
1268
|
}
|
1269
|
+
|
974
1270
|
.fill-light-blue-B30 {
|
975
1271
|
fill: mat-color($mat-dark-light-blue, B30) !important;
|
976
1272
|
}
|
1273
|
+
|
977
1274
|
.fill-cyan-B30 {
|
978
1275
|
fill: mat-color($mat-dark-cyan, B30) !important;
|
979
1276
|
}
|
1277
|
+
|
980
1278
|
.fill-teal-B30 {
|
981
1279
|
fill: mat-color($mat-dark-teal, B30) !important;
|
982
1280
|
}
|
1281
|
+
|
983
1282
|
.fill-green-B30 {
|
984
1283
|
fill: mat-color($mat-dark-green, B30) !important;
|
985
1284
|
}
|
1285
|
+
|
986
1286
|
.fill-light-green-B30 {
|
987
1287
|
fill: mat-color($mat-dark-light-green, B30) !important;
|
988
1288
|
}
|
1289
|
+
|
989
1290
|
.fill-lime-B30 {
|
990
1291
|
fill: mat-color($mat-dark-lime, B30) !important;
|
991
1292
|
}
|
1293
|
+
|
992
1294
|
.fill-yellow-B30 {
|
993
1295
|
fill: mat-color($mat-dark-yellow, B30) !important;
|
994
1296
|
}
|
1297
|
+
|
995
1298
|
.fill-amber-B30 {
|
996
1299
|
fill: mat-color($mat-dark-amber, B30) !important;
|
997
1300
|
}
|
1301
|
+
|
998
1302
|
.fill-orange-B30 {
|
999
1303
|
fill: mat-color($mat-dark-orange, B30) !important;
|
1000
1304
|
}
|
1305
|
+
|
1001
1306
|
.fill-deep-orange-B30 {
|
1002
1307
|
fill: mat-color($mat-dark-deep-orange, B30) !important;
|
1003
1308
|
}
|
1309
|
+
|
1004
1310
|
.fill-brown-B30 {
|
1005
1311
|
fill: mat-color($mat-dark-brown, B30) !important;
|
1006
1312
|
}
|
1313
|
+
|
1007
1314
|
.fill-grey-B30 {
|
1008
1315
|
fill: mat-color($mat-dark-grey, B30) !important;
|
1009
1316
|
}
|
1317
|
+
|
1010
1318
|
.fill-blue-grey-B30 {
|
1011
1319
|
fill: mat-color($mat-dark-blue-grey, B30) !important;
|
1012
1320
|
}
|
@@ -1015,58 +1323,77 @@
|
|
1015
1323
|
.fill-red-B15 {
|
1016
1324
|
fill: mat-color($mat-dark-red, B15) !important;
|
1017
1325
|
}
|
1326
|
+
|
1018
1327
|
.fill-pink-B15 {
|
1019
1328
|
fill: mat-color($mat-dark-pink, B15) !important;
|
1020
1329
|
}
|
1330
|
+
|
1021
1331
|
.fill-purple-B15 {
|
1022
1332
|
fill: mat-color($mat-dark-purple, B15) !important;
|
1023
1333
|
}
|
1334
|
+
|
1024
1335
|
.fill-deep-purple-B15 {
|
1025
1336
|
fill: mat-color($mat-dark-deep-purple, B15) !important;
|
1026
1337
|
}
|
1338
|
+
|
1027
1339
|
.fill-indigo-B15 {
|
1028
1340
|
fill: mat-color($mat-dark-indigo, B15) !important;
|
1029
1341
|
}
|
1342
|
+
|
1030
1343
|
.fill-blue-B15 {
|
1031
1344
|
fill: mat-color($mat-dark-blue, B15) !important;
|
1032
1345
|
}
|
1346
|
+
|
1033
1347
|
.fill-light-blue-B15 {
|
1034
1348
|
fill: mat-color($mat-dark-light-blue, B15) !important;
|
1035
1349
|
}
|
1350
|
+
|
1036
1351
|
.fill-cyan-B15 {
|
1037
1352
|
fill: mat-color($mat-dark-cyan, B15) !important;
|
1038
1353
|
}
|
1354
|
+
|
1039
1355
|
.fill-teal-B15 {
|
1040
1356
|
fill: mat-color($mat-dark-teal, B15) !important;
|
1041
1357
|
}
|
1358
|
+
|
1042
1359
|
.fill-green-B15 {
|
1043
1360
|
fill: mat-color($mat-dark-green, B15) !important;
|
1044
1361
|
}
|
1362
|
+
|
1045
1363
|
.fill-light-green-B15 {
|
1046
1364
|
fill: mat-color($mat-dark-light-green, B15) !important;
|
1047
1365
|
}
|
1366
|
+
|
1048
1367
|
.fill-lime-B15 {
|
1049
1368
|
fill: mat-color($mat-dark-lime, B15) !important;
|
1050
1369
|
}
|
1370
|
+
|
1051
1371
|
.fill-yellow-B15 {
|
1052
1372
|
fill: mat-color($mat-dark-yellow, B15) !important;
|
1053
1373
|
}
|
1374
|
+
|
1054
1375
|
.fill-amber-B15 {
|
1055
1376
|
fill: mat-color($mat-dark-amber, B15) !important;
|
1056
1377
|
}
|
1378
|
+
|
1057
1379
|
.fill-orange-B15 {
|
1058
1380
|
fill: mat-color($mat-dark-orange, B15) !important;
|
1059
1381
|
}
|
1382
|
+
|
1060
1383
|
.fill-deep-orange-B15 {
|
1061
1384
|
fill: mat-color($mat-dark-deep-orange, B15) !important;
|
1062
1385
|
}
|
1386
|
+
|
1063
1387
|
.fill-brown-B15 {
|
1064
1388
|
fill: mat-color($mat-dark-brown, B15) !important;
|
1065
1389
|
}
|
1390
|
+
|
1066
1391
|
.fill-grey-B15 {
|
1067
1392
|
fill: mat-color($mat-dark-grey, B15) !important;
|
1068
1393
|
}
|
1394
|
+
|
1069
1395
|
.fill-blue-grey-B15 {
|
1070
1396
|
fill: mat-color($mat-dark-blue-grey, B15) !important;
|
1071
1397
|
}
|
1072
1398
|
}
|
1399
|
+
/* stylelint-enable selector-class-pattern */
|