novo-elements 13.2.0-next.2 → 13.2.0-next.4
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/elements/card/Card.scss +60 -7
- package/elements/card/CardContent.scss +3 -0
- package/elements/card/CardHeader.scss +23 -0
- package/elements/card/index.d.ts +5 -3
- package/elements/common/index.d.ts +14 -4
- package/elements/dropdown/Dropdown.scss +0 -1
- package/elements/list/list-item-content.scss +13 -4
- package/fesm2022/novo-elements-elements-card.mjs +27 -21
- package/fesm2022/novo-elements-elements-card.mjs.map +1 -1
- package/fesm2022/novo-elements-elements-common.mjs +45 -14
- package/fesm2022/novo-elements-elements-common.mjs.map +1 -1
- package/fesm2022/novo-elements-elements-dropdown.mjs +2 -2
- package/fesm2022/novo-elements-elements-dropdown.mjs.map +1 -1
- package/fesm2022/novo-elements-elements-list.mjs +2 -2
- package/fesm2022/novo-elements-elements-list.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/themes/bh2026.scss +7 -0
package/elements/card/Card.scss
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
border-radius: var(--border-radius-round);
|
|
9
9
|
position: relative;
|
|
10
10
|
overflow-x: hidden;
|
|
11
|
+
:root[data-theme=bh2026] & {
|
|
12
|
+
--spacing-md: var(--spacing-padding-md);
|
|
13
|
+
}
|
|
11
14
|
|
|
12
15
|
&.loading {
|
|
13
16
|
min-height: 200px;
|
|
@@ -57,11 +60,11 @@
|
|
|
57
60
|
text-overflow: ellipsis;
|
|
58
61
|
i {
|
|
59
62
|
font-size: 1.2em;
|
|
60
|
-
&.bhi-info {
|
|
61
|
-
color: $light;
|
|
62
|
-
}
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
|
+
:root:not([data-theme='bh2026']) & i.bhi-info {
|
|
66
|
+
color: $light;
|
|
67
|
+
}
|
|
65
68
|
}
|
|
66
69
|
.actions {
|
|
67
70
|
color: brightenLive('--color-dark', 15);
|
|
@@ -132,20 +135,27 @@
|
|
|
132
135
|
border-bottom: 1px solid var(--color-border-default);
|
|
133
136
|
|
|
134
137
|
.title {
|
|
138
|
+
padding-inline: var(--spacing-gutter);
|
|
135
139
|
h1,
|
|
136
140
|
h2,
|
|
137
141
|
h3 {
|
|
138
142
|
font-size: var(--typography-card-header-font-size, var(--typography-font-size-18));
|
|
139
143
|
font-weight: var(--typography-card-header-font-weight, var(--typography-font-weight-500));
|
|
144
|
+
::ng-deep .card-flag-icon {
|
|
145
|
+
font-size: var(--font-size-lg);
|
|
146
|
+
vertical-align: 10%;
|
|
147
|
+
}
|
|
140
148
|
}
|
|
141
149
|
|
|
142
|
-
::ng-deep i
|
|
143
|
-
|
|
150
|
+
::ng-deep i {
|
|
151
|
+
margin: 0;
|
|
144
152
|
}
|
|
145
153
|
}
|
|
146
154
|
|
|
147
|
-
|
|
148
|
-
|
|
155
|
+
.card-move-handle {
|
|
156
|
+
position: absolute;
|
|
157
|
+
left: var(--spacing-padding-xxsm);
|
|
158
|
+
color: var(--color-content-icon, #89909A);
|
|
149
159
|
}
|
|
150
160
|
|
|
151
161
|
.actions {
|
|
@@ -157,5 +167,48 @@
|
|
|
157
167
|
novo-button {
|
|
158
168
|
color: var(--color-text-subtle);
|
|
159
169
|
}
|
|
170
|
+
::ng-deep .novo-card-header-text {
|
|
171
|
+
padding-inline-start: var(--spacing-padding-sm);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
:host {
|
|
175
|
+
::ng-deep .card-flag-icon {
|
|
176
|
+
color: var(--color-content-subtle, #5d7798);
|
|
177
|
+
}
|
|
178
|
+
&.icon-color-auto header .title ::ng-deep .card-flag-icon {
|
|
179
|
+
color: var(--page-entity-color, var(--color-content-subtle, #5d7798));
|
|
180
|
+
@each $entity, $color in $entity-colors {
|
|
181
|
+
&.bhi-#{$entity} {
|
|
182
|
+
@if ($entity == 'person') {
|
|
183
|
+
color: var(--color-entity-contact);
|
|
184
|
+
} @else if ($entity == 'notes') {
|
|
185
|
+
color: var(--color-entity-note);
|
|
186
|
+
} @else {
|
|
187
|
+
color: var(--color-entity-#{$entity});
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
&.icon-color-parent ::ng-deep .card-flag-icon {
|
|
193
|
+
color: var(--page-entity-color);
|
|
194
|
+
}
|
|
195
|
+
.novo-card-header {
|
|
196
|
+
padding-inline-start: var(--spacing-gutter);
|
|
197
|
+
}
|
|
198
|
+
// ng-deep in case this is declared within title bar implementation.
|
|
199
|
+
::ng-deep .card-move-handle {
|
|
200
|
+
position: absolute;
|
|
201
|
+
left: var(--spacing-padding-xxsm);
|
|
202
|
+
color: var(--color-content-icon, #89909A);
|
|
203
|
+
transition: color 0.3s ease-in-out;
|
|
204
|
+
}
|
|
205
|
+
header ::ng-deep, ::ng-deep .novo-card-header {
|
|
206
|
+
&:not(:hover) .card-move-handle {
|
|
207
|
+
color: transparent;
|
|
208
|
+
}
|
|
209
|
+
.novo-icon.card-move-handle i {
|
|
210
|
+
color: inherit;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
160
213
|
}
|
|
161
214
|
}
|
|
@@ -7,8 +7,31 @@
|
|
|
7
7
|
flex-direction: row;
|
|
8
8
|
align-items: center;
|
|
9
9
|
gap: var(--spacing-md);
|
|
10
|
+
:root[data-theme=bh2026] & {
|
|
11
|
+
padding: var(--spacing-padding-md) var(--spacing-padding-md) 0 var(--spacing-gutter);
|
|
12
|
+
gap: 0;
|
|
13
|
+
.card-move-handle {
|
|
14
|
+
transition: color 0.3s ease-in-out;
|
|
15
|
+
}
|
|
16
|
+
&:not(:hover) {
|
|
17
|
+
.card-move-handle {
|
|
18
|
+
color: transparent;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
.novo-card-header-text {
|
|
22
|
+
font-size: var(--typography-card-header-font-size, 1.8rem);
|
|
23
|
+
font-weight: var(--typography-card-header-font-weight, 500);
|
|
24
|
+
::ng-deep novo-title {
|
|
25
|
+
font: inherit;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
10
30
|
|
|
11
31
|
.novo-card-header-text {
|
|
12
32
|
flex: 1 1 0px;
|
|
33
|
+
:root[data-theme=bh2026] & {
|
|
34
|
+
padding-inline-start: var(--spacing-padding-sm);
|
|
35
|
+
}
|
|
13
36
|
}
|
|
14
37
|
}
|
package/elements/card/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import * as i3 from 'novo-elements/elements/icon';
|
|
|
6
6
|
import * as i4 from 'novo-elements/elements/button';
|
|
7
7
|
import * as i5 from 'novo-elements/elements/loading';
|
|
8
8
|
import * as i6 from 'novo-elements/elements/tooltip';
|
|
9
|
+
import * as i7 from 'novo-elements/elements/common';
|
|
9
10
|
|
|
10
11
|
declare class CardActionsElement {
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardActionsElement, never>;
|
|
@@ -37,6 +38,7 @@ declare class CardElement implements OnChanges, OnInit {
|
|
|
37
38
|
message: string;
|
|
38
39
|
messageIcon: string;
|
|
39
40
|
icon: string;
|
|
41
|
+
iconColorClass: 'icon-color-auto' | 'icon-color-parent' | undefined;
|
|
40
42
|
iconTooltip: string;
|
|
41
43
|
refresh: boolean;
|
|
42
44
|
close: boolean;
|
|
@@ -44,7 +46,7 @@ declare class CardElement implements OnChanges, OnInit {
|
|
|
44
46
|
loading: boolean;
|
|
45
47
|
inline: boolean;
|
|
46
48
|
inset: string;
|
|
47
|
-
get
|
|
49
|
+
get cardClass(): string;
|
|
48
50
|
onClose: EventEmitter<void>;
|
|
49
51
|
onRefresh: EventEmitter<void>;
|
|
50
52
|
cardAutomationId: string;
|
|
@@ -57,12 +59,12 @@ declare class CardElement implements OnChanges, OnInit {
|
|
|
57
59
|
toggleClose(): void;
|
|
58
60
|
toggleRefresh(): void;
|
|
59
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardElement, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardElement, "novo-card", never, { "padding": { "alias": "padding"; "required": false; }; "config": { "alias": "config"; "required": false; }; "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconTooltip": { "alias": "iconTooltip"; "required": false; }; "refresh": { "alias": "refresh"; "required": false; }; "close": { "alias": "close"; "required": false; }; "move": { "alias": "move"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "inset": { "alias": "inset"; "required": false; }; }, { "onClose": "onClose"; "onRefresh": "onRefresh"; }, never, ["novo-card-actions", "*", "footer,novo-card-footer,[novo-card-footer],[novoCardFooter]"], false, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardElement, "novo-card", never, { "padding": { "alias": "padding"; "required": false; }; "config": { "alias": "config"; "required": false; }; "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColorClass": { "alias": "iconColorClass"; "required": false; }; "iconTooltip": { "alias": "iconTooltip"; "required": false; }; "refresh": { "alias": "refresh"; "required": false; }; "close": { "alias": "close"; "required": false; }; "move": { "alias": "move"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "inset": { "alias": "inset"; "required": false; }; }, { "onClose": "onClose"; "onRefresh": "onRefresh"; }, never, ["novo-card-actions", "*", "footer,novo-card-footer,[novo-card-footer],[novoCardFooter]"], false, never>;
|
|
61
63
|
}
|
|
62
64
|
|
|
63
65
|
declare class NovoCardModule {
|
|
64
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoCardModule, never>;
|
|
65
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoCardModule, [typeof CardElement, typeof CardActionsElement, typeof CardContentElement, typeof CardHeaderElement, typeof CardFooterElement], [typeof i2.CommonModule, typeof i3.NovoIconModule, typeof i4.NovoButtonModule, typeof i5.NovoLoadingModule, typeof i6.NovoTooltipModule], [typeof CardElement, typeof CardActionsElement, typeof CardContentElement, typeof CardHeaderElement, typeof CardFooterElement]>;
|
|
67
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoCardModule, [typeof CardElement, typeof CardActionsElement, typeof CardContentElement, typeof CardHeaderElement, typeof CardFooterElement], [typeof i2.CommonModule, typeof i3.NovoIconModule, typeof i4.NovoButtonModule, typeof i5.NovoLoadingModule, typeof i6.NovoTooltipModule, typeof i7.NovoCommonModule], [typeof CardElement, typeof CardActionsElement, typeof CardContentElement, typeof CardHeaderElement, typeof CardFooterElement]>;
|
|
66
68
|
static ɵinj: i0.ɵɵInjectorDeclaration<NovoCardModule>;
|
|
67
69
|
}
|
|
68
70
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { TemplateRef, ElementRef, OnInit,
|
|
2
|
+
import { TemplateRef, ElementRef, OnInit, OnDestroy, ChangeDetectorRef, Renderer2, DoCheck, ViewContainerRef, PipeTransform, InjectionToken, AfterViewChecked, EventEmitter, QueryList, NgZone } from '@angular/core';
|
|
3
3
|
import { Observable, Subject, Subscription } from 'rxjs';
|
|
4
4
|
import * as i3 from '@angular/common';
|
|
5
5
|
import { NgSwitch } from '@angular/common';
|
|
@@ -247,11 +247,14 @@ interface ThemeChangeEvent {
|
|
|
247
247
|
declare class NovoTheme {
|
|
248
248
|
private _defaultTheme;
|
|
249
249
|
private _currentTheme;
|
|
250
|
-
|
|
250
|
+
currentTheme: i0.Signal<NovoThemeOptions>;
|
|
251
|
+
onThemeChange: Observable<ThemeChangeEvent>;
|
|
252
|
+
document: Document;
|
|
251
253
|
/** Name of the theme being used. defaults to `bh2022-light`. */
|
|
252
254
|
get themeName(): string;
|
|
253
255
|
set themeName(value: string);
|
|
254
256
|
use(options: NovoThemeOptions): Observable<any>;
|
|
257
|
+
isBh2026: i0.Signal<boolean>;
|
|
255
258
|
/**
|
|
256
259
|
* Changes the current theme
|
|
257
260
|
*/
|
|
@@ -325,6 +328,13 @@ declare class VisibleDirective {
|
|
|
325
328
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VisibleDirective, "[visible]", never, { "visible": { "alias": "visible"; "required": false; }; }, {}, never, never, false, never>;
|
|
326
329
|
}
|
|
327
330
|
|
|
331
|
+
declare class If2026ThemePipe implements PipeTransform {
|
|
332
|
+
theme: NovoTheme;
|
|
333
|
+
transform(value: any, elseVal?: any): any;
|
|
334
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<If2026ThemePipe, never>;
|
|
335
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<If2026ThemePipe, "ifBh2026Theme", false>;
|
|
336
|
+
}
|
|
337
|
+
|
|
328
338
|
/** @docs-private */
|
|
329
339
|
type Constructor<T> = new (...args: any[]) => T;
|
|
330
340
|
/**
|
|
@@ -568,7 +578,7 @@ declare class NovoOptionModule {
|
|
|
568
578
|
|
|
569
579
|
declare class NovoCommonModule {
|
|
570
580
|
static ɵfac: i0.ɵɵFactoryDeclaration<NovoCommonModule, never>;
|
|
571
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoCommonModule, [typeof NovoTemplate, typeof NovoText, typeof NovoTitle, typeof NovoCaption, typeof NovoLabel, typeof NovoLink, typeof MarginDirective, typeof PaddingDirective, typeof BackgroundColorDirective, typeof TextColorDirective, typeof BorderDirective, typeof GapDirective, typeof AccentColorDirective, typeof FillColorDirective, typeof FlexDirective, typeof ThemeColorDirective, typeof SwitchCasesDirective, typeof VisibleDirective], [typeof i3.CommonModule, typeof NovoOptionModule], [typeof NovoTemplate, typeof NovoText, typeof NovoTitle, typeof NovoCaption, typeof NovoLabel, typeof NovoLink, typeof MarginDirective, typeof PaddingDirective, typeof BackgroundColorDirective, typeof TextColorDirective, typeof BorderDirective, typeof GapDirective, typeof AccentColorDirective, typeof FillColorDirective, typeof FlexDirective, typeof ThemeColorDirective, typeof SwitchCasesDirective, typeof VisibleDirective]>;
|
|
581
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NovoCommonModule, [typeof NovoTemplate, typeof NovoText, typeof NovoTitle, typeof NovoCaption, typeof NovoLabel, typeof NovoLink, typeof MarginDirective, typeof PaddingDirective, typeof BackgroundColorDirective, typeof TextColorDirective, typeof BorderDirective, typeof GapDirective, typeof AccentColorDirective, typeof FillColorDirective, typeof FlexDirective, typeof ThemeColorDirective, typeof SwitchCasesDirective, typeof VisibleDirective, typeof If2026ThemePipe], [typeof i3.CommonModule, typeof NovoOptionModule], [typeof NovoTemplate, typeof NovoText, typeof NovoTitle, typeof NovoCaption, typeof NovoLabel, typeof NovoLink, typeof MarginDirective, typeof PaddingDirective, typeof BackgroundColorDirective, typeof TextColorDirective, typeof BorderDirective, typeof GapDirective, typeof AccentColorDirective, typeof FillColorDirective, typeof FlexDirective, typeof ThemeColorDirective, typeof SwitchCasesDirective, typeof VisibleDirective, typeof If2026ThemePipe]>;
|
|
572
582
|
static ɵinj: i0.ɵɵInjectorDeclaration<NovoCommonModule>;
|
|
573
583
|
}
|
|
574
584
|
|
|
@@ -749,5 +759,5 @@ type HasTabIndexCtor = Constructor<HasTabIndex>;
|
|
|
749
759
|
/** Mixin to augment a directive with a `tabIndex` property. */
|
|
750
760
|
declare function mixinTabIndex<T extends AbstractConstructor<CanDisable>>(base: T, defaultTabIndex?: number): HasTabIndexCtor & T;
|
|
751
761
|
|
|
752
|
-
export { AccentColorDirective, BackgroundColorDirective, BorderDirective, DEFAULT_THEME, ErrorStateMatcher, FillColorDirective, FlexDirective, GapDirective, MarginDirective, NOVO_OPTGROUP, NOVO_OPTION_PARENT_COMPONENT, NOVO_OVERLAY_CONTAINER, NovoBaseTextElement, NovoCaption, NovoCommonModule, NovoLabel, NovoLink, NovoOptgroup, NovoOptgroupBase, NovoOptgroupMixinBase, NovoOption, NovoOptionBase, NovoOptionModule, NovoOptionSelectionChange, NovoOverlayModule, NovoOverlayTemplateComponent, NovoPseudoCheckbox, NovoPseudoCheckboxModule, NovoTemplate, NovoText, NovoTheme, NovoThemeOptions, NovoTitle, PaddingDirective, ShowOnDirtyErrorStateMatcher, SwitchCasesDirective, TextColorDirective, ThemeColorDirective, VisibleDirective, _countGroupLabelsBeforeOption, _getOptionScrollPosition, getSpacingToken, mixinColor, mixinDisabled, mixinErrorState, mixinOverlay, mixinRequired, mixinSize, mixinTabIndex, normalizeThemeName };
|
|
762
|
+
export { AccentColorDirective, BackgroundColorDirective, BorderDirective, DEFAULT_THEME, ErrorStateMatcher, FillColorDirective, FlexDirective, GapDirective, If2026ThemePipe, MarginDirective, NOVO_OPTGROUP, NOVO_OPTION_PARENT_COMPONENT, NOVO_OVERLAY_CONTAINER, NovoBaseTextElement, NovoCaption, NovoCommonModule, NovoLabel, NovoLink, NovoOptgroup, NovoOptgroupBase, NovoOptgroupMixinBase, NovoOption, NovoOptionBase, NovoOptionModule, NovoOptionSelectionChange, NovoOverlayModule, NovoOverlayTemplateComponent, NovoPseudoCheckbox, NovoPseudoCheckboxModule, NovoTemplate, NovoText, NovoTheme, NovoThemeOptions, NovoTitle, PaddingDirective, ShowOnDirtyErrorStateMatcher, SwitchCasesDirective, TextColorDirective, ThemeColorDirective, VisibleDirective, _countGroupLabelsBeforeOption, _getOptionScrollPosition, getSpacingToken, mixinColor, mixinDisabled, mixinErrorState, mixinOverlay, mixinRequired, mixinSize, mixinTabIndex, normalizeThemeName };
|
|
753
763
|
export type { AbstractConstructor, CanColor, CanColorCtor, CanDisable, CanDisableCtor, CanRequire, CanRequireCtor, CanSize, CanSizeCtor, CanUpdateErrorState, CanUpdateErrorStateCtor, Constructor, ElementSize, HasElementRef, HasErrorState, HasOverlay, HasOverlayCtor, HasTabIndex, HasTabIndexCtor, NovoOptionParentComponent, NovoPseudoCheckboxShape, NovoPseudoCheckboxState, ThemeChangeEvent, ThemeName, ThemePalette, TypographyLength, TypographySize, TypographyWeight };
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
@import "../../styles/variables.scss";
|
|
2
2
|
|
|
3
3
|
@include theme-colors() using ($name, $color, $contrast, $tint, $shade, $pale) {
|
|
4
|
-
:
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
// Wonky deprecation: For 2026, stringently avoid using * selectors to apply font/color changes - prefer inherit functionality
|
|
5
|
+
// This setup made it very hard to provide overrides.
|
|
6
|
+
:host-context([theme="#{$name}"]):host-context(:root:not([data-theme='bh2026'])) {
|
|
7
|
+
&.novo-item-content > ::ng-deep *:not(.xxxx) {
|
|
8
|
+
color: rgba(#fff, 0.65);
|
|
7
9
|
}
|
|
8
10
|
}
|
|
11
|
+
:host-context([theme="#{$name}"]):host-context(:root[data-theme='bh2026']).novo-item-content {
|
|
12
|
+
color: rgba(#fff, 0.65);
|
|
13
|
+
}
|
|
9
14
|
}
|
|
10
15
|
|
|
11
16
|
:host-context(.novo-list.avatar) {
|
|
@@ -15,7 +20,11 @@
|
|
|
15
20
|
:host {
|
|
16
21
|
display: flex;
|
|
17
22
|
margin-left: 0.2em;
|
|
18
|
-
|
|
23
|
+
|
|
24
|
+
:root:not([data-theme='bh2026']) &.novo-item-content > ::ng-deep *:not(.yyy) {
|
|
25
|
+
color: rgba(#434343, 0.85);
|
|
26
|
+
}
|
|
27
|
+
:root[data-theme='bh2026'] &.novo-item-content {
|
|
19
28
|
color: rgba(#434343, 0.85);
|
|
20
29
|
}
|
|
21
30
|
&.novo-item-content ::ng-deep i {
|
|
@@ -12,6 +12,8 @@ import * as i5 from 'novo-elements/elements/loading';
|
|
|
12
12
|
import { NovoLoadingModule } from 'novo-elements/elements/loading';
|
|
13
13
|
import * as i6 from 'novo-elements/elements/tooltip';
|
|
14
14
|
import { NovoTooltipModule } from 'novo-elements/elements/tooltip';
|
|
15
|
+
import * as i7 from 'novo-elements/elements/common';
|
|
16
|
+
import { NovoCommonModule } from 'novo-elements/elements/common';
|
|
15
17
|
|
|
16
18
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
17
19
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -42,7 +44,7 @@ class CardContentElement {
|
|
|
42
44
|
this.condensed = false;
|
|
43
45
|
}
|
|
44
46
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: CardContentElement, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
45
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: CardContentElement, isStandalone: false, selector: "novo-card-content, [novo-card-content], [novoCardContent]", inputs: { condensed: "condensed" }, host: { properties: { "class.condensed": "condensed" }, classAttribute: "novo-card-content" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host{display:block}:host:not(.condensed){padding:var(--spacing-md)}\n"] }); }
|
|
47
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: CardContentElement, isStandalone: false, selector: "novo-card-content, [novo-card-content], [novoCardContent]", inputs: { condensed: "condensed" }, host: { properties: { "class.condensed": "condensed" }, classAttribute: "novo-card-content" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host{display:block}:host:not(.condensed){padding:var(--spacing-md)}:root[data-theme=bh2026] :host:not(.condensed){padding-inline:var(--spacing-gutter)}\n"] }); }
|
|
46
48
|
}
|
|
47
49
|
__decorate([
|
|
48
50
|
BooleanInput(),
|
|
@@ -50,7 +52,7 @@ __decorate([
|
|
|
50
52
|
], CardContentElement.prototype, "condensed", void 0);
|
|
51
53
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: CardContentElement, decorators: [{
|
|
52
54
|
type: Component,
|
|
53
|
-
args: [{ selector: 'novo-card-content, [novo-card-content], [novoCardContent]', host: { class: 'novo-card-content', '[class.condensed]': 'condensed' }, template: '<ng-content></ng-content>', standalone: false, styles: [":host{display:block}:host:not(.condensed){padding:var(--spacing-md)}\n"] }]
|
|
55
|
+
args: [{ selector: 'novo-card-content, [novo-card-content], [novoCardContent]', host: { class: 'novo-card-content', '[class.condensed]': 'condensed' }, template: '<ng-content></ng-content>', standalone: false, styles: [":host{display:block}:host:not(.condensed){padding:var(--spacing-md)}:root[data-theme=bh2026] :host:not(.condensed){padding-inline:var(--spacing-gutter)}\n"] }]
|
|
54
56
|
}], propDecorators: { condensed: [{
|
|
55
57
|
type: Input
|
|
56
58
|
}] } });
|
|
@@ -68,7 +70,7 @@ class CardHeaderElement {
|
|
|
68
70
|
<div class="novo-card-header-actions">
|
|
69
71
|
<ng-content select="novo-action"></ng-content>
|
|
70
72
|
</div>
|
|
71
|
-
`, isInline: true, styles: [":host{padding:var(--spacing-md) var(--spacing-md) 0 var(--spacing-md);display:flex;flex-direction:row;align-items:center;gap:var(--spacing-md)}:host[color=border-default]{background:#dbdbdb}:host[color=black]{color:var(--color-contrast-black);background:#000}:host[color=white]{color:var(--color-contrast-white);background:#fff}:host[color=gray]{color:var(--color-contrast-gray);background:#9e9e9e}:host[color=grey]{color:var(--color-contrast-grey);background:#9e9e9e}:host[color=offWhite]{color:var(--color-contrast-off-white);background:#f7f7f7}:host[color=bright]{color:var(--color-contrast-bright);background:#f7f7f7}:host[color=light]{color:var(--color-contrast-light);background:#dbdbdb}:host[color=neutral]{color:var(--color-contrast-neutral);background:#4f5361}:host[color=dark]{color:var(--color-contrast-dark);background:#3d464d}:host[color=orange]{color:var(--color-contrast-orange);background:#ff6900}:host[color=navigation]{color:var(--color-contrast-navigation);background:#202945}:host[color=skyBlue]{color:var(--color-contrast-sky-blue);background:#009bdf}:host[color=steel]{color:var(--color-contrast-steel);background:#5b6770}:host[color=metal]{color:var(--color-contrast-metal);background:#637893}:host[color=sand]{color:var(--color-contrast-sand);background:#f4f4f4}:host[color=silver]{color:var(--color-contrast-silver);background:#e2e2e2}:host[color=stone]{color:var(--color-contrast-stone);background:#bebebe}:host[color=ash]{color:var(--color-contrast-ash);background:#a0a0a0}:host[color=anonymous]{color:var(--color-contrast-anonymous);background:#696d79}:host[color=slate]{color:var(--color-contrast-slate);background:#707070}:host[color=onyx]{color:var(--color-contrast-onyx);background:#526980}:host[color=charcoal]{color:var(--color-contrast-charcoal);background:#282828}:host[color=moonlight]{color:var(--color-contrast-moonlight);background:#1a242f}:host[color=midnight]{color:var(--color-contrast-midnight);background:#202945}:host[color=darkness]{color:var(--color-contrast-darkness);background:#161f27}:host[color=navy]{color:var(--color-contrast-navy);background:#0d2d42}:host[color=aqua]{color:var(--color-contrast-aqua);background:#3bafda}:host[color=ocean]{color:var(--color-contrast-ocean);background:#4a89dc}:host[color=mint]{color:var(--color-contrast-mint);background:#37bc9b}:host[color=grass]{color:var(--color-contrast-grass);background:#8cc152}:host[color=sunflower]{color:var(--color-contrast-sunflower);background:#f6b042}:host[color=bittersweet]{color:var(--color-contrast-bittersweet);background:#eb6845}:host[color=grapefruit]{color:var(--color-contrast-grapefruit);background:#da4453}:host[color=carnation]{color:var(--color-contrast-carnation);background:#d770ad}:host[color=lavender]{color:var(--color-contrast-lavender);background:#967adc}:host[color=mountain]{color:var(--color-contrast-mountain);background:#9678b6}:host[color=info]{color:var(--color-contrast-info);background:#4a89dc}:host[color=positive]{color:var(--color-contrast-positive);background:#4a89dc}:host[color=success]{color:var(--color-contrast-success);background:#8cc152}:host[color=negative]{color:var(--color-contrast-negative);background:#da4453}:host[color=danger]{color:var(--color-contrast-danger);background:#da4453}:host[color=error]{color:var(--color-contrast-error);background:#da4453}:host[color=warning]{color:var(--color-contrast-warning);background:#f6b042}:host[color=empty]{color:var(--color-contrast-empty);background:#cccdcc}:host[color=disabled]{color:var(--color-contrast-disabled);background:#bebebe}:host[color=background]{color:var(--color-contrast-background);background:#f7f7f7}:host[color=backgroundDark]{color:var(--color-contrast-background-dark);background:#e2e2e2}:host[color=border]{color:var(--color-contrast-border);background:#dbdbdb}:host[color=border2]{color:var(--color-contrast-border2);background:#f7f7f7}:host[color=text]{color:var(--color-contrast-text);background:#282828}:host[color=presentation]{color:var(--color-contrast-presentation);background:#5b6770}:host[color=bullhorn]{color:var(--color-contrast-bullhorn);background:#ff6900}:host[color=pulse]{color:var(--color-contrast-pulse);background:#3bafda}:host[color=fastFind]{color:var(--color-contrast-fast-find);background:#0d2d42}:host[color=toast]{color:var(--color-contrast-toast);background:#0d2d42}:host[color=company]{color:var(--color-contrast-company);background:#39d}:host[color=candidate]{color:var(--color-contrast-candidate);background:#4b7}:host[color=lead]{color:var(--color-contrast-lead);background:#a69}:host[color=contact]{color:var(--color-contrast-contact);background:#fa4}:host[color=clientcontact]{color:var(--color-contrast-clientcontact);background:#fa4}:host[color=opportunity]{color:var(--color-contrast-opportunity);background:#625}:host[color=job]{color:var(--color-contrast-job);background:#b56}:host[color=joborder]{color:var(--color-contrast-joborder);background:#b56}:host[color=submission]{color:var(--color-contrast-submission);background:#a9adbb}:host[color=sendout]{color:var(--color-contrast-sendout);background:#747884}:host[color=placement]{color:var(--color-contrast-placement);background:#0b344f}:host[color=note]{color:var(--color-contrast-note);background:#747884}:host[color=contract]{color:var(--color-contrast-contract);background:#454ea0}:host[color=task]{color:var(--color-contrast-task);background:#4f5361}:host[color=jobCode]{color:var(--color-contrast-job-code);background:#696d79}:host[color=earnCode]{color:var(--color-contrast-earn-code);background:#696d79}:host[color=invoiceStatement]{color:var(--color-contrast-invoice-statement);background:#696d79}:host[color=billableCharge]{color:var(--color-contrast-billable-charge);background:#696d79}:host[color=payableCharge]{color:var(--color-contrast-payable-charge);background:#696d79}:host[color=user]{color:var(--color-contrast-user);background:#696d79}:host[color=corporateUser]{color:var(--color-contrast-corporate-user);background:#696d79}:host[color=distributionList]{color:var(--color-contrast-distribution-list);background:#696d79}:host[color=credential]{color:var(--color-contrast-credential);background:#696d79}:host[color=person]{color:var(--color-contrast-person);background:#696d79}:host .novo-card-header-text{flex:1 1 0px}\n"] }); }
|
|
73
|
+
`, isInline: true, styles: [":host{padding:var(--spacing-md) var(--spacing-md) 0 var(--spacing-md);display:flex;flex-direction:row;align-items:center;gap:var(--spacing-md)}:host[color=border-default]{background:#dbdbdb}:host[color=black]{color:var(--color-contrast-black);background:#000}:host[color=white]{color:var(--color-contrast-white);background:#fff}:host[color=gray]{color:var(--color-contrast-gray);background:#9e9e9e}:host[color=grey]{color:var(--color-contrast-grey);background:#9e9e9e}:host[color=offWhite]{color:var(--color-contrast-off-white);background:#f7f7f7}:host[color=bright]{color:var(--color-contrast-bright);background:#f7f7f7}:host[color=light]{color:var(--color-contrast-light);background:#dbdbdb}:host[color=neutral]{color:var(--color-contrast-neutral);background:#4f5361}:host[color=dark]{color:var(--color-contrast-dark);background:#3d464d}:host[color=orange]{color:var(--color-contrast-orange);background:#ff6900}:host[color=navigation]{color:var(--color-contrast-navigation);background:#202945}:host[color=skyBlue]{color:var(--color-contrast-sky-blue);background:#009bdf}:host[color=steel]{color:var(--color-contrast-steel);background:#5b6770}:host[color=metal]{color:var(--color-contrast-metal);background:#637893}:host[color=sand]{color:var(--color-contrast-sand);background:#f4f4f4}:host[color=silver]{color:var(--color-contrast-silver);background:#e2e2e2}:host[color=stone]{color:var(--color-contrast-stone);background:#bebebe}:host[color=ash]{color:var(--color-contrast-ash);background:#a0a0a0}:host[color=anonymous]{color:var(--color-contrast-anonymous);background:#696d79}:host[color=slate]{color:var(--color-contrast-slate);background:#707070}:host[color=onyx]{color:var(--color-contrast-onyx);background:#526980}:host[color=charcoal]{color:var(--color-contrast-charcoal);background:#282828}:host[color=moonlight]{color:var(--color-contrast-moonlight);background:#1a242f}:host[color=midnight]{color:var(--color-contrast-midnight);background:#202945}:host[color=darkness]{color:var(--color-contrast-darkness);background:#161f27}:host[color=navy]{color:var(--color-contrast-navy);background:#0d2d42}:host[color=aqua]{color:var(--color-contrast-aqua);background:#3bafda}:host[color=ocean]{color:var(--color-contrast-ocean);background:#4a89dc}:host[color=mint]{color:var(--color-contrast-mint);background:#37bc9b}:host[color=grass]{color:var(--color-contrast-grass);background:#8cc152}:host[color=sunflower]{color:var(--color-contrast-sunflower);background:#f6b042}:host[color=bittersweet]{color:var(--color-contrast-bittersweet);background:#eb6845}:host[color=grapefruit]{color:var(--color-contrast-grapefruit);background:#da4453}:host[color=carnation]{color:var(--color-contrast-carnation);background:#d770ad}:host[color=lavender]{color:var(--color-contrast-lavender);background:#967adc}:host[color=mountain]{color:var(--color-contrast-mountain);background:#9678b6}:host[color=info]{color:var(--color-contrast-info);background:#4a89dc}:host[color=positive]{color:var(--color-contrast-positive);background:#4a89dc}:host[color=success]{color:var(--color-contrast-success);background:#8cc152}:host[color=negative]{color:var(--color-contrast-negative);background:#da4453}:host[color=danger]{color:var(--color-contrast-danger);background:#da4453}:host[color=error]{color:var(--color-contrast-error);background:#da4453}:host[color=warning]{color:var(--color-contrast-warning);background:#f6b042}:host[color=empty]{color:var(--color-contrast-empty);background:#cccdcc}:host[color=disabled]{color:var(--color-contrast-disabled);background:#bebebe}:host[color=background]{color:var(--color-contrast-background);background:#f7f7f7}:host[color=backgroundDark]{color:var(--color-contrast-background-dark);background:#e2e2e2}:host[color=border]{color:var(--color-contrast-border);background:#dbdbdb}:host[color=border2]{color:var(--color-contrast-border2);background:#f7f7f7}:host[color=text]{color:var(--color-contrast-text);background:#282828}:host[color=presentation]{color:var(--color-contrast-presentation);background:#5b6770}:host[color=bullhorn]{color:var(--color-contrast-bullhorn);background:#ff6900}:host[color=pulse]{color:var(--color-contrast-pulse);background:#3bafda}:host[color=fastFind]{color:var(--color-contrast-fast-find);background:#0d2d42}:host[color=toast]{color:var(--color-contrast-toast);background:#0d2d42}:host[color=company]{color:var(--color-contrast-company);background:#39d}:host[color=candidate]{color:var(--color-contrast-candidate);background:#4b7}:host[color=lead]{color:var(--color-contrast-lead);background:#a69}:host[color=contact]{color:var(--color-contrast-contact);background:#fa4}:host[color=clientcontact]{color:var(--color-contrast-clientcontact);background:#fa4}:host[color=opportunity]{color:var(--color-contrast-opportunity);background:#625}:host[color=job]{color:var(--color-contrast-job);background:#b56}:host[color=joborder]{color:var(--color-contrast-joborder);background:#b56}:host[color=submission]{color:var(--color-contrast-submission);background:#a9adbb}:host[color=sendout]{color:var(--color-contrast-sendout);background:#747884}:host[color=placement]{color:var(--color-contrast-placement);background:#0b344f}:host[color=note]{color:var(--color-contrast-note);background:#747884}:host[color=contract]{color:var(--color-contrast-contract);background:#454ea0}:host[color=task]{color:var(--color-contrast-task);background:#4f5361}:host[color=jobCode]{color:var(--color-contrast-job-code);background:#696d79}:host[color=earnCode]{color:var(--color-contrast-earn-code);background:#696d79}:host[color=invoiceStatement]{color:var(--color-contrast-invoice-statement);background:#696d79}:host[color=billableCharge]{color:var(--color-contrast-billable-charge);background:#696d79}:host[color=payableCharge]{color:var(--color-contrast-payable-charge);background:#696d79}:host[color=user]{color:var(--color-contrast-user);background:#696d79}:host[color=corporateUser]{color:var(--color-contrast-corporate-user);background:#696d79}:host[color=distributionList]{color:var(--color-contrast-distribution-list);background:#696d79}:host[color=credential]{color:var(--color-contrast-credential);background:#696d79}:host[color=person]{color:var(--color-contrast-person);background:#696d79}:root[data-theme=bh2026] :host{padding:var(--spacing-padding-md) var(--spacing-padding-md) 0 var(--spacing-gutter);gap:0}:root[data-theme=bh2026] :host .card-move-handle{transition:color .3s ease-in-out}:root[data-theme=bh2026] :host:not(:hover) .card-move-handle{color:transparent}:root[data-theme=bh2026] :host .novo-card-header-text{font-size:var(--typography-card-header-font-size, 1.8rem);font-weight:var(--typography-card-header-font-weight, 500)}:root[data-theme=bh2026] :host .novo-card-header-text ::ng-deep novo-title{font:inherit}:host .novo-card-header-text{flex:1 1 0px}:root[data-theme=bh2026] :host .novo-card-header-text{padding-inline-start:var(--spacing-padding-sm)}\n"] }); }
|
|
72
74
|
}
|
|
73
75
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: CardHeaderElement, decorators: [{
|
|
74
76
|
type: Component,
|
|
@@ -81,7 +83,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
81
83
|
<div class="novo-card-header-actions">
|
|
82
84
|
<ng-content select="novo-action"></ng-content>
|
|
83
85
|
</div>
|
|
84
|
-
`, standalone: false, styles: [":host{padding:var(--spacing-md) var(--spacing-md) 0 var(--spacing-md);display:flex;flex-direction:row;align-items:center;gap:var(--spacing-md)}:host[color=border-default]{background:#dbdbdb}:host[color=black]{color:var(--color-contrast-black);background:#000}:host[color=white]{color:var(--color-contrast-white);background:#fff}:host[color=gray]{color:var(--color-contrast-gray);background:#9e9e9e}:host[color=grey]{color:var(--color-contrast-grey);background:#9e9e9e}:host[color=offWhite]{color:var(--color-contrast-off-white);background:#f7f7f7}:host[color=bright]{color:var(--color-contrast-bright);background:#f7f7f7}:host[color=light]{color:var(--color-contrast-light);background:#dbdbdb}:host[color=neutral]{color:var(--color-contrast-neutral);background:#4f5361}:host[color=dark]{color:var(--color-contrast-dark);background:#3d464d}:host[color=orange]{color:var(--color-contrast-orange);background:#ff6900}:host[color=navigation]{color:var(--color-contrast-navigation);background:#202945}:host[color=skyBlue]{color:var(--color-contrast-sky-blue);background:#009bdf}:host[color=steel]{color:var(--color-contrast-steel);background:#5b6770}:host[color=metal]{color:var(--color-contrast-metal);background:#637893}:host[color=sand]{color:var(--color-contrast-sand);background:#f4f4f4}:host[color=silver]{color:var(--color-contrast-silver);background:#e2e2e2}:host[color=stone]{color:var(--color-contrast-stone);background:#bebebe}:host[color=ash]{color:var(--color-contrast-ash);background:#a0a0a0}:host[color=anonymous]{color:var(--color-contrast-anonymous);background:#696d79}:host[color=slate]{color:var(--color-contrast-slate);background:#707070}:host[color=onyx]{color:var(--color-contrast-onyx);background:#526980}:host[color=charcoal]{color:var(--color-contrast-charcoal);background:#282828}:host[color=moonlight]{color:var(--color-contrast-moonlight);background:#1a242f}:host[color=midnight]{color:var(--color-contrast-midnight);background:#202945}:host[color=darkness]{color:var(--color-contrast-darkness);background:#161f27}:host[color=navy]{color:var(--color-contrast-navy);background:#0d2d42}:host[color=aqua]{color:var(--color-contrast-aqua);background:#3bafda}:host[color=ocean]{color:var(--color-contrast-ocean);background:#4a89dc}:host[color=mint]{color:var(--color-contrast-mint);background:#37bc9b}:host[color=grass]{color:var(--color-contrast-grass);background:#8cc152}:host[color=sunflower]{color:var(--color-contrast-sunflower);background:#f6b042}:host[color=bittersweet]{color:var(--color-contrast-bittersweet);background:#eb6845}:host[color=grapefruit]{color:var(--color-contrast-grapefruit);background:#da4453}:host[color=carnation]{color:var(--color-contrast-carnation);background:#d770ad}:host[color=lavender]{color:var(--color-contrast-lavender);background:#967adc}:host[color=mountain]{color:var(--color-contrast-mountain);background:#9678b6}:host[color=info]{color:var(--color-contrast-info);background:#4a89dc}:host[color=positive]{color:var(--color-contrast-positive);background:#4a89dc}:host[color=success]{color:var(--color-contrast-success);background:#8cc152}:host[color=negative]{color:var(--color-contrast-negative);background:#da4453}:host[color=danger]{color:var(--color-contrast-danger);background:#da4453}:host[color=error]{color:var(--color-contrast-error);background:#da4453}:host[color=warning]{color:var(--color-contrast-warning);background:#f6b042}:host[color=empty]{color:var(--color-contrast-empty);background:#cccdcc}:host[color=disabled]{color:var(--color-contrast-disabled);background:#bebebe}:host[color=background]{color:var(--color-contrast-background);background:#f7f7f7}:host[color=backgroundDark]{color:var(--color-contrast-background-dark);background:#e2e2e2}:host[color=border]{color:var(--color-contrast-border);background:#dbdbdb}:host[color=border2]{color:var(--color-contrast-border2);background:#f7f7f7}:host[color=text]{color:var(--color-contrast-text);background:#282828}:host[color=presentation]{color:var(--color-contrast-presentation);background:#5b6770}:host[color=bullhorn]{color:var(--color-contrast-bullhorn);background:#ff6900}:host[color=pulse]{color:var(--color-contrast-pulse);background:#3bafda}:host[color=fastFind]{color:var(--color-contrast-fast-find);background:#0d2d42}:host[color=toast]{color:var(--color-contrast-toast);background:#0d2d42}:host[color=company]{color:var(--color-contrast-company);background:#39d}:host[color=candidate]{color:var(--color-contrast-candidate);background:#4b7}:host[color=lead]{color:var(--color-contrast-lead);background:#a69}:host[color=contact]{color:var(--color-contrast-contact);background:#fa4}:host[color=clientcontact]{color:var(--color-contrast-clientcontact);background:#fa4}:host[color=opportunity]{color:var(--color-contrast-opportunity);background:#625}:host[color=job]{color:var(--color-contrast-job);background:#b56}:host[color=joborder]{color:var(--color-contrast-joborder);background:#b56}:host[color=submission]{color:var(--color-contrast-submission);background:#a9adbb}:host[color=sendout]{color:var(--color-contrast-sendout);background:#747884}:host[color=placement]{color:var(--color-contrast-placement);background:#0b344f}:host[color=note]{color:var(--color-contrast-note);background:#747884}:host[color=contract]{color:var(--color-contrast-contract);background:#454ea0}:host[color=task]{color:var(--color-contrast-task);background:#4f5361}:host[color=jobCode]{color:var(--color-contrast-job-code);background:#696d79}:host[color=earnCode]{color:var(--color-contrast-earn-code);background:#696d79}:host[color=invoiceStatement]{color:var(--color-contrast-invoice-statement);background:#696d79}:host[color=billableCharge]{color:var(--color-contrast-billable-charge);background:#696d79}:host[color=payableCharge]{color:var(--color-contrast-payable-charge);background:#696d79}:host[color=user]{color:var(--color-contrast-user);background:#696d79}:host[color=corporateUser]{color:var(--color-contrast-corporate-user);background:#696d79}:host[color=distributionList]{color:var(--color-contrast-distribution-list);background:#696d79}:host[color=credential]{color:var(--color-contrast-credential);background:#696d79}:host[color=person]{color:var(--color-contrast-person);background:#696d79}:host .novo-card-header-text{flex:1 1 0px}\n"] }]
|
|
86
|
+
`, standalone: false, styles: [":host{padding:var(--spacing-md) var(--spacing-md) 0 var(--spacing-md);display:flex;flex-direction:row;align-items:center;gap:var(--spacing-md)}:host[color=border-default]{background:#dbdbdb}:host[color=black]{color:var(--color-contrast-black);background:#000}:host[color=white]{color:var(--color-contrast-white);background:#fff}:host[color=gray]{color:var(--color-contrast-gray);background:#9e9e9e}:host[color=grey]{color:var(--color-contrast-grey);background:#9e9e9e}:host[color=offWhite]{color:var(--color-contrast-off-white);background:#f7f7f7}:host[color=bright]{color:var(--color-contrast-bright);background:#f7f7f7}:host[color=light]{color:var(--color-contrast-light);background:#dbdbdb}:host[color=neutral]{color:var(--color-contrast-neutral);background:#4f5361}:host[color=dark]{color:var(--color-contrast-dark);background:#3d464d}:host[color=orange]{color:var(--color-contrast-orange);background:#ff6900}:host[color=navigation]{color:var(--color-contrast-navigation);background:#202945}:host[color=skyBlue]{color:var(--color-contrast-sky-blue);background:#009bdf}:host[color=steel]{color:var(--color-contrast-steel);background:#5b6770}:host[color=metal]{color:var(--color-contrast-metal);background:#637893}:host[color=sand]{color:var(--color-contrast-sand);background:#f4f4f4}:host[color=silver]{color:var(--color-contrast-silver);background:#e2e2e2}:host[color=stone]{color:var(--color-contrast-stone);background:#bebebe}:host[color=ash]{color:var(--color-contrast-ash);background:#a0a0a0}:host[color=anonymous]{color:var(--color-contrast-anonymous);background:#696d79}:host[color=slate]{color:var(--color-contrast-slate);background:#707070}:host[color=onyx]{color:var(--color-contrast-onyx);background:#526980}:host[color=charcoal]{color:var(--color-contrast-charcoal);background:#282828}:host[color=moonlight]{color:var(--color-contrast-moonlight);background:#1a242f}:host[color=midnight]{color:var(--color-contrast-midnight);background:#202945}:host[color=darkness]{color:var(--color-contrast-darkness);background:#161f27}:host[color=navy]{color:var(--color-contrast-navy);background:#0d2d42}:host[color=aqua]{color:var(--color-contrast-aqua);background:#3bafda}:host[color=ocean]{color:var(--color-contrast-ocean);background:#4a89dc}:host[color=mint]{color:var(--color-contrast-mint);background:#37bc9b}:host[color=grass]{color:var(--color-contrast-grass);background:#8cc152}:host[color=sunflower]{color:var(--color-contrast-sunflower);background:#f6b042}:host[color=bittersweet]{color:var(--color-contrast-bittersweet);background:#eb6845}:host[color=grapefruit]{color:var(--color-contrast-grapefruit);background:#da4453}:host[color=carnation]{color:var(--color-contrast-carnation);background:#d770ad}:host[color=lavender]{color:var(--color-contrast-lavender);background:#967adc}:host[color=mountain]{color:var(--color-contrast-mountain);background:#9678b6}:host[color=info]{color:var(--color-contrast-info);background:#4a89dc}:host[color=positive]{color:var(--color-contrast-positive);background:#4a89dc}:host[color=success]{color:var(--color-contrast-success);background:#8cc152}:host[color=negative]{color:var(--color-contrast-negative);background:#da4453}:host[color=danger]{color:var(--color-contrast-danger);background:#da4453}:host[color=error]{color:var(--color-contrast-error);background:#da4453}:host[color=warning]{color:var(--color-contrast-warning);background:#f6b042}:host[color=empty]{color:var(--color-contrast-empty);background:#cccdcc}:host[color=disabled]{color:var(--color-contrast-disabled);background:#bebebe}:host[color=background]{color:var(--color-contrast-background);background:#f7f7f7}:host[color=backgroundDark]{color:var(--color-contrast-background-dark);background:#e2e2e2}:host[color=border]{color:var(--color-contrast-border);background:#dbdbdb}:host[color=border2]{color:var(--color-contrast-border2);background:#f7f7f7}:host[color=text]{color:var(--color-contrast-text);background:#282828}:host[color=presentation]{color:var(--color-contrast-presentation);background:#5b6770}:host[color=bullhorn]{color:var(--color-contrast-bullhorn);background:#ff6900}:host[color=pulse]{color:var(--color-contrast-pulse);background:#3bafda}:host[color=fastFind]{color:var(--color-contrast-fast-find);background:#0d2d42}:host[color=toast]{color:var(--color-contrast-toast);background:#0d2d42}:host[color=company]{color:var(--color-contrast-company);background:#39d}:host[color=candidate]{color:var(--color-contrast-candidate);background:#4b7}:host[color=lead]{color:var(--color-contrast-lead);background:#a69}:host[color=contact]{color:var(--color-contrast-contact);background:#fa4}:host[color=clientcontact]{color:var(--color-contrast-clientcontact);background:#fa4}:host[color=opportunity]{color:var(--color-contrast-opportunity);background:#625}:host[color=job]{color:var(--color-contrast-job);background:#b56}:host[color=joborder]{color:var(--color-contrast-joborder);background:#b56}:host[color=submission]{color:var(--color-contrast-submission);background:#a9adbb}:host[color=sendout]{color:var(--color-contrast-sendout);background:#747884}:host[color=placement]{color:var(--color-contrast-placement);background:#0b344f}:host[color=note]{color:var(--color-contrast-note);background:#747884}:host[color=contract]{color:var(--color-contrast-contract);background:#454ea0}:host[color=task]{color:var(--color-contrast-task);background:#4f5361}:host[color=jobCode]{color:var(--color-contrast-job-code);background:#696d79}:host[color=earnCode]{color:var(--color-contrast-earn-code);background:#696d79}:host[color=invoiceStatement]{color:var(--color-contrast-invoice-statement);background:#696d79}:host[color=billableCharge]{color:var(--color-contrast-billable-charge);background:#696d79}:host[color=payableCharge]{color:var(--color-contrast-payable-charge);background:#696d79}:host[color=user]{color:var(--color-contrast-user);background:#696d79}:host[color=corporateUser]{color:var(--color-contrast-corporate-user);background:#696d79}:host[color=distributionList]{color:var(--color-contrast-distribution-list);background:#696d79}:host[color=credential]{color:var(--color-contrast-credential);background:#696d79}:host[color=person]{color:var(--color-contrast-person);background:#696d79}:root[data-theme=bh2026] :host{padding:var(--spacing-padding-md) var(--spacing-padding-md) 0 var(--spacing-gutter);gap:0}:root[data-theme=bh2026] :host .card-move-handle{transition:color .3s ease-in-out}:root[data-theme=bh2026] :host:not(:hover) .card-move-handle{color:transparent}:root[data-theme=bh2026] :host .novo-card-header-text{font-size:var(--typography-card-header-font-size, 1.8rem);font-weight:var(--typography-card-header-font-weight, 500)}:root[data-theme=bh2026] :host .novo-card-header-text ::ng-deep novo-title{font:inherit}:host .novo-card-header-text{flex:1 1 0px}:root[data-theme=bh2026] :host .novo-card-header-text{padding-inline-start:var(--spacing-padding-sm)}\n"] }]
|
|
85
87
|
}] });
|
|
86
88
|
class CardFooterElement {
|
|
87
89
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: CardFooterElement, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -92,8 +94,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
92
94
|
args: [{ selector: 'novo-card-footer, [novo-card-footer], [novoCardFooter]', host: { class: 'novo-card-footer' }, template: '<ng-content></ng-content>', standalone: false, styles: [":host{padding:0 var(--spacing-md) var(--spacing-md) var(--spacing-md);display:flex;flex-direction:row;align-items:center;gap:var(--spacing-md)}:host[color=border-default]{background:#dbdbdb}:host[color=black]{color:var(--color-contrast-black);background:#000}:host[color=white]{color:var(--color-contrast-white);background:#fff}:host[color=gray]{color:var(--color-contrast-gray);background:#9e9e9e}:host[color=grey]{color:var(--color-contrast-grey);background:#9e9e9e}:host[color=offWhite]{color:var(--color-contrast-off-white);background:#f7f7f7}:host[color=bright]{color:var(--color-contrast-bright);background:#f7f7f7}:host[color=light]{color:var(--color-contrast-light);background:#dbdbdb}:host[color=neutral]{color:var(--color-contrast-neutral);background:#4f5361}:host[color=dark]{color:var(--color-contrast-dark);background:#3d464d}:host[color=orange]{color:var(--color-contrast-orange);background:#ff6900}:host[color=navigation]{color:var(--color-contrast-navigation);background:#202945}:host[color=skyBlue]{color:var(--color-contrast-sky-blue);background:#009bdf}:host[color=steel]{color:var(--color-contrast-steel);background:#5b6770}:host[color=metal]{color:var(--color-contrast-metal);background:#637893}:host[color=sand]{color:var(--color-contrast-sand);background:#f4f4f4}:host[color=silver]{color:var(--color-contrast-silver);background:#e2e2e2}:host[color=stone]{color:var(--color-contrast-stone);background:#bebebe}:host[color=ash]{color:var(--color-contrast-ash);background:#a0a0a0}:host[color=anonymous]{color:var(--color-contrast-anonymous);background:#696d79}:host[color=slate]{color:var(--color-contrast-slate);background:#707070}:host[color=onyx]{color:var(--color-contrast-onyx);background:#526980}:host[color=charcoal]{color:var(--color-contrast-charcoal);background:#282828}:host[color=moonlight]{color:var(--color-contrast-moonlight);background:#1a242f}:host[color=midnight]{color:var(--color-contrast-midnight);background:#202945}:host[color=darkness]{color:var(--color-contrast-darkness);background:#161f27}:host[color=navy]{color:var(--color-contrast-navy);background:#0d2d42}:host[color=aqua]{color:var(--color-contrast-aqua);background:#3bafda}:host[color=ocean]{color:var(--color-contrast-ocean);background:#4a89dc}:host[color=mint]{color:var(--color-contrast-mint);background:#37bc9b}:host[color=grass]{color:var(--color-contrast-grass);background:#8cc152}:host[color=sunflower]{color:var(--color-contrast-sunflower);background:#f6b042}:host[color=bittersweet]{color:var(--color-contrast-bittersweet);background:#eb6845}:host[color=grapefruit]{color:var(--color-contrast-grapefruit);background:#da4453}:host[color=carnation]{color:var(--color-contrast-carnation);background:#d770ad}:host[color=lavender]{color:var(--color-contrast-lavender);background:#967adc}:host[color=mountain]{color:var(--color-contrast-mountain);background:#9678b6}:host[color=info]{color:var(--color-contrast-info);background:#4a89dc}:host[color=positive]{color:var(--color-contrast-positive);background:#4a89dc}:host[color=success]{color:var(--color-contrast-success);background:#8cc152}:host[color=negative]{color:var(--color-contrast-negative);background:#da4453}:host[color=danger]{color:var(--color-contrast-danger);background:#da4453}:host[color=error]{color:var(--color-contrast-error);background:#da4453}:host[color=warning]{color:var(--color-contrast-warning);background:#f6b042}:host[color=empty]{color:var(--color-contrast-empty);background:#cccdcc}:host[color=disabled]{color:var(--color-contrast-disabled);background:#bebebe}:host[color=background]{color:var(--color-contrast-background);background:#f7f7f7}:host[color=backgroundDark]{color:var(--color-contrast-background-dark);background:#e2e2e2}:host[color=border]{color:var(--color-contrast-border);background:#dbdbdb}:host[color=border2]{color:var(--color-contrast-border2);background:#f7f7f7}:host[color=text]{color:var(--color-contrast-text);background:#282828}:host[color=presentation]{color:var(--color-contrast-presentation);background:#5b6770}:host[color=bullhorn]{color:var(--color-contrast-bullhorn);background:#ff6900}:host[color=pulse]{color:var(--color-contrast-pulse);background:#3bafda}:host[color=fastFind]{color:var(--color-contrast-fast-find);background:#0d2d42}:host[color=toast]{color:var(--color-contrast-toast);background:#0d2d42}:host[color=company]{color:var(--color-contrast-company);background:#39d}:host[color=candidate]{color:var(--color-contrast-candidate);background:#4b7}:host[color=lead]{color:var(--color-contrast-lead);background:#a69}:host[color=contact]{color:var(--color-contrast-contact);background:#fa4}:host[color=clientcontact]{color:var(--color-contrast-clientcontact);background:#fa4}:host[color=opportunity]{color:var(--color-contrast-opportunity);background:#625}:host[color=job]{color:var(--color-contrast-job);background:#b56}:host[color=joborder]{color:var(--color-contrast-joborder);background:#b56}:host[color=submission]{color:var(--color-contrast-submission);background:#a9adbb}:host[color=sendout]{color:var(--color-contrast-sendout);background:#747884}:host[color=placement]{color:var(--color-contrast-placement);background:#0b344f}:host[color=note]{color:var(--color-contrast-note);background:#747884}:host[color=contract]{color:var(--color-contrast-contract);background:#454ea0}:host[color=task]{color:var(--color-contrast-task);background:#4f5361}:host[color=jobCode]{color:var(--color-contrast-job-code);background:#696d79}:host[color=earnCode]{color:var(--color-contrast-earn-code);background:#696d79}:host[color=invoiceStatement]{color:var(--color-contrast-invoice-statement);background:#696d79}:host[color=billableCharge]{color:var(--color-contrast-billable-charge);background:#696d79}:host[color=payableCharge]{color:var(--color-contrast-payable-charge);background:#696d79}:host[color=user]{color:var(--color-contrast-user);background:#696d79}:host[color=corporateUser]{color:var(--color-contrast-corporate-user);background:#696d79}:host[color=distributionList]{color:var(--color-contrast-distribution-list);background:#696d79}:host[color=credential]{color:var(--color-contrast-credential);background:#696d79}:host[color=person]{color:var(--color-contrast-person);background:#696d79}\n"] }]
|
|
93
95
|
}] });
|
|
94
96
|
class CardElement {
|
|
95
|
-
get
|
|
96
|
-
return
|
|
97
|
+
get cardClass() {
|
|
98
|
+
return `${this.iconColorClass || ''} novo-card-inset-${this.inset}`;
|
|
97
99
|
}
|
|
98
100
|
constructor(labels) {
|
|
99
101
|
this.padding = true;
|
|
@@ -131,7 +133,7 @@ class CardElement {
|
|
|
131
133
|
}
|
|
132
134
|
}
|
|
133
135
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: CardElement, deps: [{ token: i1.NovoLabelService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
134
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: CardElement, isStandalone: false, selector: "novo-card", inputs: { padding: "padding", config: "config", title: "title", message: "message", messageIcon: "messageIcon", icon: "icon", iconTooltip: "iconTooltip", refresh: "refresh", close: "close", move: "move", loading: "loading", inline: "inline", inset: "inset" }, outputs: { onClose: "onClose", onRefresh: "onRefresh" }, host: { properties: { "attr.data-automation-id": "cardAutomationId", "class.loading": "loading || config.loading", "class.novo-card-inline": "this.inline", "class": "this.
|
|
136
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: CardElement, isStandalone: false, selector: "novo-card", inputs: { padding: "padding", config: "config", title: "title", message: "message", messageIcon: "messageIcon", icon: "icon", iconColorClass: "iconColorClass", iconTooltip: "iconTooltip", refresh: "refresh", close: "close", move: "move", loading: "loading", inline: "inline", inset: "inset" }, outputs: { onClose: "onClose", onRefresh: "onRefresh" }, host: { properties: { "attr.data-automation-id": "cardAutomationId", "class.loading": "loading || config.loading", "class.novo-card-inline": "this.inline", "class": "this.cardClass" }, classAttribute: "novo-card" }, usesOnChanges: true, ngImport: i0, template: `
|
|
135
137
|
<!--Loading-->
|
|
136
138
|
<div class="card-loading-container" *ngIf="loading || config.loading">
|
|
137
139
|
<novo-loading theme="line" [attr.data-automation-id]="cardAutomationId + '-loading'"></novo-loading>
|
|
@@ -144,13 +146,14 @@ class CardElement {
|
|
|
144
146
|
*ngIf="move || config.move"
|
|
145
147
|
tooltip="{{ labels.move }}"
|
|
146
148
|
tooltipPosition="bottom-right"
|
|
149
|
+
class="card-move-handle"
|
|
147
150
|
[attr.data-automation-id]="cardAutomationId + '-move'"
|
|
148
151
|
>move</novo-icon
|
|
149
152
|
>
|
|
150
153
|
<!--Card Title-->
|
|
151
154
|
<h3 [attr.data-automation-id]="cardAutomationId + '-title'">
|
|
152
|
-
<span [tooltip]="iconTooltip" tooltipPosition="right"><i *ngIf="icon" [ngClass]="iconClass"></i></span
|
|
153
|
-
{{ title || config.title }}
|
|
155
|
+
<span [tooltip]="iconTooltip" tooltipPosition="right"><i *ngIf="iconClass" class="card-flag-icon" [ngClass]="iconClass"></i></span><!--
|
|
156
|
+
--><span class="novo-card-header-text">{{ title || config.title }}</span>
|
|
154
157
|
</h3>
|
|
155
158
|
</div>
|
|
156
159
|
<!--Card Actions-->
|
|
@@ -158,7 +161,7 @@ class CardElement {
|
|
|
158
161
|
<ng-content select="novo-card-actions"></ng-content>
|
|
159
162
|
<novo-button
|
|
160
163
|
theme="icon"
|
|
161
|
-
icon="refresh"
|
|
164
|
+
[icon]="'refresh-o' | ifBh2026Theme : 'refresh'"
|
|
162
165
|
(click)="toggleRefresh()"
|
|
163
166
|
*ngIf="refresh || config.refresh"
|
|
164
167
|
[attr.data-automation-id]="cardAutomationId + '-refresh'"
|
|
@@ -168,7 +171,7 @@ class CardElement {
|
|
|
168
171
|
|
|
169
172
|
<novo-button
|
|
170
173
|
theme="icon"
|
|
171
|
-
icon="close-o"
|
|
174
|
+
[icon]="'x' | ifBh2026Theme : 'close-o'"
|
|
172
175
|
(click)="toggleClose()"
|
|
173
176
|
*ngIf="close || config.close"
|
|
174
177
|
[attr.data-automation-id]="cardAutomationId + '-close'"
|
|
@@ -192,7 +195,7 @@ class CardElement {
|
|
|
192
195
|
*ngIf="!(loading || config.loading) && !(message || config.message)"
|
|
193
196
|
select="footer,novo-card-footer,[novo-card-footer],[novoCardFooter]"
|
|
194
197
|
></ng-content>
|
|
195
|
-
`, isInline: true, styles: [":host{display:flex;flex-flow:column;background-color:var(--background-bright, #fff);box-shadow:0 -1px 3px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f;border-radius:var(--border-radius-round);position:relative;overflow-x:hidden}:host.loading{min-height:200px}:host div.card-loading-container{position:absolute;inset:43px 0 0;border-radius:var(--border-radius-round);background-color:var(--background-bright, #fff);display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:1}:host header{display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between;padding:.5em}:host header .title{display:flex;align-items:center;min-width:0;flex:1}:host header .title ::ng-deep i.bhi-move{color:var(--font-color-secondary);margin-right:.3em;cursor:pointer}:host header .title h1,:host header .title h2,:host header .title h3{font-size:var(--font-size-lg);font-weight:500;line-height:1.5;color:var(--text-main, #3d464d);width:100%;padding:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host header .title h1 i,:host header .title h2 i,:host header .title h3 i{font-size:1.2em}:host header .title h1 i.bhi-info,:host header .title h2 i.bhi-info,:host header .title h3 i.bhi-info{color:#dbdbdb}:host header .actions{color:hsl(from var(--color-dark) h s calc(l + 15));white-space:nowrap}:host p.card-message{padding:20px 0;max-width:inherit;text-align:center;line-height:25px;color:hsl(from var(--color-grey) h s calc(l + 10))}:host p.card-message i{display:block;font-size:24px;margin:0 0 .5em;color:hsl(from var(--color-grey) h s calc(l + 20))}:host footer{display:flex;justify-content:center}:host.novo-card-inline{display:inline-flex;justify-self:start;align-self:start}:host.novo-card-inset-none{padding:0}:host.novo-card-inset-small{padding:var(--spacing-sm)}:host.novo-card-inset-medium{padding:var(--spacing-md)}:host.novo-card-inset-large{padding:var(--spacing-lg)}:host ::ng-deep .novo-card-header+.novo-card-content.condensed,:host ::ng-deep .novo-card-header+:not(.novo-card-content){margin-top:var(--spacing-sm)}:host ::ng-deep [novo-card-image]{width:100%;margin:var(--spacing-md) 0}:host-context([data-theme=bh2026]){border-radius:var(--border-radius-md);border:1px solid var(--color-border-default);box-shadow:0 1px 2px var(--color-transparency-black-10)}:host-context([data-theme=bh2026]) div.card-loading-container{border-radius:var(--border-radius-md)}:host-context([data-theme=bh2026]) header{padding:var(--spacing-padding-md) var(--spacing-padding-lg) var(--spacing-padding-md) 0;border-bottom:1px solid var(--color-border-default)}:host-context([data-theme=bh2026]) header .title h1,:host-context([data-theme=bh2026]) header .title h2,:host-context([data-theme=bh2026]) header .title h3{font-size:var(--typography-card-header-font-size, var(--typography-font-size-18));font-weight:var(--typography-card-header-font-weight, var(--typography-font-weight-500))}:host-context([data-theme=bh2026]) header .title ::ng-deep i.bhi-move{color:transparent}:host-context([data-theme=bh2026]) header:hover .title ::ng-deep i.bhi-move{color:var(--color-text-subtle)}:host-context([data-theme=bh2026]) header .actions{display:flex;align-items:center;gap:var(--spacing-gap-sm)}:host-context([data-theme=bh2026]) header novo-button{color:var(--color-text-subtle)}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { kind: "component", type: i4.NovoButtonElement, selector: "novo-button,button[theme]", inputs: ["color", "side", "size", "theme", "loading", "icon", "secondIcon", "disabled"] }, { kind: "component", type: i5.NovoLoadingElement, selector: "novo-loading", inputs: ["theme", "color", "size"] }, { kind: "directive", type: i6.TooltipDirective, selector: "[tooltip]", inputs: ["tooltip", "tooltipPosition", "tooltipType", "tooltipSize", "tooltipBounce", "tooltipNoAnimate", "tooltipRounded", "tooltipAlways", "tooltipPreline", "removeTooltipArrow", "tooltipAutoPosition", "tooltipIsHTML", "tooltipCloseOnClick", "tooltipOnOverflow", "tooltipActive"] }] }); }
|
|
198
|
+
`, isInline: true, styles: [":host{display:flex;flex-flow:column;background-color:var(--background-bright, #fff);box-shadow:0 -1px 3px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f;border-radius:var(--border-radius-round);position:relative;overflow-x:hidden}:root[data-theme=bh2026] :host{--spacing-md: var(--spacing-padding-md)}:host.loading{min-height:200px}:host div.card-loading-container{position:absolute;inset:43px 0 0;border-radius:var(--border-radius-round);background-color:var(--background-bright, #fff);display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:1}:host header{display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between;padding:.5em}:host header .title{display:flex;align-items:center;min-width:0;flex:1}:host header .title ::ng-deep i.bhi-move{color:var(--font-color-secondary);margin-right:.3em;cursor:pointer}:host header .title h1,:host header .title h2,:host header .title h3{font-size:var(--font-size-lg);font-weight:500;line-height:1.5;color:var(--text-main, #3d464d);width:100%;padding:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host header .title h1 i,:host header .title h2 i,:host header .title h3 i{font-size:1.2em}:root:not([data-theme=bh2026]) :host header .title i.bhi-info{color:#dbdbdb}:host header .actions{color:hsl(from var(--color-dark) h s calc(l + 15));white-space:nowrap}:host p.card-message{padding:20px 0;max-width:inherit;text-align:center;line-height:25px;color:hsl(from var(--color-grey) h s calc(l + 10))}:host p.card-message i{display:block;font-size:24px;margin:0 0 .5em;color:hsl(from var(--color-grey) h s calc(l + 20))}:host footer{display:flex;justify-content:center}:host.novo-card-inline{display:inline-flex;justify-self:start;align-self:start}:host.novo-card-inset-none{padding:0}:host.novo-card-inset-small{padding:var(--spacing-sm)}:host.novo-card-inset-medium{padding:var(--spacing-md)}:host.novo-card-inset-large{padding:var(--spacing-lg)}:host ::ng-deep .novo-card-header+.novo-card-content.condensed,:host ::ng-deep .novo-card-header+:not(.novo-card-content){margin-top:var(--spacing-sm)}:host ::ng-deep [novo-card-image]{width:100%;margin:var(--spacing-md) 0}:host-context([data-theme=bh2026]){border-radius:var(--border-radius-md);border:1px solid var(--color-border-default);box-shadow:0 1px 2px var(--color-transparency-black-10)}:host-context([data-theme=bh2026]) div.card-loading-container{border-radius:var(--border-radius-md)}:host-context([data-theme=bh2026]) header{padding:var(--spacing-padding-md) var(--spacing-padding-lg) var(--spacing-padding-md) 0;border-bottom:1px solid var(--color-border-default)}:host-context([data-theme=bh2026]) header .title{padding-inline:var(--spacing-gutter)}:host-context([data-theme=bh2026]) header .title h1,:host-context([data-theme=bh2026]) header .title h2,:host-context([data-theme=bh2026]) header .title h3{font-size:var(--typography-card-header-font-size, var(--typography-font-size-18));font-weight:var(--typography-card-header-font-weight, var(--typography-font-weight-500))}:host-context([data-theme=bh2026]) header .title h1 ::ng-deep .card-flag-icon,:host-context([data-theme=bh2026]) header .title h2 ::ng-deep .card-flag-icon,:host-context([data-theme=bh2026]) header .title h3 ::ng-deep .card-flag-icon{font-size:var(--font-size-lg);vertical-align:10%}:host-context([data-theme=bh2026]) header .title ::ng-deep i{margin:0}:host-context([data-theme=bh2026]) header .card-move-handle{position:absolute;left:var(--spacing-padding-xxsm);color:var(--color-content-icon, #89909A)}:host-context([data-theme=bh2026]) header .actions{display:flex;align-items:center;gap:var(--spacing-gap-sm)}:host-context([data-theme=bh2026]) header novo-button{color:var(--color-text-subtle)}:host-context([data-theme=bh2026]) header ::ng-deep .novo-card-header-text{padding-inline-start:var(--spacing-padding-sm)}:host-context([data-theme=bh2026]) :host ::ng-deep .card-flag-icon{color:var(--color-content-subtle, #5d7798)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon{color:var(--page-entity-color, var(--color-content-subtle, #5d7798))}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-star{color:var(--color-entity-star)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-person{color:var(--color-entity-contact)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-company{color:var(--color-entity-company)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-candidate{color:var(--color-entity-candidate)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-navigation{color:var(--color-entity-navigation)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-lead{color:var(--color-entity-lead)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-contact{color:var(--color-entity-contact)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-clientcontact{color:var(--color-entity-clientcontact)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-opportunity{color:var(--color-entity-opportunity)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-job{color:var(--color-entity-job)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-joborder{color:var(--color-entity-joborder)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-submission{color:var(--color-entity-submission)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-sendout{color:var(--color-entity-sendout)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-placement{color:var(--color-entity-placement)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-note{color:var(--color-entity-note)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-task{color:var(--color-entity-task)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-distributionList{color:var(--color-entity-distributionList)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-credential{color:var(--color-entity-credential)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-user{color:var(--color-entity-user)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-corporateuser{color:var(--color-entity-corporateuser)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-contract{color:var(--color-entity-contract)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-jobCode{color:var(--color-entity-jobCode)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-earnCode{color:var(--color-entity-earnCode)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-billableCharge{color:var(--color-entity-billableCharge)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-payableCharge{color:var(--color-entity-payableCharge)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-complianceManager{color:var(--color-entity-complianceManager)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-invoiceStatement{color:var(--color-entity-invoiceStatement)}:host-context([data-theme=bh2026]) :host.icon-color-parent ::ng-deep .card-flag-icon{color:var(--page-entity-color)}:host-context([data-theme=bh2026]) :host .novo-card-header{padding-inline-start:var(--spacing-gutter)}:host-context([data-theme=bh2026]) :host ::ng-deep .card-move-handle{position:absolute;left:var(--spacing-padding-xxsm);color:var(--color-content-icon, #89909A);transition:color .3s ease-in-out}:host-context([data-theme=bh2026]) :host header ::ng-deep:not(:hover) .card-move-handle,:host-context([data-theme=bh2026]) :host ::ng-deep .novo-card-header:not(:hover) .card-move-handle{color:transparent}:host-context([data-theme=bh2026]) :host header ::ng-deep .novo-icon.card-move-handle i,:host-context([data-theme=bh2026]) :host ::ng-deep .novo-card-header .novo-icon.card-move-handle i{color:inherit}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { kind: "component", type: i4.NovoButtonElement, selector: "novo-button,button[theme]", inputs: ["color", "side", "size", "theme", "loading", "icon", "secondIcon", "disabled"] }, { kind: "component", type: i5.NovoLoadingElement, selector: "novo-loading", inputs: ["theme", "color", "size"] }, { kind: "directive", type: i6.TooltipDirective, selector: "[tooltip]", inputs: ["tooltip", "tooltipPosition", "tooltipType", "tooltipSize", "tooltipBounce", "tooltipNoAnimate", "tooltipRounded", "tooltipAlways", "tooltipPreline", "removeTooltipArrow", "tooltipAutoPosition", "tooltipIsHTML", "tooltipCloseOnClick", "tooltipOnOverflow", "tooltipActive"] }, { kind: "directive", type: i7.ThemeColorDirective, selector: "[theme]", inputs: ["theme"] }, { kind: "pipe", type: i7.If2026ThemePipe, name: "ifBh2026Theme" }] }); }
|
|
196
199
|
}
|
|
197
200
|
__decorate([
|
|
198
201
|
BooleanInput(),
|
|
@@ -217,13 +220,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
217
220
|
*ngIf="move || config.move"
|
|
218
221
|
tooltip="{{ labels.move }}"
|
|
219
222
|
tooltipPosition="bottom-right"
|
|
223
|
+
class="card-move-handle"
|
|
220
224
|
[attr.data-automation-id]="cardAutomationId + '-move'"
|
|
221
225
|
>move</novo-icon
|
|
222
226
|
>
|
|
223
227
|
<!--Card Title-->
|
|
224
228
|
<h3 [attr.data-automation-id]="cardAutomationId + '-title'">
|
|
225
|
-
<span [tooltip]="iconTooltip" tooltipPosition="right"><i *ngIf="icon" [ngClass]="iconClass"></i></span
|
|
226
|
-
{{ title || config.title }}
|
|
229
|
+
<span [tooltip]="iconTooltip" tooltipPosition="right"><i *ngIf="iconClass" class="card-flag-icon" [ngClass]="iconClass"></i></span><!--
|
|
230
|
+
--><span class="novo-card-header-text">{{ title || config.title }}</span>
|
|
227
231
|
</h3>
|
|
228
232
|
</div>
|
|
229
233
|
<!--Card Actions-->
|
|
@@ -231,7 +235,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
231
235
|
<ng-content select="novo-card-actions"></ng-content>
|
|
232
236
|
<novo-button
|
|
233
237
|
theme="icon"
|
|
234
|
-
icon="refresh"
|
|
238
|
+
[icon]="'refresh-o' | ifBh2026Theme : 'refresh'"
|
|
235
239
|
(click)="toggleRefresh()"
|
|
236
240
|
*ngIf="refresh || config.refresh"
|
|
237
241
|
[attr.data-automation-id]="cardAutomationId + '-refresh'"
|
|
@@ -241,7 +245,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
241
245
|
|
|
242
246
|
<novo-button
|
|
243
247
|
theme="icon"
|
|
244
|
-
icon="close-o"
|
|
248
|
+
[icon]="'x' | ifBh2026Theme : 'close-o'"
|
|
245
249
|
(click)="toggleClose()"
|
|
246
250
|
*ngIf="close || config.close"
|
|
247
251
|
[attr.data-automation-id]="cardAutomationId + '-close'"
|
|
@@ -265,7 +269,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
265
269
|
*ngIf="!(loading || config.loading) && !(message || config.message)"
|
|
266
270
|
select="footer,novo-card-footer,[novo-card-footer],[novoCardFooter]"
|
|
267
271
|
></ng-content>
|
|
268
|
-
`, standalone: false, styles: [":host{display:flex;flex-flow:column;background-color:var(--background-bright, #fff);box-shadow:0 -1px 3px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f;border-radius:var(--border-radius-round);position:relative;overflow-x:hidden}:host.loading{min-height:200px}:host div.card-loading-container{position:absolute;inset:43px 0 0;border-radius:var(--border-radius-round);background-color:var(--background-bright, #fff);display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:1}:host header{display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between;padding:.5em}:host header .title{display:flex;align-items:center;min-width:0;flex:1}:host header .title ::ng-deep i.bhi-move{color:var(--font-color-secondary);margin-right:.3em;cursor:pointer}:host header .title h1,:host header .title h2,:host header .title h3{font-size:var(--font-size-lg);font-weight:500;line-height:1.5;color:var(--text-main, #3d464d);width:100%;padding:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host header .title h1 i,:host header .title h2 i,:host header .title h3 i{font-size:1.2em}:
|
|
272
|
+
`, standalone: false, styles: [":host{display:flex;flex-flow:column;background-color:var(--background-bright, #fff);box-shadow:0 -1px 3px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f;border-radius:var(--border-radius-round);position:relative;overflow-x:hidden}:root[data-theme=bh2026] :host{--spacing-md: var(--spacing-padding-md)}:host.loading{min-height:200px}:host div.card-loading-container{position:absolute;inset:43px 0 0;border-radius:var(--border-radius-round);background-color:var(--background-bright, #fff);display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:1}:host header{display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between;padding:.5em}:host header .title{display:flex;align-items:center;min-width:0;flex:1}:host header .title ::ng-deep i.bhi-move{color:var(--font-color-secondary);margin-right:.3em;cursor:pointer}:host header .title h1,:host header .title h2,:host header .title h3{font-size:var(--font-size-lg);font-weight:500;line-height:1.5;color:var(--text-main, #3d464d);width:100%;padding:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host header .title h1 i,:host header .title h2 i,:host header .title h3 i{font-size:1.2em}:root:not([data-theme=bh2026]) :host header .title i.bhi-info{color:#dbdbdb}:host header .actions{color:hsl(from var(--color-dark) h s calc(l + 15));white-space:nowrap}:host p.card-message{padding:20px 0;max-width:inherit;text-align:center;line-height:25px;color:hsl(from var(--color-grey) h s calc(l + 10))}:host p.card-message i{display:block;font-size:24px;margin:0 0 .5em;color:hsl(from var(--color-grey) h s calc(l + 20))}:host footer{display:flex;justify-content:center}:host.novo-card-inline{display:inline-flex;justify-self:start;align-self:start}:host.novo-card-inset-none{padding:0}:host.novo-card-inset-small{padding:var(--spacing-sm)}:host.novo-card-inset-medium{padding:var(--spacing-md)}:host.novo-card-inset-large{padding:var(--spacing-lg)}:host ::ng-deep .novo-card-header+.novo-card-content.condensed,:host ::ng-deep .novo-card-header+:not(.novo-card-content){margin-top:var(--spacing-sm)}:host ::ng-deep [novo-card-image]{width:100%;margin:var(--spacing-md) 0}:host-context([data-theme=bh2026]){border-radius:var(--border-radius-md);border:1px solid var(--color-border-default);box-shadow:0 1px 2px var(--color-transparency-black-10)}:host-context([data-theme=bh2026]) div.card-loading-container{border-radius:var(--border-radius-md)}:host-context([data-theme=bh2026]) header{padding:var(--spacing-padding-md) var(--spacing-padding-lg) var(--spacing-padding-md) 0;border-bottom:1px solid var(--color-border-default)}:host-context([data-theme=bh2026]) header .title{padding-inline:var(--spacing-gutter)}:host-context([data-theme=bh2026]) header .title h1,:host-context([data-theme=bh2026]) header .title h2,:host-context([data-theme=bh2026]) header .title h3{font-size:var(--typography-card-header-font-size, var(--typography-font-size-18));font-weight:var(--typography-card-header-font-weight, var(--typography-font-weight-500))}:host-context([data-theme=bh2026]) header .title h1 ::ng-deep .card-flag-icon,:host-context([data-theme=bh2026]) header .title h2 ::ng-deep .card-flag-icon,:host-context([data-theme=bh2026]) header .title h3 ::ng-deep .card-flag-icon{font-size:var(--font-size-lg);vertical-align:10%}:host-context([data-theme=bh2026]) header .title ::ng-deep i{margin:0}:host-context([data-theme=bh2026]) header .card-move-handle{position:absolute;left:var(--spacing-padding-xxsm);color:var(--color-content-icon, #89909A)}:host-context([data-theme=bh2026]) header .actions{display:flex;align-items:center;gap:var(--spacing-gap-sm)}:host-context([data-theme=bh2026]) header novo-button{color:var(--color-text-subtle)}:host-context([data-theme=bh2026]) header ::ng-deep .novo-card-header-text{padding-inline-start:var(--spacing-padding-sm)}:host-context([data-theme=bh2026]) :host ::ng-deep .card-flag-icon{color:var(--color-content-subtle, #5d7798)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon{color:var(--page-entity-color, var(--color-content-subtle, #5d7798))}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-star{color:var(--color-entity-star)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-person{color:var(--color-entity-contact)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-company{color:var(--color-entity-company)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-candidate{color:var(--color-entity-candidate)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-navigation{color:var(--color-entity-navigation)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-lead{color:var(--color-entity-lead)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-contact{color:var(--color-entity-contact)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-clientcontact{color:var(--color-entity-clientcontact)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-opportunity{color:var(--color-entity-opportunity)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-job{color:var(--color-entity-job)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-joborder{color:var(--color-entity-joborder)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-submission{color:var(--color-entity-submission)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-sendout{color:var(--color-entity-sendout)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-placement{color:var(--color-entity-placement)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-note{color:var(--color-entity-note)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-task{color:var(--color-entity-task)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-distributionList{color:var(--color-entity-distributionList)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-credential{color:var(--color-entity-credential)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-user{color:var(--color-entity-user)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-corporateuser{color:var(--color-entity-corporateuser)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-contract{color:var(--color-entity-contract)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-jobCode{color:var(--color-entity-jobCode)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-earnCode{color:var(--color-entity-earnCode)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-billableCharge{color:var(--color-entity-billableCharge)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-payableCharge{color:var(--color-entity-payableCharge)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-complianceManager{color:var(--color-entity-complianceManager)}:host-context([data-theme=bh2026]) :host.icon-color-auto header .title ::ng-deep .card-flag-icon.bhi-invoiceStatement{color:var(--color-entity-invoiceStatement)}:host-context([data-theme=bh2026]) :host.icon-color-parent ::ng-deep .card-flag-icon{color:var(--page-entity-color)}:host-context([data-theme=bh2026]) :host .novo-card-header{padding-inline-start:var(--spacing-gutter)}:host-context([data-theme=bh2026]) :host ::ng-deep .card-move-handle{position:absolute;left:var(--spacing-padding-xxsm);color:var(--color-content-icon, #89909A);transition:color .3s ease-in-out}:host-context([data-theme=bh2026]) :host header ::ng-deep:not(:hover) .card-move-handle,:host-context([data-theme=bh2026]) :host ::ng-deep .novo-card-header:not(:hover) .card-move-handle{color:transparent}:host-context([data-theme=bh2026]) :host header ::ng-deep .novo-icon.card-move-handle i,:host-context([data-theme=bh2026]) :host ::ng-deep .novo-card-header .novo-icon.card-move-handle i{color:inherit}\n"] }]
|
|
269
273
|
}], ctorParameters: () => [{ type: i1.NovoLabelService }], propDecorators: { padding: [{
|
|
270
274
|
type: Input
|
|
271
275
|
}], config: [{
|
|
@@ -278,6 +282,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
278
282
|
type: Input
|
|
279
283
|
}], icon: [{
|
|
280
284
|
type: Input
|
|
285
|
+
}], iconColorClass: [{
|
|
286
|
+
type: Input
|
|
281
287
|
}], iconTooltip: [{
|
|
282
288
|
type: Input
|
|
283
289
|
}], refresh: [{
|
|
@@ -295,7 +301,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
295
301
|
args: ['class.novo-card-inline']
|
|
296
302
|
}], inset: [{
|
|
297
303
|
type: Input
|
|
298
|
-
}],
|
|
304
|
+
}], cardClass: [{
|
|
299
305
|
type: HostBinding,
|
|
300
306
|
args: ['class']
|
|
301
307
|
}], onClose: [{
|
|
@@ -307,13 +313,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
|
|
|
307
313
|
// NG2
|
|
308
314
|
class NovoCardModule {
|
|
309
315
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: NovoCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
310
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.19", ngImport: i0, type: NovoCardModule, declarations: [CardElement, CardActionsElement, CardContentElement, CardHeaderElement, CardFooterElement], imports: [CommonModule, NovoIconModule, NovoButtonModule, NovoLoadingModule, NovoTooltipModule], exports: [CardElement, CardActionsElement, CardContentElement, CardHeaderElement, CardFooterElement] }); }
|
|
311
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: NovoCardModule, imports: [CommonModule, NovoIconModule, NovoButtonModule, NovoLoadingModule, NovoTooltipModule] }); }
|
|
316
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.19", ngImport: i0, type: NovoCardModule, declarations: [CardElement, CardActionsElement, CardContentElement, CardHeaderElement, CardFooterElement], imports: [CommonModule, NovoIconModule, NovoButtonModule, NovoLoadingModule, NovoTooltipModule, NovoCommonModule], exports: [CardElement, CardActionsElement, CardContentElement, CardHeaderElement, CardFooterElement] }); }
|
|
317
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: NovoCardModule, imports: [CommonModule, NovoIconModule, NovoButtonModule, NovoLoadingModule, NovoTooltipModule, NovoCommonModule] }); }
|
|
312
318
|
}
|
|
313
319
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: NovoCardModule, decorators: [{
|
|
314
320
|
type: NgModule,
|
|
315
321
|
args: [{
|
|
316
|
-
imports: [CommonModule, NovoIconModule, NovoButtonModule, NovoLoadingModule, NovoTooltipModule],
|
|
322
|
+
imports: [CommonModule, NovoIconModule, NovoButtonModule, NovoLoadingModule, NovoTooltipModule, NovoCommonModule],
|
|
317
323
|
declarations: [CardElement, CardActionsElement, CardContentElement, CardHeaderElement, CardFooterElement],
|
|
318
324
|
exports: [CardElement, CardActionsElement, CardContentElement, CardHeaderElement, CardFooterElement],
|
|
319
325
|
}]
|