├── src ├── assets │ ├── .gitkeep │ ├── angular.ico │ ├── favicon.ico │ ├── images │ │ ├── vue.jpg │ │ ├── angular.jpg │ │ ├── react.jpg │ │ └── avatars │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ └── brand │ │ ├── coreui-signet.svg │ │ ├── coreui-signet-white.svg │ │ ├── coreui-base.svg │ │ └── coreui-base-white.svg ├── app │ ├── views │ │ ├── base │ │ │ ├── navs │ │ │ │ ├── navs.component.scss │ │ │ │ ├── navs.component.ts │ │ │ │ └── navs.component.spec.ts │ │ │ ├── tabs │ │ │ │ ├── tabs.component.scss │ │ │ │ ├── tabs.component.ts │ │ │ │ └── tabs.component.spec.ts │ │ │ ├── cards │ │ │ │ ├── cards.component.scss │ │ │ │ ├── cards.component.spec.ts │ │ │ │ └── cards.component.ts │ │ │ ├── tables │ │ │ │ ├── tables.component.scss │ │ │ │ ├── tables.component.ts │ │ │ │ └── tables.component.spec.ts │ │ │ ├── carousels │ │ │ │ ├── carousels.component.scss │ │ │ │ └── carousels.component.spec.ts │ │ │ ├── collapses │ │ │ │ ├── collapses.component.scss │ │ │ │ ├── collapses.component.ts │ │ │ │ └── collapses.component.spec.ts │ │ │ ├── popovers │ │ │ │ ├── popovers.component.scss │ │ │ │ ├── popovers.component.ts │ │ │ │ ├── popovers.component.spec.ts │ │ │ │ └── popovers.component.html │ │ │ ├── spinners │ │ │ │ ├── spinners.component.scss │ │ │ │ ├── spinners.component.ts │ │ │ │ └── spinners.component.spec.ts │ │ │ ├── tooltips │ │ │ │ ├── tooltips.component.scss │ │ │ │ ├── tooltips.component.ts │ │ │ │ ├── tooltips.component.spec.ts │ │ │ │ └── tooltips.component.html │ │ │ ├── breadcrumbs │ │ │ │ ├── breadcrumbs.component.scss │ │ │ │ ├── breadcrumbs.component.spec.ts │ │ │ │ ├── breadcrumbs.component.ts │ │ │ │ └── breadcrumbs.component.html │ │ │ ├── list-groups │ │ │ │ ├── list-groups.component.scss │ │ │ │ ├── list-groups.component.spec.ts │ │ │ │ └── list-groups.component.ts │ │ │ ├── paginations │ │ │ │ ├── paginations.component.scss │ │ │ │ ├── paginations.component.ts │ │ │ │ └── paginations.component.spec.ts │ │ │ ├── placeholders │ │ │ │ ├── placeholders.component.scss │ │ │ │ ├── placeholders.component.ts │ │ │ │ └── placeholders.component.spec.ts │ │ │ ├── accordion │ │ │ │ ├── accordions.component.scss │ │ │ │ ├── accordions.component.spec.ts │ │ │ │ └── accordions.component.ts │ │ │ └── progress │ │ │ │ ├── progress.component.ts │ │ │ │ └── progress.component.spec.ts │ │ ├── charts │ │ │ ├── charts.component.scss │ │ │ ├── routes.ts │ │ │ ├── charts.component.spec.ts │ │ │ └── charts.component.html │ │ ├── forms │ │ │ ├── layout │ │ │ │ ├── layout.component.scss │ │ │ │ ├── layout.component.ts │ │ │ │ └── layout.component.spec.ts │ │ │ ├── ranges │ │ │ │ ├── ranges.component.scss │ │ │ │ ├── ranges.component.ts │ │ │ │ ├── ranges.component.spec.ts │ │ │ │ └── ranges.component.html │ │ │ ├── select │ │ │ │ ├── select.component.scss │ │ │ │ ├── select.component.ts │ │ │ │ └── select.component.spec.ts │ │ │ ├── validation │ │ │ │ ├── validation.component.scss │ │ │ │ ├── validation.component.spec.ts │ │ │ │ └── validation.component.ts │ │ │ ├── checks-radios │ │ │ │ ├── checks-radios.component.scss │ │ │ │ ├── checks-radios.component.spec.ts │ │ │ │ └── checks-radios.component.ts │ │ │ ├── input-groups │ │ │ │ ├── input-groups.component.scss │ │ │ │ ├── input-groups.component.spec.ts │ │ │ │ └── input-groups.component.ts │ │ │ ├── floating-labels │ │ │ │ ├── floating-labels.component.scss │ │ │ │ ├── floating-labels.component.ts │ │ │ │ └── floating-labels.component.spec.ts │ │ │ ├── form-controls │ │ │ │ ├── form-controls.component.scss │ │ │ │ ├── form-controls.component.ts │ │ │ │ └── form-controls.component.spec.ts │ │ │ └── routes.ts │ │ ├── pages │ │ │ ├── login │ │ │ │ ├── login.component.scss │ │ │ │ ├── login.component.ts │ │ │ │ ├── login.component.spec.ts │ │ │ │ └── login.component.html │ │ │ ├── page404 │ │ │ │ ├── page404.component.scss │ │ │ │ ├── page404.component.ts │ │ │ │ ├── page404.component.html │ │ │ │ └── page404.component.spec.ts │ │ │ ├── page500 │ │ │ │ ├── page500.component.scss │ │ │ │ ├── page500.component.ts │ │ │ │ ├── page500.component.html │ │ │ │ └── page500.component.spec.ts │ │ │ ├── register │ │ │ │ ├── register.component.scss │ │ │ │ ├── register.component.ts │ │ │ │ ├── register.component.spec.ts │ │ │ │ └── register.component.html │ │ │ └── routes.ts │ │ ├── widgets │ │ │ ├── widgets │ │ │ │ ├── widgets.component.scss │ │ │ │ ├── widgets.component.ts │ │ │ │ └── widgets.component.spec.ts │ │ │ ├── widgets-e │ │ │ │ ├── widgets-e.component.scss │ │ │ │ ├── widgets-e.component.spec.ts │ │ │ │ └── widgets-e.component.html │ │ │ ├── widgets-brand │ │ │ │ ├── widgets-brand.component.scss │ │ │ │ ├── widgets-brand.component.html │ │ │ │ └── widgets-brand.component.spec.ts │ │ │ ├── widgets-dropdown │ │ │ │ ├── widgets-dropdown.component.scss │ │ │ │ └── widgets-dropdown.component.spec.ts │ │ │ └── routes.ts │ │ ├── notifications │ │ │ ├── modals │ │ │ │ ├── modals.component.scss │ │ │ │ ├── modals.component.spec.ts │ │ │ │ └── modals.component.ts │ │ │ ├── toasters │ │ │ │ ├── toasters.component.scss │ │ │ │ ├── toast-simple │ │ │ │ │ ├── toast.component.scss │ │ │ │ │ ├── toast-sample-icon.component.svg │ │ │ │ │ ├── toast-sample-icon.component.ts │ │ │ │ │ ├── toast.component.html │ │ │ │ │ ├── toast.component.ts │ │ │ │ │ └── toast.component.spec.ts │ │ │ │ └── toasters.component.spec.ts │ │ │ ├── badges │ │ │ │ ├── badges.component.scss │ │ │ │ ├── badges.component.ts │ │ │ │ └── badges.component.spec.ts │ │ │ ├── alerts │ │ │ │ ├── alerts.component.scss │ │ │ │ ├── alerts.component.spec.ts │ │ │ │ └── alerts.component.ts │ │ │ └── routes.ts │ │ ├── buttons │ │ │ ├── button-groups │ │ │ │ ├── button-groups.component.scss │ │ │ │ ├── button-groups.component.spec.ts │ │ │ │ └── button-groups.component.ts │ │ │ ├── buttons │ │ │ │ ├── buttons.component.ts │ │ │ │ └── buttons.component.spec.ts │ │ │ ├── routes.ts │ │ │ └── dropdowns │ │ │ │ ├── dropdowns.component.spec.ts │ │ │ │ └── dropdowns.component.ts │ │ ├── dashboard │ │ │ ├── dashboard.component.scss │ │ │ └── routes.ts │ │ ├── theme │ │ │ ├── typography.component.ts │ │ │ ├── routes.ts │ │ │ ├── colors.component.html │ │ │ └── colors.component.ts │ │ └── icons │ │ │ ├── coreui-icons.component.html │ │ │ ├── routes.ts │ │ │ └── coreui-icons.component.ts │ ├── layout │ │ ├── index.ts │ │ └── default-layout │ │ │ ├── default-footer │ │ │ ├── default-footer.component.scss │ │ │ ├── default-footer.component.html │ │ │ ├── default-footer.component.ts │ │ │ └── default-footer.component.spec.ts │ │ │ ├── default-header │ │ │ ├── default-header.component.scss │ │ │ └── default-header.component.spec.ts │ │ │ ├── index.ts │ │ │ ├── default-layout.component.scss │ │ │ ├── default-layout.component.html │ │ │ └── default-layout.component.ts │ ├── icons │ │ └── signet.ts │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.config.ts │ └── app.routes.ts ├── components │ ├── docs-link │ │ ├── docs-link.component.scss │ │ ├── docs-link.component.html │ │ ├── docs-link.component.spec.ts │ │ └── docs-link.component.ts │ ├── docs-callout │ │ ├── docs-callout.component.scss │ │ ├── docs-callout.component.html │ │ ├── docs-callout.component.spec.ts │ │ └── docs-callout.component.ts │ ├── index.ts │ ├── docs-example │ │ ├── docs-example.component.scss │ │ ├── docs-example.component.html │ │ ├── docs-example.component.spec.ts │ │ └── docs-example.component.ts │ └── public-api.ts ├── scss │ ├── _fixes.scss │ ├── _variables.scss │ ├── _charts.scss │ ├── _custom.scss │ ├── styles.scss │ ├── _scrollbar.scss │ ├── _theme.scss │ └── _examples.scss ├── declarations.d.ts ├── main.ts ├── test.ts └── index.html ├── .github ├── FUNDING.yml ├── SUPPORT.md ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── workflows │ ├── build-check.yml │ └── stale.yml ├── COMMIT_CONVENTION.md └── CODE_OF_CONDUCT.md ├── .editorconfig ├── tsconfig.app.json ├── tsconfig.spec.json ├── .gitignore ├── LICENSE ├── tsconfig.json ├── karma.conf.js └── package.json /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/navs/navs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/tabs/tabs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/charts/charts.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/cards/cards.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/tables/tables.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/forms/layout/layout.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/forms/ranges/ranges.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/forms/select/select.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/pages/login/login.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/carousels/carousels.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/collapses/collapses.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/popovers/popovers.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/spinners/spinners.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/tooltips/tooltips.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/pages/page404/page404.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/pages/page500/page500.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/pages/register/register.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/widgets/widgets/widgets.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/docs-link/docs-link.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/breadcrumbs/breadcrumbs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/list-groups/list-groups.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/base/paginations/paginations.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/forms/validation/validation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/notifications/modals/modals.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/widgets/widgets-e/widgets-e.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/docs-callout/docs-callout.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public-api'; 2 | -------------------------------------------------------------------------------- /src/app/layout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './default-layout'; 2 | -------------------------------------------------------------------------------- /src/app/views/base/placeholders/placeholders.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/forms/checks-radios/checks-radios.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/forms/input-groups/input-groups.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/notifications/toasters/toasters.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scss/_fixes.scss: -------------------------------------------------------------------------------- 1 | // Place for temp fixes 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/app/views/buttons/button-groups/button-groups.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/forms/floating-labels/floating-labels.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/widgets/widgets-brand/widgets-brand.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/widgets/widgets-dropdown/widgets-dropdown.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/layout/default-layout/default-footer/default-footer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/layout/default-layout/default-header/default-header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/docs-example/docs-example.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/angular.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/angular.ico -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/images/vue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/vue.jpg -------------------------------------------------------------------------------- /src/assets/images/angular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/angular.jpg -------------------------------------------------------------------------------- /src/assets/images/react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/react.jpg -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.json' { 2 | const value: any; 3 | export default value; 4 | } 5 | 6 | -------------------------------------------------------------------------------- /src/assets/images/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/avatars/1.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/avatars/2.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/avatars/3.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/avatars/4.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/avatars/5.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/avatars/6.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/avatars/7.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/avatars/8.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/angular-test/HEAD/src/assets/images/avatars/9.jpg -------------------------------------------------------------------------------- /src/app/views/notifications/toasters/toast-simple/toast.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | display: block; 3 | overflow: hidden; 4 | } 5 | -------------------------------------------------------------------------------- /src/app/views/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | .legend { 3 | small { 4 | font-size: x-small; 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | custom: "https://coreui.io/pricing?support=angular" 4 | open_collective: coreui 5 | -------------------------------------------------------------------------------- /src/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | // Variable overrides 2 | // 3 | // If you want to customize your project please add your variables below. 4 | 5 | $enable-deprecation-messages: false !default; 6 | -------------------------------------------------------------------------------- /src/scss/_charts.scss: -------------------------------------------------------------------------------- 1 | // custom .chartjs-tooltip-body-item 2 | 3 | .chartjs-tooltip-body-item > td { 4 | padding-bottom: 0 !important; 5 | padding-top: 0 !important; 6 | font-size: smaller; 7 | } 8 | -------------------------------------------------------------------------------- /src/app/layout/default-layout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './default-footer/default-footer.component'; 2 | export * from './default-header/default-header.component'; 3 | export * from './default-layout.component'; 4 | -------------------------------------------------------------------------------- /src/app/views/forms/form-controls/form-controls.component.scss: -------------------------------------------------------------------------------- 1 | :host { 2 | #exampleColorInput { 3 | min-width: 2.5rem; 4 | } 5 | .color-box { 6 | min-width: 2rem; 7 | min-height: 2rem; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/components/public-api.ts: -------------------------------------------------------------------------------- 1 | export { DocsCalloutComponent } from './docs-callout/docs-callout.component' 2 | export { DocsExampleComponent } from './docs-example/docs-example.component' 3 | export { DocsLinkComponent } from './docs-link/docs-link.component' 4 | -------------------------------------------------------------------------------- /src/components/docs-link/docs-link.component.html: -------------------------------------------------------------------------------- 1 |
This is a dynamic toast no {{ toastBody.toast?.index }} {{ toastBody.toast?.clock }}
11 |8 | An Angular {{ name }} component{{ plural ? 's' : '' }} {{ plural ? 'have' : 'has' }} been created as a native 9 | Angular 10 | version 11 | of Bootstrap {{ name }}. {{ name }} {{ plural ? 'are' : 'is' }} delivered with some new features, 12 | variants, and unique design that matches CoreUI Design System requirements. 13 |
14 | } 15 | 16 |9 | The page you are looking for was not found. 10 |
11 |9 | The page you are looking for is temporarily unavailable. 10 |
11 | 12 |.accordion-body,
29 | though the transition does limit overflow.
30 | `;
31 | return this.sanitizer.bypassSecurityTrustHtml(textSample);
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/src/components/docs-example/docs-example.component.ts:
--------------------------------------------------------------------------------
1 | import {
2 | AfterContentInit,
3 | AfterViewInit,
4 | ChangeDetectionStrategy,
5 | ChangeDetectorRef,
6 | Component,
7 | HostBinding,
8 | Input
9 | } from '@angular/core';
10 |
11 | import packageJson from '../../../package.json';
12 | import { IconDirective } from '@coreui/icons-angular';
13 | import { RouterLink } from '@angular/router';
14 | import { NavComponent, NavItemComponent, NavLinkDirective } from '@coreui/angular';
15 |
16 | @Component({
17 | selector: 'app-docs-example',
18 | templateUrl: './docs-example.component.html',
19 | styleUrls: ['./docs-example.component.scss'],
20 | changeDetection: ChangeDetectionStrategy.OnPush,
21 | standalone: true,
22 | imports: [NavComponent, NavItemComponent, NavLinkDirective, RouterLink, IconDirective]
23 | })
24 | export class DocsExampleComponent implements AfterContentInit, AfterViewInit {
25 |
26 | constructor(
27 | private changeDetectorRef: ChangeDetectorRef
28 | ) {}
29 |
30 | @Input() fragment?: string;
31 |
32 | @HostBinding('class.example')
33 | get exampleClass() {
34 | return true;
35 | };
36 |
37 | private _href = 'https://coreui.io/angular/docs/';
38 |
39 | get href(): string {
40 | return this._href;
41 | }
42 |
43 | @Input()
44 | set href(value: string) {
45 | const version = packageJson?.config?.coreui_library_short_version;
46 | const docsUrl = packageJson?.config?.coreui_library_docs_url ?? 'https://coreui.io/angular/';
47 | // const path: string = version ? `${version}/${value}` : '';
48 | this._href = `${docsUrl}${value}`;
49 | }
50 |
51 | ngAfterContentInit(): void {
52 | // this.changeDetectorRef.detectChanges();
53 | }
54 |
55 | ngAfterViewInit(): void {
56 | this.changeDetectorRef.markForCheck();
57 | }
58 | }
59 |
--------------------------------------------------------------------------------
/src/app/views/pages/register/register.component.html:
--------------------------------------------------------------------------------
1 | 48 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod 49 | tempor incididunt ut labore et dolore magna aliqua. 50 |
51 | 54 || HEX: | 30 |${rgbToHex(background)} | 31 |
| RGB: | 34 |${background} | 35 |
9 | Hover over the links below to see tooltips: 10 |
11 |13 | Tight pants next level keffiyeh 14 | you probably 15 | haven'theard of them. Photo booth beard raw denim letterpress vegan messenger 16 | bag stumptown. Farm-to-table seitan, mcsweeney's fixie sustainable quinoa 8-bit 17 | american apparel 18 | have a 19 | terry richardson vinyl chambray. Beard stumptown, cardigans banh mi lomo 20 | thundercats. Tofu biodiesel williamsburg marfa, four loko mcsweeney''s 21 | cleanse vegan chambray. A really ironic artisan 22 | whatever keytar 23 | scenester farm-to-table banksy Austin 24 | twitter handle 25 | freegan cred raw denim single-origin coffee viral. 26 |
27 |29 | Hover over the buttons below to see the four tooltips directions: top, right, bottom, 30 | and left. 31 |
32 |38 | Four options are available: top, right, bottom, and left aligned. 39 |
40 |