novo-elements 6.0.0-next.5 → 6.0.0-next.8
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/bundles/novo-elements.umd.js +749 -250
- package/bundles/novo-elements.umd.js.map +1 -1
- package/bundles/novo-elements.umd.min.js +2 -2
- package/bundles/novo-elements.umd.min.js.map +1 -1
- package/elements/avatar/Avatar.scss +1 -1
- package/elements/button/styles/button-fab.scss +3 -1
- package/elements/button/styles/button-icon.scss +8 -4
- package/elements/button/styles/button-other.scss +9 -9
- package/elements/button/styles/button-primary.scss +5 -0
- package/elements/button/styles/button-secondary.scss +1 -9
- package/elements/button/styles/button-standard.scss +2 -2
- package/elements/button/styles/button.scss +23 -9
- package/elements/calendar/month-view/month-view.component.scss +4 -7
- package/elements/card/Card.scss +8 -3
- package/elements/chips/Chip.scss +6 -1
- package/elements/chips/Chips.scss +11 -10
- package/elements/ckeditor/CKEditor.scss +27 -4
- package/elements/common/option/option.component.scss +6 -9
- package/elements/common/typography/caption/caption.scss +1 -16
- package/elements/common/typography/label/label.scss +1 -21
- package/elements/common/typography/link/link.scss +4 -11
- package/elements/common/typography/text/text.scss +1 -18
- package/elements/common/typography/text.mixins.scss +49 -8
- package/elements/common/typography/title/title.scss +1 -19
- package/elements/data-table/data-table.component.scss +28 -35
- package/elements/data-table/sort-filter/sort-button.component.scss +1 -1
- package/elements/date-picker/DatePicker.scss +12 -3
- package/elements/dropdown/Dropdown.scss +1 -0
- package/elements/expansion/_expansion-theme.scss +1 -1
- package/elements/field/field.scss +5 -2
- package/elements/form/ControlGroup.scss +19 -15
- package/elements/form/Form.scss +29 -23
- package/elements/form/extras/address/Address.scss +9 -13
- package/elements/header/Header.scss +45 -33
- package/elements/icon/Icon.scss +5 -4
- package/elements/list/List.scss +6 -6
- package/elements/modal/modal.component.scss +56 -105
- package/elements/picker/Picker.scss +14 -15
- package/elements/progress/ProgressBar.scss +1 -1
- package/elements/radio/Radio.scss +1 -1
- package/elements/search/SearchBox.scss +5 -16
- package/elements/select/Select.scss +1 -78
- package/elements/switch/Switch.scss +32 -32
- package/elements/table/Table.scss +18 -19
- package/elements/table/extras/pagination/Pagination.scss +2 -1
- package/elements/tabs/Tabs.scss +3 -2
- package/elements/time-picker/TimePicker.scss +21 -17
- package/elements/toast/Toast.scss +1 -1
- package/elements/toolbar/toolbar.component.scss +3 -3
- package/elements/tooltip/Tooltip.scss +77 -148
- package/elements/value/Value.scss +1 -1
- package/elements/value/Values.scss +2 -2
- package/esm2015/src/elements/avatar/Avatar.js +1 -1
- package/esm2015/src/elements/breadcrumbs/breadcrumb-item/BreadcrumbItem.js +1 -1
- package/esm2015/src/elements/button/Button.js +2 -2
- package/esm2015/src/elements/calendar/calendar.component.js +5 -2
- package/esm2015/src/elements/calendar/month-view/month-view.component.js +4 -3
- package/esm2015/src/elements/card/Card.js +2 -2
- package/esm2015/src/elements/chips/Chip.js +1 -1
- package/esm2015/src/elements/chips/Chips.js +13 -11
- package/esm2015/src/elements/common/common.module.js +8 -2
- package/esm2015/src/elements/common/directives/bg.directive.js +30 -0
- package/esm2015/src/elements/common/directives/color.directive.js +10 -3
- package/esm2015/src/elements/common/directives/flex.directive.js +33 -0
- package/esm2015/src/elements/common/directives/theme.directive.js +23 -0
- package/esm2015/src/elements/common/index.js +4 -2
- package/esm2015/src/elements/common/option/optgroup.component.js +5 -8
- package/esm2015/src/elements/common/option/option.component.js +47 -14
- package/esm2015/src/elements/common/overlay/Overlay.js +8 -2
- package/esm2015/src/elements/common/typography/base/base-text.component.js +38 -18
- package/esm2015/src/elements/common/typography/caption/caption.component.js +1 -1
- package/esm2015/src/elements/common/typography/label/label.component.js +1 -1
- package/esm2015/src/elements/common/typography/link/link.component.js +1 -1
- package/esm2015/src/elements/common/typography/text/text.component.js +1 -1
- package/esm2015/src/elements/common/typography/text.types.js +1 -1
- package/esm2015/src/elements/common/typography/title/title.component.js +6 -2
- package/esm2015/src/elements/data-table/cell-headers/data-table-checkbox-header-cell.component.js +31 -3
- package/esm2015/src/elements/data-table/cell-headers/data-table-header-cell.component.js +106 -76
- package/esm2015/src/elements/data-table/cells/data-table-checkbox-cell.component.js +6 -4
- package/esm2015/src/elements/data-table/data-table.component.js +39 -8
- package/esm2015/src/elements/data-table/data-table.module.js +5 -3
- package/esm2015/src/elements/data-table/pagination/data-table-pagination.component.js +8 -4
- package/esm2015/src/elements/data-table/sort-filter/sort-button.component.js +6 -3
- package/esm2015/src/elements/data-table/state/data-table-state.service.js +5 -3
- package/esm2015/src/elements/date-picker/DatePicker.js +5 -1
- package/esm2015/src/elements/date-picker/DatePickerInput.js +38 -6
- package/esm2015/src/elements/date-picker/DateRangeInput.js +13 -3
- package/esm2015/src/elements/date-picker/MultiDateInput.js +7 -5
- package/esm2015/src/elements/dropdown/Dropdown.js +33 -5
- package/esm2015/src/elements/expansion/expansion-panel.js +1 -1
- package/esm2015/src/elements/field/field.js +1 -1
- package/esm2015/src/elements/field/field.module.js +3 -3
- package/esm2015/src/elements/field/formats/date-format.js +3 -1
- package/esm2015/src/elements/field/formats/time-format.js +33 -2
- package/esm2015/src/elements/field/hint/hint.js +1 -1
- package/esm2015/src/elements/form/Control.js +4 -1
- package/esm2015/src/elements/form/ControlGroup.js +8 -2
- package/esm2015/src/elements/form/ControlTemplates.js +16 -1
- package/esm2015/src/elements/form/DynamicForm.js +2 -2
- package/esm2015/src/elements/form/Form.module.js +3 -1
- package/esm2015/src/elements/form/FormControls.js +2 -1
- package/esm2015/src/elements/form/NovoFormGroup.js +7 -1
- package/esm2015/src/elements/form/controls/BaseControl.js +2 -1
- package/esm2015/src/elements/form/controls/ControlFactory.js +4 -2
- package/esm2015/src/elements/form/controls/index.js +3 -1
- package/esm2015/src/elements/form/controls/switch/SwitchControl.js +9 -0
- package/esm2015/src/elements/form/controls/switch/index.js +2 -0
- package/esm2015/src/elements/form/extras/file/FileInput.js +2 -2
- package/esm2015/src/elements/header/Header.js +2 -2
- package/esm2015/src/elements/icon/Icon.js +5 -2
- package/esm2015/src/elements/layout/content/layout-content.component.js +8 -3
- package/esm2015/src/elements/layout/sidenav/sidenav.component.js +4 -3
- package/esm2015/src/elements/list/List.js +2 -2
- package/esm2015/src/elements/menu/menu-content.component.js +2 -2
- package/esm2015/src/elements/modal/modal.animation.js +3 -3
- package/esm2015/src/elements/modal/modal.component.js +13 -7
- package/esm2015/src/elements/picker/Picker.module.js +3 -2
- package/esm2015/src/elements/picker/extras/entity-picker-results/EntityPickerResults.js +49 -45
- package/esm2015/src/elements/progress/ProgressBar.js +5 -3
- package/esm2015/src/elements/radio/Radio.js +3 -1
- package/esm2015/src/elements/radio/tokens.js +1 -1
- package/esm2015/src/elements/select/Select.js +79 -20
- package/esm2015/src/elements/simple-table/cell-header.js +15 -15
- package/esm2015/src/elements/simple-table/simple-table.module.js +4 -1
- package/esm2015/src/elements/switch/Switch.js +28 -15
- package/esm2015/src/elements/switch/Switch.module.js +3 -4
- package/esm2015/src/elements/tabbed-group-picker/TabbedGroupPicker.js +6 -3
- package/esm2015/src/elements/table/Table.js +35 -30
- package/esm2015/src/elements/table/Table.module.js +8 -1
- package/esm2015/src/elements/table/extras/TableExtras.module.js +3 -2
- package/esm2015/src/elements/table/extras/th-sortable/ThSortable.js +2 -2
- package/esm2015/src/elements/tabs/Tabs.js +13 -23
- package/esm2015/src/elements/time-picker/TimePicker.js +8 -4
- package/esm2015/src/elements/time-picker/TimePickerInput.js +60 -9
- package/esm2015/src/elements/toolbar/toolbar.component.js +1 -1
- package/esm2015/src/elements/tooltip/Tooltip.component.js +4 -6
- package/esm2015/src/services/date-format/DateFormat.js +4 -2
- package/esm2015/src/services/novo-label-service.js +5 -1
- package/esm2015/src/utils/form-utils/FormUtils.js +5 -2
- package/fesm2015/novo-elements.js +929 -386
- package/fesm2015/novo-elements.js.map +1 -1
- package/novo-elements.scss +38 -17
- package/package.json +2 -2
- package/schematics/ng-add/fonts/novo-fonts.js +0 -1
- package/schematics/ng-add/fonts/novo-fonts.js.map +1 -1
- package/schematics/ng-add/setup-project.js +5 -5
- package/schematics/ng-add/setup-project.js.map +1 -1
- package/schematics/package.json +1 -1
- package/src/elements/button/Button.d.ts +1 -1
- package/src/elements/calendar/calendar.component.d.ts +3 -0
- package/src/elements/calendar/month-view/month-view.component.d.ts +1 -0
- package/src/elements/chips/Chips.d.ts +2 -0
- package/src/elements/common/directives/bg.directive.d.ts +8 -0
- package/src/elements/common/directives/color.directive.d.ts +1 -0
- package/src/elements/common/directives/flex.directive.d.ts +9 -0
- package/src/elements/common/directives/theme.directive.d.ts +7 -0
- package/src/elements/common/index.d.ts +3 -1
- package/src/elements/common/option/option.component.d.ts +7 -5
- package/src/elements/common/typography/base/base-text.component.d.ts +7 -4
- package/src/elements/common/typography/text.types.d.ts +1 -1
- package/src/elements/common/typography/title/title.component.d.ts +2 -0
- package/src/elements/data-table/cell-headers/data-table-checkbox-header-cell.component.d.ts +1 -0
- package/src/elements/data-table/cell-headers/data-table-header-cell.component.d.ts +1 -0
- package/src/elements/data-table/data-table.component.d.ts +8 -1
- package/src/elements/data-table/pagination/data-table-pagination.component.d.ts +2 -0
- package/src/elements/data-table/sort-filter/sort-button.component.d.ts +1 -0
- package/src/elements/data-table/state/data-table-state.service.d.ts +2 -1
- package/src/elements/date-picker/DatePickerInput.d.ts +9 -2
- package/src/elements/date-picker/DateRangeInput.d.ts +5 -2
- package/src/elements/dropdown/Dropdown.d.ts +8 -2
- package/src/elements/field/formats/time-format.d.ts +5 -2
- package/src/elements/form/ControlGroup.d.ts +2 -0
- package/src/elements/form/FormControls.d.ts +1 -0
- package/src/elements/form/NovoFormGroup.d.ts +2 -0
- package/src/elements/form/controls/BaseControl.d.ts +1 -0
- package/src/elements/form/controls/index.d.ts +2 -0
- package/src/elements/form/controls/switch/SwitchControl.d.ts +5 -0
- package/src/elements/form/controls/switch/index.d.ts +1 -0
- package/src/elements/layout/content/layout-content.component.d.ts +4 -3
- package/src/elements/layout/sidenav/sidenav.component.d.ts +2 -3
- package/src/elements/menu/menu-content.component.d.ts +1 -2
- package/src/elements/progress/ProgressBar.d.ts +2 -3
- package/src/elements/radio/tokens.d.ts +1 -0
- package/src/elements/select/Select.d.ts +2 -1
- package/src/elements/switch/Switch.d.ts +5 -4
- package/src/elements/tabbed-group-picker/TabbedGroupPicker.d.ts +1 -0
- package/src/elements/tabs/Tabs.d.ts +1 -0
- package/src/elements/time-picker/TimePickerInput.d.ts +10 -2
- package/src/services/date-format/DateFormat.d.ts +2 -2
- package/src/services/novo-label-service.d.ts +2 -0
- package/styles/content/code.scss +15 -9
- package/styles/content/misc.scss +9 -5
- package/styles/content/root.scss +6 -6
- package/styles/global/flex-grid.scss +1 -1
- package/styles/iconography.scss +7 -2
- package/styles/reset.scss +2 -2
- package/styles/themes/dark.scss +9 -1
- package/styles/themes/light.scss +14 -7
- package/styles/typography.scss +20 -1
- package/styles/variables.scss +3 -4
- package/esm2015/src/elements/common/directives/bgc.directive.js +0 -17
- package/src/elements/common/directives/bgc.directive.d.ts +0 -4
|
@@ -20197,6 +20197,7 @@
|
|
|
20197
20197
|
_this.forceClear = new i0.EventEmitter();
|
|
20198
20198
|
_this.readOnly = !!config.readOnly || !!config.disabled;
|
|
20199
20199
|
_this.disabled = !!config.disabled;
|
|
20200
|
+
_this.enabled = true;
|
|
20200
20201
|
_this.layoutOptions = config.layoutOptions || {};
|
|
20201
20202
|
_this.military = !!config.military;
|
|
20202
20203
|
_this.dateFormat = config.dateFormat;
|
|
@@ -20561,6 +20562,16 @@
|
|
|
20561
20562
|
return SelectControl;
|
|
20562
20563
|
}(BaseControl));
|
|
20563
20564
|
|
|
20565
|
+
var SwitchControl = /** @class */ (function (_super) {
|
|
20566
|
+
__extends(SwitchControl, _super);
|
|
20567
|
+
function SwitchControl(config) {
|
|
20568
|
+
var _this = _super.call(this, 'SwitchControl', config) || this;
|
|
20569
|
+
_this.controlType = 'switch';
|
|
20570
|
+
return _this;
|
|
20571
|
+
}
|
|
20572
|
+
return SwitchControl;
|
|
20573
|
+
}(BaseControl));
|
|
20574
|
+
|
|
20564
20575
|
var TextAreaControl = /** @class */ (function (_super) {
|
|
20565
20576
|
__extends(TextAreaControl, _super);
|
|
20566
20577
|
function TextAreaControl(config) {
|
|
@@ -20732,6 +20743,8 @@
|
|
|
20732
20743
|
return new TextBoxControl(config);
|
|
20733
20744
|
case 'SelectControl':
|
|
20734
20745
|
return new SelectControl(config);
|
|
20746
|
+
case 'SwitchControl':
|
|
20747
|
+
return new SwitchControl(config);
|
|
20735
20748
|
case 'TilesControl':
|
|
20736
20749
|
return new TilesControl(config);
|
|
20737
20750
|
case 'TimeControl':
|
|
@@ -20910,6 +20923,16 @@
|
|
|
20910
20923
|
_this.fieldInteractionEvents = new i0.EventEmitter();
|
|
20911
20924
|
return _this;
|
|
20912
20925
|
}
|
|
20926
|
+
Object.defineProperty(NovoFormGroup.prototype, "value", {
|
|
20927
|
+
get: function () {
|
|
20928
|
+
return this.getRawValue(); // The value property on Angular form groups do not include disabled form control values. Find way to address this.
|
|
20929
|
+
},
|
|
20930
|
+
set: function (v) {
|
|
20931
|
+
this._value = v;
|
|
20932
|
+
},
|
|
20933
|
+
enumerable: false,
|
|
20934
|
+
configurable: true
|
|
20935
|
+
});
|
|
20913
20936
|
NovoFormGroup.prototype.enableAllControls = function () {
|
|
20914
20937
|
for (var key in this.controls) {
|
|
20915
20938
|
if (this.controls[key].readOnly) {
|
|
@@ -21008,6 +21031,7 @@
|
|
|
21008
21031
|
this.noItems = 'There are no items';
|
|
21009
21032
|
this.dateFormat = 'MM/dd/yyyy';
|
|
21010
21033
|
this.dateFormatPlaceholder = 'MM/DD/YYYY';
|
|
21034
|
+
this.localDatePlaceholder = 'mm/dd/yyyy';
|
|
21011
21035
|
this.timeFormatPlaceholderAM = 'hh:mm AM';
|
|
21012
21036
|
this.timeFormatPlaceholder24Hour = 'HH:mm';
|
|
21013
21037
|
this.timeFormatAM = 'AM';
|
|
@@ -21056,6 +21080,9 @@
|
|
|
21056
21080
|
NovoLabelService.prototype.dateFormatString = function () {
|
|
21057
21081
|
return this.dateFormat;
|
|
21058
21082
|
};
|
|
21083
|
+
NovoLabelService.prototype.localizedDatePlaceholder = function () {
|
|
21084
|
+
return this.localDatePlaceholder;
|
|
21085
|
+
};
|
|
21059
21086
|
NovoLabelService.prototype.tabbedGroupClearSuggestion = function (tabLabelPlural) {
|
|
21060
21087
|
return "Clear your search to see all " + tabLabelPlural + ".";
|
|
21061
21088
|
};
|
|
@@ -21697,7 +21724,7 @@
|
|
|
21697
21724
|
EntityPickerResult.decorators = [
|
|
21698
21725
|
{ type: i0.Component, args: [{
|
|
21699
21726
|
selector: 'entity-picker-result',
|
|
21700
|
-
template: "\n <novo-list-item *ngIf=\"match.data\" (click)=\"select.next(match.data)\">\n <item-header>\n <item-avatar [icon]=\"getIconForResult(match.data)\"></item-avatar>\n <item-title> <span [innerHtml]=\"highlight(getNameForResult(match.data), term)\"></span> </item-title>\n </item-header>\n <item-content direction=\"horizontal\">\n <!-- COMPANY 1 -->\n <
|
|
21727
|
+
template: "\n <novo-list-item *ngIf=\"match.data\" (click)=\"select.next(match.data)\">\n <novo-item-header>\n <novo-item-avatar [icon]=\"getIconForResult(match.data)\"></novo-item-avatar>\n <novo-item-title> <span [innerHtml]=\"highlight(getNameForResult(match.data), term)\"></span> </novo-item-title>\n </novo-item-header>\n <novo-item-content direction=\"horizontal\">\n <!-- COMPANY 1 -->\n <novo-text smaller class=\"company\" *ngIf=\"match.data.companyName || match.data?.clientCorporation?.name\">\n <i class=\"bhi-company company\"></i>\n <span [innerHtml]=\"highlight(match.data.companyName || match.data?.clientCorporation?.name, term)\"></span>\n </novo-text>\n <!-- CLIENT CONTACT -->\n <novo-text smaller class=\"contact\" *ngIf=\"match.data?.clientContact?.firstName\">\n <i class=\"bhi-person contact person\"></i>\n <span [innerHtml]=\"highlight(match.data.clientContact.firstName + ' ' + match.data.clientContact.lastName, term)\"></span>\n </novo-text>\n <!-- CANDIDATE -->\n <novo-text smaller class=\"candidate\" *ngIf=\"match.data.candidate && match.data.searchEntity === 'Placement'\">\n <i class=\"bhi-candidate candidate\"></i>\n <span [innerHtml]=\"highlight(match.data.candidate.firstName + ' ' + match.data.candidate.lastName, term)\"></span>\n </novo-text>\n <!-- START & END DATE -->\n <novo-text smaller class=\"start-date\" *ngIf=\"match.data.dateBegin && match.data.searchEntity === 'Placement'\">\n <i class=\"bhi-calendar\"></i>\n <span [innerHtml]=\"renderTimestamp(match.data.dateBegin) + ' - ' + renderTimestamp(match.data.dateEnd)\"></span>\n </novo-text>\n <!-- START Date -->\n <novo-text smaller class=\"start-date\" *ngIf=\"match.data.startTime && match.data.searchEntity === 'JobShift'\">\n <i class=\"bhi-calendar\"></i>\n <span [innerHtml]=\"renderTimestamp(match.data.startTime)\"></span>\n </novo-text>\n <!-- START & END TIME -->\n <novo-text smaller class=\"start-time\" *ngIf=\"match.data.startTime && match.data.searchEntity === 'JobShift'\">\n <i class=\"bhi-clock\"></i>\n <span [innerHtml]=\"renderTimeNoOffset(match.data.startTime) + ' - ' + renderTimeNoOffset(match.data.endTime)\"></span>\n </novo-text>\n <!-- JOBORDER -->\n <novo-text smaller class=\"job\" *ngIf=\"match.data.jobOrder && match.data.searchEntity === 'JobShift'\">\n <i class=\"bhi-job job\"></i>\n <span [innerHtml]=\"highlight(match.data.jobOrder.title, term)\"></span>\n </novo-text>\n <!-- OPENINGS -->\n <novo-text smaller class=\"openings\" *ngIf=\"match.data.openings && match.data.searchEntity === 'JobShift'\">\n <i class=\"bhi-candidate\"></i>\n <span>{{ match.data.numAssigned }} / {{ match.data.openings }}</span>\n </novo-text>\n <!-- EMAIL -->\n <novo-text smaller class=\"email\" *ngIf=\"match.data.email\">\n <i class=\"bhi-email\"></i> <span [innerHtml]=\"highlight(match.data.email, term)\"></span>\n </novo-text>\n <!-- PHONE -->\n <novo-text smaller class=\"phone\" *ngIf=\"match.data.phone\">\n <i class=\"bhi-phone\"></i> <span [innerHtml]=\"highlight(match.data.phone, term)\"></span>\n </novo-text>\n <!-- ADDRESS -->\n <novo-text smaller class=\"location\" *ngIf=\"match.data.address && (match.data.address.city || match.data.address.state)\">\n <i class=\"bhi-location\"></i> <span *ngIf=\"match.data.address.city\" [innerHtml]=\"highlight(match.data.address.city, term)\"></span>\n <span *ngIf=\"match.data.address.city && match.data.address.state\">, </span>\n <span *ngIf=\"match.data.address.state\" [innerHtml]=\"highlight(match.data.address.state, term)\"></span>\n </novo-text>\n <!-- STATUS -->\n <novo-text smaller class=\"status\" *ngIf=\"match.data.status\">\n <i class=\"bhi-info\"></i> <span [innerHtml]=\"highlight(match.data.status, term)\"></span>\n </novo-text>\n <!-- OWNER -->\n <novo-text smaller class=\"owner\" *ngIf=\"match.data.owner && match.data.owner.name && match.data.searchEntity === 'Candidate'\">\n <i class=\"bhi-person\"></i> <span [innerHtml]=\"highlight(match.data.owner.name, term)\"></span>\n </novo-text>\n <!-- PRIMARY DEPARTMENT -->\n <novo-text\n smaller\n class=\"primary-department\"\n *ngIf=\"match.data.primaryDepartment && match.data.primaryDepartment.name && match.data.searchEntity === 'CorporateUser'\"\n >\n <i class=\"bhi-department\"></i> <span [innerHtml]=\"highlight(match.data.primaryDepartment.name, term)\"></span>\n </novo-text>\n <!-- OCCUPATION -->\n <novo-text smaller class=\"occupation\" *ngIf=\"match.data.occupation && match.data.searchEntity === 'CorporateUser'\">\n <i class=\"bhi-occupation\"></i> <span [innerHtml]=\"highlight(match.data.occupation, term)\"></span>\n </novo-text>\n </novo-item-content>\n </novo-list-item>\n "
|
|
21701
21728
|
},] }
|
|
21702
21729
|
];
|
|
21703
21730
|
EntityPickerResult.ctorParameters = function () { return [
|
|
@@ -21735,7 +21762,10 @@
|
|
|
21735
21762
|
EntityPickerResults.decorators = [
|
|
21736
21763
|
{ type: i0.Component, args: [{
|
|
21737
21764
|
selector: 'entity-picker-results',
|
|
21738
|
-
template: "\n <novo-list *ngIf=\"matches.length > 0\" direction=\"vertical\">\n <entity-picker-result\n *ngFor=\"let match of matches\"\n [match]=\"match\"\n [term]=\"term\"\n [ngClass]=\"{ active: isActive(match) }\"\n (
|
|
21765
|
+
template: "\n <novo-list *ngIf=\"matches.length > 0\" direction=\"vertical\">\n <entity-picker-result\n *ngFor=\"let match of matches\"\n [match]=\"match\"\n [term]=\"term\"\n [ngClass]=\"{ active: isActive(match) }\"\n (click)=\"selectMatch($event, match)\"\n (mouseenter)=\"selectActive(match)\"\n [class.disabled]=\"preselected(match)\"\n >\n </entity-picker-result>\n <novo-loading theme=\"line\" *ngIf=\"isLoading && matches.length > 0\"></novo-loading>\n </novo-list>\n <div class=\"picker-error\" *ngIf=\"hasError\">{{ labels.pickerError }}</div>\n <div class=\"picker-null-results\" *ngIf=\"hasNonErrorMessage && term !== ''\">{{ labels.pickerEmpty }}</div>\n <div class=\"picker-null-results\" *ngIf=\"hasNonErrorMessage && term === ''\">{{ labels.pickerTextFieldEmpty }}</div>\n ",
|
|
21766
|
+
host: {
|
|
21767
|
+
class: 'novo-entity-picker-results',
|
|
21768
|
+
}
|
|
21739
21769
|
},] }
|
|
21740
21770
|
];
|
|
21741
21771
|
EntityPickerResults.ctorParameters = function () { return [
|
|
@@ -22159,6 +22189,9 @@
|
|
|
22159
22189
|
controlConfig.checkboxLabel = field.checkboxLabel;
|
|
22160
22190
|
control = new CheckboxControl(controlConfig);
|
|
22161
22191
|
break;
|
|
22192
|
+
case 'switch':
|
|
22193
|
+
control = new SwitchControl(controlConfig);
|
|
22194
|
+
break;
|
|
22162
22195
|
case 'checklist':
|
|
22163
22196
|
control = new CheckListControl(controlConfig);
|
|
22164
22197
|
break;
|
|
@@ -22821,7 +22854,7 @@
|
|
|
22821
22854
|
},
|
|
22822
22855
|
template: "\n <!--Left Icon-->\n <i *ngIf=\"icon && side === 'left' && !loading\" [ngClass]=\"icon\" class=\"novo-button-icon novo-button-icon-left\"></i>\n <!--Transcluded Content-->\n <span #textContent class=\"button-contents\"><ng-content></ng-content></span>\n <!--Right Icon-->\n <i *ngIf=\"icon && side === 'right' && !loading\" [ngClass]=\"icon\" class=\"novo-button-icon novo-button-icon-right\"></i>\n <!--Loading-->\n <i *ngIf=\"loading\" class=\"loading novo-button-loading\">\n <svg\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n xmlns:a=\"http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/\"\n x=\"0px\"\n y=\"0px\"\n width=\"18.2px\"\n height=\"18.5px\"\n viewBox=\"0 0 18.2 18.5\"\n style=\"enable-background:new 0 0 18.2 18.5;\"\n xml:space=\"preserve\"\n >\n <style type=\"text/css\">\n .spinner {\n fill: #ffffff;\n }\n </style>\n <path\n class=\"spinner\"\n d=\"M9.2,18.5C4.1,18.5,0,14.4,0,9.2S4.1,0,9.2,0c0.9,0,1.9,0.1,2.7,0.4c0.8,0.2,1.2,1.1,1,1.9\n c-0.2,0.8-1.1,1.2-1.9,1C10.5,3.1,9.9,3,9.2,3C5.8,3,3,5.8,3,9.2s2.8,6.2,6.2,6.2c2.8,0,5.3-1.9,6-4.7c0.2-0.8,1-1.3,1.8-1.1\n c0.8,0.2,1.3,1,1.1,1.8C17.1,15.7,13.4,18.5,9.2,18.5z\"\n />\n </svg>\n </i>\n ",
|
|
22823
22856
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
22824
|
-
styles: [":host{-moz-user-select:none;-webkit-user-select:none;align-items:center;background:transparent;border:none;border-radius:3px;color:var(--text-main,#3d464d);cursor:pointer;display:inline-flex;flex:0 0 auto;flex-direction:row;font-size:1.2rem;gap:.4rem;justify-content:center;line-height:3.2rem;overflow:hidden;padding:0 1rem;text-overflow:clip;text-transform:uppercase;transition:all .2s ease-in-out;user-select:none;white-space:nowrap}:host .button-contents{color:inherit;display:contents}:host .button-contents,:host i{font-size:inherit;line-height:inherit}:host[size=small]{font-size:1rem;line-height:2.4rem;padding:0 .5rem}:host[size=large]{font-size:1.6rem;line-height:3.6rem;padding:0 1.25rem}:host:focus{outline:none}:host.novo-button-disabled,:host[disabled]{cursor:not-allowed;opacity:.5;pointer-events:none}:host[disabled=false]{cursor:pointer;opacity:1;pointer-events:auto}:host[loading=true]{cursor:not-allowed;opacity:.5;pointer-events:none}:host[loading=true] i.loading{-webkit-animation:rotate 1.2s linear infinite;align-items:center;animation:rotate 1.2s linear infinite;display:flex;justify-content:center}:host[loading=true] i.loading svg{height:100%;max-height:15px;max-width:15px;width:100%}:host[loading=true] i.loading svg .spinner{fill:currentColor}@-webkit-keyframes rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}", ":host[theme=standard]{background:#dbdbdb;color:#3d464d}:host[theme=standard][color=black]{background:#000;color:#fff}:host[theme=standard][color=white]{background:#fff;color:#000}:host[theme=standard][color=gray],:host[theme=standard][color=grey]{background:#9e9e9e;color:#000}:host[theme=standard][color=bright],:host[theme=standard][color=offWhite]{background:#f7f7f7;color:#000}:host[theme=standard][color=light]{background:#dbdbdb;color:#000}:host[theme=standard][color=neutral]{background:#4f5361;color:#fff}:host[theme=standard][color=dark]{background:#3d464d;color:#fff}:host[theme=standard][color=orange]{background:#ff6900;color:#000}:host[theme=standard][color=navigation]{background:#202b38;color:#fff}:host[theme=standard][color=skyBlue]{background:#009bdf;color:#fff}:host[theme=standard][color=steel]{background:#5b6770;color:#fff}:host[theme=standard][color=metal]{background:#637893;color:#fff}:host[theme=standard][color=sand]{background:#f4f4f4;color:#000}:host[theme=standard][color=silver]{background:#e2e2e2;color:#000}:host[theme=standard][color=stone]{background:#bebebe;color:#000}:host[theme=standard][color=ash]{background:#a0a0a0;color:#000}:host[theme=standard][color=slate]{background:#707070;color:#fff}:host[theme=standard][color=onyx]{background:#526980;color:#fff}:host[theme=standard][color=charcoal]{background:#282828;color:#fff}:host[theme=standard][color=moonlight]{background:#1a242f;color:#fff}:host[theme=standard][color=midnight]{background:#202b38;color:#fff}:host[theme=standard][color=darkness]{background:#161f27;color:#fff}:host[theme=standard][color=navy]{background:#0d2d42;color:#fff}:host[theme=standard][color=aqua]{background:#3bafda;color:#000}:host[theme=standard][color=ocean]{background:#4a89dc;color:#fff}:host[theme=standard][color=mint]{background:#37bc9b;color:#000}:host[theme=standard][color=grass]{background:#8cc152;color:#000}:host[theme=standard][color=sunflower]{background:#f6b042;color:#000}:host[theme=standard][color=bittersweet]{background:#eb6845;color:#fff}:host[theme=standard][color=grapefruit]{background:#da4453;color:#fff}:host[theme=standard][color=carnation]{background:#d770ad;color:#fff}:host[theme=standard][color=lavender]{background:#967adc;color:#fff}:host[theme=standard][color=mountain]{background:#9678b6;color:#fff}:host[theme=standard][color=info],:host[theme=standard][color=positive]{background:#4a89dc;color:#fff}:host[theme=standard][color=success]{background:#8cc152;color:#000}:host[theme=standard][color=danger],:host[theme=standard][color=error],:host[theme=standard][color=negative]{background:#da4453;color:#fff}:host[theme=standard][color=warning]{background:#f6b042;color:#000}:host[theme=standard][color=empty]{background:#cccdcc;color:#000}:host[theme=standard][color=disabled]{background:#bebebe;color:#000}:host[theme=standard][color=background]{background:#f7f7f7;color:#000}:host[theme=standard][color=backgroundDark]{background:#e2e2e2;color:#000}:host[theme=standard][color=presentation]{background:#5b6770;color:#fff}:host[theme=standard][color=bullhorn]{background:#ff6900;color:#000}:host[theme=standard][color=pulse]{background:#3bafda;color:#000}:host[theme=standard][color=company]{background:#39d;color:#fff}:host[theme=standard][color=candidate]{background:#4b7;color:#000}:host[theme=standard][color=lead]{background:#a69;color:#fff}:host[theme=standard][color=contact]{background:#fa4;color:#000}:host[theme=standard][color=opportunity]{background:#625;color:#fff}:host[theme=standard][color=job]{background:#b56;color:#fff}:host[theme=standard][color=submission]{background:#a9adbb;color:#000}:host[theme=standard][color=sendout]{background:#747884;color:#fff}:host[theme=standard][color=placement]{background:#0b344f;color:#fff}:host[theme=standard][color=note]{background:#747884;color:#fff}:host[theme=standard][color=contract]{background:#454ea0;color:#fff}:host[theme=standard][color=billableCharge],:host[theme=standard][color=corporateUser],:host[theme=standard][color=credential],:host[theme=standard][color=distributionList],:host[theme=standard][color=earnCode],:host[theme=standard][color=invoiceStatement],:host[theme=standard][color=jobCode],:host[theme=standard][color=payableCharge],:host[theme=standard][color=person],:host[theme=standard][color=user]{background:#696d79;color:#fff}:host[theme=standard]:focus,:host[theme=standard]:hover{box-shadow:0 3px 7px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.15)}:host[theme=standard]:active{box-shadow:0 1px 2px rgba(0,0,0,.15)}", ":host[theme=primary]{background:#4a89dc;color:#fff;text-align:left}:host[theme=primary][color=black]{background:#000;color:#fff}:host[theme=primary][color=white]{color:#000}:host[theme=primary][color=gray],:host[theme=primary][color=grey]{background:#9e9e9e;color:#000}:host[theme=primary][color=bright],:host[theme=primary][color=offWhite]{background:#f7f7f7;color:#000}:host[theme=primary][color=light]{background:#dbdbdb;color:#000}:host[theme=primary][color=neutral]{background:#4f5361;color:#fff}:host[theme=primary][color=dark]{background:#3d464d;color:#fff}:host[theme=primary][color=orange]{background:#ff6900;color:#000}:host[theme=primary][color=navigation]{background:#202b38;color:#fff}:host[theme=primary][color=skyBlue]{background:#009bdf;color:#fff}:host[theme=primary][color=steel]{background:#5b6770;color:#fff}:host[theme=primary][color=metal]{background:#637893;color:#fff}:host[theme=primary][color=sand]{background:#f4f4f4;color:#000}:host[theme=primary][color=silver]{background:#e2e2e2;color:#000}:host[theme=primary][color=stone]{background:#bebebe;color:#000}:host[theme=primary][color=ash]{background:#a0a0a0;color:#000}:host[theme=primary][color=slate]{background:#707070;color:#fff}:host[theme=primary][color=onyx]{background:#526980;color:#fff}:host[theme=primary][color=charcoal]{background:#282828;color:#fff}:host[theme=primary][color=moonlight]{background:#1a242f;color:#fff}:host[theme=primary][color=midnight]{background:#202b38;color:#fff}:host[theme=primary][color=darkness]{background:#161f27;color:#fff}:host[theme=primary][color=navy]{background:#0d2d42;color:#fff}:host[theme=primary][color=aqua]{background:#3bafda;color:#000}:host[theme=primary][color=ocean]{background:#4a89dc;color:#fff}:host[theme=primary][color=mint]{background:#37bc9b;color:#000}:host[theme=primary][color=grass]{background:#8cc152;color:#000}:host[theme=primary][color=sunflower]{background:#f6b042;color:#000}:host[theme=primary][color=bittersweet]{background:#eb6845;color:#fff}:host[theme=primary][color=grapefruit]{background:#da4453;color:#fff}:host[theme=primary][color=carnation]{background:#d770ad;color:#fff}:host[theme=primary][color=lavender]{background:#967adc;color:#fff}:host[theme=primary][color=mountain]{background:#9678b6;color:#fff}:host[theme=primary][color=info],:host[theme=primary][color=positive]{background:#4a89dc;color:#fff}:host[theme=primary][color=success]{background:#8cc152;color:#000}:host[theme=primary][color=danger],:host[theme=primary][color=error],:host[theme=primary][color=negative]{background:#da4453;color:#fff}:host[theme=primary][color=warning]{background:#f6b042;color:#000}:host[theme=primary][color=empty]{background:#cccdcc;color:#000}:host[theme=primary][color=disabled]{background:#bebebe;color:#000}:host[theme=primary][color=background]{background:#f7f7f7;color:#000}:host[theme=primary][color=backgroundDark]{background:#e2e2e2;color:#000}:host[theme=primary][color=presentation]{background:#5b6770;color:#fff}:host[theme=primary][color=bullhorn]{background:#ff6900;color:#000}:host[theme=primary][color=pulse]{background:#3bafda;color:#000}:host[theme=primary][color=company]{background:#39d;color:#fff}:host[theme=primary][color=candidate]{background:#4b7;color:#000}:host[theme=primary][color=lead]{background:#a69;color:#fff}:host[theme=primary][color=contact]{background:#fa4;color:#000}:host[theme=primary][color=opportunity]{background:#625;color:#fff}:host[theme=primary][color=job]{background:#b56;color:#fff}:host[theme=primary][color=submission]{background:#a9adbb;color:#000}:host[theme=primary][color=sendout]{background:#747884;color:#fff}:host[theme=primary][color=placement]{background:#0b344f;color:#fff}:host[theme=primary][color=note]{background:#747884;color:#fff}:host[theme=primary][color=contract]{background:#454ea0;color:#fff}:host[theme=primary][color=billableCharge],:host[theme=primary][color=corporateUser],:host[theme=primary][color=credential],:host[theme=primary][color=distributionList],:host[theme=primary][color=earnCode],:host[theme=primary][color=invoiceStatement],:host[theme=primary][color=jobCode],:host[theme=primary][color=payableCharge],:host[theme=primary][color=person],:host[theme=primary][color=user]{background:#696d79;color:#fff}:host[theme=primary]:focus,:host[theme=primary]:hover{box-shadow:0 3px 7px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.15);filter:brightness(1.15)}:host[theme=primary]:active{box-shadow:0 1px 2px rgba(0,0,0,.15);filter:brightness(.85)}:host[theme=primary][color=white]{background:#fff;color:#4a89dc}:host[theme=primary][color=white]:focus,:host[theme=primary][color=white]:hover{background:#f7f7f7}:host[theme=primary][color=white]:active{background:#eaeaea}:host[theme=primary][color=white] i{background:rgba(0,0,0,.05)}", ":host[theme=secondary]{align-items:center;background:#fff;border:1px solid #4a89dc;color:#4a89dc;line-height:calc(3.2rem - 2px);padding:0 calc(1rem - 1px);text-align:left}:host[theme=secondary][color=black],:host[theme=secondary][color=black] i{color:#000}:host[theme=secondary][color=white],:host[theme=secondary][color=white] i{color:#fff}:host[theme=secondary][color=gray],:host[theme=secondary][color=gray] i,:host[theme=secondary][color=grey],:host[theme=secondary][color=grey] i{color:#9e9e9e}:host[theme=secondary][color=bright],:host[theme=secondary][color=bright] i,:host[theme=secondary][color=offWhite],:host[theme=secondary][color=offWhite] i{color:#f7f7f7}:host[theme=secondary][color=light],:host[theme=secondary][color=light] i{color:#dbdbdb}:host[theme=secondary][color=neutral],:host[theme=secondary][color=neutral] i{color:#4f5361}:host[theme=secondary][color=dark],:host[theme=secondary][color=dark] i{color:#3d464d}:host[theme=secondary][color=orange],:host[theme=secondary][color=orange] i{color:#ff6900}:host[theme=secondary][color=navigation],:host[theme=secondary][color=navigation] i{color:#202b38}:host[theme=secondary][color=skyBlue],:host[theme=secondary][color=skyBlue] i{color:#009bdf}:host[theme=secondary][color=steel],:host[theme=secondary][color=steel] i{color:#5b6770}:host[theme=secondary][color=metal],:host[theme=secondary][color=metal] i{color:#637893}:host[theme=secondary][color=sand],:host[theme=secondary][color=sand] i{color:#f4f4f4}:host[theme=secondary][color=silver],:host[theme=secondary][color=silver] i{color:#e2e2e2}:host[theme=secondary][color=stone],:host[theme=secondary][color=stone] i{color:#bebebe}:host[theme=secondary][color=ash],:host[theme=secondary][color=ash] i{color:#a0a0a0}:host[theme=secondary][color=slate],:host[theme=secondary][color=slate] i{color:#707070}:host[theme=secondary][color=onyx],:host[theme=secondary][color=onyx] i{color:#526980}:host[theme=secondary][color=charcoal],:host[theme=secondary][color=charcoal] i{color:#282828}:host[theme=secondary][color=moonlight],:host[theme=secondary][color=moonlight] i{color:#1a242f}:host[theme=secondary][color=midnight],:host[theme=secondary][color=midnight] i{color:#202b38}:host[theme=secondary][color=darkness],:host[theme=secondary][color=darkness] i{color:#161f27}:host[theme=secondary][color=navy],:host[theme=secondary][color=navy] i{color:#0d2d42}:host[theme=secondary][color=aqua],:host[theme=secondary][color=aqua] i{color:#3bafda}:host[theme=secondary][color=ocean],:host[theme=secondary][color=ocean] i{color:#4a89dc}:host[theme=secondary][color=mint],:host[theme=secondary][color=mint] i{color:#37bc9b}:host[theme=secondary][color=grass],:host[theme=secondary][color=grass] i{color:#8cc152}:host[theme=secondary][color=sunflower],:host[theme=secondary][color=sunflower] i{color:#f6b042}:host[theme=secondary][color=bittersweet],:host[theme=secondary][color=bittersweet] i{color:#eb6845}:host[theme=secondary][color=grapefruit],:host[theme=secondary][color=grapefruit] i{color:#da4453}:host[theme=secondary][color=carnation],:host[theme=secondary][color=carnation] i{color:#d770ad}:host[theme=secondary][color=lavender],:host[theme=secondary][color=lavender] i{color:#967adc}:host[theme=secondary][color=mountain],:host[theme=secondary][color=mountain] i{color:#9678b6}:host[theme=secondary][color=info],:host[theme=secondary][color=info] i,:host[theme=secondary][color=positive],:host[theme=secondary][color=positive] i{color:#4a89dc}:host[theme=secondary][color=success],:host[theme=secondary][color=success] i{color:#8cc152}:host[theme=secondary][color=danger],:host[theme=secondary][color=danger] i,:host[theme=secondary][color=error],:host[theme=secondary][color=error] i,:host[theme=secondary][color=negative],:host[theme=secondary][color=negative] i{color:#da4453}:host[theme=secondary][color=warning],:host[theme=secondary][color=warning] i{color:#f6b042}:host[theme=secondary][color=empty],:host[theme=secondary][color=empty] i{color:#cccdcc}:host[theme=secondary][color=disabled],:host[theme=secondary][color=disabled] i{color:#bebebe}:host[theme=secondary][color=background],:host[theme=secondary][color=background] i{color:#f7f7f7}:host[theme=secondary][color=backgroundDark],:host[theme=secondary][color=backgroundDark] i{color:#e2e2e2}:host[theme=secondary][color=presentation],:host[theme=secondary][color=presentation] i{color:#5b6770}:host[theme=secondary][color=bullhorn],:host[theme=secondary][color=bullhorn] i{color:#ff6900}:host[theme=secondary][color=pulse],:host[theme=secondary][color=pulse] i{color:#3bafda}:host[theme=secondary][color=company],:host[theme=secondary][color=company] i{color:#39d}:host[theme=secondary][color=candidate],:host[theme=secondary][color=candidate] i{color:#4b7}:host[theme=secondary][color=lead],:host[theme=secondary][color=lead] i{color:#a69}:host[theme=secondary][color=contact],:host[theme=secondary][color=contact] i{color:#fa4}:host[theme=secondary][color=opportunity],:host[theme=secondary][color=opportunity] i{color:#625}:host[theme=secondary][color=job],:host[theme=secondary][color=job] i{color:#b56}:host[theme=secondary][color=submission],:host[theme=secondary][color=submission] i{color:#a9adbb}:host[theme=secondary][color=sendout],:host[theme=secondary][color=sendout] i{color:#747884}:host[theme=secondary][color=placement],:host[theme=secondary][color=placement] i{color:#0b344f}:host[theme=secondary][color=note],:host[theme=secondary][color=note] i{color:#747884}:host[theme=secondary][color=contract],:host[theme=secondary][color=contract] i{color:#454ea0}:host[theme=secondary][color=billableCharge],:host[theme=secondary][color=billableCharge] i,:host[theme=secondary][color=corporateUser],:host[theme=secondary][color=corporateUser] i,:host[theme=secondary][color=credential],:host[theme=secondary][color=credential] i,:host[theme=secondary][color=distributionList],:host[theme=secondary][color=distributionList] i,:host[theme=secondary][color=earnCode],:host[theme=secondary][color=earnCode] i,:host[theme=secondary][color=invoiceStatement],:host[theme=secondary][color=invoiceStatement] i,:host[theme=secondary][color=jobCode],:host[theme=secondary][color=jobCode] i,:host[theme=secondary][color=payableCharge],:host[theme=secondary][color=payableCharge] i,:host[theme=secondary][color=person],:host[theme=secondary][color=person] i,:host[theme=secondary][color=user],:host[theme=secondary][color=user] i{color:#696d79}:host[theme=secondary][color=black]{border:1px solid #000}:host[theme=secondary][color=white]{border:1px solid #fff}:host[theme=secondary][color=gray],:host[theme=secondary][color=grey]{border:1px solid #9e9e9e}:host[theme=secondary][color=bright],:host[theme=secondary][color=offWhite]{border:1px solid #f7f7f7}:host[theme=secondary][color=light]{border:1px solid #dbdbdb}:host[theme=secondary][color=neutral]{border:1px solid #4f5361}:host[theme=secondary][color=dark]{border:1px solid #3d464d}:host[theme=secondary][color=orange]{border:1px solid #ff6900}:host[theme=secondary][color=navigation]{border:1px solid #202b38}:host[theme=secondary][color=skyBlue]{border:1px solid #009bdf}:host[theme=secondary][color=steel]{border:1px solid #5b6770}:host[theme=secondary][color=metal]{border:1px solid #637893}:host[theme=secondary][color=sand]{border:1px solid #f4f4f4}:host[theme=secondary][color=silver]{border:1px solid #e2e2e2}:host[theme=secondary][color=stone]{border:1px solid #bebebe}:host[theme=secondary][color=ash]{border:1px solid #a0a0a0}:host[theme=secondary][color=slate]{border:1px solid #707070}:host[theme=secondary][color=onyx]{border:1px solid #526980}:host[theme=secondary][color=charcoal]{border:1px solid #282828}:host[theme=secondary][color=moonlight]{border:1px solid #1a242f}:host[theme=secondary][color=midnight]{border:1px solid #202b38}:host[theme=secondary][color=darkness]{border:1px solid #161f27}:host[theme=secondary][color=navy]{border:1px solid #0d2d42}:host[theme=secondary][color=aqua]{border:1px solid #3bafda}:host[theme=secondary][color=ocean]{border:1px solid #4a89dc}:host[theme=secondary][color=mint]{border:1px solid #37bc9b}:host[theme=secondary][color=grass]{border:1px solid #8cc152}:host[theme=secondary][color=sunflower]{border:1px solid #f6b042}:host[theme=secondary][color=bittersweet]{border:1px solid #eb6845}:host[theme=secondary][color=grapefruit]{border:1px solid #da4453}:host[theme=secondary][color=carnation]{border:1px solid #d770ad}:host[theme=secondary][color=lavender]{border:1px solid #967adc}:host[theme=secondary][color=mountain]{border:1px solid #9678b6}:host[theme=secondary][color=info],:host[theme=secondary][color=positive]{border:1px solid #4a89dc}:host[theme=secondary][color=success]{border:1px solid #8cc152}:host[theme=secondary][color=danger],:host[theme=secondary][color=error],:host[theme=secondary][color=negative]{border:1px solid #da4453}:host[theme=secondary][color=warning]{border:1px solid #f6b042}:host[theme=secondary][color=empty]{border:1px solid #cccdcc}:host[theme=secondary][color=disabled]{border:1px solid #bebebe}:host[theme=secondary][color=background]{border:1px solid #f7f7f7}:host[theme=secondary][color=backgroundDark]{border:1px solid #e2e2e2}:host[theme=secondary][color=presentation]{border:1px solid #5b6770}:host[theme=secondary][color=bullhorn]{border:1px solid #ff6900}:host[theme=secondary][color=pulse]{border:1px solid #3bafda}:host[theme=secondary][color=company]{border:1px solid #39d}:host[theme=secondary][color=candidate]{border:1px solid #4b7}:host[theme=secondary][color=lead]{border:1px solid #a69}:host[theme=secondary][color=contact]{border:1px solid #fa4}:host[theme=secondary][color=opportunity]{border:1px solid #625}:host[theme=secondary][color=job]{border:1px solid #b56}:host[theme=secondary][color=submission]{border:1px solid #a9adbb}:host[theme=secondary][color=sendout]{border:1px solid #747884}:host[theme=secondary][color=placement]{border:1px solid #0b344f}:host[theme=secondary][color=note]{border:1px solid #747884}:host[theme=secondary][color=contract]{border:1px solid #454ea0}:host[theme=secondary][color=billableCharge],:host[theme=secondary][color=corporateUser],:host[theme=secondary][color=credential],:host[theme=secondary][color=distributionList],:host[theme=secondary][color=earnCode],:host[theme=secondary][color=invoiceStatement],:host[theme=secondary][color=jobCode],:host[theme=secondary][color=payableCharge],:host[theme=secondary][color=person],:host[theme=secondary][color=user]{border:1px solid #696d79}:host[theme=secondary][size=small]{line-height:calc(2.4rem - 2px)}:host[theme=secondary][size=large]{line-height:calc(4rem - 2px)}:host[theme=secondary] i.loading{margin-left:.8rem}:host[theme=secondary] i.loading svg .spinner{fill:#4a89dc}:host[theme=secondary]:focus,:host[theme=secondary]:hover{box-shadow:0 3px 7px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.15)}:host[theme=secondary]:active{box-shadow:0 1px 2px rgba(0,0,0,.15)}:host[theme=secondary][inverse]{background:rgba(0,0,0,.25);border:1px solid #fff;color:#fff}:host[theme=secondary][inverse]:focus,:host[theme=secondary][inverse]:hover{background:rgba(0,0,0,.35)}:host[theme=secondary][inverse]:active{background:rgba(0,0,0,.45)}:host[theme=secondary][inverse] i.loading svg .spinner{fill:#fff}", ":host[theme=fab]{align-items:center;border-radius:50%!important;display:inline-flex;font-size:1.2rem;height:3.2rem;justify-content:center;line-height:1.6rem;padding:0;width:3.2rem}:host[theme=fab][color=black]{background:#000;color:#fff}:host[theme=fab][color=white]{background:#fff;color:#000}:host[theme=fab][color=gray],:host[theme=fab][color=grey]{background:#9e9e9e;color:#000}:host[theme=fab][color=bright],:host[theme=fab][color=offWhite]{background:#f7f7f7;color:#000}:host[theme=fab][color=light]{background:#dbdbdb;color:#000}:host[theme=fab][color=neutral]{background:#4f5361;color:#fff}:host[theme=fab][color=dark]{background:#3d464d;color:#fff}:host[theme=fab][color=orange]{background:#ff6900;color:#000}:host[theme=fab][color=navigation]{background:#202b38;color:#fff}:host[theme=fab][color=skyBlue]{background:#009bdf;color:#fff}:host[theme=fab][color=steel]{background:#5b6770;color:#fff}:host[theme=fab][color=metal]{background:#637893;color:#fff}:host[theme=fab][color=sand]{background:#f4f4f4;color:#000}:host[theme=fab][color=silver]{background:#e2e2e2;color:#000}:host[theme=fab][color=stone]{background:#bebebe;color:#000}:host[theme=fab][color=ash]{background:#a0a0a0;color:#000}:host[theme=fab][color=slate]{background:#707070;color:#fff}:host[theme=fab][color=onyx]{background:#526980;color:#fff}:host[theme=fab][color=charcoal]{background:#282828;color:#fff}:host[theme=fab][color=moonlight]{background:#1a242f;color:#fff}:host[theme=fab][color=midnight]{background:#202b38;color:#fff}:host[theme=fab][color=darkness]{background:#161f27;color:#fff}:host[theme=fab][color=navy]{background:#0d2d42;color:#fff}:host[theme=fab][color=aqua]{background:#3bafda;color:#000}:host[theme=fab][color=ocean]{background:#4a89dc;color:#fff}:host[theme=fab][color=mint]{background:#37bc9b;color:#000}:host[theme=fab][color=grass]{background:#8cc152;color:#000}:host[theme=fab][color=sunflower]{background:#f6b042;color:#000}:host[theme=fab][color=bittersweet]{background:#eb6845;color:#fff}:host[theme=fab][color=grapefruit]{background:#da4453;color:#fff}:host[theme=fab][color=carnation]{background:#d770ad;color:#fff}:host[theme=fab][color=lavender]{background:#967adc;color:#fff}:host[theme=fab][color=mountain]{background:#9678b6;color:#fff}:host[theme=fab][color=info],:host[theme=fab][color=positive]{background:#4a89dc;color:#fff}:host[theme=fab][color=success]{background:#8cc152;color:#000}:host[theme=fab][color=danger],:host[theme=fab][color=error],:host[theme=fab][color=negative]{background:#da4453;color:#fff}:host[theme=fab][color=warning]{background:#f6b042;color:#000}:host[theme=fab][color=empty]{background:#cccdcc;color:#000}:host[theme=fab][color=disabled]{background:#bebebe;color:#000}:host[theme=fab][color=background]{background:#f7f7f7;color:#000}:host[theme=fab][color=backgroundDark]{background:#e2e2e2;color:#000}:host[theme=fab][color=presentation]{background:#5b6770;color:#fff}:host[theme=fab][color=bullhorn]{background:#ff6900;color:#000}:host[theme=fab][color=pulse]{background:#3bafda;color:#000}:host[theme=fab][color=company]{background:#39d;color:#fff}:host[theme=fab][color=candidate]{background:#4b7;color:#000}:host[theme=fab][color=lead]{background:#a69;color:#fff}:host[theme=fab][color=contact]{background:#fa4;color:#000}:host[theme=fab][color=opportunity]{background:#625;color:#fff}:host[theme=fab][color=job]{background:#b56;color:#fff}:host[theme=fab][color=submission]{background:#a9adbb;color:#000}:host[theme=fab][color=sendout]{background:#747884;color:#fff}:host[theme=fab][color=placement]{background:#0b344f;color:#fff}:host[theme=fab][color=note]{background:#747884;color:#fff}:host[theme=fab][color=contract]{background:#454ea0;color:#fff}:host[theme=fab][color=billableCharge],:host[theme=fab][color=corporateUser],:host[theme=fab][color=credential],:host[theme=fab][color=distributionList],:host[theme=fab][color=earnCode],:host[theme=fab][color=invoiceStatement],:host[theme=fab][color=jobCode],:host[theme=fab][color=payableCharge],:host[theme=fab][color=person],:host[theme=fab][color=user]{background:#696d79;color:#fff}:host[theme=fab][inverse]{color:#fff}:host[theme=fab]:active,:host[theme=fab]:focus,:host[theme=fab]:hover{box-shadow:0 1px 2px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)}:host[theme=fab] i{margin:0;padding:0}:host[theme=fab] i:before{display:block}", ":host[theme=icon]{font-size:1.6rem;line-height:1.6rem;padding:.5rem}:host[theme=icon][color=black],:host[theme=icon][color=black] i{color:#000}:host[theme=icon][color=white],:host[theme=icon][color=white] i{color:#fff}:host[theme=icon][color=gray],:host[theme=icon][color=gray] i,:host[theme=icon][color=grey],:host[theme=icon][color=grey] i{color:#9e9e9e}:host[theme=icon][color=bright],:host[theme=icon][color=bright] i,:host[theme=icon][color=offWhite],:host[theme=icon][color=offWhite] i{color:#f7f7f7}:host[theme=icon][color=light],:host[theme=icon][color=light] i{color:#dbdbdb}:host[theme=icon][color=neutral],:host[theme=icon][color=neutral] i{color:#4f5361}:host[theme=icon][color=dark],:host[theme=icon][color=dark] i{color:#3d464d}:host[theme=icon][color=orange],:host[theme=icon][color=orange] i{color:#ff6900}:host[theme=icon][color=navigation],:host[theme=icon][color=navigation] i{color:#202b38}:host[theme=icon][color=skyBlue],:host[theme=icon][color=skyBlue] i{color:#009bdf}:host[theme=icon][color=steel],:host[theme=icon][color=steel] i{color:#5b6770}:host[theme=icon][color=metal],:host[theme=icon][color=metal] i{color:#637893}:host[theme=icon][color=sand],:host[theme=icon][color=sand] i{color:#f4f4f4}:host[theme=icon][color=silver],:host[theme=icon][color=silver] i{color:#e2e2e2}:host[theme=icon][color=stone],:host[theme=icon][color=stone] i{color:#bebebe}:host[theme=icon][color=ash],:host[theme=icon][color=ash] i{color:#a0a0a0}:host[theme=icon][color=slate],:host[theme=icon][color=slate] i{color:#707070}:host[theme=icon][color=onyx],:host[theme=icon][color=onyx] i{color:#526980}:host[theme=icon][color=charcoal],:host[theme=icon][color=charcoal] i{color:#282828}:host[theme=icon][color=moonlight],:host[theme=icon][color=moonlight] i{color:#1a242f}:host[theme=icon][color=midnight],:host[theme=icon][color=midnight] i{color:#202b38}:host[theme=icon][color=darkness],:host[theme=icon][color=darkness] i{color:#161f27}:host[theme=icon][color=navy],:host[theme=icon][color=navy] i{color:#0d2d42}:host[theme=icon][color=aqua],:host[theme=icon][color=aqua] i{color:#3bafda}:host[theme=icon][color=ocean],:host[theme=icon][color=ocean] i{color:#4a89dc}:host[theme=icon][color=mint],:host[theme=icon][color=mint] i{color:#37bc9b}:host[theme=icon][color=grass],:host[theme=icon][color=grass] i{color:#8cc152}:host[theme=icon][color=sunflower],:host[theme=icon][color=sunflower] i{color:#f6b042}:host[theme=icon][color=bittersweet],:host[theme=icon][color=bittersweet] i{color:#eb6845}:host[theme=icon][color=grapefruit],:host[theme=icon][color=grapefruit] i{color:#da4453}:host[theme=icon][color=carnation],:host[theme=icon][color=carnation] i{color:#d770ad}:host[theme=icon][color=lavender],:host[theme=icon][color=lavender] i{color:#967adc}:host[theme=icon][color=mountain],:host[theme=icon][color=mountain] i{color:#9678b6}:host[theme=icon][color=info],:host[theme=icon][color=info] i,:host[theme=icon][color=positive],:host[theme=icon][color=positive] i{color:#4a89dc}:host[theme=icon][color=success],:host[theme=icon][color=success] i{color:#8cc152}:host[theme=icon][color=danger],:host[theme=icon][color=danger] i,:host[theme=icon][color=error],:host[theme=icon][color=error] i,:host[theme=icon][color=negative],:host[theme=icon][color=negative] i{color:#da4453}:host[theme=icon][color=warning],:host[theme=icon][color=warning] i{color:#f6b042}:host[theme=icon][color=empty],:host[theme=icon][color=empty] i{color:#cccdcc}:host[theme=icon][color=disabled],:host[theme=icon][color=disabled] i{color:#bebebe}:host[theme=icon][color=background],:host[theme=icon][color=background] i{color:#f7f7f7}:host[theme=icon][color=backgroundDark],:host[theme=icon][color=backgroundDark] i{color:#e2e2e2}:host[theme=icon][color=presentation],:host[theme=icon][color=presentation] i{color:#5b6770}:host[theme=icon][color=bullhorn],:host[theme=icon][color=bullhorn] i{color:#ff6900}:host[theme=icon][color=pulse],:host[theme=icon][color=pulse] i{color:#3bafda}:host[theme=icon][color=company],:host[theme=icon][color=company] i{color:#39d}:host[theme=icon][color=candidate],:host[theme=icon][color=candidate] i{color:#4b7}:host[theme=icon][color=lead],:host[theme=icon][color=lead] i{color:#a69}:host[theme=icon][color=contact],:host[theme=icon][color=contact] i{color:#fa4}:host[theme=icon][color=opportunity],:host[theme=icon][color=opportunity] i{color:#625}:host[theme=icon][color=job],:host[theme=icon][color=job] i{color:#b56}:host[theme=icon][color=submission],:host[theme=icon][color=submission] i{color:#a9adbb}:host[theme=icon][color=sendout],:host[theme=icon][color=sendout] i{color:#747884}:host[theme=icon][color=placement],:host[theme=icon][color=placement] i{color:#0b344f}:host[theme=icon][color=note],:host[theme=icon][color=note] i{color:#747884}:host[theme=icon][color=contract],:host[theme=icon][color=contract] i{color:#454ea0}:host[theme=icon][color=billableCharge],:host[theme=icon][color=billableCharge] i,:host[theme=icon][color=corporateUser],:host[theme=icon][color=corporateUser] i,:host[theme=icon][color=credential],:host[theme=icon][color=credential] i,:host[theme=icon][color=distributionList],:host[theme=icon][color=distributionList] i,:host[theme=icon][color=earnCode],:host[theme=icon][color=earnCode] i,:host[theme=icon][color=invoiceStatement],:host[theme=icon][color=invoiceStatement] i,:host[theme=icon][color=jobCode],:host[theme=icon][color=jobCode] i,:host[theme=icon][color=payableCharge],:host[theme=icon][color=payableCharge] i,:host[theme=icon][color=person],:host[theme=icon][color=person] i,:host[theme=icon][color=user],:host[theme=icon][color=user] i{color:#696d79}:host[theme=icon][inverse]{color:#fff}:host[theme=icon] i{margin:0!important}:host[theme=icon]:focus,:host[theme=icon]:hover{background:rgba(0,0,0,.1)}:host[theme=icon]:active{background:rgba(0,0,0,.25)}:host[theme=icon][size=small]{font-size:1.2rem;line-height:1.2rem;padding:.5rem}:host[theme=icon][size=large]{font-size:2rem;line-height:2rem;padding:1rem}", ":host[theme=dialogue]{background:transparent;color:#4a89dc}:host[theme=dialogue][color=black],:host[theme=dialogue][color=black] i{color:#000}:host[theme=dialogue][color=white],:host[theme=dialogue][color=white] i{color:#fff}:host[theme=dialogue][color=gray],:host[theme=dialogue][color=gray] i,:host[theme=dialogue][color=grey],:host[theme=dialogue][color=grey] i{color:#9e9e9e}:host[theme=dialogue][color=bright],:host[theme=dialogue][color=bright] i,:host[theme=dialogue][color=offWhite],:host[theme=dialogue][color=offWhite] i{color:#f7f7f7}:host[theme=dialogue][color=light],:host[theme=dialogue][color=light] i{color:#dbdbdb}:host[theme=dialogue][color=neutral],:host[theme=dialogue][color=neutral] i{color:#4f5361}:host[theme=dialogue][color=dark],:host[theme=dialogue][color=dark] i{color:#3d464d}:host[theme=dialogue][color=orange],:host[theme=dialogue][color=orange] i{color:#ff6900}:host[theme=dialogue][color=navigation],:host[theme=dialogue][color=navigation] i{color:#202b38}:host[theme=dialogue][color=skyBlue],:host[theme=dialogue][color=skyBlue] i{color:#009bdf}:host[theme=dialogue][color=steel],:host[theme=dialogue][color=steel] i{color:#5b6770}:host[theme=dialogue][color=metal],:host[theme=dialogue][color=metal] i{color:#637893}:host[theme=dialogue][color=sand],:host[theme=dialogue][color=sand] i{color:#f4f4f4}:host[theme=dialogue][color=silver],:host[theme=dialogue][color=silver] i{color:#e2e2e2}:host[theme=dialogue][color=stone],:host[theme=dialogue][color=stone] i{color:#bebebe}:host[theme=dialogue][color=ash],:host[theme=dialogue][color=ash] i{color:#a0a0a0}:host[theme=dialogue][color=slate],:host[theme=dialogue][color=slate] i{color:#707070}:host[theme=dialogue][color=onyx],:host[theme=dialogue][color=onyx] i{color:#526980}:host[theme=dialogue][color=charcoal],:host[theme=dialogue][color=charcoal] i{color:#282828}:host[theme=dialogue][color=moonlight],:host[theme=dialogue][color=moonlight] i{color:#1a242f}:host[theme=dialogue][color=midnight],:host[theme=dialogue][color=midnight] i{color:#202b38}:host[theme=dialogue][color=darkness],:host[theme=dialogue][color=darkness] i{color:#161f27}:host[theme=dialogue][color=navy],:host[theme=dialogue][color=navy] i{color:#0d2d42}:host[theme=dialogue][color=aqua],:host[theme=dialogue][color=aqua] i{color:#3bafda}:host[theme=dialogue][color=ocean],:host[theme=dialogue][color=ocean] i{color:#4a89dc}:host[theme=dialogue][color=mint],:host[theme=dialogue][color=mint] i{color:#37bc9b}:host[theme=dialogue][color=grass],:host[theme=dialogue][color=grass] i{color:#8cc152}:host[theme=dialogue][color=sunflower],:host[theme=dialogue][color=sunflower] i{color:#f6b042}:host[theme=dialogue][color=bittersweet],:host[theme=dialogue][color=bittersweet] i{color:#eb6845}:host[theme=dialogue][color=grapefruit],:host[theme=dialogue][color=grapefruit] i{color:#da4453}:host[theme=dialogue][color=carnation],:host[theme=dialogue][color=carnation] i{color:#d770ad}:host[theme=dialogue][color=lavender],:host[theme=dialogue][color=lavender] i{color:#967adc}:host[theme=dialogue][color=mountain],:host[theme=dialogue][color=mountain] i{color:#9678b6}:host[theme=dialogue][color=info],:host[theme=dialogue][color=info] i,:host[theme=dialogue][color=positive],:host[theme=dialogue][color=positive] i{color:#4a89dc}:host[theme=dialogue][color=success],:host[theme=dialogue][color=success] i{color:#8cc152}:host[theme=dialogue][color=danger],:host[theme=dialogue][color=danger] i,:host[theme=dialogue][color=error],:host[theme=dialogue][color=error] i,:host[theme=dialogue][color=negative],:host[theme=dialogue][color=negative] i{color:#da4453}:host[theme=dialogue][color=warning],:host[theme=dialogue][color=warning] i{color:#f6b042}:host[theme=dialogue][color=empty],:host[theme=dialogue][color=empty] i{color:#cccdcc}:host[theme=dialogue][color=disabled],:host[theme=dialogue][color=disabled] i{color:#bebebe}:host[theme=dialogue][color=background],:host[theme=dialogue][color=background] i{color:#f7f7f7}:host[theme=dialogue][color=backgroundDark],:host[theme=dialogue][color=backgroundDark] i{color:#e2e2e2}:host[theme=dialogue][color=presentation],:host[theme=dialogue][color=presentation] i{color:#5b6770}:host[theme=dialogue][color=bullhorn],:host[theme=dialogue][color=bullhorn] i{color:#ff6900}:host[theme=dialogue][color=pulse],:host[theme=dialogue][color=pulse] i{color:#3bafda}:host[theme=dialogue][color=company],:host[theme=dialogue][color=company] i{color:#39d}:host[theme=dialogue][color=candidate],:host[theme=dialogue][color=candidate] i{color:#4b7}:host[theme=dialogue][color=lead],:host[theme=dialogue][color=lead] i{color:#a69}:host[theme=dialogue][color=contact],:host[theme=dialogue][color=contact] i{color:#fa4}:host[theme=dialogue][color=opportunity],:host[theme=dialogue][color=opportunity] i{color:#625}:host[theme=dialogue][color=job],:host[theme=dialogue][color=job] i{color:#b56}:host[theme=dialogue][color=submission],:host[theme=dialogue][color=submission] i{color:#a9adbb}:host[theme=dialogue][color=sendout],:host[theme=dialogue][color=sendout] i{color:#747884}:host[theme=dialogue][color=placement],:host[theme=dialogue][color=placement] i{color:#0b344f}:host[theme=dialogue][color=note],:host[theme=dialogue][color=note] i{color:#747884}:host[theme=dialogue][color=contract],:host[theme=dialogue][color=contract] i{color:#454ea0}:host[theme=dialogue][color=billableCharge],:host[theme=dialogue][color=billableCharge] i,:host[theme=dialogue][color=corporateUser],:host[theme=dialogue][color=corporateUser] i,:host[theme=dialogue][color=credential],:host[theme=dialogue][color=credential] i,:host[theme=dialogue][color=distributionList],:host[theme=dialogue][color=distributionList] i,:host[theme=dialogue][color=earnCode],:host[theme=dialogue][color=earnCode] i,:host[theme=dialogue][color=invoiceStatement],:host[theme=dialogue][color=invoiceStatement] i,:host[theme=dialogue][color=jobCode],:host[theme=dialogue][color=jobCode] i,:host[theme=dialogue][color=payableCharge],:host[theme=dialogue][color=payableCharge] i,:host[theme=dialogue][color=person],:host[theme=dialogue][color=person] i,:host[theme=dialogue][color=user],:host[theme=dialogue][color=user] i{color:#696d79}:host[theme=dialogue]:focus,:host[theme=dialogue]:hover{background:#ededed}:host[theme=dialogue]:active{background:#e0e0e0}:host[theme=dialogue][inverse]:focus,:host[theme=dialogue][inverse]:hover{background:rgba(0,0,0,.2)}:host[theme=dialogue][inverse]:active{background:rgba(0,0,0,.35)}", ":host[theme=field]{background:transparent;border:none;border-bottom:1px solid #3d464d;border-radius:0;color:#3d464d;font-size:1.2rem;line-height:1.8rem;margin-bottom:4px;padding:.25rem .5rem;text-align:left}:host[theme=field]:active,:host[theme=field]:focus,:host[theme=field]:hover{border-bottom:1px solid #4a89dc}:host[theme=select]{align-items:center;background-color:transparent;border:none;border-bottom:1px solid #afb9c0;border-radius:0;color:#3d464d;cursor:pointer;display:flex;font-size:1.2rem;height:2rem;justify-content:space-between;line-height:1.8rem;min-height:2rem;padding:0;position:relative;text-align:left;text-shadow:none;text-transform:none;width:100%;z-index:1}:host[theme=select].empty{color:#a9a9a9}:host[theme=select]:focus,:host[theme=select]:hover{outline:none}:host[theme=select]:hover{border-bottom:1px solid #5f6d78}:host[theme=select]:hover i{opacity:.75}:host[theme=select]:focus{border-bottom:1px solid #4a89dc}:host[theme=select]:focus i{color:rgba(0,0,0,.73)}:host[theme=select] i{color:#3d464d;font-size:.8rem;opacity:.45}"]
|
|
22857
|
+
styles: [":host{-moz-user-select:none;-webkit-user-select:none;background:transparent;border:none;border-radius:3px;color:var(--text-main,#3d464d);cursor:pointer;flex:0 0 auto;flex-direction:row;font-size:var(--font-size-button);gap:1rem;height:3rem;justify-content:center;overflow:hidden;padding:0 1rem;text-overflow:clip;transition:all .2s ease-in-out;user-select:none;white-space:nowrap}:host,:host .button-contents{align-items:center;display:inline-flex;text-transform:uppercase}:host .button-contents{color:inherit}:host .button-contents,:host i{font-size:inherit;height:var(--font-size-button);line-height:1}:host[size=small]{font-size:1rem;gap:.5rem;height:2.4rem;padding:0 1rem}:host[size=small] .button-contents,:host[size=small] i{height:1rem}:host[size=large]{font-size:1.6rem;gap:1.25rem;height:3.6rem;padding:0 1.25rem}:host[size=large] .button-contents,:host[size=large] i{height:1.6rem}:host:focus{outline:none}:host.novo-button-disabled,:host[disabled]{cursor:not-allowed;opacity:.5;pointer-events:none}:host[disabled=false]{cursor:pointer;opacity:1;pointer-events:auto}:host[loading=true]{cursor:not-allowed;opacity:.5;pointer-events:none}:host[loading=true] i.loading{-webkit-animation:rotate 1.2s linear infinite;align-items:center;animation:rotate 1.2s linear infinite;display:flex;justify-content:center}:host[loading=true] i.loading svg{height:100%;max-height:15px;max-width:15px;width:100%}:host[loading=true] i.loading svg .spinner{fill:currentColor}@-webkit-keyframes rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}", ":host[theme=standard]{background:var(--button-background);color:var(--button-text)}:host[theme=standard][color=black]{background:#000;color:#fff}:host[theme=standard][color=white]{background:#fff;color:#3d464d}:host[theme=standard][color=gray],:host[theme=standard][color=grey]{background:#9e9e9e;color:#3d464d}:host[theme=standard][color=bright],:host[theme=standard][color=offWhite]{background:#f7f7f7;color:#3d464d}:host[theme=standard][color=light]{background:#dbdbdb;color:#3d464d}:host[theme=standard][color=neutral]{background:#4f5361;color:#fff}:host[theme=standard][color=dark]{background:#3d464d;color:#fff}:host[theme=standard][color=orange]{background:#ff6900;color:#3d464d}:host[theme=standard][color=navigation]{background:#202945;color:#fff}:host[theme=standard][color=skyBlue]{background:#009bdf;color:#fff}:host[theme=standard][color=steel]{background:#5b6770;color:#fff}:host[theme=standard][color=metal]{background:#637893;color:#fff}:host[theme=standard][color=sand]{background:#f4f4f4;color:#3d464d}:host[theme=standard][color=silver]{background:#e2e2e2;color:#3d464d}:host[theme=standard][color=stone]{background:#bebebe;color:#3d464d}:host[theme=standard][color=ash]{background:#a0a0a0;color:#3d464d}:host[theme=standard][color=slate]{background:#707070;color:#fff}:host[theme=standard][color=onyx]{background:#526980;color:#fff}:host[theme=standard][color=charcoal]{background:#282828;color:#fff}:host[theme=standard][color=moonlight]{background:#1a242f;color:#fff}:host[theme=standard][color=midnight]{background:#202945;color:#fff}:host[theme=standard][color=darkness]{background:#161f27;color:#fff}:host[theme=standard][color=navy]{background:#0d2d42;color:#fff}:host[theme=standard][color=aqua]{background:#3bafda;color:#3d464d}:host[theme=standard][color=ocean]{background:#4a89dc;color:#fff}:host[theme=standard][color=mint]{background:#37bc9b;color:#3d464d}:host[theme=standard][color=grass]{background:#8cc152;color:#fff}:host[theme=standard][color=sunflower]{background:#f6b042;color:#fff}:host[theme=standard][color=bittersweet]{background:#eb6845;color:#fff}:host[theme=standard][color=grapefruit]{background:#da4453;color:#fff}:host[theme=standard][color=carnation]{background:#d770ad;color:#fff}:host[theme=standard][color=lavender]{background:#967adc;color:#fff}:host[theme=standard][color=mountain]{background:#9678b6;color:#fff}:host[theme=standard][color=info],:host[theme=standard][color=positive]{background:#4a89dc;color:#fff}:host[theme=standard][color=success]{background:#8cc152;color:#fff}:host[theme=standard][color=danger],:host[theme=standard][color=error],:host[theme=standard][color=negative]{background:#da4453;color:#fff}:host[theme=standard][color=warning]{background:#f6b042;color:#fff}:host[theme=standard][color=empty]{background:#cccdcc;color:#3d464d}:host[theme=standard][color=disabled]{background:#bebebe;color:#3d464d}:host[theme=standard][color=background]{background:#f7f7f7;color:#3d464d}:host[theme=standard][color=backgroundDark]{background:#e2e2e2;color:#3d464d}:host[theme=standard][color=presentation]{background:#5b6770;color:#fff}:host[theme=standard][color=bullhorn]{background:#ff6900;color:#3d464d}:host[theme=standard][color=pulse]{background:#3bafda;color:#3d464d}:host[theme=standard][color=company]{background:#39d;color:#fff}:host[theme=standard][color=candidate]{background:#4b7;color:#fff}:host[theme=standard][color=lead]{background:#a69;color:#fff}:host[theme=standard][color=contact]{background:#fa4;color:#fff}:host[theme=standard][color=opportunity]{background:#625;color:#fff}:host[theme=standard][color=job]{background:#b56;color:#fff}:host[theme=standard][color=submission]{background:#a9adbb;color:#3d464d}:host[theme=standard][color=sendout]{background:#747884;color:#fff}:host[theme=standard][color=placement]{background:#0b344f;color:#fff}:host[theme=standard][color=note]{background:#747884;color:#fff}:host[theme=standard][color=contract]{background:#454ea0;color:#fff}:host[theme=standard][color=billableCharge],:host[theme=standard][color=corporateUser],:host[theme=standard][color=credential],:host[theme=standard][color=distributionList],:host[theme=standard][color=earnCode],:host[theme=standard][color=invoiceStatement],:host[theme=standard][color=jobCode],:host[theme=standard][color=payableCharge],:host[theme=standard][color=person],:host[theme=standard][color=user]{background:#696d79;color:#fff}:host[theme=standard]:focus,:host[theme=standard]:hover{box-shadow:0 3px 7px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.15)}:host[theme=standard]:active{box-shadow:0 1px 2px rgba(0,0,0,.15)}", ":host[theme=primary]{background:#4a89dc;color:#fff;text-align:left}:host[theme=primary][color=black]{background:#000;color:#fff}:host[theme=primary][color=white]{color:#3d464d}:host[theme=primary][color=gray],:host[theme=primary][color=grey]{background:#9e9e9e;color:#3d464d}:host[theme=primary][color=bright],:host[theme=primary][color=offWhite]{background:#f7f7f7;color:#3d464d}:host[theme=primary][color=light]{background:#dbdbdb;color:#3d464d}:host[theme=primary][color=neutral]{background:#4f5361;color:#fff}:host[theme=primary][color=dark]{background:#3d464d;color:#fff}:host[theme=primary][color=orange]{background:#ff6900;color:#3d464d}:host[theme=primary][color=navigation]{background:#202945;color:#fff}:host[theme=primary][color=skyBlue]{background:#009bdf;color:#fff}:host[theme=primary][color=steel]{background:#5b6770;color:#fff}:host[theme=primary][color=metal]{background:#637893;color:#fff}:host[theme=primary][color=sand]{background:#f4f4f4;color:#3d464d}:host[theme=primary][color=silver]{background:#e2e2e2;color:#3d464d}:host[theme=primary][color=stone]{background:#bebebe;color:#3d464d}:host[theme=primary][color=ash]{background:#a0a0a0;color:#3d464d}:host[theme=primary][color=slate]{background:#707070;color:#fff}:host[theme=primary][color=onyx]{background:#526980;color:#fff}:host[theme=primary][color=charcoal]{background:#282828;color:#fff}:host[theme=primary][color=moonlight]{background:#1a242f;color:#fff}:host[theme=primary][color=midnight]{background:#202945;color:#fff}:host[theme=primary][color=darkness]{background:#161f27;color:#fff}:host[theme=primary][color=navy]{background:#0d2d42;color:#fff}:host[theme=primary][color=aqua]{background:#3bafda;color:#3d464d}:host[theme=primary][color=ocean]{background:#4a89dc;color:#fff}:host[theme=primary][color=mint]{background:#37bc9b;color:#3d464d}:host[theme=primary][color=grass]{background:#8cc152;color:#fff}:host[theme=primary][color=sunflower]{background:#f6b042;color:#fff}:host[theme=primary][color=bittersweet]{background:#eb6845;color:#fff}:host[theme=primary][color=grapefruit]{background:#da4453;color:#fff}:host[theme=primary][color=carnation]{background:#d770ad;color:#fff}:host[theme=primary][color=lavender]{background:#967adc;color:#fff}:host[theme=primary][color=mountain]{background:#9678b6;color:#fff}:host[theme=primary][color=info],:host[theme=primary][color=positive]{background:#4a89dc;color:#fff}:host[theme=primary][color=success]{background:#8cc152;color:#fff}:host[theme=primary][color=danger],:host[theme=primary][color=error],:host[theme=primary][color=negative]{background:#da4453;color:#fff}:host[theme=primary][color=warning]{background:#f6b042;color:#fff}:host[theme=primary][color=empty]{background:#cccdcc;color:#3d464d}:host[theme=primary][color=disabled]{background:#bebebe;color:#3d464d}:host[theme=primary][color=background]{background:#f7f7f7;color:#3d464d}:host[theme=primary][color=backgroundDark]{background:#e2e2e2;color:#3d464d}:host[theme=primary][color=presentation]{background:#5b6770;color:#fff}:host[theme=primary][color=bullhorn]{background:#ff6900;color:#3d464d}:host[theme=primary][color=pulse]{background:#3bafda;color:#3d464d}:host[theme=primary][color=company]{background:#39d;color:#fff}:host[theme=primary][color=candidate]{background:#4b7;color:#fff}:host[theme=primary][color=lead]{background:#a69;color:#fff}:host[theme=primary][color=contact]{background:#fa4;color:#fff}:host[theme=primary][color=opportunity]{background:#625;color:#fff}:host[theme=primary][color=job]{background:#b56;color:#fff}:host[theme=primary][color=submission]{background:#a9adbb;color:#3d464d}:host[theme=primary][color=sendout]{background:#747884;color:#fff}:host[theme=primary][color=placement]{background:#0b344f;color:#fff}:host[theme=primary][color=note]{background:#747884;color:#fff}:host[theme=primary][color=contract]{background:#454ea0;color:#fff}:host[theme=primary][color=billableCharge],:host[theme=primary][color=corporateUser],:host[theme=primary][color=credential],:host[theme=primary][color=distributionList],:host[theme=primary][color=earnCode],:host[theme=primary][color=invoiceStatement],:host[theme=primary][color=jobCode],:host[theme=primary][color=payableCharge],:host[theme=primary][color=person],:host[theme=primary][color=user]{background:#696d79;color:#fff}:host[theme=primary]:focus,:host[theme=primary]:hover{box-shadow:0 3px 7px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.15);filter:brightness(1.15)}:host[theme=primary]:active{box-shadow:0 1px 2px rgba(0,0,0,.15);filter:brightness(.85)}:host[theme=primary][color=white]{background:#fff;color:#4a89dc}:host[theme=primary][color=white]:focus,:host[theme=primary][color=white]:hover{background:#f7f7f7}:host[theme=primary][color=white]:active{background:#eaeaea}:host[theme=primary][color=white] i{background:rgba(0,0,0,.05)}:host[theme=primary][size=large] i{margin-left:3px}", ":host[theme=secondary]{align-items:center;background:#fff;border:1px solid #4a89dc;color:#4a89dc;padding:0 calc(1rem - 1px);text-align:left}:host[theme=secondary][color=black],:host[theme=secondary][color=black] i{color:#000}:host[theme=secondary][color=white],:host[theme=secondary][color=white] i{color:#fff}:host[theme=secondary][color=gray],:host[theme=secondary][color=gray] i,:host[theme=secondary][color=grey],:host[theme=secondary][color=grey] i{color:#9e9e9e}:host[theme=secondary][color=bright],:host[theme=secondary][color=bright] i,:host[theme=secondary][color=offWhite],:host[theme=secondary][color=offWhite] i{color:#f7f7f7}:host[theme=secondary][color=light],:host[theme=secondary][color=light] i{color:#dbdbdb}:host[theme=secondary][color=neutral],:host[theme=secondary][color=neutral] i{color:#4f5361}:host[theme=secondary][color=dark],:host[theme=secondary][color=dark] i{color:#3d464d}:host[theme=secondary][color=orange],:host[theme=secondary][color=orange] i{color:#ff6900}:host[theme=secondary][color=navigation],:host[theme=secondary][color=navigation] i{color:#202945}:host[theme=secondary][color=skyBlue],:host[theme=secondary][color=skyBlue] i{color:#009bdf}:host[theme=secondary][color=steel],:host[theme=secondary][color=steel] i{color:#5b6770}:host[theme=secondary][color=metal],:host[theme=secondary][color=metal] i{color:#637893}:host[theme=secondary][color=sand],:host[theme=secondary][color=sand] i{color:#f4f4f4}:host[theme=secondary][color=silver],:host[theme=secondary][color=silver] i{color:#e2e2e2}:host[theme=secondary][color=stone],:host[theme=secondary][color=stone] i{color:#bebebe}:host[theme=secondary][color=ash],:host[theme=secondary][color=ash] i{color:#a0a0a0}:host[theme=secondary][color=slate],:host[theme=secondary][color=slate] i{color:#707070}:host[theme=secondary][color=onyx],:host[theme=secondary][color=onyx] i{color:#526980}:host[theme=secondary][color=charcoal],:host[theme=secondary][color=charcoal] i{color:#282828}:host[theme=secondary][color=moonlight],:host[theme=secondary][color=moonlight] i{color:#1a242f}:host[theme=secondary][color=midnight],:host[theme=secondary][color=midnight] i{color:#202945}:host[theme=secondary][color=darkness],:host[theme=secondary][color=darkness] i{color:#161f27}:host[theme=secondary][color=navy],:host[theme=secondary][color=navy] i{color:#0d2d42}:host[theme=secondary][color=aqua],:host[theme=secondary][color=aqua] i{color:#3bafda}:host[theme=secondary][color=ocean],:host[theme=secondary][color=ocean] i{color:#4a89dc}:host[theme=secondary][color=mint],:host[theme=secondary][color=mint] i{color:#37bc9b}:host[theme=secondary][color=grass],:host[theme=secondary][color=grass] i{color:#8cc152}:host[theme=secondary][color=sunflower],:host[theme=secondary][color=sunflower] i{color:#f6b042}:host[theme=secondary][color=bittersweet],:host[theme=secondary][color=bittersweet] i{color:#eb6845}:host[theme=secondary][color=grapefruit],:host[theme=secondary][color=grapefruit] i{color:#da4453}:host[theme=secondary][color=carnation],:host[theme=secondary][color=carnation] i{color:#d770ad}:host[theme=secondary][color=lavender],:host[theme=secondary][color=lavender] i{color:#967adc}:host[theme=secondary][color=mountain],:host[theme=secondary][color=mountain] i{color:#9678b6}:host[theme=secondary][color=info],:host[theme=secondary][color=info] i,:host[theme=secondary][color=positive],:host[theme=secondary][color=positive] i{color:#4a89dc}:host[theme=secondary][color=success],:host[theme=secondary][color=success] i{color:#8cc152}:host[theme=secondary][color=danger],:host[theme=secondary][color=danger] i,:host[theme=secondary][color=error],:host[theme=secondary][color=error] i,:host[theme=secondary][color=negative],:host[theme=secondary][color=negative] i{color:#da4453}:host[theme=secondary][color=warning],:host[theme=secondary][color=warning] i{color:#f6b042}:host[theme=secondary][color=empty],:host[theme=secondary][color=empty] i{color:#cccdcc}:host[theme=secondary][color=disabled],:host[theme=secondary][color=disabled] i{color:#bebebe}:host[theme=secondary][color=background],:host[theme=secondary][color=background] i{color:#f7f7f7}:host[theme=secondary][color=backgroundDark],:host[theme=secondary][color=backgroundDark] i{color:#e2e2e2}:host[theme=secondary][color=presentation],:host[theme=secondary][color=presentation] i{color:#5b6770}:host[theme=secondary][color=bullhorn],:host[theme=secondary][color=bullhorn] i{color:#ff6900}:host[theme=secondary][color=pulse],:host[theme=secondary][color=pulse] i{color:#3bafda}:host[theme=secondary][color=company],:host[theme=secondary][color=company] i{color:#39d}:host[theme=secondary][color=candidate],:host[theme=secondary][color=candidate] i{color:#4b7}:host[theme=secondary][color=lead],:host[theme=secondary][color=lead] i{color:#a69}:host[theme=secondary][color=contact],:host[theme=secondary][color=contact] i{color:#fa4}:host[theme=secondary][color=opportunity],:host[theme=secondary][color=opportunity] i{color:#625}:host[theme=secondary][color=job],:host[theme=secondary][color=job] i{color:#b56}:host[theme=secondary][color=submission],:host[theme=secondary][color=submission] i{color:#a9adbb}:host[theme=secondary][color=sendout],:host[theme=secondary][color=sendout] i{color:#747884}:host[theme=secondary][color=placement],:host[theme=secondary][color=placement] i{color:#0b344f}:host[theme=secondary][color=note],:host[theme=secondary][color=note] i{color:#747884}:host[theme=secondary][color=contract],:host[theme=secondary][color=contract] i{color:#454ea0}:host[theme=secondary][color=billableCharge],:host[theme=secondary][color=billableCharge] i,:host[theme=secondary][color=corporateUser],:host[theme=secondary][color=corporateUser] i,:host[theme=secondary][color=credential],:host[theme=secondary][color=credential] i,:host[theme=secondary][color=distributionList],:host[theme=secondary][color=distributionList] i,:host[theme=secondary][color=earnCode],:host[theme=secondary][color=earnCode] i,:host[theme=secondary][color=invoiceStatement],:host[theme=secondary][color=invoiceStatement] i,:host[theme=secondary][color=jobCode],:host[theme=secondary][color=jobCode] i,:host[theme=secondary][color=payableCharge],:host[theme=secondary][color=payableCharge] i,:host[theme=secondary][color=person],:host[theme=secondary][color=person] i,:host[theme=secondary][color=user],:host[theme=secondary][color=user] i{color:#696d79}:host[theme=secondary][color=black]{border:1px solid #000}:host[theme=secondary][color=white]{border:1px solid #fff}:host[theme=secondary][color=gray],:host[theme=secondary][color=grey]{border:1px solid #9e9e9e}:host[theme=secondary][color=bright],:host[theme=secondary][color=offWhite]{border:1px solid #f7f7f7}:host[theme=secondary][color=light]{border:1px solid #dbdbdb}:host[theme=secondary][color=neutral]{border:1px solid #4f5361}:host[theme=secondary][color=dark]{border:1px solid #3d464d}:host[theme=secondary][color=orange]{border:1px solid #ff6900}:host[theme=secondary][color=navigation]{border:1px solid #202945}:host[theme=secondary][color=skyBlue]{border:1px solid #009bdf}:host[theme=secondary][color=steel]{border:1px solid #5b6770}:host[theme=secondary][color=metal]{border:1px solid #637893}:host[theme=secondary][color=sand]{border:1px solid #f4f4f4}:host[theme=secondary][color=silver]{border:1px solid #e2e2e2}:host[theme=secondary][color=stone]{border:1px solid #bebebe}:host[theme=secondary][color=ash]{border:1px solid #a0a0a0}:host[theme=secondary][color=slate]{border:1px solid #707070}:host[theme=secondary][color=onyx]{border:1px solid #526980}:host[theme=secondary][color=charcoal]{border:1px solid #282828}:host[theme=secondary][color=moonlight]{border:1px solid #1a242f}:host[theme=secondary][color=midnight]{border:1px solid #202945}:host[theme=secondary][color=darkness]{border:1px solid #161f27}:host[theme=secondary][color=navy]{border:1px solid #0d2d42}:host[theme=secondary][color=aqua]{border:1px solid #3bafda}:host[theme=secondary][color=ocean]{border:1px solid #4a89dc}:host[theme=secondary][color=mint]{border:1px solid #37bc9b}:host[theme=secondary][color=grass]{border:1px solid #8cc152}:host[theme=secondary][color=sunflower]{border:1px solid #f6b042}:host[theme=secondary][color=bittersweet]{border:1px solid #eb6845}:host[theme=secondary][color=grapefruit]{border:1px solid #da4453}:host[theme=secondary][color=carnation]{border:1px solid #d770ad}:host[theme=secondary][color=lavender]{border:1px solid #967adc}:host[theme=secondary][color=mountain]{border:1px solid #9678b6}:host[theme=secondary][color=info],:host[theme=secondary][color=positive]{border:1px solid #4a89dc}:host[theme=secondary][color=success]{border:1px solid #8cc152}:host[theme=secondary][color=danger],:host[theme=secondary][color=error],:host[theme=secondary][color=negative]{border:1px solid #da4453}:host[theme=secondary][color=warning]{border:1px solid #f6b042}:host[theme=secondary][color=empty]{border:1px solid #cccdcc}:host[theme=secondary][color=disabled]{border:1px solid #bebebe}:host[theme=secondary][color=background]{border:1px solid #f7f7f7}:host[theme=secondary][color=backgroundDark]{border:1px solid #e2e2e2}:host[theme=secondary][color=presentation]{border:1px solid #5b6770}:host[theme=secondary][color=bullhorn]{border:1px solid #ff6900}:host[theme=secondary][color=pulse]{border:1px solid #3bafda}:host[theme=secondary][color=company]{border:1px solid #39d}:host[theme=secondary][color=candidate]{border:1px solid #4b7}:host[theme=secondary][color=lead]{border:1px solid #a69}:host[theme=secondary][color=contact]{border:1px solid #fa4}:host[theme=secondary][color=opportunity]{border:1px solid #625}:host[theme=secondary][color=job]{border:1px solid #b56}:host[theme=secondary][color=submission]{border:1px solid #a9adbb}:host[theme=secondary][color=sendout]{border:1px solid #747884}:host[theme=secondary][color=placement]{border:1px solid #0b344f}:host[theme=secondary][color=note]{border:1px solid #747884}:host[theme=secondary][color=contract]{border:1px solid #454ea0}:host[theme=secondary][color=billableCharge],:host[theme=secondary][color=corporateUser],:host[theme=secondary][color=credential],:host[theme=secondary][color=distributionList],:host[theme=secondary][color=earnCode],:host[theme=secondary][color=invoiceStatement],:host[theme=secondary][color=jobCode],:host[theme=secondary][color=payableCharge],:host[theme=secondary][color=person],:host[theme=secondary][color=user]{border:1px solid #696d79}:host[theme=secondary] i.loading{margin-left:.8rem}:host[theme=secondary] i.loading svg .spinner{fill:#4a89dc}:host[theme=secondary]:focus,:host[theme=secondary]:hover{background:#fff;box-shadow:0 3px 7px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.15)}:host[theme=secondary]:active{box-shadow:0 1px 2px rgba(0,0,0,.15)}:host[theme=secondary][inverse]{background:rgba(0,0,0,.25);border:1px solid #fff;color:#fff}:host[theme=secondary][inverse]:focus,:host[theme=secondary][inverse]:hover{background:rgba(0,0,0,.35)}:host[theme=secondary][inverse]:active{background:rgba(0,0,0,.45)}:host[theme=secondary][inverse] i.loading svg .spinner{fill:#fff}", ":host[theme=fab]{align-items:center;border-radius:50%!important;display:inline-flex;font-size:1.2rem;height:3.2rem;justify-content:center;padding:0;width:3.2rem}:host[theme=fab][color=black]{background:#000;color:#fff}:host[theme=fab][color=white]{background:#fff;color:#3d464d}:host[theme=fab][color=gray],:host[theme=fab][color=grey]{background:#9e9e9e;color:#3d464d}:host[theme=fab][color=bright],:host[theme=fab][color=offWhite]{background:#f7f7f7;color:#3d464d}:host[theme=fab][color=light]{background:#dbdbdb;color:#3d464d}:host[theme=fab][color=neutral]{background:#4f5361;color:#fff}:host[theme=fab][color=dark]{background:#3d464d;color:#fff}:host[theme=fab][color=orange]{background:#ff6900;color:#3d464d}:host[theme=fab][color=navigation]{background:#202945;color:#fff}:host[theme=fab][color=skyBlue]{background:#009bdf;color:#fff}:host[theme=fab][color=steel]{background:#5b6770;color:#fff}:host[theme=fab][color=metal]{background:#637893;color:#fff}:host[theme=fab][color=sand]{background:#f4f4f4;color:#3d464d}:host[theme=fab][color=silver]{background:#e2e2e2;color:#3d464d}:host[theme=fab][color=stone]{background:#bebebe;color:#3d464d}:host[theme=fab][color=ash]{background:#a0a0a0;color:#3d464d}:host[theme=fab][color=slate]{background:#707070;color:#fff}:host[theme=fab][color=onyx]{background:#526980;color:#fff}:host[theme=fab][color=charcoal]{background:#282828;color:#fff}:host[theme=fab][color=moonlight]{background:#1a242f;color:#fff}:host[theme=fab][color=midnight]{background:#202945;color:#fff}:host[theme=fab][color=darkness]{background:#161f27;color:#fff}:host[theme=fab][color=navy]{background:#0d2d42;color:#fff}:host[theme=fab][color=aqua]{background:#3bafda;color:#3d464d}:host[theme=fab][color=ocean]{background:#4a89dc;color:#fff}:host[theme=fab][color=mint]{background:#37bc9b;color:#3d464d}:host[theme=fab][color=grass]{background:#8cc152;color:#fff}:host[theme=fab][color=sunflower]{background:#f6b042;color:#fff}:host[theme=fab][color=bittersweet]{background:#eb6845;color:#fff}:host[theme=fab][color=grapefruit]{background:#da4453;color:#fff}:host[theme=fab][color=carnation]{background:#d770ad;color:#fff}:host[theme=fab][color=lavender]{background:#967adc;color:#fff}:host[theme=fab][color=mountain]{background:#9678b6;color:#fff}:host[theme=fab][color=info],:host[theme=fab][color=positive]{background:#4a89dc;color:#fff}:host[theme=fab][color=success]{background:#8cc152;color:#fff}:host[theme=fab][color=danger],:host[theme=fab][color=error],:host[theme=fab][color=negative]{background:#da4453;color:#fff}:host[theme=fab][color=warning]{background:#f6b042;color:#fff}:host[theme=fab][color=empty]{background:#cccdcc;color:#3d464d}:host[theme=fab][color=disabled]{background:#bebebe;color:#3d464d}:host[theme=fab][color=background]{background:#f7f7f7;color:#3d464d}:host[theme=fab][color=backgroundDark]{background:#e2e2e2;color:#3d464d}:host[theme=fab][color=presentation]{background:#5b6770;color:#fff}:host[theme=fab][color=bullhorn]{background:#ff6900;color:#3d464d}:host[theme=fab][color=pulse]{background:#3bafda;color:#3d464d}:host[theme=fab][color=company]{background:#39d;color:#fff}:host[theme=fab][color=candidate]{background:#4b7;color:#fff}:host[theme=fab][color=lead]{background:#a69;color:#fff}:host[theme=fab][color=contact]{background:#fa4;color:#fff}:host[theme=fab][color=opportunity]{background:#625;color:#fff}:host[theme=fab][color=job]{background:#b56;color:#fff}:host[theme=fab][color=submission]{background:#a9adbb;color:#3d464d}:host[theme=fab][color=sendout]{background:#747884;color:#fff}:host[theme=fab][color=placement]{background:#0b344f;color:#fff}:host[theme=fab][color=note]{background:#747884;color:#fff}:host[theme=fab][color=contract]{background:#454ea0;color:#fff}:host[theme=fab][color=billableCharge],:host[theme=fab][color=corporateUser],:host[theme=fab][color=credential],:host[theme=fab][color=distributionList],:host[theme=fab][color=earnCode],:host[theme=fab][color=invoiceStatement],:host[theme=fab][color=jobCode],:host[theme=fab][color=payableCharge],:host[theme=fab][color=person],:host[theme=fab][color=user]{background:#696d79;color:#fff}:host[theme=fab][inverse]{color:#fff}:host[theme=fab]:active,:host[theme=fab]:focus,:host[theme=fab]:hover{box-shadow:0 1px 2px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)}:host[theme=fab] .button-contents{display:contents}:host[theme=fab] i{margin:0;padding:0}:host[theme=fab] i:before{display:block}", ":host[theme=icon]{font-size:1.4rem;height:2.4rem;padding:.5rem}:host[theme=icon][color=black],:host[theme=icon][color=black] i{color:#000}:host[theme=icon][color=white],:host[theme=icon][color=white] i{color:#fff}:host[theme=icon][color=gray],:host[theme=icon][color=gray] i,:host[theme=icon][color=grey],:host[theme=icon][color=grey] i{color:#9e9e9e}:host[theme=icon][color=bright],:host[theme=icon][color=bright] i,:host[theme=icon][color=offWhite],:host[theme=icon][color=offWhite] i{color:#f7f7f7}:host[theme=icon][color=light],:host[theme=icon][color=light] i{color:#dbdbdb}:host[theme=icon][color=neutral],:host[theme=icon][color=neutral] i{color:#4f5361}:host[theme=icon][color=dark],:host[theme=icon][color=dark] i{color:#3d464d}:host[theme=icon][color=orange],:host[theme=icon][color=orange] i{color:#ff6900}:host[theme=icon][color=navigation],:host[theme=icon][color=navigation] i{color:#202945}:host[theme=icon][color=skyBlue],:host[theme=icon][color=skyBlue] i{color:#009bdf}:host[theme=icon][color=steel],:host[theme=icon][color=steel] i{color:#5b6770}:host[theme=icon][color=metal],:host[theme=icon][color=metal] i{color:#637893}:host[theme=icon][color=sand],:host[theme=icon][color=sand] i{color:#f4f4f4}:host[theme=icon][color=silver],:host[theme=icon][color=silver] i{color:#e2e2e2}:host[theme=icon][color=stone],:host[theme=icon][color=stone] i{color:#bebebe}:host[theme=icon][color=ash],:host[theme=icon][color=ash] i{color:#a0a0a0}:host[theme=icon][color=slate],:host[theme=icon][color=slate] i{color:#707070}:host[theme=icon][color=onyx],:host[theme=icon][color=onyx] i{color:#526980}:host[theme=icon][color=charcoal],:host[theme=icon][color=charcoal] i{color:#282828}:host[theme=icon][color=moonlight],:host[theme=icon][color=moonlight] i{color:#1a242f}:host[theme=icon][color=midnight],:host[theme=icon][color=midnight] i{color:#202945}:host[theme=icon][color=darkness],:host[theme=icon][color=darkness] i{color:#161f27}:host[theme=icon][color=navy],:host[theme=icon][color=navy] i{color:#0d2d42}:host[theme=icon][color=aqua],:host[theme=icon][color=aqua] i{color:#3bafda}:host[theme=icon][color=ocean],:host[theme=icon][color=ocean] i{color:#4a89dc}:host[theme=icon][color=mint],:host[theme=icon][color=mint] i{color:#37bc9b}:host[theme=icon][color=grass],:host[theme=icon][color=grass] i{color:#8cc152}:host[theme=icon][color=sunflower],:host[theme=icon][color=sunflower] i{color:#f6b042}:host[theme=icon][color=bittersweet],:host[theme=icon][color=bittersweet] i{color:#eb6845}:host[theme=icon][color=grapefruit],:host[theme=icon][color=grapefruit] i{color:#da4453}:host[theme=icon][color=carnation],:host[theme=icon][color=carnation] i{color:#d770ad}:host[theme=icon][color=lavender],:host[theme=icon][color=lavender] i{color:#967adc}:host[theme=icon][color=mountain],:host[theme=icon][color=mountain] i{color:#9678b6}:host[theme=icon][color=info],:host[theme=icon][color=info] i,:host[theme=icon][color=positive],:host[theme=icon][color=positive] i{color:#4a89dc}:host[theme=icon][color=success],:host[theme=icon][color=success] i{color:#8cc152}:host[theme=icon][color=danger],:host[theme=icon][color=danger] i,:host[theme=icon][color=error],:host[theme=icon][color=error] i,:host[theme=icon][color=negative],:host[theme=icon][color=negative] i{color:#da4453}:host[theme=icon][color=warning],:host[theme=icon][color=warning] i{color:#f6b042}:host[theme=icon][color=empty],:host[theme=icon][color=empty] i{color:#cccdcc}:host[theme=icon][color=disabled],:host[theme=icon][color=disabled] i{color:#bebebe}:host[theme=icon][color=background],:host[theme=icon][color=background] i{color:#f7f7f7}:host[theme=icon][color=backgroundDark],:host[theme=icon][color=backgroundDark] i{color:#e2e2e2}:host[theme=icon][color=presentation],:host[theme=icon][color=presentation] i{color:#5b6770}:host[theme=icon][color=bullhorn],:host[theme=icon][color=bullhorn] i{color:#ff6900}:host[theme=icon][color=pulse],:host[theme=icon][color=pulse] i{color:#3bafda}:host[theme=icon][color=company],:host[theme=icon][color=company] i{color:#39d}:host[theme=icon][color=candidate],:host[theme=icon][color=candidate] i{color:#4b7}:host[theme=icon][color=lead],:host[theme=icon][color=lead] i{color:#a69}:host[theme=icon][color=contact],:host[theme=icon][color=contact] i{color:#fa4}:host[theme=icon][color=opportunity],:host[theme=icon][color=opportunity] i{color:#625}:host[theme=icon][color=job],:host[theme=icon][color=job] i{color:#b56}:host[theme=icon][color=submission],:host[theme=icon][color=submission] i{color:#a9adbb}:host[theme=icon][color=sendout],:host[theme=icon][color=sendout] i{color:#747884}:host[theme=icon][color=placement],:host[theme=icon][color=placement] i{color:#0b344f}:host[theme=icon][color=note],:host[theme=icon][color=note] i{color:#747884}:host[theme=icon][color=contract],:host[theme=icon][color=contract] i{color:#454ea0}:host[theme=icon][color=billableCharge],:host[theme=icon][color=billableCharge] i,:host[theme=icon][color=corporateUser],:host[theme=icon][color=corporateUser] i,:host[theme=icon][color=credential],:host[theme=icon][color=credential] i,:host[theme=icon][color=distributionList],:host[theme=icon][color=distributionList] i,:host[theme=icon][color=earnCode],:host[theme=icon][color=earnCode] i,:host[theme=icon][color=invoiceStatement],:host[theme=icon][color=invoiceStatement] i,:host[theme=icon][color=jobCode],:host[theme=icon][color=jobCode] i,:host[theme=icon][color=payableCharge],:host[theme=icon][color=payableCharge] i,:host[theme=icon][color=person],:host[theme=icon][color=person] i,:host[theme=icon][color=user],:host[theme=icon][color=user] i{color:#696d79}:host[theme=icon][inverse]{color:#fff}:host[theme=icon] i{display:contents;margin:0!important}:host[theme=icon]:focus,:host[theme=icon]:hover{background:rgba(0,0,0,.1)}:host[theme=icon]:active{background:rgba(0,0,0,.25)}:host[theme=icon] .button-contents{display:contents}:host[theme=icon][size=small]{font-size:1.2rem;height:2rem;padding:.5rem}:host[theme=icon][size=large]{font-size:2rem;height:2.8rem;padding:1rem}", ":host[theme=dialogue]{background:transparent;color:#4a89dc}:host[theme=dialogue][color=black],:host[theme=dialogue][color=black] i{color:#000}:host[theme=dialogue][color=white],:host[theme=dialogue][color=white] i{color:#fff}:host[theme=dialogue][color=gray],:host[theme=dialogue][color=gray] i,:host[theme=dialogue][color=grey],:host[theme=dialogue][color=grey] i{color:#9e9e9e}:host[theme=dialogue][color=bright],:host[theme=dialogue][color=bright] i,:host[theme=dialogue][color=offWhite],:host[theme=dialogue][color=offWhite] i{color:#f7f7f7}:host[theme=dialogue][color=light],:host[theme=dialogue][color=light] i{color:#dbdbdb}:host[theme=dialogue][color=neutral],:host[theme=dialogue][color=neutral] i{color:#4f5361}:host[theme=dialogue][color=dark],:host[theme=dialogue][color=dark] i{color:#3d464d}:host[theme=dialogue][color=orange],:host[theme=dialogue][color=orange] i{color:#ff6900}:host[theme=dialogue][color=navigation],:host[theme=dialogue][color=navigation] i{color:#202945}:host[theme=dialogue][color=skyBlue],:host[theme=dialogue][color=skyBlue] i{color:#009bdf}:host[theme=dialogue][color=steel],:host[theme=dialogue][color=steel] i{color:#5b6770}:host[theme=dialogue][color=metal],:host[theme=dialogue][color=metal] i{color:#637893}:host[theme=dialogue][color=sand],:host[theme=dialogue][color=sand] i{color:#f4f4f4}:host[theme=dialogue][color=silver],:host[theme=dialogue][color=silver] i{color:#e2e2e2}:host[theme=dialogue][color=stone],:host[theme=dialogue][color=stone] i{color:#bebebe}:host[theme=dialogue][color=ash],:host[theme=dialogue][color=ash] i{color:#a0a0a0}:host[theme=dialogue][color=slate],:host[theme=dialogue][color=slate] i{color:#707070}:host[theme=dialogue][color=onyx],:host[theme=dialogue][color=onyx] i{color:#526980}:host[theme=dialogue][color=charcoal],:host[theme=dialogue][color=charcoal] i{color:#282828}:host[theme=dialogue][color=moonlight],:host[theme=dialogue][color=moonlight] i{color:#1a242f}:host[theme=dialogue][color=midnight],:host[theme=dialogue][color=midnight] i{color:#202945}:host[theme=dialogue][color=darkness],:host[theme=dialogue][color=darkness] i{color:#161f27}:host[theme=dialogue][color=navy],:host[theme=dialogue][color=navy] i{color:#0d2d42}:host[theme=dialogue][color=aqua],:host[theme=dialogue][color=aqua] i{color:#3bafda}:host[theme=dialogue][color=ocean],:host[theme=dialogue][color=ocean] i{color:#4a89dc}:host[theme=dialogue][color=mint],:host[theme=dialogue][color=mint] i{color:#37bc9b}:host[theme=dialogue][color=grass],:host[theme=dialogue][color=grass] i{color:#8cc152}:host[theme=dialogue][color=sunflower],:host[theme=dialogue][color=sunflower] i{color:#f6b042}:host[theme=dialogue][color=bittersweet],:host[theme=dialogue][color=bittersweet] i{color:#eb6845}:host[theme=dialogue][color=grapefruit],:host[theme=dialogue][color=grapefruit] i{color:#da4453}:host[theme=dialogue][color=carnation],:host[theme=dialogue][color=carnation] i{color:#d770ad}:host[theme=dialogue][color=lavender],:host[theme=dialogue][color=lavender] i{color:#967adc}:host[theme=dialogue][color=mountain],:host[theme=dialogue][color=mountain] i{color:#9678b6}:host[theme=dialogue][color=info],:host[theme=dialogue][color=info] i,:host[theme=dialogue][color=positive],:host[theme=dialogue][color=positive] i{color:#4a89dc}:host[theme=dialogue][color=success],:host[theme=dialogue][color=success] i{color:#8cc152}:host[theme=dialogue][color=danger],:host[theme=dialogue][color=danger] i,:host[theme=dialogue][color=error],:host[theme=dialogue][color=error] i,:host[theme=dialogue][color=negative],:host[theme=dialogue][color=negative] i{color:#da4453}:host[theme=dialogue][color=warning],:host[theme=dialogue][color=warning] i{color:#f6b042}:host[theme=dialogue][color=empty],:host[theme=dialogue][color=empty] i{color:#cccdcc}:host[theme=dialogue][color=disabled],:host[theme=dialogue][color=disabled] i{color:#bebebe}:host[theme=dialogue][color=background],:host[theme=dialogue][color=background] i{color:#f7f7f7}:host[theme=dialogue][color=backgroundDark],:host[theme=dialogue][color=backgroundDark] i{color:#e2e2e2}:host[theme=dialogue][color=presentation],:host[theme=dialogue][color=presentation] i{color:#5b6770}:host[theme=dialogue][color=bullhorn],:host[theme=dialogue][color=bullhorn] i{color:#ff6900}:host[theme=dialogue][color=pulse],:host[theme=dialogue][color=pulse] i{color:#3bafda}:host[theme=dialogue][color=company],:host[theme=dialogue][color=company] i{color:#39d}:host[theme=dialogue][color=candidate],:host[theme=dialogue][color=candidate] i{color:#4b7}:host[theme=dialogue][color=lead],:host[theme=dialogue][color=lead] i{color:#a69}:host[theme=dialogue][color=contact],:host[theme=dialogue][color=contact] i{color:#fa4}:host[theme=dialogue][color=opportunity],:host[theme=dialogue][color=opportunity] i{color:#625}:host[theme=dialogue][color=job],:host[theme=dialogue][color=job] i{color:#b56}:host[theme=dialogue][color=submission],:host[theme=dialogue][color=submission] i{color:#a9adbb}:host[theme=dialogue][color=sendout],:host[theme=dialogue][color=sendout] i{color:#747884}:host[theme=dialogue][color=placement],:host[theme=dialogue][color=placement] i{color:#0b344f}:host[theme=dialogue][color=note],:host[theme=dialogue][color=note] i{color:#747884}:host[theme=dialogue][color=contract],:host[theme=dialogue][color=contract] i{color:#454ea0}:host[theme=dialogue][color=billableCharge],:host[theme=dialogue][color=billableCharge] i,:host[theme=dialogue][color=corporateUser],:host[theme=dialogue][color=corporateUser] i,:host[theme=dialogue][color=credential],:host[theme=dialogue][color=credential] i,:host[theme=dialogue][color=distributionList],:host[theme=dialogue][color=distributionList] i,:host[theme=dialogue][color=earnCode],:host[theme=dialogue][color=earnCode] i,:host[theme=dialogue][color=invoiceStatement],:host[theme=dialogue][color=invoiceStatement] i,:host[theme=dialogue][color=jobCode],:host[theme=dialogue][color=jobCode] i,:host[theme=dialogue][color=payableCharge],:host[theme=dialogue][color=payableCharge] i,:host[theme=dialogue][color=person],:host[theme=dialogue][color=person] i,:host[theme=dialogue][color=user],:host[theme=dialogue][color=user] i{color:#696d79}:host[theme=dialogue]:focus,:host[theme=dialogue]:hover{background:#ededed}:host[theme=dialogue]:active{background:#e0e0e0}:host[theme=dialogue][inverse]:focus,:host[theme=dialogue][inverse]:hover{background:rgba(0,0,0,.2)}:host[theme=dialogue][inverse]:active{background:rgba(0,0,0,.35)}", ":host[theme=field]{background:transparent;border:none;border-bottom:1px solid var(--border);border-radius:0;color:#3d464d;font-size:1.2rem;height:1.8rem;margin-bottom:4px;padding:.25rem .5rem;text-align:left}:host[theme=field]:active,:host[theme=field]:focus,:host[theme=field]:hover{border-bottom:1px solid var(--selection)}:host[theme=select]{align-items:center;background-color:transparent;border:none;border-bottom:1px solid var(--border);border-radius:0;color:var(--text-main);cursor:pointer;display:flex;font-size:1.2rem;height:2rem;height:1.8rem;justify-content:space-between;min-height:2rem;padding:0;position:relative;text-align:left;text-shadow:none;text-transform:none;width:100%;z-index:1}:host[theme=select].empty{color:var(--text-muted)}:host[theme=select]:focus,:host[theme=select]:hover{outline:none}:host[theme=select]:hover{border-bottom:1px solid #5f6d78}:host[theme=select]:hover i{opacity:.75}:host[theme=select]:focus{border-bottom:1px solid var(--selection)}:host[theme=select]:focus i{color:rgba(0,0,0,.73)}:host[theme=select] i{color:var(--text-main);font-size:.8rem;opacity:.45}"]
|
|
22825
22858
|
},] }
|
|
22826
22859
|
];
|
|
22827
22860
|
NovoButtonElement.ctorParameters = function () { return [
|
|
@@ -22872,20 +22905,18 @@
|
|
|
22872
22905
|
animations.transition('* => visible', [
|
|
22873
22906
|
animations.style({
|
|
22874
22907
|
opacity: 0,
|
|
22875
|
-
visibility: 'visible',
|
|
22876
22908
|
}),
|
|
22877
|
-
animations.animate('0.3s ease-in'),
|
|
22909
|
+
animations.animate('0.3s 0.1s ease-in'),
|
|
22878
22910
|
]),
|
|
22879
22911
|
animations.transition('* => hidden', [
|
|
22880
22912
|
animations.style({
|
|
22881
22913
|
opacity: 1,
|
|
22882
|
-
visibility: 'hidden',
|
|
22883
22914
|
}),
|
|
22884
|
-
animations.animate('0.3s ease-in'),
|
|
22915
|
+
animations.animate('0.3s 0.1s ease-in'),
|
|
22885
22916
|
]),
|
|
22886
22917
|
]),
|
|
22887
22918
|
],
|
|
22888
|
-
styles: ["novo-tooltip div{background
|
|
22919
|
+
styles: ["novo-tooltip div{background:var(--tooltip-background-color,#383838);border-radius:var(--tooltip-border-radius,4px);box-shadow:var(--shadow-2);color:var(--color-white,#fff);font-size:12px;line-height:12px;padding:8px 10px;white-space:nowrap}novo-tooltip div.error{background-color:var(--color-shade-error,#b34e4d)}novo-tooltip div.error.top-left:before,novo-tooltip div.error.top-right:before,novo-tooltip div.error.top:before{border-top-color:var(--color-shade-error,#b34e4d)}novo-tooltip div.error.bottom-left:before,novo-tooltip div.error.bottom-right:before,novo-tooltip div.error.bottom:before{border-bottom-color:var(--color-shade-error,#b34e4d)}novo-tooltip div.error.left:before{border-left-color:var(--color-shade-error,#b34e4d)}novo-tooltip div.error.right:before{border-right-color:var(--color-shade-error,#b34e4d)}novo-tooltip div.info{background-color:var(--color-shade-info,#3986ac)}novo-tooltip div.info.top-left:before,novo-tooltip div.info.top-right:before,novo-tooltip div.info.top:before{border-top-color:var(--color-shade-info,#3986ac)}novo-tooltip div.info.bottom-left:before,novo-tooltip div.info.bottom-right:before,novo-tooltip div.info.bottom:before{border-bottom-color:var(--color-shade-info,#3986ac)}novo-tooltip div.info.left:before{border-left-color:var(--color-shade-info,#3986ac)}novo-tooltip div.info.right:before{border-right-color:var(--color-shade-info,#3986ac)}novo-tooltip div.warning{background-color:var(--color-shade-warning,#c09854)}novo-tooltip div.warning.top-left:before,novo-tooltip div.warning.top-right:before,novo-tooltip div.warning.top:before{border-top-color:var(--color-shade-warning,#c09854)}novo-tooltip div.warning.bottom-left:before,novo-tooltip div.warning.bottom-right:before,novo-tooltip div.warning.bottom:before{border-bottom-color:var(--color-shade-warning,#c09854)}novo-tooltip div.warning.left:before{border-left-color:var(--color-shade-warning,#c09854)}novo-tooltip div.warning.right:before{border-right-color:var(--color-shade-warning,#c09854)}novo-tooltip div.success{background-color:var(--color-shade-success,#458746)}novo-tooltip div.success.top-left:before,novo-tooltip div.success.top-right:before,novo-tooltip div.success.top:before{border-top-color:var(--color-shade-success,#458746)}novo-tooltip div.success.bottom-left:before,novo-tooltip div.success.bottom-right:before,novo-tooltip div.success.bottom:before{border-bottom-color:var(--color-shade-success,#458746)}novo-tooltip div.success.left:before{border-left-color:var(--color-shade-success,#458746)}novo-tooltip div.success.right:before{border-right-color:var(--color-shade-success,#458746)}novo-tooltip div.top-left:before,novo-tooltip div.top-right:before,novo-tooltip div.top:before{border-top-color:var(--tooltip-background-color,#383838)}novo-tooltip div.bottom-left:before,novo-tooltip div.bottom-right:before,novo-tooltip div.bottom:before{border-bottom-color:var(--tooltip-background-color,#383838)}novo-tooltip div.left:before{border-left-color:var(--tooltip-background-color,#383838)}novo-tooltip div.right:before{border-right-color:var(--tooltip-background-color,#383838)}novo-tooltip div.top:before{bottom:0;left:calc(50% - 6px);margin-bottom:-11px}novo-tooltip div.top-left:before{bottom:0;margin-bottom:-11px;margin-right:0;right:1px}novo-tooltip div.top-right:before{bottom:0;left:1px;margin-bottom:-11px;margin-left:0}novo-tooltip div.bottom:before{left:calc(50% - 6px);margin-top:-11px;top:0}novo-tooltip div.bottom-left:before{margin-right:0;margin-top:-11px;right:1px;top:0}novo-tooltip div.bottom-right:before{left:1px;margin-left:0;margin-top:-11px;top:0}novo-tooltip div.left:before{bottom:50%;margin-bottom:-6px;margin-right:-11px;right:0}novo-tooltip div.right:before{bottom:50%;left:0;margin-bottom:-6px;margin-left:-11px}novo-tooltip div:before{background:0 0;border:6px solid transparent;box-sizing:border-box;content:\"\";position:absolute}novo-tooltip div.extra-large,novo-tooltip div.large,novo-tooltip div.medium,novo-tooltip div.small{line-height:1.4em;white-space:normal;word-wrap:break-word}novo-tooltip div.extra-large{font-size:1.2vh;width:400px}novo-tooltip div.large{width:300px}novo-tooltip div.medium{width:150px}novo-tooltip div.small{width:80px}novo-tooltip div.preline{white-space:pre-line}"]
|
|
22889
22920
|
},] }
|
|
22890
22921
|
];
|
|
22891
22922
|
|
|
@@ -24572,7 +24603,7 @@
|
|
|
24572
24603
|
{ type: i0.Component, args: [{
|
|
24573
24604
|
selector: 'novo-avatar',
|
|
24574
24605
|
template: '<img *ngIf="src" [src]="src"/>',
|
|
24575
|
-
styles: [":host{background-color:var(--background-muted);background-position:50%;background-size:cover;display:inline-block;height:30px;overflow:hidden;position:relative;width:30px}:host img{border-radius:inherit;height:inherit;width:inherit}:host.avatar-size-small{height:20px;width:20px}:host.avatar-size-large{height:40px;width:40px}:host.avatar-shape-round{border-radius:2em}:host.avatar-shape-square{border-radius:.4em}:host.avatar-color-black{background-color:#000;color:#fff}:host.avatar-color-white{background-color:#fff;color:#
|
|
24606
|
+
styles: [":host{background-color:var(--background-muted);background-position:50%;background-size:cover;display:inline-block;height:30px;overflow:hidden;position:relative;width:30px}:host img{border-radius:inherit;height:inherit;width:inherit}:host.avatar-size-small{height:20px;width:20px}:host.avatar-size-large{height:40px;width:40px}:host.avatar-shape-round{border-radius:2em}:host.avatar-shape-square{border-radius:.4em}:host.avatar-color-black{background-color:#000;color:#fff}:host.avatar-color-white{background-color:#fff;color:#3d464d}:host.avatar-color-gray,:host.avatar-color-grey{background-color:#9e9e9e;color:#3d464d}:host.avatar-color-bright,:host.avatar-color-offWhite{background-color:#f7f7f7;color:#3d464d}:host.avatar-color-light{background-color:#dbdbdb;color:#3d464d}:host.avatar-color-neutral{background-color:#4f5361;color:#fff}:host.avatar-color-dark{background-color:#3d464d;color:#fff}:host.avatar-color-orange{background-color:#ff6900;color:#3d464d}:host.avatar-color-navigation{background-color:#202945;color:#fff}:host.avatar-color-skyBlue{background-color:#009bdf;color:#fff}:host.avatar-color-steel{background-color:#5b6770;color:#fff}:host.avatar-color-metal{background-color:#637893;color:#fff}:host.avatar-color-sand{background-color:#f4f4f4;color:#3d464d}:host.avatar-color-silver{background-color:#e2e2e2;color:#3d464d}:host.avatar-color-stone{background-color:#bebebe;color:#3d464d}:host.avatar-color-ash{background-color:#a0a0a0;color:#3d464d}:host.avatar-color-slate{background-color:#707070;color:#fff}:host.avatar-color-onyx{background-color:#526980;color:#fff}:host.avatar-color-charcoal{background-color:#282828;color:#fff}:host.avatar-color-moonlight{background-color:#1a242f;color:#fff}:host.avatar-color-midnight{background-color:#202945;color:#fff}:host.avatar-color-darkness{background-color:#161f27;color:#fff}:host.avatar-color-navy{background-color:#0d2d42;color:#fff}:host.avatar-color-aqua{background-color:#3bafda;color:#3d464d}:host.avatar-color-ocean{background-color:#4a89dc;color:#fff}:host.avatar-color-mint{background-color:#37bc9b;color:#3d464d}:host.avatar-color-grass{background-color:#8cc152;color:#fff}:host.avatar-color-sunflower{background-color:#f6b042;color:#fff}:host.avatar-color-bittersweet{background-color:#eb6845;color:#fff}:host.avatar-color-grapefruit{background-color:#da4453;color:#fff}:host.avatar-color-carnation{background-color:#d770ad;color:#fff}:host.avatar-color-lavender{background-color:#967adc;color:#fff}:host.avatar-color-mountain{background-color:#9678b6;color:#fff}:host.avatar-color-info,:host.avatar-color-positive{background-color:#4a89dc;color:#fff}:host.avatar-color-success{background-color:#8cc152;color:#fff}:host.avatar-color-danger,:host.avatar-color-error,:host.avatar-color-negative{background-color:#da4453;color:#fff}:host.avatar-color-warning{background-color:#f6b042;color:#fff}:host.avatar-color-empty{background-color:#cccdcc;color:#3d464d}:host.avatar-color-disabled{background-color:#bebebe;color:#3d464d}:host.avatar-color-background{background-color:#f7f7f7;color:#3d464d}:host.avatar-color-backgroundDark{background-color:#e2e2e2;color:#3d464d}:host.avatar-color-presentation{background-color:#5b6770;color:#fff}:host.avatar-color-bullhorn{background-color:#ff6900;color:#3d464d}:host.avatar-color-pulse{background-color:#3bafda;color:#3d464d}:host.avatar-color-company{background-color:#39d;color:#fff}:host.avatar-color-candidate{background-color:#4b7;color:#fff}:host.avatar-color-lead{background-color:#a69;color:#fff}:host.avatar-color-contact{background-color:#fa4;color:#fff}:host.avatar-color-opportunity{background-color:#625;color:#fff}:host.avatar-color-job{background-color:#b56;color:#fff}:host.avatar-color-submission{background-color:#a9adbb;color:#3d464d}:host.avatar-color-sendout{background-color:#747884;color:#fff}:host.avatar-color-placement{background-color:#0b344f;color:#fff}:host.avatar-color-note{background-color:#747884;color:#fff}:host.avatar-color-contract{background-color:#454ea0;color:#fff}:host.avatar-color-billableCharge,:host.avatar-color-corporateUser,:host.avatar-color-credential,:host.avatar-color-distributionList,:host.avatar-color-earnCode,:host.avatar-color-invoiceStatement,:host.avatar-color-jobCode,:host.avatar-color-payableCharge,:host.avatar-color-person,:host.avatar-color-user{background-color:#696d79;color:#fff}:host(.menu-active){box-shadow:0 0 4px 1px var(--selection)}"]
|
|
24576
24607
|
},] }
|
|
24577
24608
|
];
|
|
24578
24609
|
NovoAvatarElement.ctorParameters = function () { return [
|
|
@@ -24710,7 +24741,7 @@
|
|
|
24710
24741
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
24711
24742
|
selector: 'novo-breadcrumb-item',
|
|
24712
24743
|
template: "<ng-container *ngIf=\"showMenu; else breadcrumbContentTpl\">\n <span [ngClass]=\"{ 'novo-breadcrumb-item-active': isOpen }\" #origin\n class=\"novo-dropdown-no-border novo-dropdown-origin novo-breadcrumb-dropdown-origin\">\n <ng-template [ngTemplateOutlet]=\"breadcrumbContentTpl\"></ng-template>\n <novo-dropdown>\n <novo-button theme=\"icon\" icon=\"collapse\" size=\"small\"></novo-button>\n <novo-optgroup class=\"novo-breadcrumb-dropdown-menu\">\n <div *ngIf=\"isSearch\" class=\"dropdown-search-container\">\n <novo-search alwaysOpen=\"true\" (searchFn)=\"searchEvent($event)\" [class]=\"'search-in-dropdown'\"></novo-search>\n </div>\n <novo-option *ngFor=\"let item of menuListDisplay\" title=\"{{ item.name }}\">\n <a *ngIf=\"!item.linkType || item.linkType === 'hrefLink'\" [href]=\"item.link\" rel=\"noopener\"\n [target]=\"item.target ? item.target : '_self'\">{{ item.name }}</a>\n <a *ngIf=\"item.linkType === 'routerLink'\" rel=\"noopener\" [target]=\"item.target\" [href]=\"item.link\"\n (click)=\"navigateTo($event, item)\">{{ item.name }}</a>\n </novo-option>\n </novo-optgroup>\n </novo-dropdown>\n </span>\n</ng-container>\n\n<ng-template #breadcrumbContentTpl>\n <span class=\"novo-breadcrumb-item\">\n <ng-content></ng-content>\n </span>\n</ng-template>\n\n<ng-template #dropDownMenuTpl>\n <div>test</div>\n\n</ng-template>\n\n<span class=\"novo-breadcrumb-separator\">\n <ng-template\n [ngTemplateOutlet]=\"breadcrumbComponent.separatorIcon ? breadcrumbComponent.separatorIcon : defaultSeparator\"\n [ngTemplateOutletContext]=\"{\n $implicit: this\n }\">\n </ng-template>\n</span>\n\n<ng-template #defaultSeparator>\n <span class=\"novo-breadcrumb-separator\">\n /\n </span>\n</ng-template>",
|
|
24713
|
-
styles: [".novo-breadcrumb-font-style,:host .novo-breadcrumb-item,:host .novo-breadcrumb-item ::ng-deep a,:host .novo-breadcrumb-separator{color:inherit;display:inline;font-size:var(--font-size-text);font-weight:400}:host,:host .novo-breadcrumb-item{align-items:center;display:flex;flex-flow:row nowrap}:host .novo-breadcrumb-item{cursor:auto}:host .novo-breadcrumb-item ::ng-deep a:hover{text-decoration:none}:host .novo-breadcrumb-item ::ng-deep a{color:#4a89dc;cursor:pointer}:host .novo-breadcrumb-item ::ng-deep a:focus{text-decoration:none}:host .novo-breadcrumb-down-icon{cursor:pointer;display:inline-block;height:16px;margin-right:-5px;outline:none;text-align:center;vertical-align:middle;width:16px}:host .novo-breadcrumb-down-icon:hover svg g polygon{fill:var(--text-main,#3d464d)}:host .novo-breadcrumb-item-active{color:var(--text-main,#3d464d)}:host .novo-breadcrumb-item-active ::ng-deep a{color:var(--text-main,#3d464d);text-decoration:none}:host .novo-breadcrumb-item-active svg g polygon{fill:var(--text-main,#3d464d)}:host .novo-breadcrumb-item-active span{color:var(--text-main,#3d464d)}:host .novo-breadcrumb-separator{margin:0 3px}:host .novo-breadcrumb-dropdown-menu{max-width:200px;padding:10px 0}:host .novo-breadcrumb-dropdown-menu li{cursor:pointer;font-size:12px;line-height:36px;overflow:hidden;padding:0 15px;text-overflow:ellipsis;white-space:nowrap;width:200px}:host .novo-breadcrumb-dropdown-menu li a{color:#3d464d;display:inline-block;line-height:36px;width:170px}:host .novo-breadcrumb-dropdown-menu li a:focus{text-decoration:none}:host .novo-breadcrumb-dropdown-menu li:hover{background:#dbdbdb}:host .novo-breadcrumb-dropdown-menu li:hover a{text-decoration:none}:host .novo-search-container{max-width:200px}:host span.novo-breadcrumb-dropdown-origin{display:inline-flex;min-width:unset;padding:0}:host novo-search{width:100%}"]
|
|
24744
|
+
styles: [".novo-breadcrumb-font-style,:host .novo-breadcrumb-item,:host .novo-breadcrumb-item ::ng-deep a,:host .novo-breadcrumb-separator{color:inherit;display:inline;font-size:var(--font-size-text);font-weight:400;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle}.novo-breadcrumb-font-style.text-nowrap,:host .novo-breadcrumb-item ::ng-deep a.text-nowrap,:host .text-nowrap.novo-breadcrumb-item,:host .text-nowrap.novo-breadcrumb-separator{white-space:nowrap}.novo-breadcrumb-font-style.text-ellipsis,:host .novo-breadcrumb-item ::ng-deep a.text-ellipsis,:host .text-ellipsis.novo-breadcrumb-item,:host .text-ellipsis.novo-breadcrumb-separator{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.novo-breadcrumb-font-style.text-size-default,:host .novo-breadcrumb-item ::ng-deep a.text-size-default,:host .text-size-default.novo-breadcrumb-item,:host .text-size-default.novo-breadcrumb-separator{font-size:inherit}.novo-breadcrumb-font-style.text-size-body,:host .novo-breadcrumb-item ::ng-deep a.text-size-body,:host .text-size-body.novo-breadcrumb-item,:host .text-size-body.novo-breadcrumb-separator{font-size:1.3rem}.novo-breadcrumb-font-style.text-size-xs,:host .novo-breadcrumb-item ::ng-deep a.text-size-xs,:host .text-size-xs.novo-breadcrumb-item,:host .text-size-xs.novo-breadcrumb-separator{font-size:1rem}.novo-breadcrumb-font-style.text-size-sm,:host .novo-breadcrumb-item ::ng-deep a.text-size-sm,:host .text-size-sm.novo-breadcrumb-item,:host .text-size-sm.novo-breadcrumb-separator{font-size:1.2rem}.novo-breadcrumb-font-style.text-size-md,:host .novo-breadcrumb-item ::ng-deep a.text-size-md,:host .text-size-md.novo-breadcrumb-item,:host .text-size-md.novo-breadcrumb-separator{font-size:1.3rem}.novo-breadcrumb-font-style.text-size-lg,:host .novo-breadcrumb-item ::ng-deep a.text-size-lg,:host .text-size-lg.novo-breadcrumb-item,:host .text-size-lg.novo-breadcrumb-separator{font-size:1.6rem}.novo-breadcrumb-font-style.text-size-xl,:host .novo-breadcrumb-item ::ng-deep a.text-size-xl,:host .text-size-xl.novo-breadcrumb-item,:host .text-size-xl.novo-breadcrumb-separator{font-size:2rem}.novo-breadcrumb-font-style.text-size-2xl,:host .novo-breadcrumb-item ::ng-deep a.text-size-2xl,:host .text-size-2xl.novo-breadcrumb-item,:host .text-size-2xl.novo-breadcrumb-separator{font-size:2.6rem}.novo-breadcrumb-font-style.text-size-3xl,:host .novo-breadcrumb-item ::ng-deep a.text-size-3xl,:host .text-size-3xl.novo-breadcrumb-item,:host .text-size-3xl.novo-breadcrumb-separator{font-size:3.2rem}.novo-breadcrumb-font-style.text-size-smaller,:host .novo-breadcrumb-item ::ng-deep a.text-size-smaller,:host .text-size-smaller.novo-breadcrumb-item,:host .text-size-smaller.novo-breadcrumb-separator{font-size:.8em}.novo-breadcrumb-font-style.text-size-larger,:host .novo-breadcrumb-item ::ng-deep a.text-size-larger,:host .text-size-larger.novo-breadcrumb-item,:host .text-size-larger.novo-breadcrumb-separator{font-size:1.2em}.novo-breadcrumb-font-style.text-color-black,:host .novo-breadcrumb-item ::ng-deep a.text-color-black,:host .text-color-black.novo-breadcrumb-item,:host .text-color-black.novo-breadcrumb-separator{color:#000}.novo-breadcrumb-font-style.text-color-white,:host .novo-breadcrumb-item ::ng-deep a.text-color-white,:host .text-color-white.novo-breadcrumb-item,:host .text-color-white.novo-breadcrumb-separator{color:#fff}.novo-breadcrumb-font-style.text-color-gray,.novo-breadcrumb-font-style.text-color-grey,:host .novo-breadcrumb-item ::ng-deep a.text-color-gray,:host .novo-breadcrumb-item ::ng-deep a.text-color-grey,:host .text-color-gray.novo-breadcrumb-item,:host .text-color-gray.novo-breadcrumb-separator,:host .text-color-grey.novo-breadcrumb-item,:host .text-color-grey.novo-breadcrumb-separator{color:#9e9e9e}.novo-breadcrumb-font-style.text-color-bright,.novo-breadcrumb-font-style.text-color-offWhite,:host .novo-breadcrumb-item ::ng-deep a.text-color-bright,:host .novo-breadcrumb-item ::ng-deep a.text-color-offWhite,:host .text-color-bright.novo-breadcrumb-item,:host .text-color-bright.novo-breadcrumb-separator,:host .text-color-offWhite.novo-breadcrumb-item,:host .text-color-offWhite.novo-breadcrumb-separator{color:#f7f7f7}.novo-breadcrumb-font-style.text-color-light,:host .novo-breadcrumb-item ::ng-deep a.text-color-light,:host .text-color-light.novo-breadcrumb-item,:host .text-color-light.novo-breadcrumb-separator{color:#dbdbdb}.novo-breadcrumb-font-style.text-color-neutral,:host .novo-breadcrumb-item ::ng-deep a.text-color-neutral,:host .text-color-neutral.novo-breadcrumb-item,:host .text-color-neutral.novo-breadcrumb-separator{color:#4f5361}.novo-breadcrumb-font-style.text-color-dark,:host .novo-breadcrumb-item ::ng-deep a.text-color-dark,:host .text-color-dark.novo-breadcrumb-item,:host .text-color-dark.novo-breadcrumb-separator{color:#3d464d}.novo-breadcrumb-font-style.text-color-orange,:host .novo-breadcrumb-item ::ng-deep a.text-color-orange,:host .text-color-orange.novo-breadcrumb-item,:host .text-color-orange.novo-breadcrumb-separator{color:#ff6900}.novo-breadcrumb-font-style.text-color-navigation,:host .novo-breadcrumb-item ::ng-deep a.text-color-navigation,:host .text-color-navigation.novo-breadcrumb-item,:host .text-color-navigation.novo-breadcrumb-separator{color:#202945}.novo-breadcrumb-font-style.text-color-skyBlue,:host .novo-breadcrumb-item ::ng-deep a.text-color-skyBlue,:host .text-color-skyBlue.novo-breadcrumb-item,:host .text-color-skyBlue.novo-breadcrumb-separator{color:#009bdf}.novo-breadcrumb-font-style.text-color-steel,:host .novo-breadcrumb-item ::ng-deep a.text-color-steel,:host .text-color-steel.novo-breadcrumb-item,:host .text-color-steel.novo-breadcrumb-separator{color:#5b6770}.novo-breadcrumb-font-style.text-color-metal,:host .novo-breadcrumb-item ::ng-deep a.text-color-metal,:host .text-color-metal.novo-breadcrumb-item,:host .text-color-metal.novo-breadcrumb-separator{color:#637893}.novo-breadcrumb-font-style.text-color-sand,:host .novo-breadcrumb-item ::ng-deep a.text-color-sand,:host .text-color-sand.novo-breadcrumb-item,:host .text-color-sand.novo-breadcrumb-separator{color:#f4f4f4}.novo-breadcrumb-font-style.text-color-silver,:host .novo-breadcrumb-item ::ng-deep a.text-color-silver,:host .text-color-silver.novo-breadcrumb-item,:host .text-color-silver.novo-breadcrumb-separator{color:#e2e2e2}.novo-breadcrumb-font-style.text-color-stone,:host .novo-breadcrumb-item ::ng-deep a.text-color-stone,:host .text-color-stone.novo-breadcrumb-item,:host .text-color-stone.novo-breadcrumb-separator{color:#bebebe}.novo-breadcrumb-font-style.text-color-ash,:host .novo-breadcrumb-item ::ng-deep a.text-color-ash,:host .text-color-ash.novo-breadcrumb-item,:host .text-color-ash.novo-breadcrumb-separator{color:#a0a0a0}.novo-breadcrumb-font-style.text-color-slate,:host .novo-breadcrumb-item ::ng-deep a.text-color-slate,:host .text-color-slate.novo-breadcrumb-item,:host .text-color-slate.novo-breadcrumb-separator{color:#707070}.novo-breadcrumb-font-style.text-color-onyx,:host .novo-breadcrumb-item ::ng-deep a.text-color-onyx,:host .text-color-onyx.novo-breadcrumb-item,:host .text-color-onyx.novo-breadcrumb-separator{color:#526980}.novo-breadcrumb-font-style.text-color-charcoal,:host .novo-breadcrumb-item ::ng-deep a.text-color-charcoal,:host .text-color-charcoal.novo-breadcrumb-item,:host .text-color-charcoal.novo-breadcrumb-separator{color:#282828}.novo-breadcrumb-font-style.text-color-moonlight,:host .novo-breadcrumb-item ::ng-deep a.text-color-moonlight,:host .text-color-moonlight.novo-breadcrumb-item,:host .text-color-moonlight.novo-breadcrumb-separator{color:#1a242f}.novo-breadcrumb-font-style.text-color-midnight,:host .novo-breadcrumb-item ::ng-deep a.text-color-midnight,:host .text-color-midnight.novo-breadcrumb-item,:host .text-color-midnight.novo-breadcrumb-separator{color:#202945}.novo-breadcrumb-font-style.text-color-darkness,:host .novo-breadcrumb-item ::ng-deep a.text-color-darkness,:host .text-color-darkness.novo-breadcrumb-item,:host .text-color-darkness.novo-breadcrumb-separator{color:#161f27}.novo-breadcrumb-font-style.text-color-navy,:host .novo-breadcrumb-item ::ng-deep a.text-color-navy,:host .text-color-navy.novo-breadcrumb-item,:host .text-color-navy.novo-breadcrumb-separator{color:#0d2d42}.novo-breadcrumb-font-style.text-color-aqua,:host .novo-breadcrumb-item ::ng-deep a.text-color-aqua,:host .text-color-aqua.novo-breadcrumb-item,:host .text-color-aqua.novo-breadcrumb-separator{color:#3bafda}.novo-breadcrumb-font-style.text-color-ocean,:host .novo-breadcrumb-item ::ng-deep a.text-color-ocean,:host .text-color-ocean.novo-breadcrumb-item,:host .text-color-ocean.novo-breadcrumb-separator{color:#4a89dc}.novo-breadcrumb-font-style.text-color-mint,:host .novo-breadcrumb-item ::ng-deep a.text-color-mint,:host .text-color-mint.novo-breadcrumb-item,:host .text-color-mint.novo-breadcrumb-separator{color:#37bc9b}.novo-breadcrumb-font-style.text-color-grass,:host .novo-breadcrumb-item ::ng-deep a.text-color-grass,:host .text-color-grass.novo-breadcrumb-item,:host .text-color-grass.novo-breadcrumb-separator{color:#8cc152}.novo-breadcrumb-font-style.text-color-sunflower,:host .novo-breadcrumb-item ::ng-deep a.text-color-sunflower,:host .text-color-sunflower.novo-breadcrumb-item,:host .text-color-sunflower.novo-breadcrumb-separator{color:#f6b042}.novo-breadcrumb-font-style.text-color-bittersweet,:host .novo-breadcrumb-item ::ng-deep a.text-color-bittersweet,:host .text-color-bittersweet.novo-breadcrumb-item,:host .text-color-bittersweet.novo-breadcrumb-separator{color:#eb6845}.novo-breadcrumb-font-style.text-color-grapefruit,:host .novo-breadcrumb-item ::ng-deep a.text-color-grapefruit,:host .text-color-grapefruit.novo-breadcrumb-item,:host .text-color-grapefruit.novo-breadcrumb-separator{color:#da4453}.novo-breadcrumb-font-style.text-color-carnation,:host .novo-breadcrumb-item ::ng-deep a.text-color-carnation,:host .text-color-carnation.novo-breadcrumb-item,:host .text-color-carnation.novo-breadcrumb-separator{color:#d770ad}.novo-breadcrumb-font-style.text-color-lavender,:host .novo-breadcrumb-item ::ng-deep a.text-color-lavender,:host .text-color-lavender.novo-breadcrumb-item,:host .text-color-lavender.novo-breadcrumb-separator{color:#967adc}.novo-breadcrumb-font-style.text-color-mountain,:host .novo-breadcrumb-item ::ng-deep a.text-color-mountain,:host .text-color-mountain.novo-breadcrumb-item,:host .text-color-mountain.novo-breadcrumb-separator{color:#9678b6}.novo-breadcrumb-font-style.text-color-info,.novo-breadcrumb-font-style.text-color-positive,:host .novo-breadcrumb-item ::ng-deep a.text-color-info,:host .novo-breadcrumb-item ::ng-deep a.text-color-positive,:host .text-color-info.novo-breadcrumb-item,:host .text-color-info.novo-breadcrumb-separator,:host .text-color-positive.novo-breadcrumb-item,:host .text-color-positive.novo-breadcrumb-separator{color:#4a89dc}.novo-breadcrumb-font-style.text-color-success,:host .novo-breadcrumb-item ::ng-deep a.text-color-success,:host .text-color-success.novo-breadcrumb-item,:host .text-color-success.novo-breadcrumb-separator{color:#8cc152}.novo-breadcrumb-font-style.text-color-danger,.novo-breadcrumb-font-style.text-color-error,.novo-breadcrumb-font-style.text-color-negative,:host .novo-breadcrumb-item ::ng-deep a.text-color-danger,:host .novo-breadcrumb-item ::ng-deep a.text-color-error,:host .novo-breadcrumb-item ::ng-deep a.text-color-negative,:host .text-color-danger.novo-breadcrumb-item,:host .text-color-danger.novo-breadcrumb-separator,:host .text-color-error.novo-breadcrumb-item,:host .text-color-error.novo-breadcrumb-separator,:host .text-color-negative.novo-breadcrumb-item,:host .text-color-negative.novo-breadcrumb-separator{color:#da4453}.novo-breadcrumb-font-style.text-color-warning,:host .novo-breadcrumb-item ::ng-deep a.text-color-warning,:host .text-color-warning.novo-breadcrumb-item,:host .text-color-warning.novo-breadcrumb-separator{color:#f6b042}.novo-breadcrumb-font-style.text-color-empty,:host .novo-breadcrumb-item ::ng-deep a.text-color-empty,:host .text-color-empty.novo-breadcrumb-item,:host .text-color-empty.novo-breadcrumb-separator{color:#cccdcc}.novo-breadcrumb-font-style.text-color-disabled,:host .novo-breadcrumb-item ::ng-deep a.text-color-disabled,:host .text-color-disabled.novo-breadcrumb-item,:host .text-color-disabled.novo-breadcrumb-separator{color:#bebebe}.novo-breadcrumb-font-style.text-color-background,:host .novo-breadcrumb-item ::ng-deep a.text-color-background,:host .text-color-background.novo-breadcrumb-item,:host .text-color-background.novo-breadcrumb-separator{color:#f7f7f7}.novo-breadcrumb-font-style.text-color-backgroundDark,:host .novo-breadcrumb-item ::ng-deep a.text-color-backgroundDark,:host .text-color-backgroundDark.novo-breadcrumb-item,:host .text-color-backgroundDark.novo-breadcrumb-separator{color:#e2e2e2}.novo-breadcrumb-font-style.text-color-presentation,:host .novo-breadcrumb-item ::ng-deep a.text-color-presentation,:host .text-color-presentation.novo-breadcrumb-item,:host .text-color-presentation.novo-breadcrumb-separator{color:#5b6770}.novo-breadcrumb-font-style.text-color-bullhorn,:host .novo-breadcrumb-item ::ng-deep a.text-color-bullhorn,:host .text-color-bullhorn.novo-breadcrumb-item,:host .text-color-bullhorn.novo-breadcrumb-separator{color:#ff6900}.novo-breadcrumb-font-style.text-color-pulse,:host .novo-breadcrumb-item ::ng-deep a.text-color-pulse,:host .text-color-pulse.novo-breadcrumb-item,:host .text-color-pulse.novo-breadcrumb-separator{color:#3bafda}.novo-breadcrumb-font-style.text-color-company,:host .novo-breadcrumb-item ::ng-deep a.text-color-company,:host .text-color-company.novo-breadcrumb-item,:host .text-color-company.novo-breadcrumb-separator{color:#39d}.novo-breadcrumb-font-style.text-color-candidate,:host .novo-breadcrumb-item ::ng-deep a.text-color-candidate,:host .text-color-candidate.novo-breadcrumb-item,:host .text-color-candidate.novo-breadcrumb-separator{color:#4b7}.novo-breadcrumb-font-style.text-color-lead,:host .novo-breadcrumb-item ::ng-deep a.text-color-lead,:host .text-color-lead.novo-breadcrumb-item,:host .text-color-lead.novo-breadcrumb-separator{color:#a69}.novo-breadcrumb-font-style.text-color-contact,:host .novo-breadcrumb-item ::ng-deep a.text-color-contact,:host .text-color-contact.novo-breadcrumb-item,:host .text-color-contact.novo-breadcrumb-separator{color:#fa4}.novo-breadcrumb-font-style.text-color-opportunity,:host .novo-breadcrumb-item ::ng-deep a.text-color-opportunity,:host .text-color-opportunity.novo-breadcrumb-item,:host .text-color-opportunity.novo-breadcrumb-separator{color:#625}.novo-breadcrumb-font-style.text-color-job,:host .novo-breadcrumb-item ::ng-deep a.text-color-job,:host .text-color-job.novo-breadcrumb-item,:host .text-color-job.novo-breadcrumb-separator{color:#b56}.novo-breadcrumb-font-style.text-color-submission,:host .novo-breadcrumb-item ::ng-deep a.text-color-submission,:host .text-color-submission.novo-breadcrumb-item,:host .text-color-submission.novo-breadcrumb-separator{color:#a9adbb}.novo-breadcrumb-font-style.text-color-sendout,:host .novo-breadcrumb-item ::ng-deep a.text-color-sendout,:host .text-color-sendout.novo-breadcrumb-item,:host .text-color-sendout.novo-breadcrumb-separator{color:#747884}.novo-breadcrumb-font-style.text-color-placement,:host .novo-breadcrumb-item ::ng-deep a.text-color-placement,:host .text-color-placement.novo-breadcrumb-item,:host .text-color-placement.novo-breadcrumb-separator{color:#0b344f}.novo-breadcrumb-font-style.text-color-note,:host .novo-breadcrumb-item ::ng-deep a.text-color-note,:host .text-color-note.novo-breadcrumb-item,:host .text-color-note.novo-breadcrumb-separator{color:#747884}.novo-breadcrumb-font-style.text-color-contract,:host .novo-breadcrumb-item ::ng-deep a.text-color-contract,:host .text-color-contract.novo-breadcrumb-item,:host .text-color-contract.novo-breadcrumb-separator{color:#454ea0}.novo-breadcrumb-font-style.text-color-billableCharge,.novo-breadcrumb-font-style.text-color-corporateUser,.novo-breadcrumb-font-style.text-color-credential,.novo-breadcrumb-font-style.text-color-distributionList,.novo-breadcrumb-font-style.text-color-earnCode,.novo-breadcrumb-font-style.text-color-invoiceStatement,.novo-breadcrumb-font-style.text-color-jobCode,.novo-breadcrumb-font-style.text-color-payableCharge,.novo-breadcrumb-font-style.text-color-person,.novo-breadcrumb-font-style.text-color-user,:host .novo-breadcrumb-item ::ng-deep a.text-color-billableCharge,:host .novo-breadcrumb-item ::ng-deep a.text-color-corporateUser,:host .novo-breadcrumb-item ::ng-deep a.text-color-credential,:host .novo-breadcrumb-item ::ng-deep a.text-color-distributionList,:host .novo-breadcrumb-item ::ng-deep a.text-color-earnCode,:host .novo-breadcrumb-item ::ng-deep a.text-color-invoiceStatement,:host .novo-breadcrumb-item ::ng-deep a.text-color-jobCode,:host .novo-breadcrumb-item ::ng-deep a.text-color-payableCharge,:host .novo-breadcrumb-item ::ng-deep a.text-color-person,:host .novo-breadcrumb-item ::ng-deep a.text-color-user,:host .text-color-billableCharge.novo-breadcrumb-item,:host .text-color-billableCharge.novo-breadcrumb-separator,:host .text-color-corporateUser.novo-breadcrumb-item,:host .text-color-corporateUser.novo-breadcrumb-separator,:host .text-color-credential.novo-breadcrumb-item,:host .text-color-credential.novo-breadcrumb-separator,:host .text-color-distributionList.novo-breadcrumb-item,:host .text-color-distributionList.novo-breadcrumb-separator,:host .text-color-earnCode.novo-breadcrumb-item,:host .text-color-earnCode.novo-breadcrumb-separator,:host .text-color-invoiceStatement.novo-breadcrumb-item,:host .text-color-invoiceStatement.novo-breadcrumb-separator,:host .text-color-jobCode.novo-breadcrumb-item,:host .text-color-jobCode.novo-breadcrumb-separator,:host .text-color-payableCharge.novo-breadcrumb-item,:host .text-color-payableCharge.novo-breadcrumb-separator,:host .text-color-person.novo-breadcrumb-item,:host .text-color-person.novo-breadcrumb-separator,:host .text-color-user.novo-breadcrumb-item,:host .text-color-user.novo-breadcrumb-separator{color:#696d79}.novo-breadcrumb-font-style.margin-before,:host .margin-before.novo-breadcrumb-item,:host .margin-before.novo-breadcrumb-separator,:host .novo-breadcrumb-item ::ng-deep a.margin-before{margin-top:.4rem}.novo-breadcrumb-font-style.margin-after,:host .margin-after.novo-breadcrumb-item,:host .margin-after.novo-breadcrumb-separator,:host .novo-breadcrumb-item ::ng-deep a.margin-after{margin-bottom:.8rem}.novo-breadcrumb-font-style.text-length-small,:host .novo-breadcrumb-item ::ng-deep a.text-length-small,:host .text-length-small.novo-breadcrumb-item,:host .text-length-small.novo-breadcrumb-separator{max-width:40ch}.novo-breadcrumb-font-style.text-length-medium,:host .novo-breadcrumb-item ::ng-deep a.text-length-medium,:host .text-length-medium.novo-breadcrumb-item,:host .text-length-medium.novo-breadcrumb-separator{max-width:55ch}.novo-breadcrumb-font-style.text-length-large,:host .novo-breadcrumb-item ::ng-deep a.text-length-large,:host .text-length-large.novo-breadcrumb-item,:host .text-length-large.novo-breadcrumb-separator{max-width:70ch}.novo-breadcrumb-font-style.text-weight-hairline,:host .novo-breadcrumb-item ::ng-deep a.text-weight-hairline,:host .text-weight-hairline.novo-breadcrumb-item,:host .text-weight-hairline.novo-breadcrumb-separator{font-weight:100}.novo-breadcrumb-font-style.text-weight-thin,:host .novo-breadcrumb-item ::ng-deep a.text-weight-thin,:host .text-weight-thin.novo-breadcrumb-item,:host .text-weight-thin.novo-breadcrumb-separator{font-weight:200}.novo-breadcrumb-font-style.text-weight-light,:host .novo-breadcrumb-item ::ng-deep a.text-weight-light,:host .text-weight-light.novo-breadcrumb-item,:host .text-weight-light.novo-breadcrumb-separator{font-weight:300}.novo-breadcrumb-font-style.text-weight-normal,:host .novo-breadcrumb-item ::ng-deep a.text-weight-normal,:host .text-weight-normal.novo-breadcrumb-item,:host .text-weight-normal.novo-breadcrumb-separator{font-weight:400}.novo-breadcrumb-font-style.text-weight-medium,:host .novo-breadcrumb-item ::ng-deep a.text-weight-medium,:host .text-weight-medium.novo-breadcrumb-item,:host .text-weight-medium.novo-breadcrumb-separator{font-weight:500}.novo-breadcrumb-font-style.text-weight-semibold,:host .novo-breadcrumb-item ::ng-deep a.text-weight-semibold,:host .text-weight-semibold.novo-breadcrumb-item,:host .text-weight-semibold.novo-breadcrumb-separator{font-weight:600}.novo-breadcrumb-font-style.text-weight-bold,:host .novo-breadcrumb-item ::ng-deep a.text-weight-bold,:host .text-weight-bold.novo-breadcrumb-item,:host .text-weight-bold.novo-breadcrumb-separator{font-weight:700}.novo-breadcrumb-font-style.text-weight-extrabold,:host .novo-breadcrumb-item ::ng-deep a.text-weight-extrabold,:host .text-weight-extrabold.novo-breadcrumb-item,:host .text-weight-extrabold.novo-breadcrumb-separator{font-weight:800}.novo-breadcrumb-font-style.text-weight-heavy,:host .novo-breadcrumb-item ::ng-deep a.text-weight-heavy,:host .text-weight-heavy.novo-breadcrumb-item,:host .text-weight-heavy.novo-breadcrumb-separator{font-weight:900}.novo-breadcrumb-font-style.text-weight-lighter,:host .novo-breadcrumb-item ::ng-deep a.text-weight-lighter,:host .text-weight-lighter.novo-breadcrumb-item,:host .text-weight-lighter.novo-breadcrumb-separator{font-weight:lighter}.novo-breadcrumb-font-style.text-weight-bolder,:host .novo-breadcrumb-item ::ng-deep a.text-weight-bolder,:host .text-weight-bolder.novo-breadcrumb-item,:host .text-weight-bolder.novo-breadcrumb-separator{font-weight:bolder}:host,:host .novo-breadcrumb-item{align-items:center;display:flex;flex-flow:row nowrap}:host .novo-breadcrumb-item{cursor:auto}:host .novo-breadcrumb-item ::ng-deep a:hover{text-decoration:none}:host .novo-breadcrumb-item ::ng-deep a{color:#4a89dc;cursor:pointer}:host .novo-breadcrumb-item ::ng-deep a:focus{text-decoration:none}:host .novo-breadcrumb-down-icon{cursor:pointer;display:inline-block;height:16px;margin-right:-5px;outline:none;text-align:center;vertical-align:middle;width:16px}:host .novo-breadcrumb-down-icon:hover svg g polygon{fill:var(--text-main,#3d464d)}:host .novo-breadcrumb-item-active{color:var(--text-main,#3d464d)}:host .novo-breadcrumb-item-active ::ng-deep a{color:var(--text-main,#3d464d);text-decoration:none}:host .novo-breadcrumb-item-active svg g polygon{fill:var(--text-main,#3d464d)}:host .novo-breadcrumb-item-active span{color:var(--text-main,#3d464d)}:host .novo-breadcrumb-separator{margin:0 3px}:host .novo-breadcrumb-dropdown-menu{max-width:200px;padding:10px 0}:host .novo-breadcrumb-dropdown-menu li{cursor:pointer;font-size:12px;line-height:36px;overflow:hidden;padding:0 15px;text-overflow:ellipsis;white-space:nowrap;width:200px}:host .novo-breadcrumb-dropdown-menu li a{color:#3d464d;display:inline-block;line-height:36px;width:170px}:host .novo-breadcrumb-dropdown-menu li a:focus{text-decoration:none}:host .novo-breadcrumb-dropdown-menu li:hover{background:#dbdbdb}:host .novo-breadcrumb-dropdown-menu li:hover a{text-decoration:none}:host .novo-search-container{max-width:200px}:host span.novo-breadcrumb-dropdown-origin{display:inline-flex;min-width:unset;padding:0}:host novo-search{width:100%}"]
|
|
24714
24745
|
},] }
|
|
24715
24746
|
];
|
|
24716
24747
|
BreadcrumbItemElement.ctorParameters = function () { return [
|
|
@@ -24754,11 +24785,19 @@
|
|
|
24754
24785
|
|
|
24755
24786
|
// tslint:disable: directive-selector
|
|
24756
24787
|
var BackgroundColorDirective = /** @class */ (function () {
|
|
24757
|
-
function BackgroundColorDirective() {
|
|
24788
|
+
function BackgroundColorDirective(el) {
|
|
24789
|
+
this.el = el;
|
|
24758
24790
|
}
|
|
24759
|
-
Object.defineProperty(BackgroundColorDirective.prototype, "
|
|
24791
|
+
Object.defineProperty(BackgroundColorDirective.prototype, "hb_bgColor", {
|
|
24760
24792
|
get: function () {
|
|
24761
|
-
return "
|
|
24793
|
+
return isValidColor(this.bg) ? 'novo-background-custom' : "novo-background-" + this.bg;
|
|
24794
|
+
},
|
|
24795
|
+
enumerable: false,
|
|
24796
|
+
configurable: true
|
|
24797
|
+
});
|
|
24798
|
+
Object.defineProperty(BackgroundColorDirective.prototype, "hb_bgStyle", {
|
|
24799
|
+
get: function () {
|
|
24800
|
+
return isValidColor(this.bg) ? this.bg : null;
|
|
24762
24801
|
},
|
|
24763
24802
|
enumerable: false,
|
|
24764
24803
|
configurable: true
|
|
@@ -24767,13 +24806,20 @@
|
|
|
24767
24806
|
}());
|
|
24768
24807
|
BackgroundColorDirective.decorators = [
|
|
24769
24808
|
{ type: i0.Directive, args: [{
|
|
24770
|
-
selector: '[
|
|
24809
|
+
selector: '[bg]',
|
|
24771
24810
|
},] }
|
|
24772
24811
|
];
|
|
24812
|
+
BackgroundColorDirective.ctorParameters = function () { return [
|
|
24813
|
+
{ type: i0.ElementRef }
|
|
24814
|
+
]; };
|
|
24773
24815
|
BackgroundColorDirective.propDecorators = {
|
|
24774
|
-
|
|
24775
|
-
|
|
24816
|
+
bg: [{ type: i0.Input }],
|
|
24817
|
+
hb_bgColor: [{ type: i0.HostBinding, args: ['class',] }],
|
|
24818
|
+
hb_bgStyle: [{ type: i0.HostBinding, args: ['style.background-color',] }]
|
|
24776
24819
|
};
|
|
24820
|
+
function isValidColor(color) {
|
|
24821
|
+
return color.startsWith('#') || color.startsWith('rgb');
|
|
24822
|
+
}
|
|
24777
24823
|
|
|
24778
24824
|
// tslint:disable: directive-selector
|
|
24779
24825
|
var BorderDirective = /** @class */ (function () {
|
|
@@ -24868,7 +24914,14 @@
|
|
|
24868
24914
|
}
|
|
24869
24915
|
Object.defineProperty(TextColorDirective.prototype, "hb_textColor", {
|
|
24870
24916
|
get: function () {
|
|
24871
|
-
return
|
|
24917
|
+
return isValidColor$1(this.txc) ? 'novo-text-custom' : "novo-text-" + this.txc;
|
|
24918
|
+
},
|
|
24919
|
+
enumerable: false,
|
|
24920
|
+
configurable: true
|
|
24921
|
+
});
|
|
24922
|
+
Object.defineProperty(TextColorDirective.prototype, "hb_textStyle", {
|
|
24923
|
+
get: function () {
|
|
24924
|
+
return isValidColor$1(this.txc) ? this.txc : null;
|
|
24872
24925
|
},
|
|
24873
24926
|
enumerable: false,
|
|
24874
24927
|
configurable: true
|
|
@@ -24885,8 +24938,12 @@
|
|
|
24885
24938
|
]; };
|
|
24886
24939
|
TextColorDirective.propDecorators = {
|
|
24887
24940
|
txc: [{ type: i0.Input }],
|
|
24888
|
-
hb_textColor: [{ type: i0.HostBinding, args: ['class',] }]
|
|
24941
|
+
hb_textColor: [{ type: i0.HostBinding, args: ['class',] }],
|
|
24942
|
+
hb_textStyle: [{ type: i0.HostBinding, args: ['style.color',] }]
|
|
24889
24943
|
};
|
|
24944
|
+
function isValidColor$1(color) {
|
|
24945
|
+
return color.startsWith('#') || color.startsWith('rgb');
|
|
24946
|
+
}
|
|
24890
24947
|
|
|
24891
24948
|
// tslint:disable: directive-selector
|
|
24892
24949
|
var FillColorDirective = /** @class */ (function () {
|
|
@@ -24915,6 +24972,43 @@
|
|
|
24915
24972
|
hb_textColor: [{ type: i0.HostBinding, args: ['class',] }]
|
|
24916
24973
|
};
|
|
24917
24974
|
|
|
24975
|
+
var FlexDirective = /** @class */ (function () {
|
|
24976
|
+
function FlexDirective(el, renderer) {
|
|
24977
|
+
this.el = el;
|
|
24978
|
+
this.renderer = renderer;
|
|
24979
|
+
// this.renderer.setStyle(this.el.nativeElement, 'display', 'flex');
|
|
24980
|
+
}
|
|
24981
|
+
Object.defineProperty(FlexDirective.prototype, "flex", {
|
|
24982
|
+
get: function () {
|
|
24983
|
+
return this._flex;
|
|
24984
|
+
},
|
|
24985
|
+
set: function (value) {
|
|
24986
|
+
if (!value) {
|
|
24987
|
+
this._flex = '1 1 auto';
|
|
24988
|
+
}
|
|
24989
|
+
else {
|
|
24990
|
+
this._flex = value;
|
|
24991
|
+
}
|
|
24992
|
+
},
|
|
24993
|
+
enumerable: false,
|
|
24994
|
+
configurable: true
|
|
24995
|
+
});
|
|
24996
|
+
return FlexDirective;
|
|
24997
|
+
}());
|
|
24998
|
+
FlexDirective.decorators = [
|
|
24999
|
+
{ type: i0.Directive, args: [{
|
|
25000
|
+
// tslint:disable-next-line: directive-selector
|
|
25001
|
+
selector: '[flex]',
|
|
25002
|
+
},] }
|
|
25003
|
+
];
|
|
25004
|
+
FlexDirective.ctorParameters = function () { return [
|
|
25005
|
+
{ type: i0.ElementRef },
|
|
25006
|
+
{ type: i0.Renderer2 }
|
|
25007
|
+
]; };
|
|
25008
|
+
FlexDirective.propDecorators = {
|
|
25009
|
+
flex: [{ type: i0.HostBinding, args: ['style.flex',] }, { type: i0.Input }]
|
|
25010
|
+
};
|
|
25011
|
+
|
|
24918
25012
|
// tslint:disable: directive-selector
|
|
24919
25013
|
/*
|
|
24920
25014
|
Prop CSS Property Theme Field
|
|
@@ -25121,6 +25215,33 @@
|
|
|
25121
25215
|
hb_gap: [{ type: i0.HostBinding, args: ['style.gap',] }]
|
|
25122
25216
|
};
|
|
25123
25217
|
|
|
25218
|
+
// tslint:disable: directive-selector
|
|
25219
|
+
var ThemeColorDirective = /** @class */ (function () {
|
|
25220
|
+
function ThemeColorDirective(el) {
|
|
25221
|
+
this.el = el;
|
|
25222
|
+
}
|
|
25223
|
+
Object.defineProperty(ThemeColorDirective.prototype, "hb_textColor", {
|
|
25224
|
+
get: function () {
|
|
25225
|
+
return "novo-theme-" + this.theme;
|
|
25226
|
+
},
|
|
25227
|
+
enumerable: false,
|
|
25228
|
+
configurable: true
|
|
25229
|
+
});
|
|
25230
|
+
return ThemeColorDirective;
|
|
25231
|
+
}());
|
|
25232
|
+
ThemeColorDirective.decorators = [
|
|
25233
|
+
{ type: i0.Directive, args: [{
|
|
25234
|
+
selector: '[theme]',
|
|
25235
|
+
},] }
|
|
25236
|
+
];
|
|
25237
|
+
ThemeColorDirective.ctorParameters = function () { return [
|
|
25238
|
+
{ type: i0.ElementRef }
|
|
25239
|
+
]; };
|
|
25240
|
+
ThemeColorDirective.propDecorators = {
|
|
25241
|
+
theme: [{ type: i0.Input }],
|
|
25242
|
+
hb_textColor: [{ type: i0.HostBinding, args: ['class',] }]
|
|
25243
|
+
};
|
|
25244
|
+
|
|
25124
25245
|
var NovoTemplate = /** @class */ (function () {
|
|
25125
25246
|
function NovoTemplate(template) {
|
|
25126
25247
|
this.template = template;
|
|
@@ -25269,9 +25390,6 @@
|
|
|
25269
25390
|
NovoOptgroupBase.decorators = [
|
|
25270
25391
|
{ type: i0.Directive }
|
|
25271
25392
|
];
|
|
25272
|
-
NovoOptgroupBase.propDecorators = {
|
|
25273
|
-
label: [{ type: i0.Input }]
|
|
25274
|
-
};
|
|
25275
25393
|
var NovoOptgroupMixinBase = mixinDisabled(NovoOptgroupBase);
|
|
25276
25394
|
// Counter for unique group ids.
|
|
25277
25395
|
var _uniqueOptgroupIdCounter = 0;
|
|
@@ -25299,10 +25417,10 @@
|
|
|
25299
25417
|
{ type: i0.Component, args: [{
|
|
25300
25418
|
selector: 'novo-optgroup',
|
|
25301
25419
|
exportAs: 'novoOptgroup',
|
|
25302
|
-
template: "<span *ngIf=\"label\" class=\"novo-optgroup-label\" aria-hidden=\"true\" [id]=\"_labelId\">{{ label }}</span>\n<ng-content select=\"novo-option, ng-container, novo-divider\"></ng-content>",
|
|
25420
|
+
template: "<span *ngIf=\"label\" class=\"novo-optgroup-label\" aria-hidden=\"true\" [id]=\"_labelId\">{{ label }}</span>\n<ng-content select=\"novo-option, ng-container, novo-divider, cdk-virtual-scroll-viewport\"></ng-content>",
|
|
25303
25421
|
encapsulation: i0.ViewEncapsulation.None,
|
|
25304
25422
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
25305
|
-
inputs: ['disabled'],
|
|
25423
|
+
inputs: ['disabled', 'label'],
|
|
25306
25424
|
host: {
|
|
25307
25425
|
class: 'novo-optgroup',
|
|
25308
25426
|
'[attr.role]': '_inert ? null : "group"',
|
|
@@ -25311,7 +25429,7 @@
|
|
|
25311
25429
|
'[class.novo-optgroup-disabled]': 'disabled',
|
|
25312
25430
|
},
|
|
25313
25431
|
providers: [{ provide: NOVO_OPTGROUP, useExisting: NovoOptgroup }],
|
|
25314
|
-
styles: [".novo-optgroup-label{color
|
|
25432
|
+
styles: [".novo-optgroup-label{color:var(--text-muted);color:#9e9e9e;cursor:default;display:block;flex:1;font-size:var(--font-size-label);font-weight:500;line-height:1.375;overflow-wrap:break-word;padding:5px 10px;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle;word-break:word-break}.novo-optgroup-label.text-nowrap{white-space:nowrap}.novo-optgroup-label.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.novo-optgroup-label.text-size-default{font-size:inherit}.novo-optgroup-label.text-size-body{font-size:1.3rem}.novo-optgroup-label.text-size-xs{font-size:1rem}.novo-optgroup-label.text-size-sm{font-size:1.2rem}.novo-optgroup-label.text-size-md{font-size:1.3rem}.novo-optgroup-label.text-size-lg{font-size:1.6rem}.novo-optgroup-label.text-size-xl{font-size:2rem}.novo-optgroup-label.text-size-2xl{font-size:2.6rem}.novo-optgroup-label.text-size-3xl{font-size:3.2rem}.novo-optgroup-label.text-size-smaller{font-size:.8em}.novo-optgroup-label.text-size-larger{font-size:1.2em}.novo-optgroup-label.text-color-black{color:#000}.novo-optgroup-label.text-color-white{color:#fff}.novo-optgroup-label.text-color-gray,.novo-optgroup-label.text-color-grey{color:#9e9e9e}.novo-optgroup-label.text-color-bright,.novo-optgroup-label.text-color-offWhite{color:#f7f7f7}.novo-optgroup-label.text-color-light{color:#dbdbdb}.novo-optgroup-label.text-color-neutral{color:#4f5361}.novo-optgroup-label.text-color-dark{color:#3d464d}.novo-optgroup-label.text-color-orange{color:#ff6900}.novo-optgroup-label.text-color-navigation{color:#202945}.novo-optgroup-label.text-color-skyBlue{color:#009bdf}.novo-optgroup-label.text-color-steel{color:#5b6770}.novo-optgroup-label.text-color-metal{color:#637893}.novo-optgroup-label.text-color-sand{color:#f4f4f4}.novo-optgroup-label.text-color-silver{color:#e2e2e2}.novo-optgroup-label.text-color-stone{color:#bebebe}.novo-optgroup-label.text-color-ash{color:#a0a0a0}.novo-optgroup-label.text-color-slate{color:#707070}.novo-optgroup-label.text-color-onyx{color:#526980}.novo-optgroup-label.text-color-charcoal{color:#282828}.novo-optgroup-label.text-color-moonlight{color:#1a242f}.novo-optgroup-label.text-color-midnight{color:#202945}.novo-optgroup-label.text-color-darkness{color:#161f27}.novo-optgroup-label.text-color-navy{color:#0d2d42}.novo-optgroup-label.text-color-aqua{color:#3bafda}.novo-optgroup-label.text-color-ocean{color:#4a89dc}.novo-optgroup-label.text-color-mint{color:#37bc9b}.novo-optgroup-label.text-color-grass{color:#8cc152}.novo-optgroup-label.text-color-sunflower{color:#f6b042}.novo-optgroup-label.text-color-bittersweet{color:#eb6845}.novo-optgroup-label.text-color-grapefruit{color:#da4453}.novo-optgroup-label.text-color-carnation{color:#d770ad}.novo-optgroup-label.text-color-lavender{color:#967adc}.novo-optgroup-label.text-color-mountain{color:#9678b6}.novo-optgroup-label.text-color-info,.novo-optgroup-label.text-color-positive{color:#4a89dc}.novo-optgroup-label.text-color-success{color:#8cc152}.novo-optgroup-label.text-color-danger,.novo-optgroup-label.text-color-error,.novo-optgroup-label.text-color-negative{color:#da4453}.novo-optgroup-label.text-color-warning{color:#f6b042}.novo-optgroup-label.text-color-empty{color:#cccdcc}.novo-optgroup-label.text-color-disabled{color:#bebebe}.novo-optgroup-label.text-color-background{color:#f7f7f7}.novo-optgroup-label.text-color-backgroundDark{color:#e2e2e2}.novo-optgroup-label.text-color-presentation{color:#5b6770}.novo-optgroup-label.text-color-bullhorn{color:#ff6900}.novo-optgroup-label.text-color-pulse{color:#3bafda}.novo-optgroup-label.text-color-company{color:#39d}.novo-optgroup-label.text-color-candidate{color:#4b7}.novo-optgroup-label.text-color-lead{color:#a69}.novo-optgroup-label.text-color-contact{color:#fa4}.novo-optgroup-label.text-color-opportunity{color:#625}.novo-optgroup-label.text-color-job{color:#b56}.novo-optgroup-label.text-color-submission{color:#a9adbb}.novo-optgroup-label.text-color-sendout{color:#747884}.novo-optgroup-label.text-color-placement{color:#0b344f}.novo-optgroup-label.text-color-note{color:#747884}.novo-optgroup-label.text-color-contract{color:#454ea0}.novo-optgroup-label.text-color-billableCharge,.novo-optgroup-label.text-color-corporateUser,.novo-optgroup-label.text-color-credential,.novo-optgroup-label.text-color-distributionList,.novo-optgroup-label.text-color-earnCode,.novo-optgroup-label.text-color-invoiceStatement,.novo-optgroup-label.text-color-jobCode,.novo-optgroup-label.text-color-payableCharge,.novo-optgroup-label.text-color-person,.novo-optgroup-label.text-color-user{color:#696d79}.novo-optgroup-label.margin-before{margin-top:.4rem}.novo-optgroup-label.margin-after{margin-bottom:.8rem}.novo-optgroup-label.text-length-small{max-width:40ch}.novo-optgroup-label.text-length-medium{max-width:55ch}.novo-optgroup-label.text-length-large{max-width:70ch}.novo-optgroup-label.text-weight-hairline{font-weight:100}.novo-optgroup-label.text-weight-thin{font-weight:200}.novo-optgroup-label.text-weight-light{font-weight:300}.novo-optgroup-label.text-weight-normal{font-weight:400}.novo-optgroup-label.text-weight-medium{font-weight:500}.novo-optgroup-label.text-weight-semibold{font-weight:600}.novo-optgroup-label.text-weight-bold{font-weight:700}.novo-optgroup-label.text-weight-extrabold{font-weight:800}.novo-optgroup-label.text-weight-heavy{font-weight:900}.novo-optgroup-label.text-weight-lighter{font-weight:lighter}.novo-optgroup-label.text-weight-bolder{font-weight:bolder}"]
|
|
25315
25433
|
},] }
|
|
25316
25434
|
];
|
|
25317
25435
|
NovoOptgroup.ctorParameters = function () { return [
|
|
@@ -25338,6 +25456,7 @@
|
|
|
25338
25456
|
}());
|
|
25339
25457
|
var NovoOptionBase = /** @class */ (function () {
|
|
25340
25458
|
function NovoOptionBase(_element, _changeDetectorRef, _parent, group) {
|
|
25459
|
+
var _this = this;
|
|
25341
25460
|
this._element = _element;
|
|
25342
25461
|
this._changeDetectorRef = _changeDetectorRef;
|
|
25343
25462
|
this._parent = _parent;
|
|
@@ -25346,8 +25465,9 @@
|
|
|
25346
25465
|
this._active = false;
|
|
25347
25466
|
this._disabled = false;
|
|
25348
25467
|
this._mostRecentViewValue = '';
|
|
25349
|
-
/**
|
|
25468
|
+
/** TODO: deprecate maybe, check support for table headers */
|
|
25350
25469
|
this.keepOpen = false;
|
|
25470
|
+
this.inert = false;
|
|
25351
25471
|
/** The unique ID of the option. */
|
|
25352
25472
|
this.id = "novo-option-" + _uniqueIdCounter++;
|
|
25353
25473
|
/** Event emitted when the option is selected or deselected. */
|
|
@@ -25355,7 +25475,13 @@
|
|
|
25355
25475
|
this.onSelectionChange = new i0.EventEmitter();
|
|
25356
25476
|
/** Emits when the state of the option changes and any parents have to be notified. */
|
|
25357
25477
|
this._stateChanges = new rxjs.Subject();
|
|
25358
|
-
|
|
25478
|
+
// (click) is overridden when defined by user.
|
|
25479
|
+
this._clickCapture = rxjs.fromEvent(this._element.nativeElement, 'click', { capture: true }).subscribe(function (evt) {
|
|
25480
|
+
_this._handleDisabledClick(evt);
|
|
25481
|
+
});
|
|
25482
|
+
this._clickPassive = rxjs.fromEvent(this._element.nativeElement, 'click').subscribe(function (evt) {
|
|
25483
|
+
setTimeout(function () { return _this._handlePassiveClick(evt); });
|
|
25484
|
+
});
|
|
25359
25485
|
}
|
|
25360
25486
|
Object.defineProperty(NovoOptionBase.prototype, "selectable", {
|
|
25361
25487
|
/** If there is no parent then nothing is managing the selection. */
|
|
@@ -25373,21 +25499,23 @@
|
|
|
25373
25499
|
enumerable: false,
|
|
25374
25500
|
configurable: true
|
|
25375
25501
|
});
|
|
25376
|
-
Object.defineProperty(NovoOptionBase.prototype, "
|
|
25377
|
-
/** Whether
|
|
25502
|
+
Object.defineProperty(NovoOptionBase.prototype, "disabled", {
|
|
25503
|
+
/** Whether the option is disabled. */
|
|
25378
25504
|
get: function () {
|
|
25379
|
-
return this.
|
|
25505
|
+
return (this.group && this.group.disabled) || this._disabled;
|
|
25506
|
+
},
|
|
25507
|
+
set: function (value) {
|
|
25508
|
+
this._disabled = coercion.coerceBooleanProperty(value);
|
|
25380
25509
|
},
|
|
25381
25510
|
enumerable: false,
|
|
25382
25511
|
configurable: true
|
|
25383
25512
|
});
|
|
25384
|
-
Object.defineProperty(NovoOptionBase.prototype, "
|
|
25385
|
-
/** Whether the option is disabled. */
|
|
25513
|
+
Object.defineProperty(NovoOptionBase.prototype, "selected", {
|
|
25386
25514
|
get: function () {
|
|
25387
|
-
return
|
|
25515
|
+
return this._selected;
|
|
25388
25516
|
},
|
|
25389
25517
|
set: function (value) {
|
|
25390
|
-
this.
|
|
25518
|
+
this._selected = coercion.coerceBooleanProperty(value);
|
|
25391
25519
|
},
|
|
25392
25520
|
enumerable: false,
|
|
25393
25521
|
configurable: true
|
|
@@ -25474,9 +25602,19 @@
|
|
|
25474
25602
|
event.stopImmediatePropagation();
|
|
25475
25603
|
}
|
|
25476
25604
|
};
|
|
25605
|
+
NovoOptionBase.prototype._handlePassiveClick = function (event) {
|
|
25606
|
+
if (!this.inert) {
|
|
25607
|
+
this._selectViaInteraction();
|
|
25608
|
+
}
|
|
25609
|
+
};
|
|
25477
25610
|
/** Ensures the option is selected when activated from the keyboard. */
|
|
25478
25611
|
NovoOptionBase.prototype._handleKeydown = function (event) {
|
|
25479
|
-
if (
|
|
25612
|
+
if (event.target instanceof HTMLInputElement && event.key === "Enter" /* Enter */) {
|
|
25613
|
+
this._emitSelectionChangeEvent(!this.keepOpen);
|
|
25614
|
+
}
|
|
25615
|
+
else if (!(event.target instanceof HTMLInputElement) &&
|
|
25616
|
+
(event.key === "Enter" /* Enter */ || event.key === " " /* Space */) &&
|
|
25617
|
+
!keycodes.hasModifierKey(event)) {
|
|
25480
25618
|
this._selectViaInteraction();
|
|
25481
25619
|
// Prevent the page from scrolling down and form submits.
|
|
25482
25620
|
event.preventDefault();
|
|
@@ -25490,7 +25628,7 @@
|
|
|
25490
25628
|
if (!this.disabled) {
|
|
25491
25629
|
this._selected = this.multiple ? !this._selected : true;
|
|
25492
25630
|
this._changeDetectorRef.markForCheck();
|
|
25493
|
-
this._emitSelectionChangeEvent(
|
|
25631
|
+
this._emitSelectionChangeEvent(!this.keepOpen);
|
|
25494
25632
|
}
|
|
25495
25633
|
};
|
|
25496
25634
|
/**
|
|
@@ -25534,7 +25672,8 @@
|
|
|
25534
25672
|
};
|
|
25535
25673
|
NovoOptionBase.prototype.ngOnDestroy = function () {
|
|
25536
25674
|
this._stateChanges.complete();
|
|
25537
|
-
this.
|
|
25675
|
+
this._clickCapture.unsubscribe();
|
|
25676
|
+
this._clickPassive.unsubscribe();
|
|
25538
25677
|
};
|
|
25539
25678
|
/** Emits the selection change event. */
|
|
25540
25679
|
NovoOptionBase.prototype._emitSelectionChangeEvent = function (isUserInput) {
|
|
@@ -25554,11 +25693,21 @@
|
|
|
25554
25693
|
]; };
|
|
25555
25694
|
NovoOptionBase.propDecorators = {
|
|
25556
25695
|
keepOpen: [{ type: i0.Input }],
|
|
25696
|
+
inert: [{ type: i0.Input }],
|
|
25557
25697
|
value: [{ type: i0.Input }],
|
|
25558
25698
|
id: [{ type: i0.Input }],
|
|
25559
25699
|
disabled: [{ type: i0.Input }],
|
|
25700
|
+
selected: [{ type: i0.Input }],
|
|
25560
25701
|
onSelectionChange: [{ type: i0.Output }]
|
|
25561
25702
|
};
|
|
25703
|
+
__decorate([
|
|
25704
|
+
BooleanInput(),
|
|
25705
|
+
__metadata("design:type", Boolean)
|
|
25706
|
+
], NovoOptionBase.prototype, "keepOpen", void 0);
|
|
25707
|
+
__decorate([
|
|
25708
|
+
BooleanInput(),
|
|
25709
|
+
__metadata("design:type", Boolean)
|
|
25710
|
+
], NovoOptionBase.prototype, "inert", void 0);
|
|
25562
25711
|
/**
|
|
25563
25712
|
* Single option inside of a `<novo-select>` element.
|
|
25564
25713
|
*/
|
|
@@ -25583,14 +25732,15 @@
|
|
|
25583
25732
|
'[class.novo-selected]': 'selectable && selected',
|
|
25584
25733
|
'[class.novo-option-multiple]': 'multiple',
|
|
25585
25734
|
'[class.novo-option-disabled]': 'disabled',
|
|
25586
|
-
'
|
|
25735
|
+
'[class.novo-option-inert]': 'inert',
|
|
25587
25736
|
'(keydown)': '_handleKeydown($event)',
|
|
25588
25737
|
class: 'novo-option novo-focus-indicator',
|
|
25589
25738
|
},
|
|
25590
|
-
|
|
25739
|
+
inputs: ['selected', 'keepOpen', 'inert', 'value', 'inert', 'disabled'],
|
|
25740
|
+
template: "<novo-pseudo-checkbox *ngIf=\"selectable && multiple\" class=\"novo-option-pseudo-checkbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\" [disabled]=\"disabled\"></novo-pseudo-checkbox>\n\n<span class=\"novo-option-text\">\n <ng-content></ng-content>\n</span>\n\n<novo-pseudo-checkbox *ngIf=\"selectable && !multiple && selected\" class=\"novo-option-pseudo-checkbox\" state=\"checked\"\n shape=\"line\"\n [disabled]=\"disabled\"></novo-pseudo-checkbox>\n\n<ng-content select=\"[novoSuffix]\"></ng-content>\n<!-- See a11y notes inside optgroup.ts for context behind this element. -->\n<span class=\"cdk-visually-hidden\" *ngIf=\"group && group._inert\">({{ group.label }})</span>",
|
|
25591
25741
|
encapsulation: i0.ViewEncapsulation.None,
|
|
25592
25742
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
25593
|
-
styles: [".novo-option{-webkit-tap-highlight-color:transparent;align-items:center;box-sizing:border-box;color:inherit;cursor:pointer;display:inline;display:flex;flex:1;flex-direction:row;font-size:var(--font-size-text);font-weight:400;gap:1rem;margin:0;max-width:100%;outline:none;padding:1rem 1rem 1rem 1.6rem;position:relative}.novo-option:hover{background:var(--background-main,rgba(74,137,220,.1));color:var(--text-bright,#3d464d)}.novo-option.novo-active,.novo-option:active{background:rgba(74,137,220,.3)}.novo-option.novo-selected{color:#4a89dc}.novo-option.disabled,.novo-option[aria-disabled=true]{color:#bebebe;cursor:not-allowed}.novo-option.disabled:hover,.novo-option[aria-disabled=true]:hover{background:rgba(218,68,83,.1)}.novo-optgroup .novo-option:not(.novo-option-multiple){padding-left:1rem}[dir=rtl] .novo-optgroup .novo-option:not(.novo-option-multiple){padding-left:.5rem;padding-right:1rem}.novo-option.novo-accent-black{border-left:4px solid #000}.novo-option.novo-fill-black{background:#000;color:#fff}.novo-option.novo-fill-black:focus,.novo-option.novo-fill-black:hover{background:#333}.novo-option.novo-fill-black:active{background:#000}.novo-option.novo-accent-white{border-left:4px solid #fff}.novo-option.novo-fill-white{background:#fff;color:#000}.novo-option.novo-fill-white:focus,.novo-option.novo-fill-white:hover{background:#fff}.novo-option.novo-fill-white:active{background:#ccc}.novo-option.novo-accent-gray{border-left:4px solid #9e9e9e}.novo-option.novo-fill-gray{background:#9e9e9e;color:#000}.novo-option.novo-fill-gray:focus,.novo-option.novo-fill-gray:hover{background:#b1b1b1}.novo-option.novo-fill-gray:active{background:#7e7e7e}.novo-option.novo-accent-grey{border-left:4px solid #9e9e9e}.novo-option.novo-fill-grey{background:#9e9e9e;color:#000}.novo-option.novo-fill-grey:focus,.novo-option.novo-fill-grey:hover{background:#b1b1b1}.novo-option.novo-fill-grey:active{background:#7e7e7e}.novo-option.novo-accent-offWhite{border-left:4px solid #f7f7f7}.novo-option.novo-fill-offWhite{background:#f7f7f7;color:#000}.novo-option.novo-fill-offWhite:focus,.novo-option.novo-fill-offWhite:hover{background:#f8f8f8}.novo-option.novo-fill-offWhite:active{background:#c5c5c5}.novo-option.novo-accent-bright{border-left:4px solid #f7f7f7}.novo-option.novo-fill-bright{background:#f7f7f7;color:#000}.novo-option.novo-fill-bright:focus,.novo-option.novo-fill-bright:hover{background:#f8f8f8}.novo-option.novo-fill-bright:active{background:#c5c5c5}.novo-option.novo-accent-light{border-left:4px solid #dbdbdb}.novo-option.novo-fill-light{background:#dbdbdb;color:#000}.novo-option.novo-fill-light:focus,.novo-option.novo-fill-light:hover{background:#e2e2e2}.novo-option.novo-fill-light:active{background:#afafaf}.novo-option.novo-accent-neutral{border-left:4px solid #4f5361}.novo-option.novo-fill-neutral{background:#4f5361;color:#fff}.novo-option.novo-fill-neutral:focus,.novo-option.novo-fill-neutral:hover{background:#727580}.novo-option.novo-fill-neutral:active{background:#3f424d}.novo-option.novo-accent-dark{border-left:4px solid #3d464d}.novo-option.novo-fill-dark{background:#3d464d;color:#fff}.novo-option.novo-fill-dark:focus,.novo-option.novo-fill-dark:hover{background:#636b70}.novo-option.novo-fill-dark:active{background:#30383d}.novo-option.novo-accent-orange{border-left:4px solid #ff6900}.novo-option.novo-fill-orange{background:#ff6900;color:#000}.novo-option.novo-fill-orange:focus,.novo-option.novo-fill-orange:hover{background:#ff8733}.novo-option.novo-fill-orange:active{background:#cc5400}.novo-option.novo-accent-navigation{border-left:4px solid #202b38}.novo-option.novo-fill-navigation{background:#202b38;color:#fff}.novo-option.novo-fill-navigation:focus,.novo-option.novo-fill-navigation:hover{background:#4c555f}.novo-option.novo-fill-navigation:active{background:#19222c}.novo-option.novo-accent-skyBlue{border-left:4px solid #009bdf}.novo-option.novo-fill-skyBlue{background:#009bdf;color:#fff}.novo-option.novo-fill-skyBlue:focus,.novo-option.novo-fill-skyBlue:hover{background:#33afe5}.novo-option.novo-fill-skyBlue:active{background:#007cb2}.novo-option.novo-accent-steel{border-left:4px solid #5b6770}.novo-option.novo-fill-steel{background:#5b6770;color:#fff}.novo-option.novo-fill-steel:focus,.novo-option.novo-fill-steel:hover{background:#7b858c}.novo-option.novo-fill-steel:active{background:#485259}.novo-option.novo-accent-metal{border-left:4px solid #637893}.novo-option.novo-fill-metal{background:#637893;color:#fff}.novo-option.novo-fill-metal:focus,.novo-option.novo-fill-metal:hover{background:#8293a8}.novo-option.novo-fill-metal:active{background:#4f6075}.novo-option.novo-accent-sand{border-left:4px solid #f4f4f4}.novo-option.novo-fill-sand{background:#f4f4f4;color:#000}.novo-option.novo-fill-sand:focus,.novo-option.novo-fill-sand:hover{background:#f6f6f6}.novo-option.novo-fill-sand:active{background:#c3c3c3}.novo-option.novo-accent-silver{border-left:4px solid #e2e2e2}.novo-option.novo-fill-silver{background:#e2e2e2;color:#000}.novo-option.novo-fill-silver:focus,.novo-option.novo-fill-silver:hover{background:#e7e7e7}.novo-option.novo-fill-silver:active{background:#b4b4b4}.novo-option.novo-accent-stone{border-left:4px solid #bebebe}.novo-option.novo-fill-stone{background:#bebebe;color:#000}.novo-option.novo-fill-stone:focus,.novo-option.novo-fill-stone:hover{background:#cbcbcb}.novo-option.novo-fill-stone:active{background:#989898}.novo-option.novo-accent-ash{border-left:4px solid #a0a0a0}.novo-option.novo-fill-ash{background:#a0a0a0;color:#000}.novo-option.novo-fill-ash:focus,.novo-option.novo-fill-ash:hover{background:#b3b3b3}.novo-option.novo-fill-ash:active{background:grey}.novo-option.novo-accent-slate{border-left:4px solid #707070}.novo-option.novo-fill-slate{background:#707070;color:#fff}.novo-option.novo-fill-slate:focus,.novo-option.novo-fill-slate:hover{background:#8c8c8c}.novo-option.novo-fill-slate:active{background:#595959}.novo-option.novo-accent-onyx{border-left:4px solid #526980}.novo-option.novo-fill-onyx{background:#526980;color:#fff}.novo-option.novo-fill-onyx:focus,.novo-option.novo-fill-onyx:hover{background:#748799}.novo-option.novo-fill-onyx:active{background:#415466}.novo-option.novo-accent-charcoal{border-left:4px solid #282828}.novo-option.novo-fill-charcoal{background:#282828;color:#fff}.novo-option.novo-fill-charcoal:focus,.novo-option.novo-fill-charcoal:hover{background:#535353}.novo-option.novo-fill-charcoal:active{background:#202020}.novo-option.novo-accent-moonlight{border-left:4px solid #1a242f}.novo-option.novo-fill-moonlight{background:#1a242f;color:#fff}.novo-option.novo-fill-moonlight:focus,.novo-option.novo-fill-moonlight:hover{background:#474f58}.novo-option.novo-fill-moonlight:active{background:#141c25}.novo-option.novo-accent-midnight{border-left:4px solid #202b38}.novo-option.novo-fill-midnight{background:#202b38;color:#fff}.novo-option.novo-fill-midnight:focus,.novo-option.novo-fill-midnight:hover{background:#4c555f}.novo-option.novo-fill-midnight:active{background:#19222c}.novo-option.novo-accent-darkness{border-left:4px solid #161f27}.novo-option.novo-fill-darkness{background:#161f27;color:#fff}.novo-option.novo-fill-darkness:focus,.novo-option.novo-fill-darkness:hover{background:#444b52}.novo-option.novo-fill-darkness:active{background:#11181f}.novo-option.novo-accent-navy{border-left:4px solid #0d2d42}.novo-option.novo-fill-navy{background:#0d2d42;color:#fff}.novo-option.novo-fill-navy:focus,.novo-option.novo-fill-navy:hover{background:#3d5767}.novo-option.novo-fill-navy:active{background:#0a2434}.novo-option.novo-accent-aqua{border-left:4px solid #3bafda}.novo-option.novo-fill-aqua{background:#3bafda;color:#000}.novo-option.novo-fill-aqua:focus,.novo-option.novo-fill-aqua:hover{background:#62bfe1}.novo-option.novo-fill-aqua:active{background:#2f8cae}.novo-option.novo-accent-ocean{border-left:4px solid #4a89dc}.novo-option.novo-fill-ocean{background:#4a89dc;color:#fff}.novo-option.novo-fill-ocean:focus,.novo-option.novo-fill-ocean:hover{background:#6ea0e3}.novo-option.novo-fill-ocean:active{background:#3b6db0}.novo-option.novo-accent-mint{border-left:4px solid #37bc9b}.novo-option.novo-fill-mint{background:#37bc9b;color:#000}.novo-option.novo-fill-mint:focus,.novo-option.novo-fill-mint:hover{background:#5fc9af}.novo-option.novo-fill-mint:active{background:#2c967c}.novo-option.novo-accent-grass{border-left:4px solid #8cc152}.novo-option.novo-fill-grass{background:#8cc152;color:#000}.novo-option.novo-fill-grass:focus,.novo-option.novo-fill-grass:hover{background:#a3cd74}.novo-option.novo-fill-grass:active{background:#709a41}.novo-option.novo-accent-sunflower{border-left:4px solid #f6b042}.novo-option.novo-fill-sunflower{background:#f6b042;color:#000}.novo-option.novo-fill-sunflower:focus,.novo-option.novo-fill-sunflower:hover{background:#f7bf67}.novo-option.novo-fill-sunflower:active{background:#c48c34}.novo-option.novo-accent-bittersweet{border-left:4px solid #eb6845}.novo-option.novo-fill-bittersweet{background:#eb6845;color:#fff}.novo-option.novo-fill-bittersweet:focus,.novo-option.novo-fill-bittersweet:hover{background:#ef866a}.novo-option.novo-fill-bittersweet:active{background:#bc5337}.novo-option.novo-accent-grapefruit{border-left:4px solid #da4453}.novo-option.novo-fill-grapefruit{background:#da4453;color:#fff}.novo-option.novo-fill-grapefruit:focus,.novo-option.novo-fill-grapefruit:hover{background:#e16975}.novo-option.novo-fill-grapefruit:active{background:#ae3642}.novo-option.novo-accent-carnation{border-left:4px solid #d770ad}.novo-option.novo-fill-carnation{background:#d770ad;color:#fff}.novo-option.novo-fill-carnation:focus,.novo-option.novo-fill-carnation:hover{background:#df8cbd}.novo-option.novo-fill-carnation:active{background:#ac598a}.novo-option.novo-accent-lavender{border-left:4px solid #967adc}.novo-option.novo-fill-lavender{background:#967adc;color:#fff}.novo-option.novo-fill-lavender:focus,.novo-option.novo-fill-lavender:hover{background:#ab94e3}.novo-option.novo-fill-lavender:active{background:#7861b0}.novo-option.novo-accent-mountain{border-left:4px solid #9678b6}.novo-option.novo-fill-mountain{background:#9678b6;color:#fff}.novo-option.novo-fill-mountain:focus,.novo-option.novo-fill-mountain:hover{background:#ab93c4}.novo-option.novo-fill-mountain:active{background:#786091}.novo-option.novo-accent-info{border-left:4px solid #4a89dc}.novo-option.novo-fill-info{background:#4a89dc;color:#fff}.novo-option.novo-fill-info:focus,.novo-option.novo-fill-info:hover{background:#6ea0e3}.novo-option.novo-fill-info:active{background:#3b6db0}.novo-option.novo-accent-positive{border-left:4px solid #4a89dc}.novo-option.novo-fill-positive{background:#4a89dc;color:#fff}.novo-option.novo-fill-positive:focus,.novo-option.novo-fill-positive:hover{background:#6ea0e3}.novo-option.novo-fill-positive:active{background:#3b6db0}.novo-option.novo-accent-success{border-left:4px solid #8cc152}.novo-option.novo-fill-success{background:#8cc152;color:#000}.novo-option.novo-fill-success:focus,.novo-option.novo-fill-success:hover{background:#a3cd74}.novo-option.novo-fill-success:active{background:#709a41}.novo-option.novo-accent-negative{border-left:4px solid #da4453}.novo-option.novo-fill-negative{background:#da4453;color:#fff}.novo-option.novo-fill-negative:focus,.novo-option.novo-fill-negative:hover{background:#e16975}.novo-option.novo-fill-negative:active{background:#ae3642}.novo-option.novo-accent-danger{border-left:4px solid #da4453}.novo-option.novo-fill-danger{background:#da4453;color:#fff}.novo-option.novo-fill-danger:focus,.novo-option.novo-fill-danger:hover{background:#e16975}.novo-option.novo-fill-danger:active{background:#ae3642}.novo-option.novo-accent-error{border-left:4px solid #da4453}.novo-option.novo-fill-error{background:#da4453;color:#fff}.novo-option.novo-fill-error:focus,.novo-option.novo-fill-error:hover{background:#e16975}.novo-option.novo-fill-error:active{background:#ae3642}.novo-option.novo-accent-warning{border-left:4px solid #f6b042}.novo-option.novo-fill-warning{background:#f6b042;color:#000}.novo-option.novo-fill-warning:focus,.novo-option.novo-fill-warning:hover{background:#f7bf67}.novo-option.novo-fill-warning:active{background:#c48c34}.novo-option.novo-accent-empty{border-left:4px solid #cccdcc}.novo-option.novo-fill-empty{background:#cccdcc;color:#000}.novo-option.novo-fill-empty:focus,.novo-option.novo-fill-empty:hover{background:#d6d7d6}.novo-option.novo-fill-empty:active{background:#a3a4a3}.novo-option.novo-accent-disabled{border-left:4px solid #bebebe}.novo-option.novo-fill-disabled{background:#bebebe;color:#000}.novo-option.novo-fill-disabled:focus,.novo-option.novo-fill-disabled:hover{background:#cbcbcb}.novo-option.novo-fill-disabled:active{background:#989898}.novo-option.novo-accent-background{border-left:4px solid #f7f7f7}.novo-option.novo-fill-background{background:#f7f7f7;color:#000}.novo-option.novo-fill-background:focus,.novo-option.novo-fill-background:hover{background:#f8f8f8}.novo-option.novo-fill-background:active{background:#c5c5c5}.novo-option.novo-accent-backgroundDark{border-left:4px solid #e2e2e2}.novo-option.novo-fill-backgroundDark{background:#e2e2e2;color:#000}.novo-option.novo-fill-backgroundDark:focus,.novo-option.novo-fill-backgroundDark:hover{background:#e7e7e7}.novo-option.novo-fill-backgroundDark:active{background:#b4b4b4}.novo-option.novo-accent-presentation{border-left:4px solid #5b6770}.novo-option.novo-fill-presentation{background:#5b6770;color:#fff}.novo-option.novo-fill-presentation:focus,.novo-option.novo-fill-presentation:hover{background:#7b858c}.novo-option.novo-fill-presentation:active{background:#485259}.novo-option.novo-accent-bullhorn{border-left:4px solid #ff6900}.novo-option.novo-fill-bullhorn{background:#ff6900;color:#000}.novo-option.novo-fill-bullhorn:focus,.novo-option.novo-fill-bullhorn:hover{background:#ff8733}.novo-option.novo-fill-bullhorn:active{background:#cc5400}.novo-option.novo-accent-pulse{border-left:4px solid #3bafda}.novo-option.novo-fill-pulse{background:#3bafda;color:#000}.novo-option.novo-fill-pulse:focus,.novo-option.novo-fill-pulse:hover{background:#62bfe1}.novo-option.novo-fill-pulse:active{background:#2f8cae}.novo-option.novo-accent-company{border-left:4px solid #39d}.novo-option.novo-fill-company{background:#39d;color:#fff}.novo-option.novo-fill-company:focus,.novo-option.novo-fill-company:hover{background:#5bade3}.novo-option.novo-fill-company:active{background:#287ab0}.novo-option.novo-accent-candidate{border-left:4px solid #4b7}.novo-option.novo-fill-candidate{background:#4b7;color:#000}.novo-option.novo-fill-candidate:focus,.novo-option.novo-fill-candidate:hover{background:#69c892}.novo-option.novo-fill-candidate:active{background:#36955f}.novo-option.novo-accent-lead{border-left:4px solid #a69}.novo-option.novo-fill-lead{background:#a69;color:#fff}.novo-option.novo-fill-lead:focus,.novo-option.novo-fill-lead:hover{background:#bb84ad}.novo-option.novo-fill-lead:active{background:#88517a}.novo-option.novo-accent-contact{border-left:4px solid #fa4}.novo-option.novo-fill-contact{background:#fa4;color:#000}.novo-option.novo-fill-contact:focus,.novo-option.novo-fill-contact:hover{background:#ffbb69}.novo-option.novo-fill-contact:active{background:#cc8836}.novo-option.novo-accent-opportunity{border-left:4px solid #625}.novo-option.novo-fill-opportunity{background:#625;color:#fff}.novo-option.novo-fill-opportunity:focus,.novo-option.novo-fill-opportunity:hover{background:#844e77}.novo-option.novo-fill-opportunity:active{background:#511b44}.novo-option.novo-accent-job{border-left:4px solid #b56}.novo-option.novo-fill-job{background:#b56;color:#fff}.novo-option.novo-fill-job:focus,.novo-option.novo-fill-job:hover{background:#c87784}.novo-option.novo-fill-job:active{background:#954451}.novo-option.novo-accent-submission{border-left:4px solid #a9adbb}.novo-option.novo-fill-submission{background:#a9adbb;color:#000}.novo-option.novo-fill-submission:focus,.novo-option.novo-fill-submission:hover{background:#babdc8}.novo-option.novo-fill-submission:active{background:#878a95}.novo-option.novo-accent-sendout{border-left:4px solid #747884}.novo-option.novo-fill-sendout{background:#747884;color:#fff}.novo-option.novo-fill-sendout:focus,.novo-option.novo-fill-sendout:hover{background:#8f939c}.novo-option.novo-fill-sendout:active{background:#5c6069}.novo-option.novo-accent-placement{border-left:4px solid #0b344f}.novo-option.novo-fill-placement{background:#0b344f;color:#fff}.novo-option.novo-fill-placement:focus,.novo-option.novo-fill-placement:hover{background:#3b5c72}.novo-option.novo-fill-placement:active{background:#08293f}.novo-option.novo-accent-note{border-left:4px solid #747884}.novo-option.novo-fill-note{background:#747884;color:#fff}.novo-option.novo-fill-note:focus,.novo-option.novo-fill-note:hover{background:#8f939c}.novo-option.novo-fill-note:active{background:#5c6069}.novo-option.novo-accent-contract{border-left:4px solid #454ea0}.novo-option.novo-fill-contract{background:#454ea0;color:#fff}.novo-option.novo-fill-contract:focus,.novo-option.novo-fill-contract:hover{background:#6a71b3}.novo-option.novo-fill-contract:active{background:#373e80}.novo-option.novo-accent-jobCode{border-left:4px solid #696d79}.novo-option.novo-fill-jobCode{background:#696d79;color:#fff}.novo-option.novo-fill-jobCode:focus,.novo-option.novo-fill-jobCode:hover{background:#878a93}.novo-option.novo-fill-jobCode:active{background:#545760}.novo-option.novo-accent-earnCode{border-left:4px solid #696d79}.novo-option.novo-fill-earnCode{background:#696d79;color:#fff}.novo-option.novo-fill-earnCode:focus,.novo-option.novo-fill-earnCode:hover{background:#878a93}.novo-option.novo-fill-earnCode:active{background:#545760}.novo-option.novo-accent-invoiceStatement{border-left:4px solid #696d79}.novo-option.novo-fill-invoiceStatement{background:#696d79;color:#fff}.novo-option.novo-fill-invoiceStatement:focus,.novo-option.novo-fill-invoiceStatement:hover{background:#878a93}.novo-option.novo-fill-invoiceStatement:active{background:#545760}.novo-option.novo-accent-billableCharge{border-left:4px solid #696d79}.novo-option.novo-fill-billableCharge{background:#696d79;color:#fff}.novo-option.novo-fill-billableCharge:focus,.novo-option.novo-fill-billableCharge:hover{background:#878a93}.novo-option.novo-fill-billableCharge:active{background:#545760}.novo-option.novo-accent-payableCharge{border-left:4px solid #696d79}.novo-option.novo-fill-payableCharge{background:#696d79;color:#fff}.novo-option.novo-fill-payableCharge:focus,.novo-option.novo-fill-payableCharge:hover{background:#878a93}.novo-option.novo-fill-payableCharge:active{background:#545760}.novo-option.novo-accent-user{border-left:4px solid #696d79}.novo-option.novo-fill-user{background:#696d79;color:#fff}.novo-option.novo-fill-user:focus,.novo-option.novo-fill-user:hover{background:#878a93}.novo-option.novo-fill-user:active{background:#545760}.novo-option.novo-accent-corporateUser{border-left:4px solid #696d79}.novo-option.novo-fill-corporateUser{background:#696d79;color:#fff}.novo-option.novo-fill-corporateUser:focus,.novo-option.novo-fill-corporateUser:hover{background:#878a93}.novo-option.novo-fill-corporateUser:active{background:#545760}.novo-option.novo-accent-distributionList{border-left:4px solid #696d79}.novo-option.novo-fill-distributionList{background:#696d79;color:#fff}.novo-option.novo-fill-distributionList:focus,.novo-option.novo-fill-distributionList:hover{background:#878a93}.novo-option.novo-fill-distributionList:active{background:#545760}.novo-option.novo-accent-credential{border-left:4px solid #696d79}.novo-option.novo-fill-credential{background:#696d79;color:#fff}.novo-option.novo-fill-credential:focus,.novo-option.novo-fill-credential:hover{background:#878a93}.novo-option.novo-fill-credential:active{background:#545760}.novo-option.novo-accent-person{border-left:4px solid #696d79}.novo-option.novo-fill-person{background:#696d79;color:#fff}.novo-option.novo-fill-person:focus,.novo-option.novo-fill-person:hover{background:#878a93}.novo-option.novo-fill-person:active{background:#545760}.novo-option-text{align-items:center;display:inline-block;display:inline-flex;flex-direction:row;flex-grow:1;gap:1rem;overflow:hidden;text-overflow:ellipsis}.novo-option-pseudo-checkbox{margin-right:.25rem}[dir=rtl] .novo-option-pseudo-checkbox{margin-left:.25rem;margin-right:0}"]
|
|
25743
|
+
styles: [".novo-option{-webkit-tap-highlight-color:transparent;align-items:center;box-sizing:border-box;color:inherit;cursor:pointer;display:inline;display:flex;flex:1;flex-direction:row;font-size:var(--font-size-text);font-weight:400;gap:1rem;margin:0;max-width:100%;outline:none;padding:1rem 1rem 1rem 1.6rem;position:relative;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle}.novo-option.text-nowrap{white-space:nowrap}.novo-option.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.novo-option.text-size-default{font-size:inherit}.novo-option.text-size-body{font-size:1.3rem}.novo-option.text-size-xs{font-size:1rem}.novo-option.text-size-sm{font-size:1.2rem}.novo-option.text-size-md{font-size:1.3rem}.novo-option.text-size-lg{font-size:1.6rem}.novo-option.text-size-xl{font-size:2rem}.novo-option.text-size-2xl{font-size:2.6rem}.novo-option.text-size-3xl{font-size:3.2rem}.novo-option.text-size-smaller{font-size:.8em}.novo-option.text-size-larger{font-size:1.2em}.novo-option.text-color-black{color:#000}.novo-option.text-color-white{color:#fff}.novo-option.text-color-gray,.novo-option.text-color-grey{color:#9e9e9e}.novo-option.text-color-bright,.novo-option.text-color-offWhite{color:#f7f7f7}.novo-option.text-color-light{color:#dbdbdb}.novo-option.text-color-neutral{color:#4f5361}.novo-option.text-color-dark{color:#3d464d}.novo-option.text-color-orange{color:#ff6900}.novo-option.text-color-navigation{color:#202945}.novo-option.text-color-skyBlue{color:#009bdf}.novo-option.text-color-steel{color:#5b6770}.novo-option.text-color-metal{color:#637893}.novo-option.text-color-sand{color:#f4f4f4}.novo-option.text-color-silver{color:#e2e2e2}.novo-option.text-color-stone{color:#bebebe}.novo-option.text-color-ash{color:#a0a0a0}.novo-option.text-color-slate{color:#707070}.novo-option.text-color-onyx{color:#526980}.novo-option.text-color-charcoal{color:#282828}.novo-option.text-color-moonlight{color:#1a242f}.novo-option.text-color-midnight{color:#202945}.novo-option.text-color-darkness{color:#161f27}.novo-option.text-color-navy{color:#0d2d42}.novo-option.text-color-aqua{color:#3bafda}.novo-option.text-color-ocean{color:#4a89dc}.novo-option.text-color-mint{color:#37bc9b}.novo-option.text-color-grass{color:#8cc152}.novo-option.text-color-sunflower{color:#f6b042}.novo-option.text-color-bittersweet{color:#eb6845}.novo-option.text-color-grapefruit{color:#da4453}.novo-option.text-color-carnation{color:#d770ad}.novo-option.text-color-lavender{color:#967adc}.novo-option.text-color-mountain{color:#9678b6}.novo-option.text-color-info,.novo-option.text-color-positive{color:#4a89dc}.novo-option.text-color-success{color:#8cc152}.novo-option.text-color-danger,.novo-option.text-color-error,.novo-option.text-color-negative{color:#da4453}.novo-option.text-color-warning{color:#f6b042}.novo-option.text-color-empty{color:#cccdcc}.novo-option.text-color-disabled{color:#bebebe}.novo-option.text-color-background{color:#f7f7f7}.novo-option.text-color-backgroundDark{color:#e2e2e2}.novo-option.text-color-presentation{color:#5b6770}.novo-option.text-color-bullhorn{color:#ff6900}.novo-option.text-color-pulse{color:#3bafda}.novo-option.text-color-company{color:#39d}.novo-option.text-color-candidate{color:#4b7}.novo-option.text-color-lead{color:#a69}.novo-option.text-color-contact{color:#fa4}.novo-option.text-color-opportunity{color:#625}.novo-option.text-color-job{color:#b56}.novo-option.text-color-submission{color:#a9adbb}.novo-option.text-color-sendout{color:#747884}.novo-option.text-color-placement{color:#0b344f}.novo-option.text-color-note{color:#747884}.novo-option.text-color-contract{color:#454ea0}.novo-option.text-color-billableCharge,.novo-option.text-color-corporateUser,.novo-option.text-color-credential,.novo-option.text-color-distributionList,.novo-option.text-color-earnCode,.novo-option.text-color-invoiceStatement,.novo-option.text-color-jobCode,.novo-option.text-color-payableCharge,.novo-option.text-color-person,.novo-option.text-color-user{color:#696d79}.novo-option.margin-before{margin-top:.4rem}.novo-option.margin-after{margin-bottom:.8rem}.novo-option.text-length-small{max-width:40ch}.novo-option.text-length-medium{max-width:55ch}.novo-option.text-length-large{max-width:70ch}.novo-option.text-weight-hairline{font-weight:100}.novo-option.text-weight-thin{font-weight:200}.novo-option.text-weight-light{font-weight:300}.novo-option.text-weight-normal{font-weight:400}.novo-option.text-weight-medium{font-weight:500}.novo-option.text-weight-semibold{font-weight:600}.novo-option.text-weight-bold{font-weight:700}.novo-option.text-weight-extrabold{font-weight:800}.novo-option.text-weight-heavy{font-weight:900}.novo-option.text-weight-lighter{font-weight:lighter}.novo-option.text-weight-bolder{font-weight:bolder}.novo-option:hover:not(.novo-option-inert){background:var(--background-main,rgba(74,137,220,.1));color:var(--text-bright,#3d464d)}.novo-option.novo-active:not(.novo-option-inert),.novo-option:active:not(.novo-option-inert){background:rgba(74,137,220,.3)}.novo-option.novo-selected{color:#4a89dc}.novo-option.disabled,.novo-option[aria-disabled=true]{color:#bebebe;cursor:not-allowed}.novo-option.disabled:hover,.novo-option[aria-disabled=true]:hover{background:rgba(218,68,83,.1)}.novo-optgroup .novo-option:not(.novo-option-multiple){padding-left:1rem}[dir=rtl] .novo-optgroup .novo-option:not(.novo-option-multiple){padding-left:.5rem;padding-right:1rem}.novo-option.novo-accent-black{border-left:4px solid #000}.novo-option.novo-fill-black:not(.novo-option-inert){background:#000;color:#fff}.novo-option.novo-fill-black:not(.novo-option-inert):focus,.novo-option.novo-fill-black:not(.novo-option-inert):hover{background:#333}.novo-option.novo-fill-black:not(.novo-option-inert):active{background:#000}.novo-option.novo-accent-white{border-left:4px solid #fff}.novo-option.novo-fill-white:not(.novo-option-inert){background:#fff;color:#3d464d}.novo-option.novo-fill-white:not(.novo-option-inert):focus,.novo-option.novo-fill-white:not(.novo-option-inert):hover{background:#fff}.novo-option.novo-fill-white:not(.novo-option-inert):active{background:#ccc}.novo-option.novo-accent-gray{border-left:4px solid #9e9e9e}.novo-option.novo-fill-gray:not(.novo-option-inert){background:#9e9e9e;color:#3d464d}.novo-option.novo-fill-gray:not(.novo-option-inert):focus,.novo-option.novo-fill-gray:not(.novo-option-inert):hover{background:#b1b1b1}.novo-option.novo-fill-gray:not(.novo-option-inert):active{background:#7e7e7e}.novo-option.novo-accent-grey{border-left:4px solid #9e9e9e}.novo-option.novo-fill-grey:not(.novo-option-inert){background:#9e9e9e;color:#3d464d}.novo-option.novo-fill-grey:not(.novo-option-inert):focus,.novo-option.novo-fill-grey:not(.novo-option-inert):hover{background:#b1b1b1}.novo-option.novo-fill-grey:not(.novo-option-inert):active{background:#7e7e7e}.novo-option.novo-accent-offWhite{border-left:4px solid #f7f7f7}.novo-option.novo-fill-offWhite:not(.novo-option-inert){background:#f7f7f7;color:#3d464d}.novo-option.novo-fill-offWhite:not(.novo-option-inert):focus,.novo-option.novo-fill-offWhite:not(.novo-option-inert):hover{background:#f8f8f8}.novo-option.novo-fill-offWhite:not(.novo-option-inert):active{background:#c5c5c5}.novo-option.novo-accent-bright{border-left:4px solid #f7f7f7}.novo-option.novo-fill-bright:not(.novo-option-inert){background:#f7f7f7;color:#3d464d}.novo-option.novo-fill-bright:not(.novo-option-inert):focus,.novo-option.novo-fill-bright:not(.novo-option-inert):hover{background:#f8f8f8}.novo-option.novo-fill-bright:not(.novo-option-inert):active{background:#c5c5c5}.novo-option.novo-accent-light{border-left:4px solid #dbdbdb}.novo-option.novo-fill-light:not(.novo-option-inert){background:#dbdbdb;color:#3d464d}.novo-option.novo-fill-light:not(.novo-option-inert):focus,.novo-option.novo-fill-light:not(.novo-option-inert):hover{background:#e2e2e2}.novo-option.novo-fill-light:not(.novo-option-inert):active{background:#afafaf}.novo-option.novo-accent-neutral{border-left:4px solid #4f5361}.novo-option.novo-fill-neutral:not(.novo-option-inert){background:#4f5361;color:#fff}.novo-option.novo-fill-neutral:not(.novo-option-inert):focus,.novo-option.novo-fill-neutral:not(.novo-option-inert):hover{background:#727580}.novo-option.novo-fill-neutral:not(.novo-option-inert):active{background:#3f424d}.novo-option.novo-accent-dark{border-left:4px solid #3d464d}.novo-option.novo-fill-dark:not(.novo-option-inert){background:#3d464d;color:#fff}.novo-option.novo-fill-dark:not(.novo-option-inert):focus,.novo-option.novo-fill-dark:not(.novo-option-inert):hover{background:#636b70}.novo-option.novo-fill-dark:not(.novo-option-inert):active{background:#30383d}.novo-option.novo-accent-orange{border-left:4px solid #ff6900}.novo-option.novo-fill-orange:not(.novo-option-inert){background:#ff6900;color:#3d464d}.novo-option.novo-fill-orange:not(.novo-option-inert):focus,.novo-option.novo-fill-orange:not(.novo-option-inert):hover{background:#ff8733}.novo-option.novo-fill-orange:not(.novo-option-inert):active{background:#cc5400}.novo-option.novo-accent-navigation{border-left:4px solid #202945}.novo-option.novo-fill-navigation:not(.novo-option-inert){background:#202945;color:#fff}.novo-option.novo-fill-navigation:not(.novo-option-inert):focus,.novo-option.novo-fill-navigation:not(.novo-option-inert):hover{background:#4c536a}.novo-option.novo-fill-navigation:not(.novo-option-inert):active{background:#192037}.novo-option.novo-accent-skyBlue{border-left:4px solid #009bdf}.novo-option.novo-fill-skyBlue:not(.novo-option-inert){background:#009bdf;color:#fff}.novo-option.novo-fill-skyBlue:not(.novo-option-inert):focus,.novo-option.novo-fill-skyBlue:not(.novo-option-inert):hover{background:#33afe5}.novo-option.novo-fill-skyBlue:not(.novo-option-inert):active{background:#007cb2}.novo-option.novo-accent-steel{border-left:4px solid #5b6770}.novo-option.novo-fill-steel:not(.novo-option-inert){background:#5b6770;color:#fff}.novo-option.novo-fill-steel:not(.novo-option-inert):focus,.novo-option.novo-fill-steel:not(.novo-option-inert):hover{background:#7b858c}.novo-option.novo-fill-steel:not(.novo-option-inert):active{background:#485259}.novo-option.novo-accent-metal{border-left:4px solid #637893}.novo-option.novo-fill-metal:not(.novo-option-inert){background:#637893;color:#fff}.novo-option.novo-fill-metal:not(.novo-option-inert):focus,.novo-option.novo-fill-metal:not(.novo-option-inert):hover{background:#8293a8}.novo-option.novo-fill-metal:not(.novo-option-inert):active{background:#4f6075}.novo-option.novo-accent-sand{border-left:4px solid #f4f4f4}.novo-option.novo-fill-sand:not(.novo-option-inert){background:#f4f4f4;color:#3d464d}.novo-option.novo-fill-sand:not(.novo-option-inert):focus,.novo-option.novo-fill-sand:not(.novo-option-inert):hover{background:#f6f6f6}.novo-option.novo-fill-sand:not(.novo-option-inert):active{background:#c3c3c3}.novo-option.novo-accent-silver{border-left:4px solid #e2e2e2}.novo-option.novo-fill-silver:not(.novo-option-inert){background:#e2e2e2;color:#3d464d}.novo-option.novo-fill-silver:not(.novo-option-inert):focus,.novo-option.novo-fill-silver:not(.novo-option-inert):hover{background:#e7e7e7}.novo-option.novo-fill-silver:not(.novo-option-inert):active{background:#b4b4b4}.novo-option.novo-accent-stone{border-left:4px solid #bebebe}.novo-option.novo-fill-stone:not(.novo-option-inert){background:#bebebe;color:#3d464d}.novo-option.novo-fill-stone:not(.novo-option-inert):focus,.novo-option.novo-fill-stone:not(.novo-option-inert):hover{background:#cbcbcb}.novo-option.novo-fill-stone:not(.novo-option-inert):active{background:#989898}.novo-option.novo-accent-ash{border-left:4px solid #a0a0a0}.novo-option.novo-fill-ash:not(.novo-option-inert){background:#a0a0a0;color:#3d464d}.novo-option.novo-fill-ash:not(.novo-option-inert):focus,.novo-option.novo-fill-ash:not(.novo-option-inert):hover{background:#b3b3b3}.novo-option.novo-fill-ash:not(.novo-option-inert):active{background:grey}.novo-option.novo-accent-slate{border-left:4px solid #707070}.novo-option.novo-fill-slate:not(.novo-option-inert){background:#707070;color:#fff}.novo-option.novo-fill-slate:not(.novo-option-inert):focus,.novo-option.novo-fill-slate:not(.novo-option-inert):hover{background:#8c8c8c}.novo-option.novo-fill-slate:not(.novo-option-inert):active{background:#595959}.novo-option.novo-accent-onyx{border-left:4px solid #526980}.novo-option.novo-fill-onyx:not(.novo-option-inert){background:#526980;color:#fff}.novo-option.novo-fill-onyx:not(.novo-option-inert):focus,.novo-option.novo-fill-onyx:not(.novo-option-inert):hover{background:#748799}.novo-option.novo-fill-onyx:not(.novo-option-inert):active{background:#415466}.novo-option.novo-accent-charcoal{border-left:4px solid #282828}.novo-option.novo-fill-charcoal:not(.novo-option-inert){background:#282828;color:#fff}.novo-option.novo-fill-charcoal:not(.novo-option-inert):focus,.novo-option.novo-fill-charcoal:not(.novo-option-inert):hover{background:#535353}.novo-option.novo-fill-charcoal:not(.novo-option-inert):active{background:#202020}.novo-option.novo-accent-moonlight{border-left:4px solid #1a242f}.novo-option.novo-fill-moonlight:not(.novo-option-inert){background:#1a242f;color:#fff}.novo-option.novo-fill-moonlight:not(.novo-option-inert):focus,.novo-option.novo-fill-moonlight:not(.novo-option-inert):hover{background:#474f58}.novo-option.novo-fill-moonlight:not(.novo-option-inert):active{background:#141c25}.novo-option.novo-accent-midnight{border-left:4px solid #202945}.novo-option.novo-fill-midnight:not(.novo-option-inert){background:#202945;color:#fff}.novo-option.novo-fill-midnight:not(.novo-option-inert):focus,.novo-option.novo-fill-midnight:not(.novo-option-inert):hover{background:#4c536a}.novo-option.novo-fill-midnight:not(.novo-option-inert):active{background:#192037}.novo-option.novo-accent-darkness{border-left:4px solid #161f27}.novo-option.novo-fill-darkness:not(.novo-option-inert){background:#161f27;color:#fff}.novo-option.novo-fill-darkness:not(.novo-option-inert):focus,.novo-option.novo-fill-darkness:not(.novo-option-inert):hover{background:#444b52}.novo-option.novo-fill-darkness:not(.novo-option-inert):active{background:#11181f}.novo-option.novo-accent-navy{border-left:4px solid #0d2d42}.novo-option.novo-fill-navy:not(.novo-option-inert){background:#0d2d42;color:#fff}.novo-option.novo-fill-navy:not(.novo-option-inert):focus,.novo-option.novo-fill-navy:not(.novo-option-inert):hover{background:#3d5767}.novo-option.novo-fill-navy:not(.novo-option-inert):active{background:#0a2434}.novo-option.novo-accent-aqua{border-left:4px solid #3bafda}.novo-option.novo-fill-aqua:not(.novo-option-inert){background:#3bafda;color:#3d464d}.novo-option.novo-fill-aqua:not(.novo-option-inert):focus,.novo-option.novo-fill-aqua:not(.novo-option-inert):hover{background:#62bfe1}.novo-option.novo-fill-aqua:not(.novo-option-inert):active{background:#2f8cae}.novo-option.novo-accent-ocean{border-left:4px solid #4a89dc}.novo-option.novo-fill-ocean:not(.novo-option-inert){background:#4a89dc;color:#fff}.novo-option.novo-fill-ocean:not(.novo-option-inert):focus,.novo-option.novo-fill-ocean:not(.novo-option-inert):hover{background:#6ea0e3}.novo-option.novo-fill-ocean:not(.novo-option-inert):active{background:#3b6db0}.novo-option.novo-accent-mint{border-left:4px solid #37bc9b}.novo-option.novo-fill-mint:not(.novo-option-inert){background:#37bc9b;color:#3d464d}.novo-option.novo-fill-mint:not(.novo-option-inert):focus,.novo-option.novo-fill-mint:not(.novo-option-inert):hover{background:#5fc9af}.novo-option.novo-fill-mint:not(.novo-option-inert):active{background:#2c967c}.novo-option.novo-accent-grass{border-left:4px solid #8cc152}.novo-option.novo-fill-grass:not(.novo-option-inert){background:#8cc152;color:#fff}.novo-option.novo-fill-grass:not(.novo-option-inert):focus,.novo-option.novo-fill-grass:not(.novo-option-inert):hover{background:#a3cd74}.novo-option.novo-fill-grass:not(.novo-option-inert):active{background:#709a41}.novo-option.novo-accent-sunflower{border-left:4px solid #f6b042}.novo-option.novo-fill-sunflower:not(.novo-option-inert){background:#f6b042;color:#fff}.novo-option.novo-fill-sunflower:not(.novo-option-inert):focus,.novo-option.novo-fill-sunflower:not(.novo-option-inert):hover{background:#f7bf67}.novo-option.novo-fill-sunflower:not(.novo-option-inert):active{background:#c48c34}.novo-option.novo-accent-bittersweet{border-left:4px solid #eb6845}.novo-option.novo-fill-bittersweet:not(.novo-option-inert){background:#eb6845;color:#fff}.novo-option.novo-fill-bittersweet:not(.novo-option-inert):focus,.novo-option.novo-fill-bittersweet:not(.novo-option-inert):hover{background:#ef866a}.novo-option.novo-fill-bittersweet:not(.novo-option-inert):active{background:#bc5337}.novo-option.novo-accent-grapefruit{border-left:4px solid #da4453}.novo-option.novo-fill-grapefruit:not(.novo-option-inert){background:#da4453;color:#fff}.novo-option.novo-fill-grapefruit:not(.novo-option-inert):focus,.novo-option.novo-fill-grapefruit:not(.novo-option-inert):hover{background:#e16975}.novo-option.novo-fill-grapefruit:not(.novo-option-inert):active{background:#ae3642}.novo-option.novo-accent-carnation{border-left:4px solid #d770ad}.novo-option.novo-fill-carnation:not(.novo-option-inert){background:#d770ad;color:#fff}.novo-option.novo-fill-carnation:not(.novo-option-inert):focus,.novo-option.novo-fill-carnation:not(.novo-option-inert):hover{background:#df8cbd}.novo-option.novo-fill-carnation:not(.novo-option-inert):active{background:#ac598a}.novo-option.novo-accent-lavender{border-left:4px solid #967adc}.novo-option.novo-fill-lavender:not(.novo-option-inert){background:#967adc;color:#fff}.novo-option.novo-fill-lavender:not(.novo-option-inert):focus,.novo-option.novo-fill-lavender:not(.novo-option-inert):hover{background:#ab94e3}.novo-option.novo-fill-lavender:not(.novo-option-inert):active{background:#7861b0}.novo-option.novo-accent-mountain{border-left:4px solid #9678b6}.novo-option.novo-fill-mountain:not(.novo-option-inert){background:#9678b6;color:#fff}.novo-option.novo-fill-mountain:not(.novo-option-inert):focus,.novo-option.novo-fill-mountain:not(.novo-option-inert):hover{background:#ab93c4}.novo-option.novo-fill-mountain:not(.novo-option-inert):active{background:#786091}.novo-option.novo-accent-info{border-left:4px solid #4a89dc}.novo-option.novo-fill-info:not(.novo-option-inert){background:#4a89dc;color:#fff}.novo-option.novo-fill-info:not(.novo-option-inert):focus,.novo-option.novo-fill-info:not(.novo-option-inert):hover{background:#6ea0e3}.novo-option.novo-fill-info:not(.novo-option-inert):active{background:#3b6db0}.novo-option.novo-accent-positive{border-left:4px solid #4a89dc}.novo-option.novo-fill-positive:not(.novo-option-inert){background:#4a89dc;color:#fff}.novo-option.novo-fill-positive:not(.novo-option-inert):focus,.novo-option.novo-fill-positive:not(.novo-option-inert):hover{background:#6ea0e3}.novo-option.novo-fill-positive:not(.novo-option-inert):active{background:#3b6db0}.novo-option.novo-accent-success{border-left:4px solid #8cc152}.novo-option.novo-fill-success:not(.novo-option-inert){background:#8cc152;color:#fff}.novo-option.novo-fill-success:not(.novo-option-inert):focus,.novo-option.novo-fill-success:not(.novo-option-inert):hover{background:#a3cd74}.novo-option.novo-fill-success:not(.novo-option-inert):active{background:#709a41}.novo-option.novo-accent-negative{border-left:4px solid #da4453}.novo-option.novo-fill-negative:not(.novo-option-inert){background:#da4453;color:#fff}.novo-option.novo-fill-negative:not(.novo-option-inert):focus,.novo-option.novo-fill-negative:not(.novo-option-inert):hover{background:#e16975}.novo-option.novo-fill-negative:not(.novo-option-inert):active{background:#ae3642}.novo-option.novo-accent-danger{border-left:4px solid #da4453}.novo-option.novo-fill-danger:not(.novo-option-inert){background:#da4453;color:#fff}.novo-option.novo-fill-danger:not(.novo-option-inert):focus,.novo-option.novo-fill-danger:not(.novo-option-inert):hover{background:#e16975}.novo-option.novo-fill-danger:not(.novo-option-inert):active{background:#ae3642}.novo-option.novo-accent-error{border-left:4px solid #da4453}.novo-option.novo-fill-error:not(.novo-option-inert){background:#da4453;color:#fff}.novo-option.novo-fill-error:not(.novo-option-inert):focus,.novo-option.novo-fill-error:not(.novo-option-inert):hover{background:#e16975}.novo-option.novo-fill-error:not(.novo-option-inert):active{background:#ae3642}.novo-option.novo-accent-warning{border-left:4px solid #f6b042}.novo-option.novo-fill-warning:not(.novo-option-inert){background:#f6b042;color:#fff}.novo-option.novo-fill-warning:not(.novo-option-inert):focus,.novo-option.novo-fill-warning:not(.novo-option-inert):hover{background:#f7bf67}.novo-option.novo-fill-warning:not(.novo-option-inert):active{background:#c48c34}.novo-option.novo-accent-empty{border-left:4px solid #cccdcc}.novo-option.novo-fill-empty:not(.novo-option-inert){background:#cccdcc;color:#3d464d}.novo-option.novo-fill-empty:not(.novo-option-inert):focus,.novo-option.novo-fill-empty:not(.novo-option-inert):hover{background:#d6d7d6}.novo-option.novo-fill-empty:not(.novo-option-inert):active{background:#a3a4a3}.novo-option.novo-accent-disabled{border-left:4px solid #bebebe}.novo-option.novo-fill-disabled:not(.novo-option-inert){background:#bebebe;color:#3d464d}.novo-option.novo-fill-disabled:not(.novo-option-inert):focus,.novo-option.novo-fill-disabled:not(.novo-option-inert):hover{background:#cbcbcb}.novo-option.novo-fill-disabled:not(.novo-option-inert):active{background:#989898}.novo-option.novo-accent-background{border-left:4px solid #f7f7f7}.novo-option.novo-fill-background:not(.novo-option-inert){background:#f7f7f7;color:#3d464d}.novo-option.novo-fill-background:not(.novo-option-inert):focus,.novo-option.novo-fill-background:not(.novo-option-inert):hover{background:#f8f8f8}.novo-option.novo-fill-background:not(.novo-option-inert):active{background:#c5c5c5}.novo-option.novo-accent-backgroundDark{border-left:4px solid #e2e2e2}.novo-option.novo-fill-backgroundDark:not(.novo-option-inert){background:#e2e2e2;color:#3d464d}.novo-option.novo-fill-backgroundDark:not(.novo-option-inert):focus,.novo-option.novo-fill-backgroundDark:not(.novo-option-inert):hover{background:#e7e7e7}.novo-option.novo-fill-backgroundDark:not(.novo-option-inert):active{background:#b4b4b4}.novo-option.novo-accent-presentation{border-left:4px solid #5b6770}.novo-option.novo-fill-presentation:not(.novo-option-inert){background:#5b6770;color:#fff}.novo-option.novo-fill-presentation:not(.novo-option-inert):focus,.novo-option.novo-fill-presentation:not(.novo-option-inert):hover{background:#7b858c}.novo-option.novo-fill-presentation:not(.novo-option-inert):active{background:#485259}.novo-option.novo-accent-bullhorn{border-left:4px solid #ff6900}.novo-option.novo-fill-bullhorn:not(.novo-option-inert){background:#ff6900;color:#3d464d}.novo-option.novo-fill-bullhorn:not(.novo-option-inert):focus,.novo-option.novo-fill-bullhorn:not(.novo-option-inert):hover{background:#ff8733}.novo-option.novo-fill-bullhorn:not(.novo-option-inert):active{background:#cc5400}.novo-option.novo-accent-pulse{border-left:4px solid #3bafda}.novo-option.novo-fill-pulse:not(.novo-option-inert){background:#3bafda;color:#3d464d}.novo-option.novo-fill-pulse:not(.novo-option-inert):focus,.novo-option.novo-fill-pulse:not(.novo-option-inert):hover{background:#62bfe1}.novo-option.novo-fill-pulse:not(.novo-option-inert):active{background:#2f8cae}.novo-option.novo-accent-company{border-left:4px solid #39d}.novo-option.novo-fill-company:not(.novo-option-inert){background:#39d;color:#fff}.novo-option.novo-fill-company:not(.novo-option-inert):focus,.novo-option.novo-fill-company:not(.novo-option-inert):hover{background:#5bade3}.novo-option.novo-fill-company:not(.novo-option-inert):active{background:#287ab0}.novo-option.novo-accent-candidate{border-left:4px solid #4b7}.novo-option.novo-fill-candidate:not(.novo-option-inert){background:#4b7;color:#fff}.novo-option.novo-fill-candidate:not(.novo-option-inert):focus,.novo-option.novo-fill-candidate:not(.novo-option-inert):hover{background:#69c892}.novo-option.novo-fill-candidate:not(.novo-option-inert):active{background:#36955f}.novo-option.novo-accent-lead{border-left:4px solid #a69}.novo-option.novo-fill-lead:not(.novo-option-inert){background:#a69;color:#fff}.novo-option.novo-fill-lead:not(.novo-option-inert):focus,.novo-option.novo-fill-lead:not(.novo-option-inert):hover{background:#bb84ad}.novo-option.novo-fill-lead:not(.novo-option-inert):active{background:#88517a}.novo-option.novo-accent-contact{border-left:4px solid #fa4}.novo-option.novo-fill-contact:not(.novo-option-inert){background:#fa4;color:#fff}.novo-option.novo-fill-contact:not(.novo-option-inert):focus,.novo-option.novo-fill-contact:not(.novo-option-inert):hover{background:#ffbb69}.novo-option.novo-fill-contact:not(.novo-option-inert):active{background:#cc8836}.novo-option.novo-accent-opportunity{border-left:4px solid #625}.novo-option.novo-fill-opportunity:not(.novo-option-inert){background:#625;color:#fff}.novo-option.novo-fill-opportunity:not(.novo-option-inert):focus,.novo-option.novo-fill-opportunity:not(.novo-option-inert):hover{background:#844e77}.novo-option.novo-fill-opportunity:not(.novo-option-inert):active{background:#511b44}.novo-option.novo-accent-job{border-left:4px solid #b56}.novo-option.novo-fill-job:not(.novo-option-inert){background:#b56;color:#fff}.novo-option.novo-fill-job:not(.novo-option-inert):focus,.novo-option.novo-fill-job:not(.novo-option-inert):hover{background:#c87784}.novo-option.novo-fill-job:not(.novo-option-inert):active{background:#954451}.novo-option.novo-accent-submission{border-left:4px solid #a9adbb}.novo-option.novo-fill-submission:not(.novo-option-inert){background:#a9adbb;color:#3d464d}.novo-option.novo-fill-submission:not(.novo-option-inert):focus,.novo-option.novo-fill-submission:not(.novo-option-inert):hover{background:#babdc8}.novo-option.novo-fill-submission:not(.novo-option-inert):active{background:#878a95}.novo-option.novo-accent-sendout{border-left:4px solid #747884}.novo-option.novo-fill-sendout:not(.novo-option-inert){background:#747884;color:#fff}.novo-option.novo-fill-sendout:not(.novo-option-inert):focus,.novo-option.novo-fill-sendout:not(.novo-option-inert):hover{background:#8f939c}.novo-option.novo-fill-sendout:not(.novo-option-inert):active{background:#5c6069}.novo-option.novo-accent-placement{border-left:4px solid #0b344f}.novo-option.novo-fill-placement:not(.novo-option-inert){background:#0b344f;color:#fff}.novo-option.novo-fill-placement:not(.novo-option-inert):focus,.novo-option.novo-fill-placement:not(.novo-option-inert):hover{background:#3b5c72}.novo-option.novo-fill-placement:not(.novo-option-inert):active{background:#08293f}.novo-option.novo-accent-note{border-left:4px solid #747884}.novo-option.novo-fill-note:not(.novo-option-inert){background:#747884;color:#fff}.novo-option.novo-fill-note:not(.novo-option-inert):focus,.novo-option.novo-fill-note:not(.novo-option-inert):hover{background:#8f939c}.novo-option.novo-fill-note:not(.novo-option-inert):active{background:#5c6069}.novo-option.novo-accent-contract{border-left:4px solid #454ea0}.novo-option.novo-fill-contract:not(.novo-option-inert){background:#454ea0;color:#fff}.novo-option.novo-fill-contract:not(.novo-option-inert):focus,.novo-option.novo-fill-contract:not(.novo-option-inert):hover{background:#6a71b3}.novo-option.novo-fill-contract:not(.novo-option-inert):active{background:#373e80}.novo-option.novo-accent-jobCode{border-left:4px solid #696d79}.novo-option.novo-fill-jobCode:not(.novo-option-inert){background:#696d79;color:#fff}.novo-option.novo-fill-jobCode:not(.novo-option-inert):focus,.novo-option.novo-fill-jobCode:not(.novo-option-inert):hover{background:#878a93}.novo-option.novo-fill-jobCode:not(.novo-option-inert):active{background:#545760}.novo-option.novo-accent-earnCode{border-left:4px solid #696d79}.novo-option.novo-fill-earnCode:not(.novo-option-inert){background:#696d79;color:#fff}.novo-option.novo-fill-earnCode:not(.novo-option-inert):focus,.novo-option.novo-fill-earnCode:not(.novo-option-inert):hover{background:#878a93}.novo-option.novo-fill-earnCode:not(.novo-option-inert):active{background:#545760}.novo-option.novo-accent-invoiceStatement{border-left:4px solid #696d79}.novo-option.novo-fill-invoiceStatement:not(.novo-option-inert){background:#696d79;color:#fff}.novo-option.novo-fill-invoiceStatement:not(.novo-option-inert):focus,.novo-option.novo-fill-invoiceStatement:not(.novo-option-inert):hover{background:#878a93}.novo-option.novo-fill-invoiceStatement:not(.novo-option-inert):active{background:#545760}.novo-option.novo-accent-billableCharge{border-left:4px solid #696d79}.novo-option.novo-fill-billableCharge:not(.novo-option-inert){background:#696d79;color:#fff}.novo-option.novo-fill-billableCharge:not(.novo-option-inert):focus,.novo-option.novo-fill-billableCharge:not(.novo-option-inert):hover{background:#878a93}.novo-option.novo-fill-billableCharge:not(.novo-option-inert):active{background:#545760}.novo-option.novo-accent-payableCharge{border-left:4px solid #696d79}.novo-option.novo-fill-payableCharge:not(.novo-option-inert){background:#696d79;color:#fff}.novo-option.novo-fill-payableCharge:not(.novo-option-inert):focus,.novo-option.novo-fill-payableCharge:not(.novo-option-inert):hover{background:#878a93}.novo-option.novo-fill-payableCharge:not(.novo-option-inert):active{background:#545760}.novo-option.novo-accent-user{border-left:4px solid #696d79}.novo-option.novo-fill-user:not(.novo-option-inert){background:#696d79;color:#fff}.novo-option.novo-fill-user:not(.novo-option-inert):focus,.novo-option.novo-fill-user:not(.novo-option-inert):hover{background:#878a93}.novo-option.novo-fill-user:not(.novo-option-inert):active{background:#545760}.novo-option.novo-accent-corporateUser{border-left:4px solid #696d79}.novo-option.novo-fill-corporateUser:not(.novo-option-inert){background:#696d79;color:#fff}.novo-option.novo-fill-corporateUser:not(.novo-option-inert):focus,.novo-option.novo-fill-corporateUser:not(.novo-option-inert):hover{background:#878a93}.novo-option.novo-fill-corporateUser:not(.novo-option-inert):active{background:#545760}.novo-option.novo-accent-distributionList{border-left:4px solid #696d79}.novo-option.novo-fill-distributionList:not(.novo-option-inert){background:#696d79;color:#fff}.novo-option.novo-fill-distributionList:not(.novo-option-inert):focus,.novo-option.novo-fill-distributionList:not(.novo-option-inert):hover{background:#878a93}.novo-option.novo-fill-distributionList:not(.novo-option-inert):active{background:#545760}.novo-option.novo-accent-credential{border-left:4px solid #696d79}.novo-option.novo-fill-credential:not(.novo-option-inert){background:#696d79;color:#fff}.novo-option.novo-fill-credential:not(.novo-option-inert):focus,.novo-option.novo-fill-credential:not(.novo-option-inert):hover{background:#878a93}.novo-option.novo-fill-credential:not(.novo-option-inert):active{background:#545760}.novo-option.novo-accent-person{border-left:4px solid #696d79}.novo-option.novo-fill-person:not(.novo-option-inert){background:#696d79;color:#fff}.novo-option.novo-fill-person:not(.novo-option-inert):focus,.novo-option.novo-fill-person:not(.novo-option-inert):hover{background:#878a93}.novo-option.novo-fill-person:not(.novo-option-inert):active{background:#545760}.novo-option-text{align-items:center;display:inline-block;display:inline-flex;flex-direction:row;flex-grow:1;gap:1rem;overflow:hidden;text-overflow:ellipsis}.novo-option-pseudo-checkbox{margin-right:.25rem}[dir=rtl] .novo-option-pseudo-checkbox{margin-left:.25rem;margin-right:0}"]
|
|
25594
25744
|
},] }
|
|
25595
25745
|
];
|
|
25596
25746
|
NovoOption.ctorParameters = function () { return [
|
|
@@ -25655,40 +25805,13 @@
|
|
|
25655
25805
|
function NovoBaseTextElement(element) {
|
|
25656
25806
|
this.element = element;
|
|
25657
25807
|
}
|
|
25658
|
-
Object.defineProperty(NovoBaseTextElement.prototype, "hb_isWeightThin", {
|
|
25659
|
-
get: function () {
|
|
25660
|
-
return this.weight === 'thin';
|
|
25661
|
-
},
|
|
25662
|
-
enumerable: false,
|
|
25663
|
-
configurable: true
|
|
25664
|
-
});
|
|
25665
|
-
Object.defineProperty(NovoBaseTextElement.prototype, "hb_isWeightMedium", {
|
|
25666
|
-
get: function () {
|
|
25667
|
-
return this.weight === 'medium';
|
|
25668
|
-
},
|
|
25669
|
-
enumerable: false,
|
|
25670
|
-
configurable: true
|
|
25671
|
-
});
|
|
25672
|
-
Object.defineProperty(NovoBaseTextElement.prototype, "hb_isWeightBold", {
|
|
25673
|
-
get: function () {
|
|
25674
|
-
return this.weight === 'bold';
|
|
25675
|
-
},
|
|
25676
|
-
enumerable: false,
|
|
25677
|
-
configurable: true
|
|
25678
|
-
});
|
|
25679
|
-
Object.defineProperty(NovoBaseTextElement.prototype, "hb_isWeightDefault", {
|
|
25680
|
-
get: function () {
|
|
25681
|
-
return !['thin', 'medium', 'bold'].includes(this.weight);
|
|
25682
|
-
},
|
|
25683
|
-
enumerable: false,
|
|
25684
|
-
configurable: true
|
|
25685
|
-
});
|
|
25686
25808
|
Object.defineProperty(NovoBaseTextElement.prototype, "hb_classBinding", {
|
|
25687
25809
|
get: function () {
|
|
25688
25810
|
return [
|
|
25689
25811
|
this.color ? "text-color-" + this.color : null,
|
|
25690
25812
|
this.lineLength ? "text-length-" + this.lineLength : null,
|
|
25691
25813
|
this.size ? "text-size-" + this.size : null,
|
|
25814
|
+
this.weight ? "text-weight-" + this.weight : null,
|
|
25692
25815
|
]
|
|
25693
25816
|
.filter(Boolean)
|
|
25694
25817
|
.join(' ');
|
|
@@ -25716,10 +25839,6 @@
|
|
|
25716
25839
|
weight: [{ type: i0.Input }],
|
|
25717
25840
|
lineLength: [{ type: i0.Input }],
|
|
25718
25841
|
color: [{ type: i0.Input }],
|
|
25719
|
-
hb_isWeightThin: [{ type: i0.HostBinding, args: ['class.text-weight-thin',] }],
|
|
25720
|
-
hb_isWeightMedium: [{ type: i0.HostBinding, args: ['class.text-weight-medium',] }],
|
|
25721
|
-
hb_isWeightBold: [{ type: i0.HostBinding, args: ['class.text-weight-bold',] }],
|
|
25722
|
-
hb_isWeightDefault: [{ type: i0.HostBinding, args: ['class.text-weight-default',] }],
|
|
25723
25842
|
hb_classBinding: [{ type: i0.HostBinding, args: ['class',] }],
|
|
25724
25843
|
disabled: [{ type: i0.HostBinding, args: ['class.text-disabled',] }, { type: i0.Input }],
|
|
25725
25844
|
muted: [{ type: i0.HostBinding, args: ['class.text-color-empty',] }, { type: i0.Input }],
|
|
@@ -25728,7 +25847,14 @@
|
|
|
25728
25847
|
marginAfter: [{ type: i0.HostBinding, args: ['class.margin-after',] }, { type: i0.Input }],
|
|
25729
25848
|
nowrap: [{ type: i0.HostBinding, args: ['class.text-nowrap',] }, { type: i0.Input }],
|
|
25730
25849
|
smaller: [{ type: i0.HostBinding, args: ['class.text-size-smaller',] }, { type: i0.Input }],
|
|
25731
|
-
larger: [{ type: i0.HostBinding, args: ['class.text-size-larger',] }, { type: i0.Input }]
|
|
25850
|
+
larger: [{ type: i0.HostBinding, args: ['class.text-size-larger',] }, { type: i0.Input }],
|
|
25851
|
+
thin: [{ type: i0.HostBinding, args: ['class.text-weight-thin',] }, { type: i0.Input }],
|
|
25852
|
+
lighter: [{ type: i0.HostBinding, args: ['class.text-weight-lighter',] }, { type: i0.Input }],
|
|
25853
|
+
light: [{ type: i0.HostBinding, args: ['class.text-weight-light',] }, { type: i0.Input }],
|
|
25854
|
+
medium: [{ type: i0.HostBinding, args: ['class.text-weight-medium',] }, { type: i0.Input }],
|
|
25855
|
+
bold: [{ type: i0.HostBinding, args: ['class.text-weight-bold',] }, { type: i0.Input }],
|
|
25856
|
+
bolder: [{ type: i0.HostBinding, args: ['class.text-weight-bolder',] }, { type: i0.Input }],
|
|
25857
|
+
extrabold: [{ type: i0.HostBinding, args: ['class.text-weight-extrabold',] }, { type: i0.Input }]
|
|
25732
25858
|
};
|
|
25733
25859
|
__decorate([
|
|
25734
25860
|
BooleanInput(),
|
|
@@ -25762,6 +25888,34 @@
|
|
|
25762
25888
|
BooleanInput(),
|
|
25763
25889
|
__metadata("design:type", Boolean)
|
|
25764
25890
|
], NovoBaseTextElement.prototype, "larger", void 0);
|
|
25891
|
+
__decorate([
|
|
25892
|
+
BooleanInput(),
|
|
25893
|
+
__metadata("design:type", Boolean)
|
|
25894
|
+
], NovoBaseTextElement.prototype, "thin", void 0);
|
|
25895
|
+
__decorate([
|
|
25896
|
+
BooleanInput(),
|
|
25897
|
+
__metadata("design:type", Boolean)
|
|
25898
|
+
], NovoBaseTextElement.prototype, "lighter", void 0);
|
|
25899
|
+
__decorate([
|
|
25900
|
+
BooleanInput(),
|
|
25901
|
+
__metadata("design:type", Boolean)
|
|
25902
|
+
], NovoBaseTextElement.prototype, "light", void 0);
|
|
25903
|
+
__decorate([
|
|
25904
|
+
BooleanInput(),
|
|
25905
|
+
__metadata("design:type", Boolean)
|
|
25906
|
+
], NovoBaseTextElement.prototype, "medium", void 0);
|
|
25907
|
+
__decorate([
|
|
25908
|
+
BooleanInput(),
|
|
25909
|
+
__metadata("design:type", Boolean)
|
|
25910
|
+
], NovoBaseTextElement.prototype, "bold", void 0);
|
|
25911
|
+
__decorate([
|
|
25912
|
+
BooleanInput(),
|
|
25913
|
+
__metadata("design:type", Boolean)
|
|
25914
|
+
], NovoBaseTextElement.prototype, "bolder", void 0);
|
|
25915
|
+
__decorate([
|
|
25916
|
+
BooleanInput(),
|
|
25917
|
+
__metadata("design:type", Boolean)
|
|
25918
|
+
], NovoBaseTextElement.prototype, "extrabold", void 0);
|
|
25765
25919
|
|
|
25766
25920
|
/**
|
|
25767
25921
|
* Tag Example
|
|
@@ -25787,7 +25941,7 @@
|
|
|
25787
25941
|
host: {
|
|
25788
25942
|
class: 'novo-caption',
|
|
25789
25943
|
},
|
|
25790
|
-
styles: [":host{color
|
|
25944
|
+
styles: [":host{color:var(--text-muted,#3d464d);display:inline;font-size:var(--font-size-caption);font-weight:400;line-height:1.375;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle}:host.text-nowrap{white-space:nowrap}:host.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:host.text-size-default{font-size:inherit}:host.text-size-body{font-size:1.3rem}:host.text-size-xs{font-size:1rem}:host.text-size-sm{font-size:1.2rem}:host.text-size-md{font-size:1.3rem}:host.text-size-lg{font-size:1.6rem}:host.text-size-xl{font-size:2rem}:host.text-size-2xl{font-size:2.6rem}:host.text-size-3xl{font-size:3.2rem}:host.text-size-smaller{font-size:.8em}:host.text-size-larger{font-size:1.2em}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray,:host.text-color-grey{color:#9e9e9e}:host.text-color-bright,:host.text-color-offWhite{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202945}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202945}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-info,:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-danger,:host.text-color-error,:host.text-color-negative{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-billableCharge,:host.text-color-corporateUser,:host.text-color-credential,:host.text-color-distributionList,:host.text-color-earnCode,:host.text-color-invoiceStatement,:host.text-color-jobCode,:host.text-color-payableCharge,:host.text-color-person,:host.text-color-user{color:#696d79}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}:host.text-length-small{max-width:40ch}:host.text-length-medium{max-width:55ch}:host.text-length-large{max-width:70ch}:host.text-weight-hairline{font-weight:100}:host.text-weight-thin{font-weight:200}:host.text-weight-light{font-weight:300}:host.text-weight-normal{font-weight:400}:host.text-weight-medium{font-weight:500}:host.text-weight-semibold{font-weight:600}:host.text-weight-bold{font-weight:700}:host.text-weight-extrabold{font-weight:800}:host.text-weight-heavy{font-weight:900}:host.text-weight-lighter{font-weight:lighter}:host.text-weight-bolder{font-weight:bolder}"]
|
|
25791
25945
|
},] }
|
|
25792
25946
|
];
|
|
25793
25947
|
|
|
@@ -25815,7 +25969,7 @@
|
|
|
25815
25969
|
host: {
|
|
25816
25970
|
class: 'novo-label',
|
|
25817
25971
|
},
|
|
25818
|
-
styles: [":host{color:
|
|
25972
|
+
styles: [":host{color:var(--text-muted);display:inline-block;font-size:var(--font-size-label);font-weight:500;line-height:1.375;overflow-wrap:break-word;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle;word-break:word-break}:host.text-nowrap{white-space:nowrap}:host.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:host.text-size-default{font-size:inherit}:host.text-size-body{font-size:1.3rem}:host.text-size-xs{font-size:1rem}:host.text-size-sm{font-size:1.2rem}:host.text-size-md{font-size:1.3rem}:host.text-size-lg{font-size:1.6rem}:host.text-size-xl{font-size:2rem}:host.text-size-2xl{font-size:2.6rem}:host.text-size-3xl{font-size:3.2rem}:host.text-size-smaller{font-size:.8em}:host.text-size-larger{font-size:1.2em}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray,:host.text-color-grey{color:#9e9e9e}:host.text-color-bright,:host.text-color-offWhite{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202945}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202945}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-info,:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-danger,:host.text-color-error,:host.text-color-negative{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-billableCharge,:host.text-color-corporateUser,:host.text-color-credential,:host.text-color-distributionList,:host.text-color-earnCode,:host.text-color-invoiceStatement,:host.text-color-jobCode,:host.text-color-payableCharge,:host.text-color-person,:host.text-color-user{color:#696d79}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}:host.text-length-small{max-width:40ch}:host.text-length-medium{max-width:55ch}:host.text-length-large{max-width:70ch}:host.text-weight-hairline{font-weight:100}:host.text-weight-thin{font-weight:200}:host.text-weight-light{font-weight:300}:host.text-weight-normal{font-weight:400}:host.text-weight-medium{font-weight:500}:host.text-weight-semibold{font-weight:600}:host.text-weight-bold{font-weight:700}:host.text-weight-extrabold{font-weight:800}:host.text-weight-heavy{font-weight:900}:host.text-weight-lighter{font-weight:lighter}:host.text-weight-bolder{font-weight:bolder}"]
|
|
25819
25973
|
},] }
|
|
25820
25974
|
];
|
|
25821
25975
|
|
|
@@ -25844,7 +25998,7 @@
|
|
|
25844
25998
|
host: {
|
|
25845
25999
|
class: 'novo-link',
|
|
25846
26000
|
},
|
|
25847
|
-
styles: [":host{display:inline;font-size:
|
|
26001
|
+
styles: [":host{color:inherit;display:inline;font-size:var(--font-size-text);font-weight:400;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle}:host.text-nowrap{white-space:nowrap}:host.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:host.text-size-default{font-size:inherit}:host.text-size-body{font-size:1.3rem}:host.text-size-xs{font-size:1rem}:host.text-size-sm{font-size:1.2rem}:host.text-size-md{font-size:1.3rem}:host.text-size-lg{font-size:1.6rem}:host.text-size-xl{font-size:2rem}:host.text-size-2xl{font-size:2.6rem}:host.text-size-3xl{font-size:3.2rem}:host.text-size-smaller{font-size:.8em}:host.text-size-larger{font-size:1.2em}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray,:host.text-color-grey{color:#9e9e9e}:host.text-color-bright,:host.text-color-offWhite{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202945}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202945}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-info,:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-danger,:host.text-color-error,:host.text-color-negative{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-billableCharge,:host.text-color-corporateUser,:host.text-color-credential,:host.text-color-distributionList,:host.text-color-earnCode,:host.text-color-invoiceStatement,:host.text-color-jobCode,:host.text-color-payableCharge,:host.text-color-person,:host.text-color-user{color:#696d79}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}:host.text-length-small{max-width:40ch}:host.text-length-medium{max-width:55ch}:host.text-length-large{max-width:70ch}:host.text-weight-hairline{font-weight:100}:host.text-weight-thin{font-weight:200}:host.text-weight-light{font-weight:300}:host.text-weight-normal{font-weight:400}:host.text-weight-medium{font-weight:500}:host.text-weight-semibold{font-weight:600}:host.text-weight-bold{font-weight:700}:host.text-weight-extrabold{font-weight:800}:host.text-weight-heavy{font-weight:900}:host.text-weight-lighter{font-weight:lighter}:host.text-weight-bolder{font-weight:bolder}:host::ng-deep novo-icon,:host novo-icon{font-size:1em}"]
|
|
25848
26002
|
},] }
|
|
25849
26003
|
];
|
|
25850
26004
|
NovoLink.propDecorators = {
|
|
@@ -25876,7 +26030,7 @@
|
|
|
25876
26030
|
host: {
|
|
25877
26031
|
class: 'novo-text',
|
|
25878
26032
|
},
|
|
25879
|
-
styles: [".novo-text{color:inherit;display:inline;font-size:var(--font-size-text);font-weight:400;
|
|
26033
|
+
styles: [".novo-text{color:inherit;display:inline;font-size:var(--font-size-text);font-weight:400;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle}.novo-text.text-nowrap{white-space:nowrap}.novo-text.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.novo-text.text-size-default{font-size:inherit}.novo-text.text-size-body{font-size:1.3rem}.novo-text.text-size-xs{font-size:1rem}.novo-text.text-size-sm{font-size:1.2rem}.novo-text.text-size-md{font-size:1.3rem}.novo-text.text-size-lg{font-size:1.6rem}.novo-text.text-size-xl{font-size:2rem}.novo-text.text-size-2xl{font-size:2.6rem}.novo-text.text-size-3xl{font-size:3.2rem}.novo-text.text-size-smaller{font-size:.8em}.novo-text.text-size-larger{font-size:1.2em}.novo-text.text-color-black{color:#000}.novo-text.text-color-white{color:#fff}.novo-text.text-color-gray,.novo-text.text-color-grey{color:#9e9e9e}.novo-text.text-color-bright,.novo-text.text-color-offWhite{color:#f7f7f7}.novo-text.text-color-light{color:#dbdbdb}.novo-text.text-color-neutral{color:#4f5361}.novo-text.text-color-dark{color:#3d464d}.novo-text.text-color-orange{color:#ff6900}.novo-text.text-color-navigation{color:#202945}.novo-text.text-color-skyBlue{color:#009bdf}.novo-text.text-color-steel{color:#5b6770}.novo-text.text-color-metal{color:#637893}.novo-text.text-color-sand{color:#f4f4f4}.novo-text.text-color-silver{color:#e2e2e2}.novo-text.text-color-stone{color:#bebebe}.novo-text.text-color-ash{color:#a0a0a0}.novo-text.text-color-slate{color:#707070}.novo-text.text-color-onyx{color:#526980}.novo-text.text-color-charcoal{color:#282828}.novo-text.text-color-moonlight{color:#1a242f}.novo-text.text-color-midnight{color:#202945}.novo-text.text-color-darkness{color:#161f27}.novo-text.text-color-navy{color:#0d2d42}.novo-text.text-color-aqua{color:#3bafda}.novo-text.text-color-ocean{color:#4a89dc}.novo-text.text-color-mint{color:#37bc9b}.novo-text.text-color-grass{color:#8cc152}.novo-text.text-color-sunflower{color:#f6b042}.novo-text.text-color-bittersweet{color:#eb6845}.novo-text.text-color-grapefruit{color:#da4453}.novo-text.text-color-carnation{color:#d770ad}.novo-text.text-color-lavender{color:#967adc}.novo-text.text-color-mountain{color:#9678b6}.novo-text.text-color-info,.novo-text.text-color-positive{color:#4a89dc}.novo-text.text-color-success{color:#8cc152}.novo-text.text-color-danger,.novo-text.text-color-error,.novo-text.text-color-negative{color:#da4453}.novo-text.text-color-warning{color:#f6b042}.novo-text.text-color-empty{color:#cccdcc}.novo-text.text-color-disabled{color:#bebebe}.novo-text.text-color-background{color:#f7f7f7}.novo-text.text-color-backgroundDark{color:#e2e2e2}.novo-text.text-color-presentation{color:#5b6770}.novo-text.text-color-bullhorn{color:#ff6900}.novo-text.text-color-pulse{color:#3bafda}.novo-text.text-color-company{color:#39d}.novo-text.text-color-candidate{color:#4b7}.novo-text.text-color-lead{color:#a69}.novo-text.text-color-contact{color:#fa4}.novo-text.text-color-opportunity{color:#625}.novo-text.text-color-job{color:#b56}.novo-text.text-color-submission{color:#a9adbb}.novo-text.text-color-sendout{color:#747884}.novo-text.text-color-placement{color:#0b344f}.novo-text.text-color-note{color:#747884}.novo-text.text-color-contract{color:#454ea0}.novo-text.text-color-billableCharge,.novo-text.text-color-corporateUser,.novo-text.text-color-credential,.novo-text.text-color-distributionList,.novo-text.text-color-earnCode,.novo-text.text-color-invoiceStatement,.novo-text.text-color-jobCode,.novo-text.text-color-payableCharge,.novo-text.text-color-person,.novo-text.text-color-user{color:#696d79}.novo-text.margin-before{margin-top:.4rem}.novo-text.margin-after{margin-bottom:.8rem}.novo-text.text-length-small{max-width:40ch}.novo-text.text-length-medium{max-width:55ch}.novo-text.text-length-large{max-width:70ch}.novo-text.text-weight-hairline{font-weight:100}.novo-text.text-weight-thin{font-weight:200}.novo-text.text-weight-light{font-weight:300}.novo-text.text-weight-normal{font-weight:400}.novo-text.text-weight-medium{font-weight:500}.novo-text.text-weight-semibold{font-weight:600}.novo-text.text-weight-bold{font-weight:700}.novo-text.text-weight-extrabold{font-weight:800}.novo-text.text-weight-heavy{font-weight:900}.novo-text.text-weight-lighter{font-weight:lighter}.novo-text.text-weight-bolder{font-weight:bolder}.novo-text.text-block{display:block;line-height:1.375em;max-width:75ch;min-width:55ch}"]
|
|
25880
26034
|
},] }
|
|
25881
26035
|
];
|
|
25882
26036
|
NovoText.propDecorators = {
|
|
@@ -25900,7 +26054,9 @@
|
|
|
25900
26054
|
var NovoTitle = /** @class */ (function (_super) {
|
|
25901
26055
|
__extends(NovoTitle, _super);
|
|
25902
26056
|
function NovoTitle() {
|
|
25903
|
-
|
|
26057
|
+
var _this = _super.apply(this, __spread(arguments)) || this;
|
|
26058
|
+
_this.weight = 'medium';
|
|
26059
|
+
return _this;
|
|
25904
26060
|
}
|
|
25905
26061
|
return NovoTitle;
|
|
25906
26062
|
}(NovoBaseTextElement));
|
|
@@ -25911,7 +26067,7 @@
|
|
|
25911
26067
|
host: {
|
|
25912
26068
|
class: 'novo-title',
|
|
25913
26069
|
},
|
|
25914
|
-
styles: [":host{color:
|
|
26070
|
+
styles: [":host{color:var(--text-main,#3d464d);display:block;font-size:var(--font-size-title);font-weight:500;line-height:1.5;text-overflow:ellipsis;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle}:host,:host.text-nowrap{white-space:nowrap}:host.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:host.text-size-default{font-size:inherit}:host.text-size-body{font-size:1.3rem}:host.text-size-xs{font-size:1rem}:host.text-size-sm{font-size:1.2rem}:host.text-size-md{font-size:1.3rem}:host.text-size-lg{font-size:1.6rem}:host.text-size-xl{font-size:2rem}:host.text-size-2xl{font-size:2.6rem}:host.text-size-3xl{font-size:3.2rem}:host.text-size-smaller{font-size:.8em}:host.text-size-larger{font-size:1.2em}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray,:host.text-color-grey{color:#9e9e9e}:host.text-color-bright,:host.text-color-offWhite{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202945}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202945}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-info,:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-danger,:host.text-color-error,:host.text-color-negative{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-billableCharge,:host.text-color-corporateUser,:host.text-color-credential,:host.text-color-distributionList,:host.text-color-earnCode,:host.text-color-invoiceStatement,:host.text-color-jobCode,:host.text-color-payableCharge,:host.text-color-person,:host.text-color-user{color:#696d79}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}:host.text-length-small{max-width:40ch}:host.text-length-medium{max-width:55ch}:host.text-length-large{max-width:70ch}:host.text-weight-hairline{font-weight:100}:host.text-weight-thin{font-weight:200}:host.text-weight-light{font-weight:300}:host.text-weight-normal{font-weight:400}:host.text-weight-medium{font-weight:500}:host.text-weight-semibold{font-weight:600}:host.text-weight-bold{font-weight:700}:host.text-weight-extrabold{font-weight:800}:host.text-weight-heavy{font-weight:900}:host.text-weight-lighter{font-weight:lighter}:host.text-weight-bolder{font-weight:bolder}"]
|
|
25915
26071
|
},] }
|
|
25916
26072
|
];
|
|
25917
26073
|
|
|
@@ -25938,6 +26094,8 @@
|
|
|
25938
26094
|
GapDirective,
|
|
25939
26095
|
AccentColorDirective,
|
|
25940
26096
|
FillColorDirective,
|
|
26097
|
+
FlexDirective,
|
|
26098
|
+
ThemeColorDirective,
|
|
25941
26099
|
],
|
|
25942
26100
|
declarations: [
|
|
25943
26101
|
NovoTemplate,
|
|
@@ -25954,6 +26112,8 @@
|
|
|
25954
26112
|
GapDirective,
|
|
25955
26113
|
AccentColorDirective,
|
|
25956
26114
|
FillColorDirective,
|
|
26115
|
+
FlexDirective,
|
|
26116
|
+
ThemeColorDirective,
|
|
25957
26117
|
],
|
|
25958
26118
|
},] }
|
|
25959
26119
|
];
|
|
@@ -26257,6 +26417,12 @@
|
|
|
26257
26417
|
if (_this.overlayRef) {
|
|
26258
26418
|
_this.overlayRef.updatePosition();
|
|
26259
26419
|
_this.opening.emit(true);
|
|
26420
|
+
setTimeout(function () {
|
|
26421
|
+
// TODO: @charlesabarnes Remove this once we remove table
|
|
26422
|
+
if (_this.overlayRef) {
|
|
26423
|
+
_this.overlayRef.updatePosition();
|
|
26424
|
+
}
|
|
26425
|
+
});
|
|
26260
26426
|
}
|
|
26261
26427
|
});
|
|
26262
26428
|
};
|
|
@@ -26267,7 +26433,7 @@
|
|
|
26267
26433
|
_this.overlayRef.detach();
|
|
26268
26434
|
_this.closingActionsSubscription.unsubscribe();
|
|
26269
26435
|
}
|
|
26270
|
-
_this.closing.emit(
|
|
26436
|
+
_this.closing.emit(false);
|
|
26271
26437
|
if (_this.panelOpen) {
|
|
26272
26438
|
_this.changeDetectorRef.markForCheck();
|
|
26273
26439
|
}
|
|
@@ -26505,6 +26671,10 @@
|
|
|
26505
26671
|
_this.parentScrollAction = 'close';
|
|
26506
26672
|
_this.side = 'default';
|
|
26507
26673
|
_this.scrollStrategy = 'reposition';
|
|
26674
|
+
/**
|
|
26675
|
+
* Keep dropdown open after an item is selected
|
|
26676
|
+
*/
|
|
26677
|
+
_this.keepOpen = false;
|
|
26508
26678
|
_this.width = -1; // Defaults to dynamic width (no hardcoded width value and no host width lookup)
|
|
26509
26679
|
_this.appendToBody = false; // Deprecated
|
|
26510
26680
|
_this.toggled = new i0.EventEmitter();
|
|
@@ -26529,7 +26699,7 @@
|
|
|
26529
26699
|
});
|
|
26530
26700
|
Object.defineProperty(NovoDropdownElement.prototype, "button", {
|
|
26531
26701
|
get: function () {
|
|
26532
|
-
return this.
|
|
26702
|
+
return this._trigger || this._button;
|
|
26533
26703
|
},
|
|
26534
26704
|
enumerable: false,
|
|
26535
26705
|
configurable: true
|
|
@@ -26540,13 +26710,21 @@
|
|
|
26540
26710
|
}
|
|
26541
26711
|
};
|
|
26542
26712
|
NovoDropdownElement.prototype.ngAfterContentInit = function () {
|
|
26713
|
+
var _this = this;
|
|
26543
26714
|
// Add a click handler to the button to toggle the menu
|
|
26544
26715
|
this.button.element.nativeElement.addEventListener('click', this.clickHandler);
|
|
26545
26716
|
this.button.element.nativeElement.tabIndex = -1;
|
|
26717
|
+
this.options.changes.pipe(operators.takeUntil(this._onDestroy)).subscribe(function () {
|
|
26718
|
+
_this._initKeyManager();
|
|
26719
|
+
_this._watchSelectionEvents();
|
|
26720
|
+
});
|
|
26546
26721
|
this._initKeyManager();
|
|
26547
26722
|
this._watchSelectionEvents();
|
|
26548
26723
|
this.focus();
|
|
26549
26724
|
};
|
|
26725
|
+
NovoDropdownElement.prototype.ngAfterViewInit = function () {
|
|
26726
|
+
this._watchPanelEvents();
|
|
26727
|
+
};
|
|
26550
26728
|
NovoDropdownElement.prototype.ngOnDestroy = function () {
|
|
26551
26729
|
this._onDestroy.next();
|
|
26552
26730
|
this._onDestroy.complete();
|
|
@@ -26596,6 +26774,7 @@
|
|
|
26596
26774
|
var key = event.key;
|
|
26597
26775
|
var isArrowKey = key === "ArrowDown" /* ArrowDown */ || key === "ArrowUp" /* ArrowUp */;
|
|
26598
26776
|
var isTyping = manager.isTyping();
|
|
26777
|
+
var isInputField = event.target;
|
|
26599
26778
|
if (isArrowKey && event.altKey) {
|
|
26600
26779
|
// Close the select on ALT + arrow key to match the native <select>
|
|
26601
26780
|
event.preventDefault();
|
|
@@ -26616,6 +26795,9 @@
|
|
|
26616
26795
|
}
|
|
26617
26796
|
});
|
|
26618
26797
|
}
|
|
26798
|
+
else if ("Escape" /* Escape */ === key) {
|
|
26799
|
+
this.closePanel();
|
|
26800
|
+
}
|
|
26619
26801
|
else {
|
|
26620
26802
|
var previouslyFocusedIndex = manager.activeItemIndex;
|
|
26621
26803
|
manager.onKeydown(event);
|
|
@@ -26624,16 +26806,23 @@
|
|
|
26624
26806
|
}
|
|
26625
26807
|
}
|
|
26626
26808
|
};
|
|
26809
|
+
NovoDropdownElement.prototype._watchPanelEvents = function () {
|
|
26810
|
+
var _this = this;
|
|
26811
|
+
var panelStateChanges = rxjs.merge(this.overlay.opening, this.overlay.closing);
|
|
26812
|
+
panelStateChanges.pipe(operators.takeUntil(this._onDestroy)).subscribe(function (event) { return _this.toggled.emit(event); });
|
|
26813
|
+
};
|
|
26627
26814
|
NovoDropdownElement.prototype._watchSelectionEvents = function () {
|
|
26628
26815
|
var _this = this;
|
|
26629
26816
|
var selectionEvents = this.options ? rxjs.merge.apply(void 0, __spread(this.options.map(function (option) { return option.onSelectionChange; }))) : rxjs.of();
|
|
26630
26817
|
this._selectedOptionChanges.unsubscribe();
|
|
26631
26818
|
this._selectedOptionChanges = selectionEvents.pipe(operators.takeUntil(this._onDestroy)).subscribe(function (event) {
|
|
26632
26819
|
// this.handleSelection(event.source, event.isUserInput);
|
|
26633
|
-
if (event.isUserInput && !_this.multiple
|
|
26820
|
+
if (event.isUserInput && !_this.multiple) {
|
|
26634
26821
|
_this._clearPreviousSelectedOption(_this._keyManager.activeItem);
|
|
26635
|
-
_this.
|
|
26636
|
-
|
|
26822
|
+
if (!_this.keepOpen && _this.panelOpen) {
|
|
26823
|
+
_this.closePanel();
|
|
26824
|
+
_this.focus();
|
|
26825
|
+
}
|
|
26637
26826
|
}
|
|
26638
26827
|
});
|
|
26639
26828
|
};
|
|
@@ -26702,6 +26891,7 @@
|
|
|
26702
26891
|
containerClass: [{ type: i0.Input }],
|
|
26703
26892
|
side: [{ type: i0.Input }],
|
|
26704
26893
|
scrollStrategy: [{ type: i0.Input }],
|
|
26894
|
+
keepOpen: [{ type: i0.Input }],
|
|
26705
26895
|
height: [{ type: i0.Input }],
|
|
26706
26896
|
width: [{ type: i0.Input }],
|
|
26707
26897
|
appendToBody: [{ type: i0.Input }],
|
|
@@ -26715,6 +26905,10 @@
|
|
|
26715
26905
|
multiple: [{ type: i0.Input }],
|
|
26716
26906
|
_handleKeydown: [{ type: i0.HostListener, args: ['keydown', ['$event'],] }]
|
|
26717
26907
|
};
|
|
26908
|
+
__decorate([
|
|
26909
|
+
BooleanInput(),
|
|
26910
|
+
__metadata("design:type", Boolean)
|
|
26911
|
+
], NovoDropdownElement.prototype, "keepOpen", void 0);
|
|
26718
26912
|
// Deprecated below here ---------------------------
|
|
26719
26913
|
var NovoItemElement = /** @class */ (function () {
|
|
26720
26914
|
function NovoItemElement(dropdown, element) {
|
|
@@ -26864,7 +27058,10 @@
|
|
|
26864
27058
|
{ type: i0.Component, args: [{
|
|
26865
27059
|
selector: 'novo-icon',
|
|
26866
27060
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
26867
|
-
template: "\n <i [class]=\"iconName\"\n ><span (cdkObserveContent)=\"projectContentChanged($event)\"><ng-content></ng-content></span\n ></i>\n "
|
|
27061
|
+
template: "\n <i [class]=\"iconName\"\n ><span (cdkObserveContent)=\"projectContentChanged($event)\"><ng-content></ng-content></span\n ></i>\n ",
|
|
27062
|
+
host: {
|
|
27063
|
+
class: 'novo-icon',
|
|
27064
|
+
}
|
|
26868
27065
|
},] }
|
|
26869
27066
|
];
|
|
26870
27067
|
NovoIconComponent.ctorParameters = function () { return [
|
|
@@ -26972,7 +27169,7 @@
|
|
|
26972
27169
|
NovoItemHeaderElement.decorators = [
|
|
26973
27170
|
{ type: i0.Component, args: [{
|
|
26974
27171
|
selector: 'item-header, novo-item-header',
|
|
26975
|
-
template: "\n <novo-title class=\"novo-item-header-container\"
|
|
27172
|
+
template: "\n <novo-title class=\"novo-item-header-container\" size=\"md\">\n <ng-content select=\"item-avatar, novo-item-avatar\"></ng-content>\n <ng-content select=\"item-title, novo-item-title\"></ng-content>\n <ng-content select=\"item-header-end, novo-item-header-end\"></ng-content>\n </novo-title>\n ",
|
|
26976
27173
|
host: {
|
|
26977
27174
|
class: 'novo-item-header',
|
|
26978
27175
|
}
|
|
@@ -27274,7 +27471,6 @@
|
|
|
27274
27471
|
},] }
|
|
27275
27472
|
];
|
|
27276
27473
|
|
|
27277
|
-
// NG2
|
|
27278
27474
|
// Value accessor for the component (supports ngModel)
|
|
27279
27475
|
var SWITCH_VALUE_ACCESSOR = {
|
|
27280
27476
|
provide: forms.NG_VALUE_ACCESSOR,
|
|
@@ -27284,17 +27480,19 @@
|
|
|
27284
27480
|
var NovoSwitchElement = /** @class */ (function () {
|
|
27285
27481
|
function NovoSwitchElement(ref) {
|
|
27286
27482
|
this.ref = ref;
|
|
27483
|
+
this.theme = 'ocean';
|
|
27484
|
+
this.icons = ['x', 'check'];
|
|
27485
|
+
this.disabled = false;
|
|
27287
27486
|
this.onChange = new i0.EventEmitter();
|
|
27288
|
-
this._disabled = false;
|
|
27289
27487
|
this.onModelChange = function () { };
|
|
27290
27488
|
this.onModelTouched = function () { };
|
|
27291
27489
|
}
|
|
27292
|
-
Object.defineProperty(NovoSwitchElement.prototype, "
|
|
27490
|
+
Object.defineProperty(NovoSwitchElement.prototype, "value", {
|
|
27293
27491
|
get: function () {
|
|
27294
|
-
return this.
|
|
27492
|
+
return this._value;
|
|
27295
27493
|
},
|
|
27296
27494
|
set: function (value) {
|
|
27297
|
-
this.
|
|
27495
|
+
this._value = value;
|
|
27298
27496
|
},
|
|
27299
27497
|
enumerable: false,
|
|
27300
27498
|
configurable: true
|
|
@@ -27313,13 +27511,13 @@
|
|
|
27313
27511
|
if (this.disabled) {
|
|
27314
27512
|
return;
|
|
27315
27513
|
}
|
|
27316
|
-
this.
|
|
27317
|
-
this.onChange.next(this.
|
|
27318
|
-
this.onModelChange(this.
|
|
27514
|
+
this.value = !this.value;
|
|
27515
|
+
this.onChange.next(this.value);
|
|
27516
|
+
this.onModelChange(this.value);
|
|
27319
27517
|
this.ref.markForCheck();
|
|
27320
27518
|
};
|
|
27321
27519
|
NovoSwitchElement.prototype.writeValue = function (model) {
|
|
27322
|
-
this.
|
|
27520
|
+
this.value = model;
|
|
27323
27521
|
this.ref.markForCheck();
|
|
27324
27522
|
};
|
|
27325
27523
|
NovoSwitchElement.prototype.registerOnChange = function (fn) {
|
|
@@ -27334,10 +27532,11 @@
|
|
|
27334
27532
|
{ type: i0.Component, args: [{
|
|
27335
27533
|
selector: 'novo-switch',
|
|
27336
27534
|
providers: [SWITCH_VALUE_ACCESSOR],
|
|
27337
|
-
template: "\n <div (click)=\"toggle($event)\">\n <div class=\"novo-switch-container\">\n <div class=\"novo-switch-bar\"></div>\n <div class=\"novo-switch-thumb-container\">\n <div class=\"novo-switch-thumb\"
|
|
27535
|
+
template: "\n <div (click)=\"toggle($event)\">\n <div class=\"novo-switch-container\">\n <div class=\"novo-switch-bar\"></div>\n <div class=\"novo-switch-thumb-container\">\n <div class=\"novo-switch-thumb\">\n <novo-icon *ngIf=\"!value\" smaller>{{ icons[0] }}</novo-icon>\n <novo-icon *ngIf=\"value\" smaller>{{ icons[1] }}</novo-icon>\n </div>\n </div>\n </div>\n <div class=\"novo-switch-label\"><ng-content></ng-content></div>\n </div>\n ",
|
|
27338
27536
|
host: {
|
|
27339
27537
|
role: 'checkbox',
|
|
27340
|
-
|
|
27538
|
+
class: 'novo-switch',
|
|
27539
|
+
'[attr.aria-checked]': 'value',
|
|
27341
27540
|
'[attr.aria-disabled]': 'disabled',
|
|
27342
27541
|
'(keydown)': 'onKeydown($event)',
|
|
27343
27542
|
'[class]': 'theme',
|
|
@@ -27349,11 +27548,15 @@
|
|
|
27349
27548
|
]; };
|
|
27350
27549
|
NovoSwitchElement.propDecorators = {
|
|
27351
27550
|
theme: [{ type: i0.Input }],
|
|
27352
|
-
|
|
27353
|
-
disabled: [{ type: i0.Input, args: ['disabled',] }]
|
|
27551
|
+
icons: [{ type: i0.Input }],
|
|
27552
|
+
disabled: [{ type: i0.Input }, { type: i0.HostBinding, args: ['class.novo-switch-disabled',] }],
|
|
27553
|
+
onChange: [{ type: i0.Output }]
|
|
27354
27554
|
};
|
|
27555
|
+
__decorate([
|
|
27556
|
+
BooleanInput(),
|
|
27557
|
+
__metadata("design:type", Boolean)
|
|
27558
|
+
], NovoSwitchElement.prototype, "disabled", void 0);
|
|
27355
27559
|
|
|
27356
|
-
// NG2
|
|
27357
27560
|
var NovoSwitchModule = /** @class */ (function () {
|
|
27358
27561
|
function NovoSwitchModule() {
|
|
27359
27562
|
}
|
|
@@ -27361,7 +27564,7 @@
|
|
|
27361
27564
|
}());
|
|
27362
27565
|
NovoSwitchModule.decorators = [
|
|
27363
27566
|
{ type: i0.NgModule, args: [{
|
|
27364
|
-
imports: [common.CommonModule, forms.FormsModule],
|
|
27567
|
+
imports: [common.CommonModule, forms.FormsModule, NovoIconModule],
|
|
27365
27568
|
declarations: [NovoSwitchElement],
|
|
27366
27569
|
exports: [NovoSwitchElement],
|
|
27367
27570
|
},] }
|
|
@@ -28355,7 +28558,7 @@
|
|
|
28355
28558
|
}());
|
|
28356
28559
|
NovoPickerModule.decorators = [
|
|
28357
28560
|
{ type: i0.NgModule, args: [{
|
|
28358
|
-
imports: [common.CommonModule, forms.FormsModule, NovoLoadingModule, NovoListModule, NovoOverlayModule, NovoSwitchModule],
|
|
28561
|
+
imports: [common.CommonModule, forms.FormsModule, NovoCommonModule, NovoLoadingModule, NovoListModule, NovoOverlayModule, NovoSwitchModule],
|
|
28359
28562
|
declarations: [
|
|
28360
28563
|
NovoPickerElement,
|
|
28361
28564
|
PickerResults,
|
|
@@ -28927,7 +29130,7 @@
|
|
|
28927
29130
|
NovoCalendarElement.decorators = [
|
|
28928
29131
|
{ type: i0.Component, args: [{
|
|
28929
29132
|
selector: 'novo-calendar',
|
|
28930
|
-
template: "<div class=\"calendar-header\">\n <novo-button theme=\"icon\" icon=\"previous\" size=\"small\" (click)=\"prevMonth($event)\"\n data-automation-id=\"calendar-previous\"></novo-button>\n <ng-container *ngFor=\"let month of months; let i = index;\">\n <span class=\"heading\" [class.secondary]=\"i > 0\">\n <span class=\"month\" (click)=\"openView($event, 'months')\"\n data-automation-id=\"header-month\">{{ month.label }}</span>\n <span class=\"year\" (click)=\"openView($event, 'years')\"\n data-automation-id=\"header-year\">{{ month.date?.getFullYear() }}</span>\n </span>\n </ng-container>\n <novo-button theme=\"icon\" icon=\"next\" size=\"small\" (click)=\"nextMonth($event)\" data-automation-id=\"calendar-next\">\n </novo-button>\n</div>\n<section class=\"calendar-content\" [ngSwitch]=\"activeView\">\n <ng-container *ngSwitchCase=\"'days'\">\n <ng-container *ngFor=\"let month of months; let i = index\">\n <div class=\"calendar-header\" *ngIf=\"layout==='vertical' && i > 0\">\n <span class=\"previous\" (click)=\"prevMonth($event)\" data-automation-id=\"calendar-previous\"></span>\n <span class=\"heading\">\n <span class=\"month\" (click)=\"openView($event, 'months')\"\n data-automation-id=\"header-month\">{{ month.label }}</span>\n <span class=\"year\" (click)=\"openView($event, 'years')\"\n data-automation-id=\"header-year\">{{ month.date?.getFullYear() }}</span>\n </span>\n <span class=\"next\" (click)=\"nextMonth($event)\" data-automation-id=\"calendar-next\"></span>\n </div>\n <novo-month-view\n class=\"month-view\"\n [activeDate]=\"month.date\"\n [selected]=\"selected\"\n [preview]=\"preview\"\n [overlays]=\"overlays\"\n [isRange]=\"_isRange()\"\n [hideOverflowDays]=\"months.length > 1\"\n [weekStartsOn]=\"weekStartsOn\"\n (select)=\"dateSelected($event)\"\n (hover)=\"updatePreview($event)\"></novo-month-view>\n </ng-container>\n </ng-container>\n <novo-month-select\n *ngSwitchCase=\"'months'\"\n [activeDate]=\"activeDate\"\n [selected]=\"selected\"\n (select)=\"monthSelected($event)\">\n </novo-month-select>\n <novo-year-select\n *ngSwitchCase=\"'years'\"\n [activeDate]=\"activeDate\"\n [selected]=\"selected\"\n (select)=\"yearSelected($event)\">\n </novo-year-select>\n</section>",
|
|
29133
|
+
template: "<div class=\"calendar-header\">\n <novo-button theme=\"icon\" icon=\"previous\" size=\"small\" (click)=\"prevMonth($event)\"\n data-automation-id=\"calendar-previous\"></novo-button>\n <ng-container *ngFor=\"let month of months; let i = index;\">\n <span class=\"heading\" [class.secondary]=\"i > 0\">\n <span class=\"month\" (click)=\"openView($event, 'months')\"\n data-automation-id=\"header-month\">{{ month.label }}</span>\n <span class=\"year\" (click)=\"openView($event, 'years')\"\n data-automation-id=\"header-year\">{{ month.date?.getFullYear() }}</span>\n </span>\n </ng-container>\n <novo-button theme=\"icon\" icon=\"next\" size=\"small\" (click)=\"nextMonth($event)\" data-automation-id=\"calendar-next\">\n </novo-button>\n</div>\n<section class=\"calendar-content\" [ngSwitch]=\"activeView\">\n <ng-container *ngSwitchCase=\"'days'\">\n <ng-container *ngFor=\"let month of months; let i = index\">\n <div class=\"calendar-header\" *ngIf=\"layout==='vertical' && i > 0\">\n <span class=\"previous\" (click)=\"prevMonth($event)\" data-automation-id=\"calendar-previous\"></span>\n <span class=\"heading\">\n <span class=\"month\" (click)=\"openView($event, 'months')\"\n data-automation-id=\"header-month\">{{ month.label }}</span>\n <span class=\"year\" (click)=\"openView($event, 'years')\"\n data-automation-id=\"header-year\">{{ month.date?.getFullYear() }}</span>\n </span>\n <span class=\"next\" (click)=\"nextMonth($event)\" data-automation-id=\"calendar-next\"></span>\n </div>\n <novo-month-view\n class=\"month-view\"\n [activeDate]=\"month.date\"\n [selected]=\"selected\"\n [preview]=\"preview\"\n [overlays]=\"overlays\"\n [isRange]=\"_isRange()\"\n [hideOverflowDays]=\"months.length > 1\"\n [weekStartsOn]=\"weekStartsOn\"\n [disabledDateMessage]=\"disabledDateMessage\"\n [minDate]=\"minDate\"\n [maxDate]=\"maxDate\"\n (select)=\"dateSelected($event)\"\n (hover)=\"updatePreview($event)\"></novo-month-view>\n </ng-container>\n </ng-container>\n <novo-month-select\n *ngSwitchCase=\"'months'\"\n [activeDate]=\"activeDate\"\n [selected]=\"selected\"\n (select)=\"monthSelected($event)\">\n </novo-month-select>\n <novo-year-select\n *ngSwitchCase=\"'years'\"\n [activeDate]=\"activeDate\"\n [selected]=\"selected\"\n (select)=\"yearSelected($event)\">\n </novo-year-select>\n</section>",
|
|
28931
29134
|
styles: [":host(.layout-horizontal){font-size:1.2rem}:host(.layout-horizontal) .calendar-content{flex-flow:row nowrap}:host(.layout-horizontal) .month-view+.month-view{border-collapse:unset;border-left:1px solid #dbdbdb;margin-left:.5rem;padding-left:.5rem}:host(.layout-vertical) .calendar-content{flex-flow:column nowrap}:host(.layout-vertical) .calendar-header .heading.secondary{display:none}:host{-moz-user-select:none;-webkit-user-select:none;background:var(--background-bright);color:var(--text-bright);display:block;position:relative;text-align:center;user-select:none;width:100%}:host .calendar-content{display:flex;height:-webkit-min-content;height:-moz-min-content;height:min-content;left:0;overflow:hidden;position:static;top:0;width:100%}:host .calendar-header{-webkit-user-select:none;align-items:center;border-bottom:1px solid var(--border);border-collapse:collapse;cursor:default;display:flex;flex-flow:row nowrap;justify-content:space-between;padding:1rem .8rem;width:100%}:host .calendar-header .previous{cursor:pointer;display:inline-block;height:15px;width:30px}:host .calendar-header .previous:after{border-bottom:4px solid transparent;border-right:4px solid #aaa;border-top:4px solid transparent;content:\"\";display:inline-block;height:0;vertical-align:middle;width:0}:host .calendar-header .previous:hover:after{border-right:4px solid #4a89dc;cursor:pointer}:host .calendar-header .heading{color:#4a89dc;display:inline-block;flex:1;font-weight:600;vertical-align:middle}:host .calendar-header .heading .month{border-radius:2px;padding:3px 8px}:host .calendar-header .heading .month:hover{background:#4a89dc;color:#fff;cursor:pointer}:host .calendar-header .heading .year{border-radius:2px;padding:3px 8px}:host .calendar-header .heading .year:hover{background:#4a89dc;color:#fff;cursor:pointer}:host .calendar-header .next{cursor:pointer;display:inline-block;height:15px;width:30px}:host .calendar-header .next:before{border-bottom:4px solid transparent;border-left:4px solid #aaa;border-top:4px solid transparent;content:\"\";display:inline-block;height:0;vertical-align:middle;width:0}:host .calendar-header .next:hover:before{border-left:4px solid #4a89dc;cursor:pointer;opacity:1}"]
|
|
28932
29135
|
},] }
|
|
28933
29136
|
];
|
|
@@ -28940,6 +29143,8 @@
|
|
|
28940
29143
|
NovoCalendarElement.propDecorators = {
|
|
28941
29144
|
minYear: [{ type: i0.Input }],
|
|
28942
29145
|
maxYear: [{ type: i0.Input }],
|
|
29146
|
+
minDate: [{ type: i0.Input }],
|
|
29147
|
+
maxDate: [{ type: i0.Input }],
|
|
28943
29148
|
activeView: [{ type: i0.Input }],
|
|
28944
29149
|
layout: [{ type: i0.Input }],
|
|
28945
29150
|
selected: [{ type: i0.Input }],
|
|
@@ -28948,6 +29153,7 @@
|
|
|
28948
29153
|
previewChange: [{ type: i0.Output }],
|
|
28949
29154
|
activeDateChange: [{ type: i0.Output }],
|
|
28950
29155
|
overlays: [{ type: i0.Input }],
|
|
29156
|
+
disabledDateMessage: [{ type: i0.Input }],
|
|
28951
29157
|
activeDate: [{ type: i0.Input }],
|
|
28952
29158
|
weekStartsOn: [{ type: i0.Input }],
|
|
28953
29159
|
numberOfMonths: [{ type: i0.Input }],
|
|
@@ -29130,9 +29336,9 @@
|
|
|
29130
29336
|
NovoMonthViewElement.decorators = [
|
|
29131
29337
|
{ type: i0.Component, args: [{
|
|
29132
29338
|
selector: 'novo-month-view',
|
|
29133
|
-
template: "<div class=\"calendar-table\" cellspacing=\"0\" cellpadding=\"0\">\n <div class=\"calendar-thead\">\n <div class=\"calendar-th weekday\" *ngFor=\"let day of weekdays\" title=\"{{ day }}\"\n [attr.data-automation-id]=\"day.substr(0, 2)\">\n {{ day.substr(0, 2) }}\n </div>\n </div>\n <div class=\"calendar-body\">\n <div class=\"calendar-week\" *ngFor=\"let week of weeks\">\n <div class=\"calendar-date\" *ngFor=\"let day of week.days\"\n [class.today]=\"day.isToday\"\n [class.notinmonth]=\"day.date.getMonth() !== activeDate.getMonth()\"\n [class.selected]=\"_isSelected(day.date)\"\n [class.preview]=\"_isPreview(day.date)\"\n [class.overlay]=\"_isOverlay(day.date)\"\n [class]=\"_hasOverlayType(day.date)\"\n [class.inRange]=\"_isInRange(day.date)\"\n [class.rangeStart]=\"_isRangeStart(day.date)\"\n [class.rangeEnd]=\"_isRangeEnd(day.date)\"\n [class.inPreview]=\"_isInPreview(day.date)\"\n [class.previewStart]=\"_isPreviewStart(day.date)\"\n [class.previewEnd]=\"_isPreviewEnd(day.date)\"\n [class.calendar-date]=\"true\"\n [attr.aria-label]=\"day.name\"\n [attr.aria-disabled]=\"isDisabled(day.date)\"\n [attr.aria-selected]=\"_isSelected(day.date)\"\n [attr.data-automation-id]=\"day.number\"\n (mouseover)=\"onHover($event, day)\">\n <novo-button\n class=\"day\"\n [attr.data-automation-id]=\"day.number\"\n [disabled]=\"isDisabled(day.date)\"\n (click)=\"onSelect($event, day)\">\n {{ day.number }}\n </novo-button>\n </div>\n </div>\n </div>\n</div>",
|
|
29339
|
+
template: "<div class=\"calendar-table\" cellspacing=\"0\" cellpadding=\"0\">\n <div class=\"calendar-thead\">\n <div class=\"calendar-th weekday\" *ngFor=\"let day of weekdays\" title=\"{{ day }}\"\n [attr.data-automation-id]=\"day.substr(0, 2)\">\n {{ day.substr(0, 2) }}\n </div>\n </div>\n <div class=\"calendar-body\">\n <div class=\"calendar-week\" *ngFor=\"let week of weeks\">\n <div class=\"calendar-date\" *ngFor=\"let day of week.days\"\n [class.today]=\"day.isToday\"\n [class.notinmonth]=\"day.date.getMonth() !== activeDate.getMonth()\"\n [class.selected]=\"_isSelected(day.date)\"\n [class.preview]=\"_isPreview(day.date)\"\n [class.overlay]=\"_isOverlay(day.date)\"\n [class]=\"_hasOverlayType(day.date)\"\n [class.inRange]=\"_isInRange(day.date)\"\n [class.rangeStart]=\"_isRangeStart(day.date)\"\n [class.rangeEnd]=\"_isRangeEnd(day.date)\"\n [class.inPreview]=\"_isInPreview(day.date)\"\n [class.previewStart]=\"_isPreviewStart(day.date)\"\n [class.previewEnd]=\"_isPreviewEnd(day.date)\"\n [class.calendar-date]=\"true\"\n [attr.aria-label]=\"day.name\"\n [attr.aria-disabled]=\"isDisabled(day.date)\"\n [attr.aria-selected]=\"_isSelected(day.date)\"\n [attr.data-automation-id]=\"day.number\"\n [title]=\"isDisabled(day.date) ? disabledDateMessage : ''\"\n (mouseover)=\"onHover($event, day)\">\n <novo-button\n class=\"day\"\n [attr.data-automation-id]=\"day.number\"\n [disabled]=\"isDisabled(day.date)\"\n (click)=\"onSelect($event, day)\">\n {{ day.number }}\n </novo-button>\n </div>\n </div>\n </div>\n</div>",
|
|
29134
29340
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
29135
|
-
styles: [":host{background:var(--background-bright);height:-webkit-min-content;height:-moz-min-content;height:min-content;position:relative;width:100%}:host .calendar-table{display:table}:host .calendar-table .calendar-thead{display:table-header-group}:host .calendar-table .calendar-th{display:table-cell;padding:10px 0;width:30px}:host .calendar-table .calendar-body{display:table-row-group}:host .calendar-table .calendar-week{display:table-row}:host .calendar-table .month,:host .calendar-table .year{border-radius:3px;color:#666;font-weight:400;margin:5px;overflow-x:hidden;padding:4px 15px;text-align:center;text-overflow:ellipsis}:host .calendar-table .month.selected,:host .calendar-table .year.selected{background-color:#4a89dc;color:#fff}:host .calendar-table .month:hover,:host .calendar-table .year:hover{background-color:#4a89dc;color:#fff;cursor:pointer}:host .calendar-table .day{background-color:transparent;border:none;border-radius:50%;box-shadow:inset 0 0 0 2px transparent;color:var(--text-main,#3d464d);font-size:1.2rem;height:3.2rem;line-height:1;padding:1px;position:relative;transition:box-shadow .14s ease-in-out;width:3.2rem}:host .calendar-table .day:focus{outline:none}:host .calendar-table .day:disabled{box-shadow:none!important;color:var(--text-muted,#d7d9e4);cursor:not-allowed!important}:host .calendar-table .calendar-date{display:table-cell}:host .calendar-table .calendar-date.notinmonth{color:var(--text-muted,#d7d9e4)}:host .calendar-table .calendar-date:hover .day{box-shadow:inset 0 0 0 2px #4a89dc;cursor:pointer}:host .calendar-table .calendar-date.inRange:hover .day{box-shadow:inset 0 0 0 2px #fff}:host .calendar-table .calendar-date.inRange{background:#4a89dc;border-radius:0;color:#fff;height:3.2rem;width:3.2rem}:host .calendar-table .calendar-date.inRange .day{color:#fff}:host .calendar-table .calendar-date.rangeStart{border-
|
|
29341
|
+
styles: [":host{background:var(--background-bright);height:-webkit-min-content;height:-moz-min-content;height:min-content;position:relative;width:100%}:host .calendar-table{display:table}:host .calendar-table .calendar-thead{display:table-header-group}:host .calendar-table .calendar-th{display:table-cell;padding:10px 0;width:30px}:host .calendar-table .calendar-body{display:table-row-group}:host .calendar-table .calendar-week{display:table-row}:host .calendar-table .month,:host .calendar-table .year{border-radius:3px;color:#666;font-weight:400;margin:5px;overflow-x:hidden;padding:4px 15px;text-align:center;text-overflow:ellipsis}:host .calendar-table .month.selected,:host .calendar-table .year.selected{background-color:#4a89dc;color:#fff}:host .calendar-table .month:hover,:host .calendar-table .year:hover{background-color:#4a89dc;color:#fff;cursor:pointer}:host .calendar-table .day{background-color:transparent;border:none;border-radius:50%;box-shadow:inset 0 0 0 2px transparent;color:var(--text-main,#3d464d);font-size:1.2rem;height:3.2rem;line-height:1;padding:1px;position:relative;transition:box-shadow .14s ease-in-out;width:3.2rem}:host .calendar-table .day:focus{outline:none}:host .calendar-table .day:disabled{box-shadow:none!important;color:var(--text-muted,#d7d9e4);cursor:not-allowed!important}:host .calendar-table .calendar-date{display:table-cell}:host .calendar-table .calendar-date.noinmonth>novo-button.day,:host .calendar-table .calendar-date.notinmonth{color:var(--text-muted,#d7d9e4)}:host .calendar-table .calendar-date:hover .day{box-shadow:inset 0 0 0 2px #4a89dc;cursor:pointer}:host .calendar-table .calendar-date.inRange:hover .day{box-shadow:inset 0 0 0 2px #fff}:host .calendar-table .calendar-date.inRange{background:#4a89dc;border-radius:0;color:#fff;height:3.2rem;width:3.2rem}:host .calendar-table .calendar-date.inRange .day{color:#fff}:host .calendar-table .calendar-date.rangeStart{border-radius:50% 0 0 50%;box-shadow:none!important;position:relative}:host .calendar-table .calendar-date.rangeStart:before{background:#4a89dc;content:\"\";height:100%;position:absolute;right:-5px;top:0;width:10px;z-index:-1}:host .calendar-table .calendar-date.rangeEnd{border-radius:0 50% 50% 0;box-shadow:none!important;position:relative}:host .calendar-table .calendar-date.rangeEnd:before{background:#4a89dc;content:\"\";height:100%;left:-5px;position:absolute;top:0;width:10px;z-index:-1}:host .calendar-table .calendar-date.selected .day{background:#4a89dc;color:#fff}:host .calendar-table .calendar-date.preview:not(.previewStart):not(.previewEnd) .day{border:1px dashed #4a89dc}:host .calendar-table .calendar-date.preview:not(.previewStart):not(.previewEnd).selected .day{border:1px dashed #9dbeff}:host .calendar-table .calendar-date.today .day:after{border-radius:100%;box-shadow:inset 0 0 0 2px #dbdbdb;content:\"\";height:100%;left:0;margin:0 auto;max-width:3.2rem;position:absolute;top:0;width:100%}:host .calendar-table .calendar-date.today.inRange .day:after,:host .calendar-table .calendar-date.today.selected .day:after{box-shadow:inset 0 0 0 2px #9dbeff}:host .calendar-table .calendar-date.inPreview .day{border-bottom:1px dashed #4a89dc;border-radius:0;border-top:1px dashed #4a89dc}:host .calendar-table .calendar-date.previewStart .day{border-bottom-right-radius:0;border-left:1px dashed #4a89dc;border-radius:50%;border-top-right-radius:0;box-shadow:none!important}:host .calendar-table .calendar-date.previewEnd .day{border-bottom-left-radius:0;border-radius:50%;border-right:1px dashed #4a89dc;border-top-left-radius:0;box-shadow:none!important}"]
|
|
29136
29342
|
},] }
|
|
29137
29343
|
];
|
|
29138
29344
|
NovoMonthViewElement.ctorParameters = function () { return [
|
|
@@ -29148,6 +29354,7 @@
|
|
|
29148
29354
|
selected: [{ type: i0.Input }],
|
|
29149
29355
|
preview: [{ type: i0.Input }],
|
|
29150
29356
|
overlays: [{ type: i0.Input }],
|
|
29357
|
+
disabledDateMessage: [{ type: i0.Input }],
|
|
29151
29358
|
isRange: [{ type: i0.Input }],
|
|
29152
29359
|
hideOverflowDays: [{ type: i0.Input }, { type: i0.HostBinding, args: ['class.hide-overflow-days',] }],
|
|
29153
29360
|
weekStartsOn: [{ type: i0.Input }],
|
|
@@ -29325,7 +29532,7 @@
|
|
|
29325
29532
|
};
|
|
29326
29533
|
CardElement.prototype.ngOnChanges = function (changes) {
|
|
29327
29534
|
this.config = this.config || {};
|
|
29328
|
-
this.cardAutomationId = (this.title || this.config.title || 'no-title').toLowerCase().replace(/\s/g, '-') + "-card";
|
|
29535
|
+
this.cardAutomationId = (this.title || this.config.title || 'no-title').trim().toLowerCase().replace(/\s/g, '-') + "-card";
|
|
29329
29536
|
var newIcon = this.icon || this.config.icon;
|
|
29330
29537
|
var newMessageIcon = this.messageIcon || this.config.messageIcon;
|
|
29331
29538
|
this.iconClass = newIcon ? "bhi-" + newIcon : null;
|
|
@@ -29547,30 +29754,12 @@
|
|
|
29547
29754
|
configurable: true
|
|
29548
29755
|
});
|
|
29549
29756
|
NovoNavElement.prototype.select = function (item) {
|
|
29550
|
-
|
|
29551
|
-
|
|
29552
|
-
*/
|
|
29553
|
-
function _deactivateAllItems(items) {
|
|
29554
|
-
items.forEach(function (t) {
|
|
29555
|
-
if (t.active === true) {
|
|
29556
|
-
// t.deselected.next();
|
|
29557
|
-
}
|
|
29558
|
-
t.active = false;
|
|
29559
|
-
});
|
|
29560
|
-
}
|
|
29561
|
-
_deactivateAllItems(this.items);
|
|
29757
|
+
// Deactivate all other tabs
|
|
29758
|
+
this._deactivateAllItems(this.items);
|
|
29562
29759
|
item.active = true;
|
|
29563
29760
|
if (this.outlet) {
|
|
29564
29761
|
this.outlet.show(this.items.indexOf(item));
|
|
29565
29762
|
}
|
|
29566
|
-
// TODO - remove hack to make DOM rerender - jgodi
|
|
29567
|
-
var element = document.querySelector('novo-tab-link.active span.indicator');
|
|
29568
|
-
if (element) {
|
|
29569
|
-
element.style.opacity = 0.99;
|
|
29570
|
-
setTimeout(function () {
|
|
29571
|
-
element.style.opacity = 1;
|
|
29572
|
-
}, 10);
|
|
29573
|
-
}
|
|
29574
29763
|
};
|
|
29575
29764
|
NovoNavElement.prototype.add = function (item) {
|
|
29576
29765
|
if (this.items.length === 0) {
|
|
@@ -29579,6 +29768,14 @@
|
|
|
29579
29768
|
}
|
|
29580
29769
|
this.items.push(item);
|
|
29581
29770
|
};
|
|
29771
|
+
NovoNavElement.prototype._deactivateAllItems = function (items) {
|
|
29772
|
+
items.forEach(function (t) {
|
|
29773
|
+
if (t.active === true) {
|
|
29774
|
+
// t.deselected.next();
|
|
29775
|
+
}
|
|
29776
|
+
t.active = false;
|
|
29777
|
+
});
|
|
29778
|
+
};
|
|
29582
29779
|
return NovoNavElement;
|
|
29583
29780
|
}());
|
|
29584
29781
|
NovoNavElement.decorators = [
|
|
@@ -29709,11 +29906,12 @@
|
|
|
29709
29906
|
this.disabled = false;
|
|
29710
29907
|
this.nav = nav;
|
|
29711
29908
|
this.nav.add(this);
|
|
29909
|
+
}
|
|
29910
|
+
NovoTabLinkElement.prototype.ngOnInit = function () {
|
|
29712
29911
|
if (this.isLinkActive(this.link)) {
|
|
29713
29912
|
this.nav.select(this);
|
|
29714
29913
|
}
|
|
29715
|
-
}
|
|
29716
|
-
NovoTabLinkElement.prototype.ngOnInit = function () { };
|
|
29914
|
+
};
|
|
29717
29915
|
NovoTabLinkElement.prototype.select = function () {
|
|
29718
29916
|
if (!this.disabled) {
|
|
29719
29917
|
this.nav.select(this);
|
|
@@ -29721,7 +29919,6 @@
|
|
|
29721
29919
|
var el = document.querySelector("#" + this.spy);
|
|
29722
29920
|
el === null || el === void 0 ? void 0 : el.scrollIntoView(true);
|
|
29723
29921
|
}
|
|
29724
|
-
this.cdr.detectChanges();
|
|
29725
29922
|
}
|
|
29726
29923
|
};
|
|
29727
29924
|
NovoTabLinkElement.prototype.isLinkActive = function (link) {
|
|
@@ -30560,7 +30757,7 @@
|
|
|
30560
30757
|
'(focus)': 'focus()',
|
|
30561
30758
|
'(blur)': '_blur()',
|
|
30562
30759
|
},
|
|
30563
|
-
styles: [".novo-chip{-moz-appearance:none;-webkit-appearance:none;-webkit-tap-highlight-color:transparent;align-items:center;background:var(--background-main);border:none;border:1px solid transparent;border-radius:.4rem;box-sizing:border-box;color:inherit;cursor:default;display:inline;display:inline-flex;font-size:var(--font-size-text);font-weight:400;gap:1rem;height:1px;min-height:2.4rem;padding:0 1rem;position:relative;transition:all .2s ease-in-out}.novo-chip.novo-chip-selectable{color:var(--selection)}.novo-chip.novo-chip-selectable:after{background-color:#000;border-radius:inherit;bottom:0;content:\"\";left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .2s ease-in-out}.novo-chip.novo-chip-selectable:focus{border:1px solid var(--selection);outline:none}.novo-chip.novo-chip-selectable:focus:after{opacity:.16}.novo-chip.novo-chip-selectable:hover{border:1px solid var(--selection)}.novo-chip.novo-chip-disabled{opacity:.4;pointer-events:none}.novo-chip.novo-chip-disabled:after{opacity:0}.novo-chip.novo-chip-disabled .novo-chip-remove,.novo-chip.novo-chip-disabled .novo-chip-trailing-icon{cursor:default}.novo-chip .novo-chip-avatar::not(novo-icon){height:24px;width:24px}.novo-chip .novo-chip-avatar{-o-object-fit:cover;align-items:center;border-radius:50%;display:flex;justify-content:center;margin-left:0;margin-right:0;object-fit:cover;overflow:hidden}.novo-chip .novo-chip-remove,.novo-chip .novo-chip-trailing-icon{cursor:pointer;height:18px;margin-left:0;margin-right:0;width:18px}.novo-chip .novo-chip-remove{color:#dbdbdb}.novo-chip:not(.novo-chip-disabled) .novo-chip-remove:hover{color:#8f8f8f}.novo-chip.novo-size-xs{border-radius:.4rem;font-size:.8rem;min-height:1.6rem;padding:0 .25rem}.novo-chip.novo-size-xs.novo-chip-with-avatar{padding-left:.125rem}.novo-chip.novo-size-xs.novo-chip-with-trailing-icon{padding-right:.125rem}.novo-chip.novo-size-sm{border-radius:.4rem;font-size:1rem;min-height:2rem;padding:0 .5rem}.novo-chip.novo-size-sm.novo-chip-with-avatar{padding-left:.25rem}.novo-chip.novo-size-sm.novo-chip-with-trailing-icon{padding-right:.25rem}.novo-chip.novo-size-md{border-radius:.4rem;font-size:1.2rem;min-height:2.8rem;padding:0 1rem}.novo-chip.novo-size-md.novo-chip-with-avatar{padding-left:.5rem}.novo-chip.novo-size-md.novo-chip-with-trailing-icon{padding-right:.5rem}.novo-chip.novo-size-lg{border-radius:.4rem;font-size:1.4rem;min-height:3.2rem;padding:0 1.25rem}.novo-chip.novo-size-lg.novo-chip-with-avatar{padding-left:.625rem}.novo-chip.novo-size-lg.novo-chip-with-trailing-icon{padding-right:.625rem}.novo-chip.novo-size-xl{border-radius:.4rem;font-size:1.8rem;min-height:3.6rem;padding:0 1.5rem}.novo-chip.novo-size-xl.novo-chip-with-avatar{padding-left:.75rem}.novo-chip.novo-size-xl.novo-chip-with-trailing-icon{padding-right:.75rem}.novo-chip.novo-color-black{background:#000;color:#fff}.novo-chip.novo-color-black>*{color:inherit}.novo-chip.novo-accent-black{border:1px solid #000;color:#000}.novo-chip.novo-color-white{background:#fff;color:#000}.novo-chip.novo-color-white>*{color:inherit}.novo-chip.novo-accent-white{border:1px solid #fff;color:#fff}.novo-chip.novo-color-gray{background:#9e9e9e;color:#000}.novo-chip.novo-color-gray>*{color:inherit}.novo-chip.novo-accent-gray{border:1px solid #9e9e9e;color:#9e9e9e}.novo-chip.novo-color-grey{background:#9e9e9e;color:#000}.novo-chip.novo-color-grey>*{color:inherit}.novo-chip.novo-accent-grey{border:1px solid #9e9e9e;color:#9e9e9e}.novo-chip.novo-color-offWhite{background:#f7f7f7;color:#000}.novo-chip.novo-color-offWhite>*{color:inherit}.novo-chip.novo-accent-offWhite{border:1px solid #f7f7f7;color:#f7f7f7}.novo-chip.novo-color-bright{background:#f7f7f7;color:#000}.novo-chip.novo-color-bright>*{color:inherit}.novo-chip.novo-accent-bright{border:1px solid #f7f7f7;color:#f7f7f7}.novo-chip.novo-color-light{background:#dbdbdb;color:#000}.novo-chip.novo-color-light>*{color:inherit}.novo-chip.novo-accent-light{border:1px solid #dbdbdb;color:#dbdbdb}.novo-chip.novo-color-neutral{background:#4f5361;color:#fff}.novo-chip.novo-color-neutral>*{color:inherit}.novo-chip.novo-accent-neutral{border:1px solid #4f5361;color:#4f5361}.novo-chip.novo-color-dark{background:#3d464d;color:#fff}.novo-chip.novo-color-dark>*{color:inherit}.novo-chip.novo-accent-dark{border:1px solid #3d464d;color:#3d464d}.novo-chip.novo-color-orange{background:#ff6900;color:#000}.novo-chip.novo-color-orange>*{color:inherit}.novo-chip.novo-accent-orange{border:1px solid #ff6900;color:#ff6900}.novo-chip.novo-color-navigation{background:#202b38;color:#fff}.novo-chip.novo-color-navigation>*{color:inherit}.novo-chip.novo-accent-navigation{border:1px solid #202b38;color:#202b38}.novo-chip.novo-color-skyBlue{background:#009bdf;color:#fff}.novo-chip.novo-color-skyBlue>*{color:inherit}.novo-chip.novo-accent-skyBlue{border:1px solid #009bdf;color:#009bdf}.novo-chip.novo-color-steel{background:#5b6770;color:#fff}.novo-chip.novo-color-steel>*{color:inherit}.novo-chip.novo-accent-steel{border:1px solid #5b6770;color:#5b6770}.novo-chip.novo-color-metal{background:#637893;color:#fff}.novo-chip.novo-color-metal>*{color:inherit}.novo-chip.novo-accent-metal{border:1px solid #637893;color:#637893}.novo-chip.novo-color-sand{background:#f4f4f4;color:#000}.novo-chip.novo-color-sand>*{color:inherit}.novo-chip.novo-accent-sand{border:1px solid #f4f4f4;color:#f4f4f4}.novo-chip.novo-color-silver{background:#e2e2e2;color:#000}.novo-chip.novo-color-silver>*{color:inherit}.novo-chip.novo-accent-silver{border:1px solid #e2e2e2;color:#e2e2e2}.novo-chip.novo-color-stone{background:#bebebe;color:#000}.novo-chip.novo-color-stone>*{color:inherit}.novo-chip.novo-accent-stone{border:1px solid #bebebe;color:#bebebe}.novo-chip.novo-color-ash{background:#a0a0a0;color:#000}.novo-chip.novo-color-ash>*{color:inherit}.novo-chip.novo-accent-ash{border:1px solid #a0a0a0;color:#a0a0a0}.novo-chip.novo-color-slate{background:#707070;color:#fff}.novo-chip.novo-color-slate>*{color:inherit}.novo-chip.novo-accent-slate{border:1px solid #707070;color:#707070}.novo-chip.novo-color-onyx{background:#526980;color:#fff}.novo-chip.novo-color-onyx>*{color:inherit}.novo-chip.novo-accent-onyx{border:1px solid #526980;color:#526980}.novo-chip.novo-color-charcoal{background:#282828;color:#fff}.novo-chip.novo-color-charcoal>*{color:inherit}.novo-chip.novo-accent-charcoal{border:1px solid #282828;color:#282828}.novo-chip.novo-color-moonlight{background:#1a242f;color:#fff}.novo-chip.novo-color-moonlight>*{color:inherit}.novo-chip.novo-accent-moonlight{border:1px solid #1a242f;color:#1a242f}.novo-chip.novo-color-midnight{background:#202b38;color:#fff}.novo-chip.novo-color-midnight>*{color:inherit}.novo-chip.novo-accent-midnight{border:1px solid #202b38;color:#202b38}.novo-chip.novo-color-darkness{background:#161f27;color:#fff}.novo-chip.novo-color-darkness>*{color:inherit}.novo-chip.novo-accent-darkness{border:1px solid #161f27;color:#161f27}.novo-chip.novo-color-navy{background:#0d2d42;color:#fff}.novo-chip.novo-color-navy>*{color:inherit}.novo-chip.novo-accent-navy{border:1px solid #0d2d42;color:#0d2d42}.novo-chip.novo-color-aqua{background:#3bafda;color:#000}.novo-chip.novo-color-aqua>*{color:inherit}.novo-chip.novo-accent-aqua{border:1px solid #3bafda;color:#3bafda}.novo-chip.novo-color-ocean{background:#4a89dc;color:#fff}.novo-chip.novo-color-ocean>*{color:inherit}.novo-chip.novo-accent-ocean{border:1px solid #4a89dc;color:#4a89dc}.novo-chip.novo-color-mint{background:#37bc9b;color:#000}.novo-chip.novo-color-mint>*{color:inherit}.novo-chip.novo-accent-mint{border:1px solid #37bc9b;color:#37bc9b}.novo-chip.novo-color-grass{background:#8cc152;color:#000}.novo-chip.novo-color-grass>*{color:inherit}.novo-chip.novo-accent-grass{border:1px solid #8cc152;color:#8cc152}.novo-chip.novo-color-sunflower{background:#f6b042;color:#000}.novo-chip.novo-color-sunflower>*{color:inherit}.novo-chip.novo-accent-sunflower{border:1px solid #f6b042;color:#f6b042}.novo-chip.novo-color-bittersweet{background:#eb6845;color:#fff}.novo-chip.novo-color-bittersweet>*{color:inherit}.novo-chip.novo-accent-bittersweet{border:1px solid #eb6845;color:#eb6845}.novo-chip.novo-color-grapefruit{background:#da4453;color:#fff}.novo-chip.novo-color-grapefruit>*{color:inherit}.novo-chip.novo-accent-grapefruit{border:1px solid #da4453;color:#da4453}.novo-chip.novo-color-carnation{background:#d770ad;color:#fff}.novo-chip.novo-color-carnation>*{color:inherit}.novo-chip.novo-accent-carnation{border:1px solid #d770ad;color:#d770ad}.novo-chip.novo-color-lavender{background:#967adc;color:#fff}.novo-chip.novo-color-lavender>*{color:inherit}.novo-chip.novo-accent-lavender{border:1px solid #967adc;color:#967adc}.novo-chip.novo-color-mountain{background:#9678b6;color:#fff}.novo-chip.novo-color-mountain>*{color:inherit}.novo-chip.novo-accent-mountain{border:1px solid #9678b6;color:#9678b6}.novo-chip.novo-color-info{background:#4a89dc;color:#fff}.novo-chip.novo-color-info>*{color:inherit}.novo-chip.novo-accent-info{border:1px solid #4a89dc;color:#4a89dc}.novo-chip.novo-color-positive{background:#4a89dc;color:#fff}.novo-chip.novo-color-positive>*{color:inherit}.novo-chip.novo-accent-positive{border:1px solid #4a89dc;color:#4a89dc}.novo-chip.novo-color-success{background:#8cc152;color:#000}.novo-chip.novo-color-success>*{color:inherit}.novo-chip.novo-accent-success{border:1px solid #8cc152;color:#8cc152}.novo-chip.novo-color-negative{background:#da4453;color:#fff}.novo-chip.novo-color-negative>*{color:inherit}.novo-chip.novo-accent-negative{border:1px solid #da4453;color:#da4453}.novo-chip.novo-color-danger{background:#da4453;color:#fff}.novo-chip.novo-color-danger>*{color:inherit}.novo-chip.novo-accent-danger{border:1px solid #da4453;color:#da4453}.novo-chip.novo-color-error{background:#da4453;color:#fff}.novo-chip.novo-color-error>*{color:inherit}.novo-chip.novo-accent-error{border:1px solid #da4453;color:#da4453}.novo-chip.novo-color-warning{background:#f6b042;color:#000}.novo-chip.novo-color-warning>*{color:inherit}.novo-chip.novo-accent-warning{border:1px solid #f6b042;color:#f6b042}.novo-chip.novo-color-empty{background:#cccdcc;color:#000}.novo-chip.novo-color-empty>*{color:inherit}.novo-chip.novo-accent-empty{border:1px solid #cccdcc;color:#cccdcc}.novo-chip.novo-color-disabled{background:#bebebe;color:#000}.novo-chip.novo-color-disabled>*{color:inherit}.novo-chip.novo-accent-disabled{border:1px solid #bebebe;color:#bebebe}.novo-chip.novo-color-background{background:#f7f7f7;color:#000}.novo-chip.novo-color-background>*{color:inherit}.novo-chip.novo-accent-background{border:1px solid #f7f7f7;color:#f7f7f7}.novo-chip.novo-color-backgroundDark{background:#e2e2e2;color:#000}.novo-chip.novo-color-backgroundDark>*{color:inherit}.novo-chip.novo-accent-backgroundDark{border:1px solid #e2e2e2;color:#e2e2e2}.novo-chip.novo-color-presentation{background:#5b6770;color:#fff}.novo-chip.novo-color-presentation>*{color:inherit}.novo-chip.novo-accent-presentation{border:1px solid #5b6770;color:#5b6770}.novo-chip.novo-color-bullhorn{background:#ff6900;color:#000}.novo-chip.novo-color-bullhorn>*{color:inherit}.novo-chip.novo-accent-bullhorn{border:1px solid #ff6900;color:#ff6900}.novo-chip.novo-color-pulse{background:#3bafda;color:#000}.novo-chip.novo-color-pulse>*{color:inherit}.novo-chip.novo-accent-pulse{border:1px solid #3bafda;color:#3bafda}.novo-chip.novo-color-company{background:#39d;color:#fff}.novo-chip.novo-color-company>*{color:inherit}.novo-chip.novo-accent-company{border:1px solid #39d;color:#39d}.novo-chip.novo-color-candidate{background:#4b7;color:#000}.novo-chip.novo-color-candidate>*{color:inherit}.novo-chip.novo-accent-candidate{border:1px solid #4b7;color:#4b7}.novo-chip.novo-color-lead{background:#a69;color:#fff}.novo-chip.novo-color-lead>*{color:inherit}.novo-chip.novo-accent-lead{border:1px solid #a69;color:#a69}.novo-chip.novo-color-contact{background:#fa4;color:#000}.novo-chip.novo-color-contact>*{color:inherit}.novo-chip.novo-accent-contact{border:1px solid #fa4;color:#fa4}.novo-chip.novo-color-opportunity{background:#625;color:#fff}.novo-chip.novo-color-opportunity>*{color:inherit}.novo-chip.novo-accent-opportunity{border:1px solid #625;color:#625}.novo-chip.novo-color-job{background:#b56;color:#fff}.novo-chip.novo-color-job>*{color:inherit}.novo-chip.novo-accent-job{border:1px solid #b56;color:#b56}.novo-chip.novo-color-submission{background:#a9adbb;color:#000}.novo-chip.novo-color-submission>*{color:inherit}.novo-chip.novo-accent-submission{border:1px solid #a9adbb;color:#a9adbb}.novo-chip.novo-color-sendout{background:#747884;color:#fff}.novo-chip.novo-color-sendout>*{color:inherit}.novo-chip.novo-accent-sendout{border:1px solid #747884;color:#747884}.novo-chip.novo-color-placement{background:#0b344f;color:#fff}.novo-chip.novo-color-placement>*{color:inherit}.novo-chip.novo-accent-placement{border:1px solid #0b344f;color:#0b344f}.novo-chip.novo-color-note{background:#747884;color:#fff}.novo-chip.novo-color-note>*{color:inherit}.novo-chip.novo-accent-note{border:1px solid #747884;color:#747884}.novo-chip.novo-color-contract{background:#454ea0;color:#fff}.novo-chip.novo-color-contract>*{color:inherit}.novo-chip.novo-accent-contract{border:1px solid #454ea0;color:#454ea0}.novo-chip.novo-color-jobCode{background:#696d79;color:#fff}.novo-chip.novo-color-jobCode>*{color:inherit}.novo-chip.novo-accent-jobCode{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-earnCode{background:#696d79;color:#fff}.novo-chip.novo-color-earnCode>*{color:inherit}.novo-chip.novo-accent-earnCode{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-invoiceStatement{background:#696d79;color:#fff}.novo-chip.novo-color-invoiceStatement>*{color:inherit}.novo-chip.novo-accent-invoiceStatement{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-billableCharge{background:#696d79;color:#fff}.novo-chip.novo-color-billableCharge>*{color:inherit}.novo-chip.novo-accent-billableCharge{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-payableCharge{background:#696d79;color:#fff}.novo-chip.novo-color-payableCharge>*{color:inherit}.novo-chip.novo-accent-payableCharge{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-user{background:#696d79;color:#fff}.novo-chip.novo-color-user>*{color:inherit}.novo-chip.novo-accent-user{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-corporateUser{background:#696d79;color:#fff}.novo-chip.novo-color-corporateUser>*{color:inherit}.novo-chip.novo-accent-corporateUser{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-distributionList{background:#696d79;color:#fff}.novo-chip.novo-color-distributionList>*{color:inherit}.novo-chip.novo-accent-distributionList{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-credential{background:#696d79;color:#fff}.novo-chip.novo-color-credential>*{color:inherit}.novo-chip.novo-accent-credential{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-person{background:#696d79;color:#fff}.novo-chip.novo-color-person>*{color:inherit}.novo-chip.novo-accent-person{border:1px solid #696d79;color:#696d79}"]
|
|
30760
|
+
styles: [".novo-chip{-moz-appearance:none;-webkit-appearance:none;-webkit-tap-highlight-color:transparent;align-items:center;background:var(--background-main);border:none;border:1px solid transparent;border-radius:.4rem;box-sizing:border-box;color:inherit;cursor:default;display:inline;display:inline-flex;font-size:var(--font-size-text);font-weight:400;gap:1rem;height:1px;min-height:2.4rem;padding:0 1rem;position:relative;transition:.2s ease-out;transition:all .2s ease-in-out;transition-property:color,opacity;vertical-align:middle}.novo-chip.text-nowrap{white-space:nowrap}.novo-chip.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.novo-chip.text-size-default{font-size:inherit}.novo-chip.text-size-body{font-size:1.3rem}.novo-chip.text-size-xs{font-size:1rem}.novo-chip.text-size-sm{font-size:1.2rem}.novo-chip.text-size-md{font-size:1.3rem}.novo-chip.text-size-lg{font-size:1.6rem}.novo-chip.text-size-xl{font-size:2rem}.novo-chip.text-size-2xl{font-size:2.6rem}.novo-chip.text-size-3xl{font-size:3.2rem}.novo-chip.text-size-smaller{font-size:.8em}.novo-chip.text-size-larger{font-size:1.2em}.novo-chip.text-color-black{color:#000}.novo-chip.text-color-white{color:#fff}.novo-chip.text-color-gray,.novo-chip.text-color-grey{color:#9e9e9e}.novo-chip.text-color-bright,.novo-chip.text-color-offWhite{color:#f7f7f7}.novo-chip.text-color-light{color:#dbdbdb}.novo-chip.text-color-neutral{color:#4f5361}.novo-chip.text-color-dark{color:#3d464d}.novo-chip.text-color-orange{color:#ff6900}.novo-chip.text-color-navigation{color:#202945}.novo-chip.text-color-skyBlue{color:#009bdf}.novo-chip.text-color-steel{color:#5b6770}.novo-chip.text-color-metal{color:#637893}.novo-chip.text-color-sand{color:#f4f4f4}.novo-chip.text-color-silver{color:#e2e2e2}.novo-chip.text-color-stone{color:#bebebe}.novo-chip.text-color-ash{color:#a0a0a0}.novo-chip.text-color-slate{color:#707070}.novo-chip.text-color-onyx{color:#526980}.novo-chip.text-color-charcoal{color:#282828}.novo-chip.text-color-moonlight{color:#1a242f}.novo-chip.text-color-midnight{color:#202945}.novo-chip.text-color-darkness{color:#161f27}.novo-chip.text-color-navy{color:#0d2d42}.novo-chip.text-color-aqua{color:#3bafda}.novo-chip.text-color-ocean{color:#4a89dc}.novo-chip.text-color-mint{color:#37bc9b}.novo-chip.text-color-grass{color:#8cc152}.novo-chip.text-color-sunflower{color:#f6b042}.novo-chip.text-color-bittersweet{color:#eb6845}.novo-chip.text-color-grapefruit{color:#da4453}.novo-chip.text-color-carnation{color:#d770ad}.novo-chip.text-color-lavender{color:#967adc}.novo-chip.text-color-mountain{color:#9678b6}.novo-chip.text-color-info,.novo-chip.text-color-positive{color:#4a89dc}.novo-chip.text-color-success{color:#8cc152}.novo-chip.text-color-danger,.novo-chip.text-color-error,.novo-chip.text-color-negative{color:#da4453}.novo-chip.text-color-warning{color:#f6b042}.novo-chip.text-color-empty{color:#cccdcc}.novo-chip.text-color-disabled{color:#bebebe}.novo-chip.text-color-background{color:#f7f7f7}.novo-chip.text-color-backgroundDark{color:#e2e2e2}.novo-chip.text-color-presentation{color:#5b6770}.novo-chip.text-color-bullhorn{color:#ff6900}.novo-chip.text-color-pulse{color:#3bafda}.novo-chip.text-color-company{color:#39d}.novo-chip.text-color-candidate{color:#4b7}.novo-chip.text-color-lead{color:#a69}.novo-chip.text-color-contact{color:#fa4}.novo-chip.text-color-opportunity{color:#625}.novo-chip.text-color-job{color:#b56}.novo-chip.text-color-submission{color:#a9adbb}.novo-chip.text-color-sendout{color:#747884}.novo-chip.text-color-placement{color:#0b344f}.novo-chip.text-color-note{color:#747884}.novo-chip.text-color-contract{color:#454ea0}.novo-chip.text-color-billableCharge,.novo-chip.text-color-corporateUser,.novo-chip.text-color-credential,.novo-chip.text-color-distributionList,.novo-chip.text-color-earnCode,.novo-chip.text-color-invoiceStatement,.novo-chip.text-color-jobCode,.novo-chip.text-color-payableCharge,.novo-chip.text-color-person,.novo-chip.text-color-user{color:#696d79}.novo-chip.margin-before{margin-top:.4rem}.novo-chip.margin-after{margin-bottom:.8rem}.novo-chip.text-length-small{max-width:40ch}.novo-chip.text-length-medium{max-width:55ch}.novo-chip.text-length-large{max-width:70ch}.novo-chip.text-weight-hairline{font-weight:100}.novo-chip.text-weight-thin{font-weight:200}.novo-chip.text-weight-light{font-weight:300}.novo-chip.text-weight-normal{font-weight:400}.novo-chip.text-weight-medium{font-weight:500}.novo-chip.text-weight-semibold{font-weight:600}.novo-chip.text-weight-bold{font-weight:700}.novo-chip.text-weight-extrabold{font-weight:800}.novo-chip.text-weight-heavy{font-weight:900}.novo-chip.text-weight-lighter{font-weight:lighter}.novo-chip.text-weight-bolder{font-weight:bolder}.novo-chip.novo-chip-selectable{color:var(--selection)}.novo-chip.novo-chip-selectable:after{background-color:#000;border-radius:inherit;bottom:0;content:\"\";left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:opacity .2s ease-in-out}.novo-chip.novo-chip-selectable:focus{border:1px solid var(--selection);outline:none}.novo-chip.novo-chip-selectable:focus:after{opacity:.16}.novo-chip.novo-chip-selectable:hover{border:1px solid var(--selection)}.novo-chip.novo-chip-disabled{opacity:.4;pointer-events:none}.novo-chip.novo-chip-disabled:after{opacity:0}.novo-chip.novo-chip-disabled .novo-chip-remove,.novo-chip.novo-chip-disabled .novo-chip-trailing-icon{cursor:default}.novo-chip .novo-chip-avatar::not(novo-icon){height:24px;width:24px}.novo-chip .novo-chip-avatar{-o-object-fit:cover;align-items:center;border-radius:50%;display:flex;justify-content:center;margin-left:0;margin-right:0;object-fit:cover;overflow:hidden}.novo-chip .novo-chip-remove,.novo-chip .novo-chip-trailing-icon{cursor:pointer;height:18px;margin-left:0;margin-right:0;width:18px}.novo-chip .novo-chip-remove{color:#dbdbdb}.novo-chip:not(.novo-chip-disabled) .novo-chip-remove:hover{color:#8f8f8f}.novo-chip.novo-size-xs{border-radius:.4rem;font-size:.8rem;gap:.25rem;min-height:1.6rem;padding:0 .25rem}.novo-chip.novo-size-xs.novo-chip-with-avatar{padding-left:.125rem}.novo-chip.novo-size-xs.novo-chip-with-trailing-icon{padding-right:.125rem}.novo-chip.novo-size-xs .novo-text{font-size:inherit}.novo-chip.novo-size-sm{border-radius:.4rem;font-size:1rem;gap:.5rem;min-height:2rem;padding:0 .5rem}.novo-chip.novo-size-sm.novo-chip-with-avatar{padding-left:.25rem}.novo-chip.novo-size-sm.novo-chip-with-trailing-icon{padding-right:.25rem}.novo-chip.novo-size-sm .novo-text{font-size:inherit}.novo-chip.novo-size-md{border-radius:.4rem;font-size:1.2rem;gap:1rem;min-height:2.8rem;padding:0 1rem}.novo-chip.novo-size-md.novo-chip-with-avatar{padding-left:.5rem}.novo-chip.novo-size-md.novo-chip-with-trailing-icon{padding-right:.5rem}.novo-chip.novo-size-md .novo-text{font-size:inherit}.novo-chip.novo-size-lg{border-radius:.4rem;font-size:1.4rem;gap:1.25rem;min-height:3.2rem;padding:0 1.25rem}.novo-chip.novo-size-lg.novo-chip-with-avatar{padding-left:.625rem}.novo-chip.novo-size-lg.novo-chip-with-trailing-icon{padding-right:.625rem}.novo-chip.novo-size-lg .novo-text{font-size:inherit}.novo-chip.novo-size-xl{border-radius:.4rem;font-size:1.8rem;gap:1.5rem;min-height:3.6rem;padding:0 1.5rem}.novo-chip.novo-size-xl.novo-chip-with-avatar{padding-left:.75rem}.novo-chip.novo-size-xl.novo-chip-with-trailing-icon{padding-right:.75rem}.novo-chip.novo-size-xl .novo-text{font-size:inherit}.novo-chip.novo-color-black{background:#000;color:#fff}.novo-chip.novo-color-black>*{color:inherit}.novo-chip.novo-accent-black{border:1px solid #000;color:#000}.novo-chip.novo-color-white{background:#fff;color:#3d464d}.novo-chip.novo-color-white>*{color:inherit}.novo-chip.novo-accent-white{border:1px solid #fff;color:#fff}.novo-chip.novo-color-gray{background:#9e9e9e;color:#3d464d}.novo-chip.novo-color-gray>*{color:inherit}.novo-chip.novo-accent-gray{border:1px solid #9e9e9e;color:#9e9e9e}.novo-chip.novo-color-grey{background:#9e9e9e;color:#3d464d}.novo-chip.novo-color-grey>*{color:inherit}.novo-chip.novo-accent-grey{border:1px solid #9e9e9e;color:#9e9e9e}.novo-chip.novo-color-offWhite{background:#f7f7f7;color:#3d464d}.novo-chip.novo-color-offWhite>*{color:inherit}.novo-chip.novo-accent-offWhite{border:1px solid #f7f7f7;color:#f7f7f7}.novo-chip.novo-color-bright{background:#f7f7f7;color:#3d464d}.novo-chip.novo-color-bright>*{color:inherit}.novo-chip.novo-accent-bright{border:1px solid #f7f7f7;color:#f7f7f7}.novo-chip.novo-color-light{background:#dbdbdb;color:#3d464d}.novo-chip.novo-color-light>*{color:inherit}.novo-chip.novo-accent-light{border:1px solid #dbdbdb;color:#dbdbdb}.novo-chip.novo-color-neutral{background:#4f5361;color:#fff}.novo-chip.novo-color-neutral>*{color:inherit}.novo-chip.novo-accent-neutral{border:1px solid #4f5361;color:#4f5361}.novo-chip.novo-color-dark{background:#3d464d;color:#fff}.novo-chip.novo-color-dark>*{color:inherit}.novo-chip.novo-accent-dark{border:1px solid #3d464d;color:#3d464d}.novo-chip.novo-color-orange{background:#ff6900;color:#3d464d}.novo-chip.novo-color-orange>*{color:inherit}.novo-chip.novo-accent-orange{border:1px solid #ff6900;color:#ff6900}.novo-chip.novo-color-navigation{background:#202945;color:#fff}.novo-chip.novo-color-navigation>*{color:inherit}.novo-chip.novo-accent-navigation{border:1px solid #202945;color:#202945}.novo-chip.novo-color-skyBlue{background:#009bdf;color:#fff}.novo-chip.novo-color-skyBlue>*{color:inherit}.novo-chip.novo-accent-skyBlue{border:1px solid #009bdf;color:#009bdf}.novo-chip.novo-color-steel{background:#5b6770;color:#fff}.novo-chip.novo-color-steel>*{color:inherit}.novo-chip.novo-accent-steel{border:1px solid #5b6770;color:#5b6770}.novo-chip.novo-color-metal{background:#637893;color:#fff}.novo-chip.novo-color-metal>*{color:inherit}.novo-chip.novo-accent-metal{border:1px solid #637893;color:#637893}.novo-chip.novo-color-sand{background:#f4f4f4;color:#3d464d}.novo-chip.novo-color-sand>*{color:inherit}.novo-chip.novo-accent-sand{border:1px solid #f4f4f4;color:#f4f4f4}.novo-chip.novo-color-silver{background:#e2e2e2;color:#3d464d}.novo-chip.novo-color-silver>*{color:inherit}.novo-chip.novo-accent-silver{border:1px solid #e2e2e2;color:#e2e2e2}.novo-chip.novo-color-stone{background:#bebebe;color:#3d464d}.novo-chip.novo-color-stone>*{color:inherit}.novo-chip.novo-accent-stone{border:1px solid #bebebe;color:#bebebe}.novo-chip.novo-color-ash{background:#a0a0a0;color:#3d464d}.novo-chip.novo-color-ash>*{color:inherit}.novo-chip.novo-accent-ash{border:1px solid #a0a0a0;color:#a0a0a0}.novo-chip.novo-color-slate{background:#707070;color:#fff}.novo-chip.novo-color-slate>*{color:inherit}.novo-chip.novo-accent-slate{border:1px solid #707070;color:#707070}.novo-chip.novo-color-onyx{background:#526980;color:#fff}.novo-chip.novo-color-onyx>*{color:inherit}.novo-chip.novo-accent-onyx{border:1px solid #526980;color:#526980}.novo-chip.novo-color-charcoal{background:#282828;color:#fff}.novo-chip.novo-color-charcoal>*{color:inherit}.novo-chip.novo-accent-charcoal{border:1px solid #282828;color:#282828}.novo-chip.novo-color-moonlight{background:#1a242f;color:#fff}.novo-chip.novo-color-moonlight>*{color:inherit}.novo-chip.novo-accent-moonlight{border:1px solid #1a242f;color:#1a242f}.novo-chip.novo-color-midnight{background:#202945;color:#fff}.novo-chip.novo-color-midnight>*{color:inherit}.novo-chip.novo-accent-midnight{border:1px solid #202945;color:#202945}.novo-chip.novo-color-darkness{background:#161f27;color:#fff}.novo-chip.novo-color-darkness>*{color:inherit}.novo-chip.novo-accent-darkness{border:1px solid #161f27;color:#161f27}.novo-chip.novo-color-navy{background:#0d2d42;color:#fff}.novo-chip.novo-color-navy>*{color:inherit}.novo-chip.novo-accent-navy{border:1px solid #0d2d42;color:#0d2d42}.novo-chip.novo-color-aqua{background:#3bafda;color:#3d464d}.novo-chip.novo-color-aqua>*{color:inherit}.novo-chip.novo-accent-aqua{border:1px solid #3bafda;color:#3bafda}.novo-chip.novo-color-ocean{background:#4a89dc;color:#fff}.novo-chip.novo-color-ocean>*{color:inherit}.novo-chip.novo-accent-ocean{border:1px solid #4a89dc;color:#4a89dc}.novo-chip.novo-color-mint{background:#37bc9b;color:#3d464d}.novo-chip.novo-color-mint>*{color:inherit}.novo-chip.novo-accent-mint{border:1px solid #37bc9b;color:#37bc9b}.novo-chip.novo-color-grass{background:#8cc152;color:#fff}.novo-chip.novo-color-grass>*{color:inherit}.novo-chip.novo-accent-grass{border:1px solid #8cc152;color:#8cc152}.novo-chip.novo-color-sunflower{background:#f6b042;color:#fff}.novo-chip.novo-color-sunflower>*{color:inherit}.novo-chip.novo-accent-sunflower{border:1px solid #f6b042;color:#f6b042}.novo-chip.novo-color-bittersweet{background:#eb6845;color:#fff}.novo-chip.novo-color-bittersweet>*{color:inherit}.novo-chip.novo-accent-bittersweet{border:1px solid #eb6845;color:#eb6845}.novo-chip.novo-color-grapefruit{background:#da4453;color:#fff}.novo-chip.novo-color-grapefruit>*{color:inherit}.novo-chip.novo-accent-grapefruit{border:1px solid #da4453;color:#da4453}.novo-chip.novo-color-carnation{background:#d770ad;color:#fff}.novo-chip.novo-color-carnation>*{color:inherit}.novo-chip.novo-accent-carnation{border:1px solid #d770ad;color:#d770ad}.novo-chip.novo-color-lavender{background:#967adc;color:#fff}.novo-chip.novo-color-lavender>*{color:inherit}.novo-chip.novo-accent-lavender{border:1px solid #967adc;color:#967adc}.novo-chip.novo-color-mountain{background:#9678b6;color:#fff}.novo-chip.novo-color-mountain>*{color:inherit}.novo-chip.novo-accent-mountain{border:1px solid #9678b6;color:#9678b6}.novo-chip.novo-color-info{background:#4a89dc;color:#fff}.novo-chip.novo-color-info>*{color:inherit}.novo-chip.novo-accent-info{border:1px solid #4a89dc;color:#4a89dc}.novo-chip.novo-color-positive{background:#4a89dc;color:#fff}.novo-chip.novo-color-positive>*{color:inherit}.novo-chip.novo-accent-positive{border:1px solid #4a89dc;color:#4a89dc}.novo-chip.novo-color-success{background:#8cc152;color:#fff}.novo-chip.novo-color-success>*{color:inherit}.novo-chip.novo-accent-success{border:1px solid #8cc152;color:#8cc152}.novo-chip.novo-color-negative{background:#da4453;color:#fff}.novo-chip.novo-color-negative>*{color:inherit}.novo-chip.novo-accent-negative{border:1px solid #da4453;color:#da4453}.novo-chip.novo-color-danger{background:#da4453;color:#fff}.novo-chip.novo-color-danger>*{color:inherit}.novo-chip.novo-accent-danger{border:1px solid #da4453;color:#da4453}.novo-chip.novo-color-error{background:#da4453;color:#fff}.novo-chip.novo-color-error>*{color:inherit}.novo-chip.novo-accent-error{border:1px solid #da4453;color:#da4453}.novo-chip.novo-color-warning{background:#f6b042;color:#fff}.novo-chip.novo-color-warning>*{color:inherit}.novo-chip.novo-accent-warning{border:1px solid #f6b042;color:#f6b042}.novo-chip.novo-color-empty{background:#cccdcc;color:#3d464d}.novo-chip.novo-color-empty>*{color:inherit}.novo-chip.novo-accent-empty{border:1px solid #cccdcc;color:#cccdcc}.novo-chip.novo-color-disabled{background:#bebebe;color:#3d464d}.novo-chip.novo-color-disabled>*{color:inherit}.novo-chip.novo-accent-disabled{border:1px solid #bebebe;color:#bebebe}.novo-chip.novo-color-background{background:#f7f7f7;color:#3d464d}.novo-chip.novo-color-background>*{color:inherit}.novo-chip.novo-accent-background{border:1px solid #f7f7f7;color:#f7f7f7}.novo-chip.novo-color-backgroundDark{background:#e2e2e2;color:#3d464d}.novo-chip.novo-color-backgroundDark>*{color:inherit}.novo-chip.novo-accent-backgroundDark{border:1px solid #e2e2e2;color:#e2e2e2}.novo-chip.novo-color-presentation{background:#5b6770;color:#fff}.novo-chip.novo-color-presentation>*{color:inherit}.novo-chip.novo-accent-presentation{border:1px solid #5b6770;color:#5b6770}.novo-chip.novo-color-bullhorn{background:#ff6900;color:#3d464d}.novo-chip.novo-color-bullhorn>*{color:inherit}.novo-chip.novo-accent-bullhorn{border:1px solid #ff6900;color:#ff6900}.novo-chip.novo-color-pulse{background:#3bafda;color:#3d464d}.novo-chip.novo-color-pulse>*{color:inherit}.novo-chip.novo-accent-pulse{border:1px solid #3bafda;color:#3bafda}.novo-chip.novo-color-company{background:#39d;color:#fff}.novo-chip.novo-color-company>*{color:inherit}.novo-chip.novo-accent-company{border:1px solid #39d;color:#39d}.novo-chip.novo-color-candidate{background:#4b7;color:#fff}.novo-chip.novo-color-candidate>*{color:inherit}.novo-chip.novo-accent-candidate{border:1px solid #4b7;color:#4b7}.novo-chip.novo-color-lead{background:#a69;color:#fff}.novo-chip.novo-color-lead>*{color:inherit}.novo-chip.novo-accent-lead{border:1px solid #a69;color:#a69}.novo-chip.novo-color-contact{background:#fa4;color:#fff}.novo-chip.novo-color-contact>*{color:inherit}.novo-chip.novo-accent-contact{border:1px solid #fa4;color:#fa4}.novo-chip.novo-color-opportunity{background:#625;color:#fff}.novo-chip.novo-color-opportunity>*{color:inherit}.novo-chip.novo-accent-opportunity{border:1px solid #625;color:#625}.novo-chip.novo-color-job{background:#b56;color:#fff}.novo-chip.novo-color-job>*{color:inherit}.novo-chip.novo-accent-job{border:1px solid #b56;color:#b56}.novo-chip.novo-color-submission{background:#a9adbb;color:#3d464d}.novo-chip.novo-color-submission>*{color:inherit}.novo-chip.novo-accent-submission{border:1px solid #a9adbb;color:#a9adbb}.novo-chip.novo-color-sendout{background:#747884;color:#fff}.novo-chip.novo-color-sendout>*{color:inherit}.novo-chip.novo-accent-sendout{border:1px solid #747884;color:#747884}.novo-chip.novo-color-placement{background:#0b344f;color:#fff}.novo-chip.novo-color-placement>*{color:inherit}.novo-chip.novo-accent-placement{border:1px solid #0b344f;color:#0b344f}.novo-chip.novo-color-note{background:#747884;color:#fff}.novo-chip.novo-color-note>*{color:inherit}.novo-chip.novo-accent-note{border:1px solid #747884;color:#747884}.novo-chip.novo-color-contract{background:#454ea0;color:#fff}.novo-chip.novo-color-contract>*{color:inherit}.novo-chip.novo-accent-contract{border:1px solid #454ea0;color:#454ea0}.novo-chip.novo-color-jobCode{background:#696d79;color:#fff}.novo-chip.novo-color-jobCode>*{color:inherit}.novo-chip.novo-accent-jobCode{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-earnCode{background:#696d79;color:#fff}.novo-chip.novo-color-earnCode>*{color:inherit}.novo-chip.novo-accent-earnCode{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-invoiceStatement{background:#696d79;color:#fff}.novo-chip.novo-color-invoiceStatement>*{color:inherit}.novo-chip.novo-accent-invoiceStatement{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-billableCharge{background:#696d79;color:#fff}.novo-chip.novo-color-billableCharge>*{color:inherit}.novo-chip.novo-accent-billableCharge{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-payableCharge{background:#696d79;color:#fff}.novo-chip.novo-color-payableCharge>*{color:inherit}.novo-chip.novo-accent-payableCharge{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-user{background:#696d79;color:#fff}.novo-chip.novo-color-user>*{color:inherit}.novo-chip.novo-accent-user{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-corporateUser{background:#696d79;color:#fff}.novo-chip.novo-color-corporateUser>*{color:inherit}.novo-chip.novo-accent-corporateUser{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-distributionList{background:#696d79;color:#fff}.novo-chip.novo-color-distributionList>*{color:inherit}.novo-chip.novo-accent-distributionList{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-credential{background:#696d79;color:#fff}.novo-chip.novo-color-credential>*{color:inherit}.novo-chip.novo-accent-credential{border:1px solid #696d79;color:#696d79}.novo-chip.novo-color-person{background:#696d79;color:#fff}.novo-chip.novo-color-person>*{color:inherit}.novo-chip.novo-accent-person{border:1px solid #696d79;color:#696d79}"]
|
|
30564
30761
|
},] }
|
|
30565
30762
|
];
|
|
30566
30763
|
NovoChipElement.ctorParameters = function () { return [
|
|
@@ -30641,7 +30838,7 @@
|
|
|
30641
30838
|
// Remove align attribute to prevent it from interfering with layout.
|
|
30642
30839
|
'[attr.align]': 'null',
|
|
30643
30840
|
},
|
|
30644
|
-
styles: [":host{color:var(--text-muted,#3d464d);color:#9e9e9e;display:flex;flex:1 0 auto;font-size:var(--font-size-caption);font-weight:400;line-height:1.375;padding-bottom:.4rem;padding-top:.4rem;width:-webkit-max-content;width:-moz-max-content;width:max-content}:host.novo-field-hint-end{align-content:end;justify-content:flex-end;order:1;text-align:right}"]
|
|
30841
|
+
styles: [":host{color:var(--text-muted,#3d464d);color:#9e9e9e;display:flex;flex:1 0 auto;font-size:var(--font-size-caption);font-weight:400;line-height:1.375;padding-bottom:.4rem;padding-top:.4rem;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle;width:-webkit-max-content;width:-moz-max-content;width:max-content}:host.text-nowrap{white-space:nowrap}:host.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:host.text-size-default{font-size:inherit}:host.text-size-body{font-size:1.3rem}:host.text-size-xs{font-size:1rem}:host.text-size-sm{font-size:1.2rem}:host.text-size-md{font-size:1.3rem}:host.text-size-lg{font-size:1.6rem}:host.text-size-xl{font-size:2rem}:host.text-size-2xl{font-size:2.6rem}:host.text-size-3xl{font-size:3.2rem}:host.text-size-smaller{font-size:.8em}:host.text-size-larger{font-size:1.2em}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray,:host.text-color-grey{color:#9e9e9e}:host.text-color-bright,:host.text-color-offWhite{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202945}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202945}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-info,:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-danger,:host.text-color-error,:host.text-color-negative{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-billableCharge,:host.text-color-corporateUser,:host.text-color-credential,:host.text-color-distributionList,:host.text-color-earnCode,:host.text-color-invoiceStatement,:host.text-color-jobCode,:host.text-color-payableCharge,:host.text-color-person,:host.text-color-user{color:#696d79}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}:host.text-length-small{max-width:40ch}:host.text-length-medium{max-width:55ch}:host.text-length-large{max-width:70ch}:host.text-weight-hairline{font-weight:100}:host.text-weight-thin{font-weight:200}:host.text-weight-light{font-weight:300}:host.text-weight-normal{font-weight:400}:host.text-weight-medium{font-weight:500}:host.text-weight-semibold{font-weight:600}:host.text-weight-bold{font-weight:700}:host.text-weight-extrabold{font-weight:800}:host.text-weight-heavy{font-weight:900}:host.text-weight-lighter{font-weight:lighter}:host.text-weight-bolder{font-weight:bolder}:host.novo-field-hint-end{align-content:end;justify-content:flex-end;order:1;text-align:right}"]
|
|
30645
30842
|
},] }
|
|
30646
30843
|
];
|
|
30647
30844
|
NovoHintElement.propDecorators = {
|
|
@@ -30777,7 +30974,7 @@
|
|
|
30777
30974
|
'[class.ng-pending]': '_shouldForward("pending")',
|
|
30778
30975
|
},
|
|
30779
30976
|
providers: [{ provide: NOVO_FORM_FIELD, useExisting: NovoFieldElement }],
|
|
30780
|
-
styles: [":host{display:grid;position:relative}:host.novo-field-layout-horizontal{grid-gap:0 1rem;grid-template-areas:\"label input\" \". messages\";grid-template-columns:150px minmax(-webkit-min-content,-webkit-max-content);grid-template-columns:150px minmax(min-content,max-content)}:host.novo-field-layout-vertical{grid-template-areas:\"label\" \"input\" \"messages\";grid-template-columns:minmax(-webkit-min-content,-webkit-max-content);grid-template-columns:minmax(min-content,max-content);grid-template-rows:repeat(3,minmax(-webkit-min-content,-webkit-max-content));grid-template-rows:repeat(3,minmax(min-content,max-content));width:-webkit-max-content;width:-moz-max-content;width:max-content}:host .novo-field-label{-ms-grid-column:1;-ms-grid-row:1;align-items:center;display:grid;grid-area:label}:host.novo-field-type-color .novo-field-input::ng-deep .novo-input-element{padding:0}:host .novo-field-input{-ms-grid-column:3;-ms-grid-row:1;display:grid;grid-area:input;grid-template-columns:minmax(auto,-webkit-max-content) 1fr minmax(auto,-webkit-max-content);grid-template-columns:minmax(auto,max-content) 1fr minmax(auto,max-content)}:host .novo-field-input::ng-deep .novo-input-element{background-color:transparent;background-image:none;border:none;border-bottom:none!important;box-shadow:none;color:inherit;display:inline;font-size:var(--font-size-text);font-weight:400;padding:.4rem .2rem}:host .novo-field-input::ng-deep .novo-input-element:focus{outline:none}:host .novo-field-input::ng-deep .novo-radio-group{padding:.5rem 0}:host .novo-field-input .novo-field-infix,:host .novo-field-input .novo-field-prefix{align-items:center;display:flex}:host .novo-field-input .novo-field-infix select{width:100%}:host .novo-field-input .novo-field-suffix{align-items:center;display:flex}:host .novo-field-messages{-ms-grid-column:3;-ms-grid-row:3;display:grid;grid-area:messages}:host .novo-field-hint-wrapper{display:flex}", ":host.novo-field-appearance-standard.novo-field-appearance-underlined .novo-field-input{border-bottom:1px solid #afb9c0!important}:host.novo-field-appearance-standard.novo-field-appearance-underlined:not(.novo-focused):hover .novo-field-input{border-bottom:1px solid #3d464d!important}:host.novo-field-appearance-standard.novo-field-appearance-underlined.novo-focused .novo-field-input{border-bottom:1px solid #4a89dc!important}:host.novo-field-appearance-standard.novo-field-appearance-underlined.novo-field-invalid .novo-field-input{border-bottom:1px solid #da4453!important}", ":host.novo-field-appearance-fill.novo-field-layout-horizontal .novo-field-input,:host.novo-field-appearance-fill.novo-field-layout-vertical{background:var(--background-main)}:host.novo-field-appearance-fill.novo-field-layout-vertical .novo-field-label{padding-left:.5em;padding-right:.5em;padding-top:.5em}:host.novo-field-appearance-fill.novo-field-layout-vertical .novo-field-input{padding:0 .5em}:host.novo-field-appearance-fill.novo-field-appearance-underlined .novo-field-input{border-bottom:1px solid #afb9c0!important}:host.novo-field-appearance-fill.novo-field-appearance-underlined:not(.novo-focused):hover .novo-field-input{border-bottom:1px solid #3d464d!important}:host.novo-field-appearance-fill.novo-field-appearance-underlined.novo-focused .novo-field-label{color:#4a89dc!important}:host.novo-field-appearance-fill.novo-field-appearance-underlined.novo-focused .novo-field-input{border-bottom:1px solid #4a89dc!important}:host.novo-field-appearance-fill.novo-field-appearance-underlined.novo-field-invalid .novo-field-input{border-bottom:1px solid #da4453!important}", ":host.novo-field-appearance-outline{border:1px solid #afb9c0!important;border-radius:.4rem;padding:.5rem}:host.novo-field-appearance-outline.novo-field-layout-vertical .novo-field-label{background:#fff;margin-left:.5rem;margin-top:-1.5rem;padding:.5rem;width:-webkit-max-content;width:-moz-max-content;width:max-content}:host.novo-field-appearance-outline:not(.novo-focused):hover{border:1px solid #3d464d!important}:host.novo-field-appearance-outline.novo-focused{border:1px solid #4a89dc!important}:host.novo-field-appearance-outline.novo-field-invalid{border:1px solid #da4453!important}", ":host.novo-field-appearance-list.novo-field-layout-horizontal{border-bottom:1px solid #f7f7f7!important;min-height:4.2rem;padding:.5rem 1.2rem}:host.novo-field-appearance-list.novo-field-layout-horizontal .novo-field-label{align-items:start;margin-top:.9rem}:host.novo-field-appearance-list.novo-field-layout-horizontal.novo-field-no-label{gap:0;grid-template-columns:0 minmax(300px,600px)}:host.novo-field-appearance-list.novo-field-layout-horizontal.novo-field-appearance-underlined:not(.novo-focused):hover .novo-field-input{background:rgba(74,137,220,.15)}:host.novo-field-appearance-list.novo-field-layout-horizontal.novo-field-appearance-underlined.novo-focused .novo-field-label{color:#4a89dc!important}:host.novo-field-appearance-list.novo-field-layout-horizontal.novo-field-appearance-underlined.novo-field-invalid .novo-field-label{color:#da4453!important}"]
|
|
30977
|
+
styles: [":host{display:grid;position:relative}:host.novo-field-layout-horizontal{grid-gap:0 1rem;grid-template-areas:\"label input\" \". messages\";grid-template-columns:150px minmax(-webkit-min-content,-webkit-max-content);grid-template-columns:150px minmax(min-content,max-content)}:host.novo-field-layout-vertical{grid-template-areas:\"label\" \"input\" \"messages\";grid-template-columns:minmax(-webkit-min-content,100%);grid-template-columns:minmax(min-content,100%);grid-template-rows:repeat(3,minmax(-webkit-min-content,-webkit-max-content));grid-template-rows:repeat(3,minmax(min-content,max-content));width:-webkit-max-content;width:-moz-max-content;width:max-content}:host .novo-field-label{-ms-grid-column:1;-ms-grid-row:1;align-items:center;display:grid;grid-area:label}:host.novo-field-type-color .novo-field-input::ng-deep .novo-input-element{padding:0}:host .novo-field-input{-ms-grid-column:3;-ms-grid-row:1;display:grid;flex:1 1 100%;grid-area:input;grid-template-columns:minmax(auto,-webkit-max-content) 1fr minmax(auto,-webkit-max-content);grid-template-columns:minmax(auto,max-content) 1fr minmax(auto,max-content)}:host .novo-field-input::ng-deep .novo-input-element{background-color:transparent;background-image:none;border:none;border-bottom:none!important;box-shadow:none;color:inherit;display:inline;font-size:var(--font-size-text);font-weight:400;padding:.4rem .2rem;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle}:host .novo-field-input::ng-deep .novo-input-element.text-nowrap{white-space:nowrap}:host .novo-field-input::ng-deep .novo-input-element.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:host .novo-field-input::ng-deep .novo-input-element.text-size-default{font-size:inherit}:host .novo-field-input::ng-deep .novo-input-element.text-size-body{font-size:1.3rem}:host .novo-field-input::ng-deep .novo-input-element.text-size-xs{font-size:1rem}:host .novo-field-input::ng-deep .novo-input-element.text-size-sm{font-size:1.2rem}:host .novo-field-input::ng-deep .novo-input-element.text-size-md{font-size:1.3rem}:host .novo-field-input::ng-deep .novo-input-element.text-size-lg{font-size:1.6rem}:host .novo-field-input::ng-deep .novo-input-element.text-size-xl{font-size:2rem}:host .novo-field-input::ng-deep .novo-input-element.text-size-2xl{font-size:2.6rem}:host .novo-field-input::ng-deep .novo-input-element.text-size-3xl{font-size:3.2rem}:host .novo-field-input::ng-deep .novo-input-element.text-size-smaller{font-size:.8em}:host .novo-field-input::ng-deep .novo-input-element.text-size-larger{font-size:1.2em}:host .novo-field-input::ng-deep .novo-input-element.text-color-black{color:#000}:host .novo-field-input::ng-deep .novo-input-element.text-color-white{color:#fff}:host .novo-field-input::ng-deep .novo-input-element.text-color-gray,:host .novo-field-input::ng-deep .novo-input-element.text-color-grey{color:#9e9e9e}:host .novo-field-input::ng-deep .novo-input-element.text-color-bright,:host .novo-field-input::ng-deep .novo-input-element.text-color-offWhite{color:#f7f7f7}:host .novo-field-input::ng-deep .novo-input-element.text-color-light{color:#dbdbdb}:host .novo-field-input::ng-deep .novo-input-element.text-color-neutral{color:#4f5361}:host .novo-field-input::ng-deep .novo-input-element.text-color-dark{color:#3d464d}:host .novo-field-input::ng-deep .novo-input-element.text-color-orange{color:#ff6900}:host .novo-field-input::ng-deep .novo-input-element.text-color-navigation{color:#202945}:host .novo-field-input::ng-deep .novo-input-element.text-color-skyBlue{color:#009bdf}:host .novo-field-input::ng-deep .novo-input-element.text-color-steel{color:#5b6770}:host .novo-field-input::ng-deep .novo-input-element.text-color-metal{color:#637893}:host .novo-field-input::ng-deep .novo-input-element.text-color-sand{color:#f4f4f4}:host .novo-field-input::ng-deep .novo-input-element.text-color-silver{color:#e2e2e2}:host .novo-field-input::ng-deep .novo-input-element.text-color-stone{color:#bebebe}:host .novo-field-input::ng-deep .novo-input-element.text-color-ash{color:#a0a0a0}:host .novo-field-input::ng-deep .novo-input-element.text-color-slate{color:#707070}:host .novo-field-input::ng-deep .novo-input-element.text-color-onyx{color:#526980}:host .novo-field-input::ng-deep .novo-input-element.text-color-charcoal{color:#282828}:host .novo-field-input::ng-deep .novo-input-element.text-color-moonlight{color:#1a242f}:host .novo-field-input::ng-deep .novo-input-element.text-color-midnight{color:#202945}:host .novo-field-input::ng-deep .novo-input-element.text-color-darkness{color:#161f27}:host .novo-field-input::ng-deep .novo-input-element.text-color-navy{color:#0d2d42}:host .novo-field-input::ng-deep .novo-input-element.text-color-aqua{color:#3bafda}:host .novo-field-input::ng-deep .novo-input-element.text-color-ocean{color:#4a89dc}:host .novo-field-input::ng-deep .novo-input-element.text-color-mint{color:#37bc9b}:host .novo-field-input::ng-deep .novo-input-element.text-color-grass{color:#8cc152}:host .novo-field-input::ng-deep .novo-input-element.text-color-sunflower{color:#f6b042}:host .novo-field-input::ng-deep .novo-input-element.text-color-bittersweet{color:#eb6845}:host .novo-field-input::ng-deep .novo-input-element.text-color-grapefruit{color:#da4453}:host .novo-field-input::ng-deep .novo-input-element.text-color-carnation{color:#d770ad}:host .novo-field-input::ng-deep .novo-input-element.text-color-lavender{color:#967adc}:host .novo-field-input::ng-deep .novo-input-element.text-color-mountain{color:#9678b6}:host .novo-field-input::ng-deep .novo-input-element.text-color-info,:host .novo-field-input::ng-deep .novo-input-element.text-color-positive{color:#4a89dc}:host .novo-field-input::ng-deep .novo-input-element.text-color-success{color:#8cc152}:host .novo-field-input::ng-deep .novo-input-element.text-color-danger,:host .novo-field-input::ng-deep .novo-input-element.text-color-error,:host .novo-field-input::ng-deep .novo-input-element.text-color-negative{color:#da4453}:host .novo-field-input::ng-deep .novo-input-element.text-color-warning{color:#f6b042}:host .novo-field-input::ng-deep .novo-input-element.text-color-empty{color:#cccdcc}:host .novo-field-input::ng-deep .novo-input-element.text-color-disabled{color:#bebebe}:host .novo-field-input::ng-deep .novo-input-element.text-color-background{color:#f7f7f7}:host .novo-field-input::ng-deep .novo-input-element.text-color-backgroundDark{color:#e2e2e2}:host .novo-field-input::ng-deep .novo-input-element.text-color-presentation{color:#5b6770}:host .novo-field-input::ng-deep .novo-input-element.text-color-bullhorn{color:#ff6900}:host .novo-field-input::ng-deep .novo-input-element.text-color-pulse{color:#3bafda}:host .novo-field-input::ng-deep .novo-input-element.text-color-company{color:#39d}:host .novo-field-input::ng-deep .novo-input-element.text-color-candidate{color:#4b7}:host .novo-field-input::ng-deep .novo-input-element.text-color-lead{color:#a69}:host .novo-field-input::ng-deep .novo-input-element.text-color-contact{color:#fa4}:host .novo-field-input::ng-deep .novo-input-element.text-color-opportunity{color:#625}:host .novo-field-input::ng-deep .novo-input-element.text-color-job{color:#b56}:host .novo-field-input::ng-deep .novo-input-element.text-color-submission{color:#a9adbb}:host .novo-field-input::ng-deep .novo-input-element.text-color-sendout{color:#747884}:host .novo-field-input::ng-deep .novo-input-element.text-color-placement{color:#0b344f}:host .novo-field-input::ng-deep .novo-input-element.text-color-note{color:#747884}:host .novo-field-input::ng-deep .novo-input-element.text-color-contract{color:#454ea0}:host .novo-field-input::ng-deep .novo-input-element.text-color-billableCharge,:host .novo-field-input::ng-deep .novo-input-element.text-color-corporateUser,:host .novo-field-input::ng-deep .novo-input-element.text-color-credential,:host .novo-field-input::ng-deep .novo-input-element.text-color-distributionList,:host .novo-field-input::ng-deep .novo-input-element.text-color-earnCode,:host .novo-field-input::ng-deep .novo-input-element.text-color-invoiceStatement,:host .novo-field-input::ng-deep .novo-input-element.text-color-jobCode,:host .novo-field-input::ng-deep .novo-input-element.text-color-payableCharge,:host .novo-field-input::ng-deep .novo-input-element.text-color-person,:host .novo-field-input::ng-deep .novo-input-element.text-color-user{color:#696d79}:host .novo-field-input::ng-deep .novo-input-element.margin-before{margin-top:.4rem}:host .novo-field-input::ng-deep .novo-input-element.margin-after{margin-bottom:.8rem}:host .novo-field-input::ng-deep .novo-input-element.text-length-small{max-width:40ch}:host .novo-field-input::ng-deep .novo-input-element.text-length-medium{max-width:55ch}:host .novo-field-input::ng-deep .novo-input-element.text-length-large{max-width:70ch}:host .novo-field-input::ng-deep .novo-input-element.text-weight-hairline{font-weight:100}:host .novo-field-input::ng-deep .novo-input-element.text-weight-thin{font-weight:200}:host .novo-field-input::ng-deep .novo-input-element.text-weight-light{font-weight:300}:host .novo-field-input::ng-deep .novo-input-element.text-weight-normal{font-weight:400}:host .novo-field-input::ng-deep .novo-input-element.text-weight-medium{font-weight:500}:host .novo-field-input::ng-deep .novo-input-element.text-weight-semibold{font-weight:600}:host .novo-field-input::ng-deep .novo-input-element.text-weight-bold{font-weight:700}:host .novo-field-input::ng-deep .novo-input-element.text-weight-extrabold{font-weight:800}:host .novo-field-input::ng-deep .novo-input-element.text-weight-heavy{font-weight:900}:host .novo-field-input::ng-deep .novo-input-element.text-weight-lighter{font-weight:lighter}:host .novo-field-input::ng-deep .novo-input-element.text-weight-bolder{font-weight:bolder}:host .novo-field-input::ng-deep .novo-input-element:focus{outline:none}:host .novo-field-input::ng-deep .novo-radio-group{padding:.5rem 0}:host .novo-field-input .novo-field-infix,:host .novo-field-input .novo-field-prefix{align-items:center;display:flex}:host .novo-field-input .novo-field-infix::ng-deep .novo-input-element,:host .novo-field-input .novo-field-infix select{width:100%}:host .novo-field-input .novo-field-suffix{align-items:center;display:flex}:host .novo-field-messages{-ms-grid-column:3;-ms-grid-row:3;display:grid;grid-area:messages}:host .novo-field-hint-wrapper{display:flex;flex-direction:column}", ":host.novo-field-appearance-standard.novo-field-appearance-underlined .novo-field-input{border-bottom:1px solid #afb9c0!important}:host.novo-field-appearance-standard.novo-field-appearance-underlined:not(.novo-focused):hover .novo-field-input{border-bottom:1px solid #3d464d!important}:host.novo-field-appearance-standard.novo-field-appearance-underlined.novo-focused .novo-field-input{border-bottom:1px solid #4a89dc!important}:host.novo-field-appearance-standard.novo-field-appearance-underlined.novo-field-invalid .novo-field-input{border-bottom:1px solid #da4453!important}", ":host.novo-field-appearance-fill.novo-field-layout-horizontal .novo-field-input,:host.novo-field-appearance-fill.novo-field-layout-vertical{background:var(--background-main)}:host.novo-field-appearance-fill.novo-field-layout-vertical .novo-field-label{padding-left:.5em;padding-right:.5em;padding-top:.5em}:host.novo-field-appearance-fill.novo-field-layout-vertical .novo-field-input{padding:0 .5em}:host.novo-field-appearance-fill.novo-field-appearance-underlined .novo-field-input{border-bottom:1px solid #afb9c0!important}:host.novo-field-appearance-fill.novo-field-appearance-underlined:not(.novo-focused):hover .novo-field-input{border-bottom:1px solid #3d464d!important}:host.novo-field-appearance-fill.novo-field-appearance-underlined.novo-focused .novo-field-label{color:#4a89dc!important}:host.novo-field-appearance-fill.novo-field-appearance-underlined.novo-focused .novo-field-input{border-bottom:1px solid #4a89dc!important}:host.novo-field-appearance-fill.novo-field-appearance-underlined.novo-field-invalid .novo-field-input{border-bottom:1px solid #da4453!important}", ":host.novo-field-appearance-outline{border:1px solid #afb9c0!important;border-radius:.4rem;padding:.5rem}:host.novo-field-appearance-outline.novo-field-layout-vertical .novo-field-label{background:#fff;margin-left:.5rem;margin-top:-1.5rem;padding:.5rem;width:-webkit-max-content;width:-moz-max-content;width:max-content}:host.novo-field-appearance-outline:not(.novo-focused):hover{border:1px solid #3d464d!important}:host.novo-field-appearance-outline.novo-focused{border:1px solid #4a89dc!important}:host.novo-field-appearance-outline.novo-field-invalid{border:1px solid #da4453!important}", ":host.novo-field-appearance-list.novo-field-layout-horizontal{border-bottom:1px solid #f7f7f7!important;min-height:4.2rem;padding:.5rem 1.2rem}:host.novo-field-appearance-list.novo-field-layout-horizontal .novo-field-label{align-items:start;margin-top:.9rem}:host.novo-field-appearance-list.novo-field-layout-horizontal.novo-field-no-label{gap:0;grid-template-columns:0 minmax(300px,600px)}:host.novo-field-appearance-list.novo-field-layout-horizontal.novo-field-appearance-underlined:not(.novo-focused):hover .novo-field-input{background:rgba(74,137,220,.15)}:host.novo-field-appearance-list.novo-field-layout-horizontal.novo-field-appearance-underlined.novo-focused .novo-field-label{color:#4a89dc!important}:host.novo-field-appearance-list.novo-field-layout-horizontal.novo-field-appearance-underlined.novo-field-invalid .novo-field-label{color:#da4453!important}"]
|
|
30781
30978
|
},] }
|
|
30782
30979
|
];
|
|
30783
30980
|
NovoFieldElement.ctorParameters = function () { return [
|
|
@@ -31213,6 +31410,8 @@
|
|
|
31213
31410
|
return null;
|
|
31214
31411
|
};
|
|
31215
31412
|
NovoDateFormatDirective.prototype.formatValue = function (value) {
|
|
31413
|
+
if (value == null)
|
|
31414
|
+
return '';
|
|
31216
31415
|
// Use `parse` because it keeps dates in locale
|
|
31217
31416
|
var date = dateFns.parse(value);
|
|
31218
31417
|
if (dateFns.isValid(date)) {
|
|
@@ -31285,13 +31484,23 @@
|
|
|
31285
31484
|
_this.valueChange = new i0.EventEmitter();
|
|
31286
31485
|
_this.military = false;
|
|
31287
31486
|
_this.timeFormat = exports.TIME_FORMATS.DATE;
|
|
31288
|
-
|
|
31289
|
-
|
|
31290
|
-
|
|
31291
|
-
|
|
31292
|
-
|
|
31487
|
+
_this.initFormatOptions();
|
|
31488
|
+
return _this;
|
|
31489
|
+
}
|
|
31490
|
+
NovoTimeFormatDirective.prototype.ngOnChanges = function (changes) {
|
|
31491
|
+
if (Object.keys(changes).some(function (key) { return ['military', 'timeFormat'].includes(key); })) {
|
|
31492
|
+
this.initFormatOptions();
|
|
31493
|
+
}
|
|
31494
|
+
};
|
|
31495
|
+
NovoTimeFormatDirective.prototype.initFormatOptions = function () {
|
|
31496
|
+
var _this = this;
|
|
31497
|
+
// const pattern = this.military ? 'HH:mm' : 'hh:mm A';
|
|
31498
|
+
var amFormat = this.labels.timeFormatAM.toUpperCase();
|
|
31499
|
+
var pmFormat = this.labels.timeFormatPM.toUpperCase();
|
|
31500
|
+
this.unmask = 'typed';
|
|
31501
|
+
this.imask = {
|
|
31293
31502
|
mask: Date,
|
|
31294
|
-
pattern:
|
|
31503
|
+
pattern: this.military ? 'HH:mm' : 'hh:mm aa',
|
|
31295
31504
|
overwrite: true,
|
|
31296
31505
|
autofix: true,
|
|
31297
31506
|
lazy: false,
|
|
@@ -31332,11 +31541,11 @@
|
|
|
31332
31541
|
},
|
|
31333
31542
|
},
|
|
31334
31543
|
};
|
|
31335
|
-
|
|
31336
|
-
}
|
|
31544
|
+
};
|
|
31337
31545
|
NovoTimeFormatDirective.prototype._checkInput = function (event) {
|
|
31338
31546
|
if (document.activeElement === event.target) {
|
|
31339
31547
|
var text = event.target.value;
|
|
31548
|
+
var hour = text.slice(0, 2);
|
|
31340
31549
|
if ((this.military && Number(text[0]) > 2) || (!this.military && Number(text[0]) > 1)) {
|
|
31341
31550
|
event.preventDefault();
|
|
31342
31551
|
var value = "0" + text;
|
|
@@ -31349,14 +31558,21 @@
|
|
|
31349
31558
|
if (timePeriod) {
|
|
31350
31559
|
event.target.value = text.slice(0, 5) + " " + timePeriod;
|
|
31351
31560
|
}
|
|
31561
|
+
if (event.target.selectionStart >= 3 && this.hourOneFormatRequired(hour)) {
|
|
31562
|
+
event.target.value = "01:" + event.target.value.slice(3, event.target.value.length);
|
|
31563
|
+
}
|
|
31352
31564
|
}
|
|
31353
31565
|
}
|
|
31354
31566
|
};
|
|
31355
31567
|
NovoTimeFormatDirective.prototype._handleBlur = function (event) {
|
|
31356
31568
|
var text = event.target.value;
|
|
31569
|
+
var hour = text.slice(0, 2);
|
|
31357
31570
|
if (!this.military) {
|
|
31358
31571
|
var input_2 = text.substr(5, 4).replace(/\-/g, '').trim().slice(0, 2);
|
|
31359
31572
|
var timePeriod = this.imask.blocks.aa.enum.find(function (it) { return it[0] === input_2[0]; });
|
|
31573
|
+
if (this.hourOneFormatRequired(hour)) {
|
|
31574
|
+
event.target.value = "01:" + text.slice(3, text.length);
|
|
31575
|
+
}
|
|
31360
31576
|
if (!timePeriod) {
|
|
31361
31577
|
event.target.value = text.slice(0, 5) + " --";
|
|
31362
31578
|
}
|
|
@@ -31364,9 +31580,21 @@
|
|
|
31364
31580
|
};
|
|
31365
31581
|
NovoTimeFormatDirective.prototype._handleKeydown = function (event) {
|
|
31366
31582
|
var input = event.target;
|
|
31583
|
+
var hour = input.value.slice(0, 2);
|
|
31367
31584
|
if (event.key === "Backspace" /* Backspace */ && input.selectionStart === input.value.length) {
|
|
31368
31585
|
event.target.value = input.value.slice(0, 5) + " --";
|
|
31369
31586
|
}
|
|
31587
|
+
else if (event.key === "Tab" /* Tab */ && input.selectionStart <= 2 && this.hourOneFormatRequired(hour)) {
|
|
31588
|
+
event.preventDefault();
|
|
31589
|
+
event.stopPropagation();
|
|
31590
|
+
event.stopImmediatePropagation();
|
|
31591
|
+
input.value = "01:" + input.value.slice(3, input.value.length);
|
|
31592
|
+
input.setSelectionRange(3, 3);
|
|
31593
|
+
}
|
|
31594
|
+
else if (event.key === "ArrowRight" /* ArrowRight */ && input.selectionStart >= 2 && this.hourOneFormatRequired(hour)) {
|
|
31595
|
+
input.value = "01:" + input.value.slice(3, input.value.length);
|
|
31596
|
+
input.setSelectionRange(2, 2);
|
|
31597
|
+
}
|
|
31370
31598
|
};
|
|
31371
31599
|
NovoTimeFormatDirective.prototype.normalize = function (value) {
|
|
31372
31600
|
if (this.military) {
|
|
@@ -31429,6 +31657,9 @@
|
|
|
31429
31657
|
fn(formatted);
|
|
31430
31658
|
};
|
|
31431
31659
|
};
|
|
31660
|
+
NovoTimeFormatDirective.prototype.hourOneFormatRequired = function (hourInput) {
|
|
31661
|
+
return hourInput === '-1' || hourInput === '1-';
|
|
31662
|
+
};
|
|
31432
31663
|
return NovoTimeFormatDirective;
|
|
31433
31664
|
}(angularImask.IMaskDirective));
|
|
31434
31665
|
NovoTimeFormatDirective.decorators = [
|
|
@@ -32000,7 +32231,7 @@
|
|
|
32000
32231
|
}());
|
|
32001
32232
|
NovoFieldModule.decorators = [
|
|
32002
32233
|
{ type: i0.NgModule, args: [{
|
|
32003
|
-
imports: [common.CommonModule, NovoButtonModule, NovoOverlayModule, NovoOptionModule],
|
|
32234
|
+
imports: [common.CommonModule, NovoButtonModule, NovoOverlayModule, NovoOptionModule, NovoCommonModule],
|
|
32004
32235
|
declarations: [
|
|
32005
32236
|
NovoFieldElement,
|
|
32006
32237
|
// NovoLabelElement,
|
|
@@ -33012,11 +33243,7 @@
|
|
|
33012
33243
|
},
|
|
33013
33244
|
set: function (selected) {
|
|
33014
33245
|
this.itemToAdd = '';
|
|
33015
|
-
|
|
33016
|
-
this._value = selected;
|
|
33017
|
-
this.changed.emit({ value: selected, rawValue: this.items });
|
|
33018
|
-
this.onModelChange(selected);
|
|
33019
|
-
}
|
|
33246
|
+
this._value = selected;
|
|
33020
33247
|
},
|
|
33021
33248
|
enumerable: false,
|
|
33022
33249
|
configurable: true
|
|
@@ -33025,8 +33252,7 @@
|
|
|
33025
33252
|
this.items = [];
|
|
33026
33253
|
this._items.next(this.items);
|
|
33027
33254
|
this.value = null;
|
|
33028
|
-
this.
|
|
33029
|
-
this.onModelChange(this.value);
|
|
33255
|
+
this._propagateChanges();
|
|
33030
33256
|
};
|
|
33031
33257
|
NovoChipsElement.prototype.setItems = function () {
|
|
33032
33258
|
var e_1, _b;
|
|
@@ -33102,8 +33328,9 @@
|
|
|
33102
33328
|
});
|
|
33103
33329
|
}
|
|
33104
33330
|
}
|
|
33105
|
-
this.changed.emit({ value: this.model, rawValue: this.items });
|
|
33106
33331
|
this._items.next(this.items);
|
|
33332
|
+
this.value = this.source && this.source.valueFormatter ? this.source.valueFormatter(this.items) : this.items.map(function (i) { return i.value; });
|
|
33333
|
+
this._propagateChanges();
|
|
33107
33334
|
};
|
|
33108
33335
|
NovoChipsElement.prototype.getLabelFromOptions = function (value) {
|
|
33109
33336
|
var id = value;
|
|
@@ -33154,14 +33381,14 @@
|
|
|
33154
33381
|
}
|
|
33155
33382
|
}
|
|
33156
33383
|
this._items.next(this.items);
|
|
33384
|
+
this._propagateChanges();
|
|
33157
33385
|
};
|
|
33158
33386
|
NovoChipsElement.prototype.remove = function (event, item) {
|
|
33159
33387
|
this.items.splice(this.items.indexOf(item), 1);
|
|
33160
33388
|
this.deselectAll();
|
|
33161
33389
|
this.value = this.source && this.source.valueFormatter ? this.source.valueFormatter(this.items) : this.items.map(function (i) { return i.value; });
|
|
33162
|
-
this.changed.emit({ value: this.value.length ? this.value : '', rawValue: this.items });
|
|
33163
|
-
this.onModelChange(this.value.length ? this.value : '');
|
|
33164
33390
|
this._items.next(this.items);
|
|
33391
|
+
this._propagateChanges();
|
|
33165
33392
|
};
|
|
33166
33393
|
NovoChipsElement.prototype.onKeyDown = function (event) {
|
|
33167
33394
|
if (event.key === "Backspace" /* Backspace */) {
|
|
@@ -33198,6 +33425,12 @@
|
|
|
33198
33425
|
NovoChipsElement.prototype.setDisabledState = function (disabled) {
|
|
33199
33426
|
this._disablePickerInput = disabled;
|
|
33200
33427
|
};
|
|
33428
|
+
/** Emits change event to set the model value. */
|
|
33429
|
+
NovoChipsElement.prototype._propagateChanges = function (fallbackValue) {
|
|
33430
|
+
var _a;
|
|
33431
|
+
this.changed.emit({ value: ((_a = this.value) === null || _a === void 0 ? void 0 : _a.length) ? this.value : '', rawValue: this.items });
|
|
33432
|
+
this.onModelChange(this.value);
|
|
33433
|
+
};
|
|
33201
33434
|
/**
|
|
33202
33435
|
* @name showPreview
|
|
33203
33436
|
*
|
|
@@ -34477,6 +34710,7 @@
|
|
|
34477
34710
|
this.sortFilterSource = new rxjs.Subject();
|
|
34478
34711
|
this.resetSource = new rxjs.Subject();
|
|
34479
34712
|
this.expandSource = new rxjs.Subject();
|
|
34713
|
+
this.allMatchingSelectedSource = new rxjs.Subject();
|
|
34480
34714
|
this.dataLoaded = new rxjs.Subject();
|
|
34481
34715
|
this.sort = undefined;
|
|
34482
34716
|
this.filter = undefined;
|
|
@@ -34565,6 +34799,7 @@
|
|
|
34565
34799
|
};
|
|
34566
34800
|
DataTableState.prototype.clearSelected = function (fireUpdate) {
|
|
34567
34801
|
if (fireUpdate === void 0) { fireUpdate = true; }
|
|
34802
|
+
this.allMatchingSelectedSource.next(false);
|
|
34568
34803
|
this.globalSearch = undefined;
|
|
34569
34804
|
this.page = 0;
|
|
34570
34805
|
this.reset(fireUpdate, true);
|
|
@@ -34613,9 +34848,10 @@
|
|
|
34613
34848
|
}
|
|
34614
34849
|
}
|
|
34615
34850
|
};
|
|
34616
|
-
DataTableState.prototype.checkRetainment = function (caller) {
|
|
34851
|
+
DataTableState.prototype.checkRetainment = function (caller, allMatchingSelected) {
|
|
34852
|
+
if (allMatchingSelected === void 0) { allMatchingSelected = false; }
|
|
34617
34853
|
var _a;
|
|
34618
|
-
this.retainSelected = ((_a = this.selectionOptions) === null || _a === void 0 ? void 0 : _a.some(function (option) { return option.label === caller; })) || this.retainSelected;
|
|
34854
|
+
this.retainSelected = ((_a = this.selectionOptions) === null || _a === void 0 ? void 0 : _a.some(function (option) { return option.label === caller; })) || this.retainSelected || allMatchingSelected;
|
|
34619
34855
|
};
|
|
34620
34856
|
return DataTableState;
|
|
34621
34857
|
}());
|
|
@@ -34676,6 +34912,13 @@
|
|
|
34676
34912
|
enumerable: false,
|
|
34677
34913
|
configurable: true
|
|
34678
34914
|
});
|
|
34915
|
+
Object.defineProperty(NovoDataTableSortButton.prototype, "isActive", {
|
|
34916
|
+
get: function () {
|
|
34917
|
+
return this.value !== exports.SortDirection.NONE;
|
|
34918
|
+
},
|
|
34919
|
+
enumerable: false,
|
|
34920
|
+
configurable: true
|
|
34921
|
+
});
|
|
34679
34922
|
NovoDataTableSortButton.prototype.changeSort = function (dir) {
|
|
34680
34923
|
this.value = dir;
|
|
34681
34924
|
this.sortChange.emit(dir);
|
|
@@ -34689,10 +34932,10 @@
|
|
|
34689
34932
|
NovoDataTableSortButton.decorators = [
|
|
34690
34933
|
{ type: i0.Component, args: [{
|
|
34691
34934
|
selector: 'novo-sort-button',
|
|
34692
|
-
template: "<novo-icon
|
|
34935
|
+
template: "<novo-icon\n class=\"novo-sort-asc-icon\"\n [class.sort-active]=\"isActive\"\n [@sortAsc]=\"value\"\n (click)=\"changeSort(SortDirection.DESC)\">arrow-up</novo-icon>\n<novo-icon\n class=\"novo-sort-desc-icon\"\n [class.sort-active]=\"isActive\"\n [@sortDesc]=\"value\"\n (click)=\"changeSort(SortDirection.NONE)\">arrow-down</novo-icon>\n<novo-icon\n class=\"novo-sortable-icon\"\n [class.sort-active]=\"isActive\"\n [@sortNone]=\"value\"\n (click)=\"changeSort(SortDirection.ASC)\">sortable</novo-icon>",
|
|
34693
34936
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
34694
34937
|
animations: [sortAscAnim, sortDescAnim, sortNoneAnim],
|
|
34695
|
-
styles: [":host{cursor:pointer;display:inline-flex;height:1.6rem;position:relative;width:1.6rem}:host novo-icon{color
|
|
34938
|
+
styles: [":host{cursor:pointer;display:inline-flex;height:1.6rem;position:relative;width:1.6rem}:host novo-icon{color:var(--text-muted);opacity:0;position:absolute}:host novo-icon:hover{color:var(--selection)}:host .novo-sort-asc-icon{color:var(--selection);top:10px}:host .novo-sort-desc-icon{color:var(--selection);top:-10px}"]
|
|
34696
34939
|
},] }
|
|
34697
34940
|
];
|
|
34698
34941
|
NovoDataTableSortButton.ctorParameters = function () { return [
|
|
@@ -34985,6 +35228,12 @@
|
|
|
34985
35228
|
}
|
|
34986
35229
|
}
|
|
34987
35230
|
};
|
|
35231
|
+
NovoDataTableCellHeader.prototype.handleEscapeKeydown = function (event) {
|
|
35232
|
+
if (!this.multiSelect) {
|
|
35233
|
+
this.error = false;
|
|
35234
|
+
this.dropdown.closePanel();
|
|
35235
|
+
}
|
|
35236
|
+
};
|
|
34988
35237
|
NovoDataTableCellHeader.prototype.clearOptionFilter = function () {
|
|
34989
35238
|
this.error = false;
|
|
34990
35239
|
if (this.optionFilter.length > 0) {
|
|
@@ -35035,7 +35284,7 @@
|
|
|
35035
35284
|
this.dropdown._handleKeydown = function (event) {
|
|
35036
35285
|
_this.multiSelectOptionFilterHandleKeydown(event);
|
|
35037
35286
|
};
|
|
35038
|
-
setTimeout(
|
|
35287
|
+
// setTimeout(() => this.optionFilterInput.nativeElement.focus(), 0);
|
|
35039
35288
|
this.changeDetectorRef.markForCheck();
|
|
35040
35289
|
}
|
|
35041
35290
|
};
|
|
@@ -35054,6 +35303,7 @@
|
|
|
35054
35303
|
var _this = this;
|
|
35055
35304
|
var actualFilter = NovoDataTableFilterUtils.constructFilter(filter, this.config.filterConfig.type, this.multiSelect);
|
|
35056
35305
|
var selectedOption = this.config.filterConfig.type === 'date' && filter ? filter : undefined;
|
|
35306
|
+
this.activeDateFilter = selectedOption ? selectedOption.label : undefined;
|
|
35057
35307
|
if (this.changeTimeout) {
|
|
35058
35308
|
clearTimeout(this.changeTimeout);
|
|
35059
35309
|
}
|
|
@@ -35102,7 +35352,7 @@
|
|
|
35102
35352
|
NovoDataTableCellHeader.decorators = [
|
|
35103
35353
|
{ type: i0.Component, args: [{
|
|
35104
35354
|
selector: '[novo-data-table-cell-config]',
|
|
35105
|
-
template: "\n <i class=\"bhi-{{ labelIcon }} label-icon\" *ngIf=\"labelIcon\" data-automation-id=\"novo-data-table-header-icon\"></i>\n <label data-automation-id=\"novo-data-table-label\">{{ label }}</label>\n <div>\n <novo-sort-button\n *ngIf=\"config.sortable\"\n data-automation-id=\"novo-data-table-sort\"\n tooltipPosition=\"
|
|
35355
|
+
template: "\n <i class=\"bhi-{{ labelIcon }} label-icon\" *ngIf=\"labelIcon\" data-automation-id=\"novo-data-table-header-icon\"></i>\n <label data-automation-id=\"novo-data-table-label\">{{ label }}</label>\n <div>\n <novo-sort-button\n *ngIf=\"config.sortable\"\n data-automation-id=\"novo-data-table-sort\"\n tooltipPosition=\"left\"\n [tooltip]=\"labels.sort\"\n [attr.data-feature-id]=\"'novo-data-table-sort-' + this.id\"\n (sortChange)=\"sort()\"\n [value]=\"sortValue\"\n ></novo-sort-button>\n <novo-dropdown\n *ngIf=\"config.filterable\"\n side=\"right\"\n parentScrollSelector=\".novo-data-table-container\"\n containerClass=\"data-table-dropdown\"\n data-automation-id=\"novo-data-table-filter\"\n [multiple]=\"multiSelect\"\n >\n <novo-icon\n dropdownTrigger\n class=\"filter-button\"\n [class.filter-active]=\"filterActive\"\n [tooltip]=\"labels.filters\"\n [tooltipPosition]=\"'left'\"\n [attr.data-feature-id]=\"'novo-data-table-filter-' + this.id\"\n (click)=\"focusInput()\"\n >filter</novo-icon\n >\n <div class=\"header\">\n <novo-label>{{ labels.filters }}</novo-label>\n <novo-button\n theme=\"dialogue\"\n color=\"negative\"\n size=\"small\"\n icon=\"times\"\n (click)=\"clearFilter()\"\n *ngIf=\"filter !== null && filter !== undefined && filter !== ''\"\n data-automation-id=\"novo-data-table-filter-clear\"\n >\n {{ labels.clear }}\n </novo-button>\n </div>\n <div class=\"optgroup-container\">\n <ng-container [ngSwitch]=\"config.filterConfig.type\">\n <novo-optgroup *ngSwitchCase=\"'date'\" (keydown.escape)=\"handleEscapeKeydown($event)\">\n <ng-container *ngIf=\"!showCustomRange\">\n <novo-option\n [class.active]=\"activeDateFilter === option.label\"\n *ngFor=\"let option of config.filterConfig.options\"\n (click)=\"filterData(option)\"\n [attr.data-automation-id]=\"'novo-data-table-filter-' + option.label\"\n >\n <span>{{ option.label }}</span>\n <novo-icon novoSuffix color=\"positive\" *ngIf=\"activeDateFilter === option.label\">check</novo-icon>\n </novo-option>\n </ng-container>\n <novo-option\n [class.active]=\"labels.customDateRange === activeDateFilter\"\n (click)=\"toggleCustomRange($event, true)\"\n *ngIf=\"config.filterConfig.allowCustomRange && !showCustomRange\"\n >\n <span>{{ labels.customDateRange }}</span>\n <novo-icon novoSuffix color=\"positive\" *ngIf=\"labels.customDateRange === activeDateFilter\">check</novo-icon>\n </novo-option>\n <novo-option class=\"calendar-container\" *ngIf=\"showCustomRange\" keepOpen>\n <novo-stack>\n <div class=\"back-link\" (click)=\"toggleCustomRange($event, false)\">\n <i class=\"bhi-previous\"></i>{{ labels.backToPresetFilters }}\n </div>\n <novo-date-picker\n (onSelect)=\"filterData($event)\"\n [(ngModel)]=\"filter\"\n range=\"true\"\n (keydown.escape)=\"handleEscapeKeydown($event)\"\n ></novo-date-picker>\n </novo-stack>\n </novo-option>\n </novo-optgroup>\n <novo-optgroup *ngSwitchCase=\"'select'\">\n <novo-option\n [class.active]=\"filter === option\"\n *ngFor=\"let option of config.filterConfig.options\"\n (click)=\"filterData(option)\"\n [attr.data-automation-id]=\"'novo-data-table-filter-' + (option?.label || option)\"\n >\n <span>{{ option?.label || option }}</span>\n <novo-icon novoSuffix color=\"positive\" *ngIf=\"option.hasOwnProperty('value') ? filter === option.value : filter === option\"\n >check</novo-icon\n >\n </novo-option>\n </novo-optgroup>\n <ng-container *ngSwitchCase=\"'multi-select'\">\n <novo-optgroup class=\"dropdown-list-filter\" (keydown)=\"multiSelectOptionFilterHandleKeydown($event)\">\n <novo-option class=\"filter-search\" inert>\n <novo-field flex>\n <input\n novoInput\n [(ngModel)]=\"optionFilter\"\n (ngModelChange)=\"multiSelectOptionFilter($event)\"\n #optionFilterInput\n data-automation-id=\"novo-data-table-multi-select-option-filter-input\"\n />\n <novo-icon novoSuffix>search</novo-icon>\n <novo-error class=\"error-text\" [hidden]=\"!error || !multiSelectHasVisibleOptions()\">{{\n labels.selectFilterOptions\n }}</novo-error>\n </novo-field>\n </novo-option>\n </novo-optgroup>\n <novo-optgroup class=\"dropdown-list-options\" (keydown.escape)=\"handleEscapeKeydown($event)\">\n <novo-option\n *ngFor=\"let option of config.filterConfig.options\"\n [hidden]=\"multiSelectOptionIsHidden(option)\"\n (click)=\"toggleSelection(option)\"\n [attr.data-automation-id]=\"'novo-data-table-filter-' + (option?.label || option)\"\n >\n <span>{{ option?.label || option }}</span>\n <novo-icon novoSuffix color=\"positive\">{{\n isSelected(option, multiSelectedOptions) ? 'checkbox-filled' : 'checkbox-empty'\n }}</novo-icon>\n </novo-option>\n </novo-optgroup>\n <novo-option class=\"filter-null-results\" [hidden]=\"multiSelectHasVisibleOptions()\">{{ labels.pickerEmpty }}</novo-option>\n </ng-container>\n <novo-optgroup *ngSwitchCase=\"'custom'\">\n <novo-option class=\"filter-search\" inert>\n <ng-container *ngTemplateOutlet=\"filterTemplate; context: { $implicit: config }\"></ng-container>\n </novo-option>\n </novo-optgroup>\n <novo-optgroup *ngSwitchDefault (keydown.escape)=\"handleEscapeKeydown($event)\">\n <novo-option class=\"filter-search\" inert>\n <novo-field flex fullWidth>\n <input\n novoInput\n [type]=\"config.filterConfig.type\"\n [(ngModel)]=\"filter\"\n (ngModelChange)=\"filterData($event)\"\n #filterInput\n data-automation-id=\"novo-data-table-filter-input\"\n (keydown.escape)=\"handleEscapeKeydown($event)\"\n />\n <novo-icon novoSuffix>search</novo-icon>\n </novo-field>\n </novo-option>\n </novo-optgroup>\n </ng-container>\n </div>\n <div class=\"footer\" *ngIf=\"multiSelect\">\n <novo-button theme=\"dialogue\" color=\"dark\" (click)=\"cancel()\" data-automation-id=\"novo-data-table-multi-select-cancel\">\n {{ labels.cancel }}\n </novo-button>\n <novo-button\n theme=\"dialogue\"\n color=\"positive\"\n (click)=\"filterMultiSelect()\"\n data-automation-id=\"novo-data-table-multi-select-filter\"\n >\n {{ labels.filters }}\n </novo-button>\n </div>\n </novo-dropdown>\n </div>\n <div class=\"spacer\"></div>\n <div class=\"data-table-header-resizable\" *ngIf=\"config.resizable\"><span (mousedown)=\"startResize($event)\"> </span></div>\n ",
|
|
35106
35356
|
changeDetection: i0.ChangeDetectionStrategy.OnPush
|
|
35107
35357
|
},] }
|
|
35108
35358
|
];
|
|
@@ -35125,7 +35375,8 @@
|
|
|
35125
35375
|
filterTemplate: [{ type: i0.Input }],
|
|
35126
35376
|
resizable: [{ type: i0.HostBinding, args: ['class.resizable',] }],
|
|
35127
35377
|
column: [{ type: i0.Input, args: ['novo-data-table-cell-config',] }],
|
|
35128
|
-
multiSelectOptionFilterHandleKeydown: [{ type: i0.HostListener, args: ['keydown', ['$event'],] }]
|
|
35378
|
+
multiSelectOptionFilterHandleKeydown: [{ type: i0.HostListener, args: ['keydown', ['$event'],] }],
|
|
35379
|
+
handleEscapeKeydown: [{ type: i0.HostListener, args: ['keydown.escape', ['$event'],] }]
|
|
35129
35380
|
};
|
|
35130
35381
|
|
|
35131
35382
|
var DataTableSource = /** @class */ (function (_super) {
|
|
@@ -35268,8 +35519,11 @@
|
|
|
35268
35519
|
this.templates = {};
|
|
35269
35520
|
this.fixedHeader = false;
|
|
35270
35521
|
this.maxSelected = undefined;
|
|
35522
|
+
this.canSelectAll = false;
|
|
35523
|
+
this.allMatchingSelected = false;
|
|
35271
35524
|
this._hideGlobalSearch = true;
|
|
35272
35525
|
this.preferencesChanged = new i0.EventEmitter();
|
|
35526
|
+
this.allSelected = new i0.EventEmitter();
|
|
35273
35527
|
this.loading = true;
|
|
35274
35528
|
this.columnToTemplate = {};
|
|
35275
35529
|
this.columnsLoaded = false;
|
|
@@ -35302,6 +35556,9 @@
|
|
|
35302
35556
|
_this.ref.detectChanges();
|
|
35303
35557
|
}, 300);
|
|
35304
35558
|
});
|
|
35559
|
+
this.allMatchingSelectedSubscription = this.state.allMatchingSelectedSource.subscribe(function (event) {
|
|
35560
|
+
_this.allMatchingSelected = event;
|
|
35561
|
+
});
|
|
35305
35562
|
}
|
|
35306
35563
|
Object.defineProperty(NovoDataTable.prototype, "displayedColumns", {
|
|
35307
35564
|
get: function () {
|
|
@@ -35488,6 +35745,9 @@
|
|
|
35488
35745
|
if (this.sortFilterSubscription) {
|
|
35489
35746
|
this.sortFilterSubscription.unsubscribe();
|
|
35490
35747
|
}
|
|
35748
|
+
if (this.allMatchingSelectedSubscription) {
|
|
35749
|
+
this.allMatchingSelectedSubscription.unsubscribe();
|
|
35750
|
+
}
|
|
35491
35751
|
};
|
|
35492
35752
|
NovoDataTable.prototype.ngAfterContentInit = function () {
|
|
35493
35753
|
var _this = this;
|
|
@@ -35586,14 +35846,24 @@
|
|
|
35586
35846
|
}
|
|
35587
35847
|
return this.state.selectedRows.has("" + row[this.rowIdentifier]);
|
|
35588
35848
|
};
|
|
35589
|
-
NovoDataTable.prototype.selectRow = function (row) {
|
|
35849
|
+
NovoDataTable.prototype.selectRow = function (row, origin) {
|
|
35590
35850
|
var selected = this.isSelected(row);
|
|
35591
35851
|
if (selected) {
|
|
35592
35852
|
this.state.selectedRows.delete("" + row[this.rowIdentifier]);
|
|
35593
35853
|
}
|
|
35594
35854
|
else {
|
|
35595
|
-
this.
|
|
35855
|
+
if (this.canSelectAll && this.allMatchingSelected && ['onClick'].includes(origin)) {
|
|
35856
|
+
// When all matching records are selected the user could be on another page where all rows only appear selected
|
|
35857
|
+
// Need to reset the rows that are actually selected, select rows on the current page and deselect the chosen record
|
|
35858
|
+
this.state.selectedRows.clear();
|
|
35859
|
+
this.selectRows(true);
|
|
35860
|
+
this.state.selectedRows.delete("" + row[this.rowIdentifier]);
|
|
35861
|
+
}
|
|
35862
|
+
else {
|
|
35863
|
+
this.state.selectedRows.set("" + row[this.rowIdentifier], row);
|
|
35864
|
+
}
|
|
35596
35865
|
}
|
|
35866
|
+
this.state.allMatchingSelectedSource.next(false);
|
|
35597
35867
|
this.state.onSelectionChange();
|
|
35598
35868
|
};
|
|
35599
35869
|
NovoDataTable.prototype.selectRows = function (selected) {
|
|
@@ -35609,6 +35879,13 @@
|
|
|
35609
35879
|
this.state.onSelectionChange();
|
|
35610
35880
|
};
|
|
35611
35881
|
NovoDataTable.prototype.allCurrentRowsSelected = function () {
|
|
35882
|
+
var _a, _b;
|
|
35883
|
+
if (this.allMatchingSelected) {
|
|
35884
|
+
return true;
|
|
35885
|
+
}
|
|
35886
|
+
if (!((_b = (_a = this.dataSource) === null || _a === void 0 ? void 0 : _a.data) === null || _b === void 0 ? void 0 : _b.length)) {
|
|
35887
|
+
return false;
|
|
35888
|
+
}
|
|
35612
35889
|
for (var i = 0; i < (this.dataSource.data || []).length; i++) {
|
|
35613
35890
|
if (!this.isSelected((this.dataSource.data || [])[i])) {
|
|
35614
35891
|
return false;
|
|
@@ -35696,11 +35973,11 @@
|
|
|
35696
35973
|
this.ref.markForCheck();
|
|
35697
35974
|
};
|
|
35698
35975
|
NovoDataTable.prototype.performInteractions = function (event) {
|
|
35699
|
-
var e_1,
|
|
35976
|
+
var e_1, _c;
|
|
35700
35977
|
if (this.listInteractions) {
|
|
35701
35978
|
try {
|
|
35702
|
-
for (var
|
|
35703
|
-
var column =
|
|
35979
|
+
for (var _d = __values(this.columns), _e = _d.next(); !_e.done; _e = _d.next()) {
|
|
35980
|
+
var column = _e.value;
|
|
35704
35981
|
var allListColumnInteractions = this.listInteractions[column.id];
|
|
35705
35982
|
var listColumnInteraction = allListColumnInteractions && allListColumnInteractions.find(function (int) { return int.event.includes(event); });
|
|
35706
35983
|
if (listColumnInteraction) {
|
|
@@ -35711,7 +35988,7 @@
|
|
|
35711
35988
|
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
35712
35989
|
finally {
|
|
35713
35990
|
try {
|
|
35714
|
-
if (
|
|
35991
|
+
if (_e && !_e.done && (_c = _d.return)) _c.call(_d);
|
|
35715
35992
|
}
|
|
35716
35993
|
finally { if (e_1) throw e_1.error; }
|
|
35717
35994
|
}
|
|
@@ -35729,7 +36006,7 @@
|
|
|
35729
36006
|
animations.transition('void <=> *', animations.animate('70ms cubic-bezier(0.4, 0.0, 0.2, 1)')),
|
|
35730
36007
|
]),
|
|
35731
36008
|
],
|
|
35732
|
-
template: "\n <header\n *ngIf=\"(!(dataSource?.totallyEmpty && !state.userFiltered) && !loading) || forceShowHeader\"\n [class.empty]=\"hideGlobalSearch && !paginationOptions && !templates['customActions']\"\n >\n <ng-container *ngTemplateOutlet=\"templates['customHeader']\"></ng-container>\n <novo-search\n alwaysOpen=\"true\"\n (searchChanged)=\"onSearchChange($event)\"\n [(ngModel)]=\"state.globalSearch\"\n *ngIf=\"!hideGlobalSearch\"\n [placeholder]=\"searchOptions?.placeholder\"\n [hint]=\"searchOptions?.tooltip\"\n >\n </novo-search>\n <novo-data-table-pagination\n *ngIf=\"paginationOptions\"\n [theme]=\"paginationOptions.theme\"\n [length]=\"dataSource?.currentTotal\"\n [page]=\"paginationOptions.page\"\n [pageSize]=\"paginationOptions.pageSize\"\n [pageSizeOptions]=\"paginationOptions.pageSizeOptions\"\n [dataFeatureId]=\"paginatorDataFeatureId\"\n >\n </novo-data-table-pagination>\n <div class=\"novo-data-table-actions\" *ngIf=\"templates['customActions']\">\n <ng-container *ngTemplateOutlet=\"templates['customActions']\"></ng-container>\n </div>\n </header>\n <div class=\"novo-data-table-loading-mask\" *ngIf=\"dataSource?.loading || loading\" data-automation-id=\"novo-data-table-loading\">\n <novo-loading></novo-loading>\n </div>\n <div class=\"novo-data-table-outside-container\" [ngClass]=\"{ 'novo-data-table-outside-container-fixed': fixedHeader }\">\n <div class=\"novo-data-table-custom-filter\" *ngIf=\"customFilter\">\n <ng-container *ngTemplateOutlet=\"templates['customFilter']\"></ng-container>\n </div>\n <div\n #novoDataTableContainer\n class=\"novo-data-table-container\"\n [ngClass]=\"{ 'novo-data-table-container-fixed': fixedHeader }\"\n [class.empty-user-filtered]=\"dataSource?.currentlyEmpty && state.userFiltered\"\n [class.empty]=\"dataSource?.totallyEmpty && !dataSource?.loading && !loading && !state.userFiltered && !dataSource.pristine\"\n >\n <cdk-table\n *ngIf=\"columns?.length > 0 && columnsLoaded && dataSource\"\n [dataSource]=\"dataSource\"\n [trackBy]=\"trackByFn\"\n novoDataTableSortFilter\n [class.expandable]=\"expandable\"\n [class.empty]=\"dataSource?.currentlyEmpty && state.userFiltered\"\n [hidden]=\"dataSource?.totallyEmpty && !state.userFiltered\"\n >\n <ng-container cdkColumnDef=\"selection\">\n <novo-data-table-checkbox-header-cell *cdkHeaderCellDef [maxSelected]=\"maxSelected\"></novo-data-table-checkbox-header-cell>\n <novo-data-table-checkbox-cell\n *cdkCellDef=\"let row; let i = index\"\n [row]=\"row\"\n [maxSelected]=\"maxSelected\"\n ></novo-data-table-checkbox-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"expand\">\n <novo-data-table-expand-header-cell *cdkHeaderCellDef></novo-data-table-expand-header-cell>\n <novo-data-table-expand-cell *cdkCellDef=\"let row; let i = index\" [row]=\"row\"></novo-data-table-expand-cell>\n </ng-container>\n <ng-container *ngFor=\"let column of columns; trackBy: trackColumnsBy\" [cdkColumnDef]=\"column.id\">\n <novo-data-table-header-cell\n *cdkHeaderCellDef\n [column]=\"column\"\n [filterTemplate]=\"templates['column-filter-' + column.id]\"\n [novo-data-table-cell-config]=\"column\"\n [resized]=\"resized\"\n [defaultSort]=\"defaultSort\"\n [allowMultipleFilters]=\"allowMultipleFilters\"\n [class.empty]=\"column?.type === 'action' && !column?.label\"\n [class.button-header-cell]=\"column?.type === 'expand' || (column?.type === 'action' && !column?.action?.options)\"\n [class.dropdown-header-cell]=\"column?.type === 'action' && column?.action?.options\"\n [class.fixed-header]=\"fixedHeader\"\n ></novo-data-table-header-cell>\n <novo-data-table-cell\n *cdkCellDef=\"let row\"\n [resized]=\"resized\"\n [column]=\"column\"\n [row]=\"row\"\n [template]=\"columnToTemplate[column.id]\"\n [class.empty]=\"column?.type === 'action' && !column?.label\"\n [class.button-cell]=\"column?.type === 'expand' || (column?.type === 'action' && !column?.action?.options)\"\n [class.dropdown-cell]=\"column?.type === 'action' && column?.action?.options\"\n ></novo-data-table-cell>\n </ng-container>\n <novo-data-table-header-row\n *cdkHeaderRowDef=\"displayedColumns\"\n [fixedHeader]=\"fixedHeader\"\n data-automation-id=\"novo-data-table-header-row\"\n ></novo-data-table-header-row>\n <novo-data-table-row\n *cdkRowDef=\"let row; columns: displayedColumns\"\n [ngClass]=\"{ active: row[rowIdentifier] == activeRowIdentifier }\"\n [novoDataTableExpand]=\"detailRowTemplate\"\n [row]=\"row\"\n [id]=\"name + '-' + row[rowIdentifier]\"\n [dataAutomationId]=\"row[rowIdentifier]\"\n ></novo-data-table-row>\n </cdk-table>\n <div class=\"novo-data-table-footer\" *ngIf=\"templates['footer']\">\n <ng-container *ngTemplateOutlet=\"templates['footer']; context: { $implicit: columns, data: dataSource.data }\"></ng-container>\n </div>\n <div\n class=\"novo-data-table-no-results-container\"\n [style.left.px]=\"scrollLeft\"\n *ngIf=\"dataSource?.currentlyEmpty && state.userFiltered && !dataSource?.loading && !loading && !dataSource.pristine\"\n >\n <div class=\"novo-data-table-empty-message\">\n <ng-container *ngTemplateOutlet=\"templates['noResultsMessage'] || templates['defaultNoResultsMessage']\"></ng-container>\n </div>\n </div>\n </div>\n <div\n class=\"novo-data-table-empty-container\"\n *ngIf=\"dataSource?.totallyEmpty && !dataSource?.loading && !loading && !state.userFiltered && !dataSource.pristine\"\n >\n <div class=\"novo-data-table-empty-message\">\n <ng-container *ngTemplateOutlet=\"templates['emptyMessage'] || templates['defaultNoResultsMessage']\"></ng-container>\n </div>\n </div>\n </div>\n <!-- DEFAULT CELL TEMPLATE -->\n <ng-template novoTemplate=\"textCellTemplate\" let-row let-col=\"col\">\n <span [style.width.px]=\"col?.width\" [style.min-width.px]=\"col?.width\" [style.max-width.px]=\"col?.width\">{{\n row[col.id] | dataTableInterpolate: col\n }}</span>\n </ng-template>\n <ng-template novoTemplate=\"dateCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableDateRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"datetimeCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableDateTimeRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"timeCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableTimeRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"currencyCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableCurrencyRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"bigdecimalCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableBigDecimalRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"numberCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableNumberRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"percentCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableNumberRenderer: col:true }}</span>\n </ng-template>\n <ng-template novoTemplate=\"linkCellTemplate\" let-row let-col=\"col\">\n <a\n [attr.data-feature-id]=\"col?.attributes?.dataFeatureId\"\n (click)=\"col.handlers?.click({ originalEvent: $event, row: row })\"\n [style.width.px]=\"col?.width\"\n [style.min-width.px]=\"col?.width\"\n [style.max-width.px]=\"col?.width\"\n >{{ row[col.id] | dataTableInterpolate: col }}</a\n >\n </ng-template>\n <ng-template novoTemplate=\"telCellTemplate\" let-row let-col=\"col\">\n <a href=\"tel:{{ row[col.id] | dataTableInterpolate: col }}\" [target]=\"col?.attributes?.target\">{{\n row[col.id] | dataTableInterpolate: col\n }}</a>\n </ng-template>\n <ng-template novoTemplate=\"mailtoCellTemplate\" let-row let-col=\"col\">\n <a href=\"mailto:{{ row[col.id] | dataTableInterpolate: col }}\" [target]=\"col?.attributes?.target\">{{\n row[col.id] | dataTableInterpolate: col\n }}</a>\n </ng-template>\n <ng-template novoTemplate=\"buttonCellTemplate\" let-row let-col=\"col\">\n <novo-button\n size=\"small\"\n theme=\"icon\"\n [tooltip]=\"col?.action?.tooltip\"\n tooltipPosition=\"right\"\n [attr.data-feature-id]=\"col?.attributes?.dataFeatureId\"\n [disabled]=\"isDisabled(col, row)\"\n (click)=\"col.handlers?.click({ originalEvent: $event, row: row })\"\n >\n <novo-icon>{{ col?.action?.icon }}</novo-icon>\n </novo-button>\n </ng-template>\n <ng-template novoTemplate=\"dropdownCellTemplate\" let-row let-col=\"col\">\n <novo-dropdown parentScrollSelector=\".novo-data-table-container\" containerClass=\"novo-data-table-dropdown\">\n <novo-button type=\"button\" theme=\"dialogue\" [icon]=\"col.action.icon\" inverse>{{ col.label }}</novo-button>\n <list>\n <item\n *ngFor=\"let option of col?.action?.options\"\n (action)=\"option.handlers.click({ originalEvent: $event?.originalEvent, row: row })\"\n [disabled]=\"isDisabled(option, row)\"\n >\n <span [attr.data-automation-id]=\"option.label\">{{ option.label }}</span>\n </item>\n </list>\n </novo-dropdown>\n </ng-template>\n <ng-template novoTemplate=\"defaultNoResultsMessage\">\n <h4><i class=\"bhi-search-question\"></i> {{ labels.noMatchingRecordsMessage }}</h4>\n </ng-template>\n <ng-template novoTemplate=\"defaultEmptyMessage\">\n <h4><i class=\"bhi-search-question\"></i> {{ labels.emptyTableMessage }}</h4>\n </ng-template>\n <ng-template novoTemplate=\"expandedRow\"> You did not provide an \"expandedRow\" template! </ng-template>\n <ng-template #detailRowTemplate let-row>\n <div class=\"novo-data-table-detail-row\" [@expand] style=\"overflow: hidden\">\n <ng-container *ngTemplateOutlet=\"templates['expandedRow']; context: { $implicit: row }\"></ng-container>\n </div>\n </ng-template>\n <!-- CUSTOM CELLS PASSED IN -->\n <ng-content></ng-content>\n ",
|
|
36009
|
+
template: "\n <header\n *ngIf=\"(!(dataSource?.totallyEmpty && !state.userFiltered) && !loading) || forceShowHeader\"\n [class.empty]=\"hideGlobalSearch && !paginationOptions && !templates['customActions']\"\n >\n <ng-container *ngTemplateOutlet=\"templates['customHeader']\"></ng-container>\n <novo-search\n alwaysOpen=\"true\"\n (searchChanged)=\"onSearchChange($event)\"\n [(ngModel)]=\"state.globalSearch\"\n *ngIf=\"!hideGlobalSearch\"\n [placeholder]=\"searchOptions?.placeholder\"\n [hint]=\"searchOptions?.tooltip\"\n >\n </novo-search>\n <novo-data-table-pagination\n *ngIf=\"paginationOptions\"\n [theme]=\"paginationOptions.theme\"\n [length]=\"dataSource?.currentTotal\"\n [page]=\"paginationOptions.page\"\n [pageSize]=\"paginationOptions.pageSize\"\n [pageSizeOptions]=\"paginationOptions.pageSizeOptions\"\n [dataFeatureId]=\"paginatorDataFeatureId\"\n [canSelectAll]=\"canSelectAll\"\n [allMatchingSelected]=\"allMatchingSelected\"\n >\n </novo-data-table-pagination>\n <div class=\"novo-data-table-actions\" *ngIf=\"templates['customActions']\">\n <ng-container *ngTemplateOutlet=\"templates['customActions']\"></ng-container>\n </div>\n </header>\n <div class=\"novo-data-table-loading-mask\" *ngIf=\"dataSource?.loading || loading\" data-automation-id=\"novo-data-table-loading\">\n <novo-loading></novo-loading>\n </div>\n <div class=\"novo-data-table-outside-container\" [ngClass]=\"{ 'novo-data-table-outside-container-fixed': fixedHeader }\">\n <div class=\"novo-data-table-custom-filter\" *ngIf=\"customFilter\">\n <ng-container *ngTemplateOutlet=\"templates['customFilter']\"></ng-container>\n </div>\n <div\n #novoDataTableContainer\n class=\"novo-data-table-container\"\n [ngClass]=\"{ 'novo-data-table-container-fixed': fixedHeader }\"\n [class.empty-user-filtered]=\"dataSource?.currentlyEmpty && state.userFiltered\"\n [class.empty]=\"dataSource?.totallyEmpty && !dataSource?.loading && !loading && !state.userFiltered && !dataSource.pristine\"\n >\n <cdk-table\n *ngIf=\"columns?.length > 0 && columnsLoaded && dataSource\"\n [dataSource]=\"dataSource\"\n [trackBy]=\"trackByFn\"\n novoDataTableSortFilter\n [class.expandable]=\"expandable\"\n [class.empty]=\"dataSource?.currentlyEmpty && state.userFiltered\"\n [hidden]=\"dataSource?.totallyEmpty && !state.userFiltered\"\n >\n <ng-container cdkColumnDef=\"selection\">\n <novo-data-table-checkbox-header-cell *cdkHeaderCellDef [maxSelected]=\"maxSelected\"></novo-data-table-checkbox-header-cell>\n <novo-data-table-checkbox-cell\n *cdkCellDef=\"let row; let i = index\"\n [row]=\"row\"\n [maxSelected]=\"maxSelected\"\n ></novo-data-table-checkbox-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"expand\">\n <novo-data-table-expand-header-cell *cdkHeaderCellDef></novo-data-table-expand-header-cell>\n <novo-data-table-expand-cell *cdkCellDef=\"let row; let i = index\" [row]=\"row\"></novo-data-table-expand-cell>\n </ng-container>\n <ng-container *ngFor=\"let column of columns; trackBy: trackColumnsBy\" [cdkColumnDef]=\"column.id\">\n <novo-data-table-header-cell\n *cdkHeaderCellDef\n [column]=\"column\"\n [filterTemplate]=\"templates['column-filter-' + column.id]\"\n [novo-data-table-cell-config]=\"column\"\n [resized]=\"resized\"\n [defaultSort]=\"defaultSort\"\n [allowMultipleFilters]=\"allowMultipleFilters\"\n [class.empty]=\"column?.type === 'action' && !column?.label\"\n [class.button-header-cell]=\"column?.type === 'expand' || (column?.type === 'action' && !column?.action?.options)\"\n [class.dropdown-header-cell]=\"column?.type === 'action' && column?.action?.options\"\n [class.fixed-header]=\"fixedHeader\"\n ></novo-data-table-header-cell>\n <novo-data-table-cell\n *cdkCellDef=\"let row\"\n [resized]=\"resized\"\n [column]=\"column\"\n [row]=\"row\"\n [template]=\"columnToTemplate[column.id]\"\n [class.empty]=\"column?.type === 'action' && !column?.label\"\n [class.button-cell]=\"column?.type === 'expand' || (column?.type === 'action' && !column?.action?.options)\"\n [class.dropdown-cell]=\"column?.type === 'action' && column?.action?.options\"\n ></novo-data-table-cell>\n </ng-container>\n <novo-data-table-header-row\n *cdkHeaderRowDef=\"displayedColumns\"\n [fixedHeader]=\"fixedHeader\"\n data-automation-id=\"novo-data-table-header-row\"\n ></novo-data-table-header-row>\n <novo-data-table-row\n *cdkRowDef=\"let row; columns: displayedColumns\"\n [ngClass]=\"{ active: row[rowIdentifier] == activeRowIdentifier }\"\n [novoDataTableExpand]=\"detailRowTemplate\"\n [row]=\"row\"\n [id]=\"name + '-' + row[rowIdentifier]\"\n [dataAutomationId]=\"row[rowIdentifier]\"\n ></novo-data-table-row>\n </cdk-table>\n <div class=\"novo-data-table-footer\" *ngIf=\"templates['footer']\">\n <ng-container *ngTemplateOutlet=\"templates['footer']; context: { $implicit: columns, data: dataSource.data }\"></ng-container>\n </div>\n <div\n class=\"novo-data-table-no-results-container\"\n [style.left.px]=\"scrollLeft\"\n *ngIf=\"dataSource?.currentlyEmpty && state.userFiltered && !dataSource?.loading && !loading && !dataSource.pristine\"\n >\n <div class=\"novo-data-table-empty-message\">\n <ng-container *ngTemplateOutlet=\"templates['noResultsMessage'] || templates['defaultNoResultsMessage']\"></ng-container>\n </div>\n </div>\n </div>\n <div\n class=\"novo-data-table-empty-container\"\n *ngIf=\"dataSource?.totallyEmpty && !dataSource?.loading && !loading && !state.userFiltered && !dataSource.pristine\"\n >\n <div class=\"novo-data-table-empty-message\">\n <ng-container *ngTemplateOutlet=\"templates['emptyMessage'] || templates['defaultNoResultsMessage']\"></ng-container>\n </div>\n </div>\n </div>\n <!-- DEFAULT CELL TEMPLATE -->\n <ng-template novoTemplate=\"textCellTemplate\" let-row let-col=\"col\">\n <span [style.width.px]=\"col?.width\" [style.min-width.px]=\"col?.width\" [style.max-width.px]=\"col?.width\">{{\n row[col.id] | dataTableInterpolate: col\n }}</span>\n </ng-template>\n <ng-template novoTemplate=\"dateCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableDateRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"datetimeCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableDateTimeRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"timeCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableTimeRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"currencyCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableCurrencyRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"bigdecimalCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableBigDecimalRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"numberCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableNumberRenderer: col }}</span>\n </ng-template>\n <ng-template novoTemplate=\"percentCellTemplate\" let-row let-col=\"col\">\n <span>{{ row[col.id] | dataTableInterpolate: col | dataTableNumberRenderer: col:true }}</span>\n </ng-template>\n <ng-template novoTemplate=\"linkCellTemplate\" let-row let-col=\"col\">\n <a\n [attr.data-feature-id]=\"col?.attributes?.dataFeatureId\"\n (click)=\"col.handlers?.click({ originalEvent: $event, row: row })\"\n [style.width.px]=\"col?.width\"\n [style.min-width.px]=\"col?.width\"\n [style.max-width.px]=\"col?.width\"\n >{{ row[col.id] | dataTableInterpolate: col }}</a\n >\n </ng-template>\n <ng-template novoTemplate=\"telCellTemplate\" let-row let-col=\"col\">\n <a href=\"tel:{{ row[col.id] | dataTableInterpolate: col }}\" [target]=\"col?.attributes?.target\">{{\n row[col.id] | dataTableInterpolate: col\n }}</a>\n </ng-template>\n <ng-template novoTemplate=\"mailtoCellTemplate\" let-row let-col=\"col\">\n <a href=\"mailto:{{ row[col.id] | dataTableInterpolate: col }}\" [target]=\"col?.attributes?.target\">{{\n row[col.id] | dataTableInterpolate: col\n }}</a>\n </ng-template>\n <ng-template novoTemplate=\"buttonCellTemplate\" let-row let-col=\"col\">\n <novo-button\n size=\"small\"\n theme=\"icon\"\n [tooltip]=\"col?.action?.tooltip\"\n tooltipPosition=\"right\"\n [attr.data-feature-id]=\"col?.attributes?.dataFeatureId\"\n [disabled]=\"isDisabled(col, row)\"\n (click)=\"col.handlers?.click({ originalEvent: $event, row: row })\"\n >\n <novo-icon>{{ col?.action?.icon }}</novo-icon>\n </novo-button>\n </ng-template>\n <ng-template novoTemplate=\"dropdownCellTemplate\" let-row let-col=\"col\">\n <novo-dropdown parentScrollSelector=\".novo-data-table-container\" containerClass=\"novo-data-table-dropdown\">\n <novo-button type=\"button\" theme=\"dialogue\" [icon]=\"col.action.icon\" inverse>{{ col.label }}</novo-button>\n <novo-optgroup>\n <novo-option\n *ngFor=\"let option of col?.action?.options\"\n (click)=\"option.handlers.click({ originalEvent: $event?.originalEvent, row: row })\"\n [disabled]=\"isDisabled(option, row)\"\n >\n <span [attr.data-automation-id]=\"option.label\">{{ option.label }}</span>\n </novo-option>\n </novo-optgroup>\n </novo-dropdown>\n </ng-template>\n <ng-template novoTemplate=\"defaultNoResultsMessage\">\n <h4><i class=\"bhi-search-question\"></i> {{ labels.noMatchingRecordsMessage }}</h4>\n </ng-template>\n <ng-template novoTemplate=\"defaultEmptyMessage\">\n <h4><i class=\"bhi-search-question\"></i> {{ labels.emptyTableMessage }}</h4>\n </ng-template>\n <ng-template novoTemplate=\"expandedRow\"> You did not provide an \"expandedRow\" template! </ng-template>\n <ng-template #detailRowTemplate let-row>\n <div class=\"novo-data-table-detail-row\" [@expand] style=\"overflow: hidden\">\n <ng-container *ngTemplateOutlet=\"templates['expandedRow']; context: { $implicit: row }\"></ng-container>\n </div>\n </ng-template>\n <!-- CUSTOM CELLS PASSED IN -->\n <ng-content></ng-content>\n ",
|
|
35733
36010
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
35734
36011
|
providers: [DataTableState]
|
|
35735
36012
|
},] }
|
|
@@ -35760,6 +36037,8 @@
|
|
|
35760
36037
|
fixedHeader: [{ type: i0.Input }],
|
|
35761
36038
|
paginatorDataFeatureId: [{ type: i0.Input }],
|
|
35762
36039
|
maxSelected: [{ type: i0.Input }],
|
|
36040
|
+
canSelectAll: [{ type: i0.Input }],
|
|
36041
|
+
allMatchingSelected: [{ type: i0.Input }],
|
|
35763
36042
|
dataTableService: [{ type: i0.Input }],
|
|
35764
36043
|
rows: [{ type: i0.Input }],
|
|
35765
36044
|
outsideFilter: [{ type: i0.Input }],
|
|
@@ -35770,6 +36049,7 @@
|
|
|
35770
36049
|
forceShowHeader: [{ type: i0.Input }],
|
|
35771
36050
|
hideGlobalSearch: [{ type: i0.Input }],
|
|
35772
36051
|
preferencesChanged: [{ type: i0.Output }],
|
|
36052
|
+
allSelected: [{ type: i0.Output }],
|
|
35773
36053
|
empty: [{ type: i0.HostBinding, args: ['class.empty',] }],
|
|
35774
36054
|
loadingClass: [{ type: i0.HostBinding, args: ['class.loading',] }],
|
|
35775
36055
|
listInteractions: [{ type: i0.Input }]
|
|
@@ -35789,23 +36069,38 @@
|
|
|
35789
36069
|
renderer.addClass(elementRef.nativeElement, "novo-checkbox-column-" + columnDef.cssClassFriendlyName);
|
|
35790
36070
|
renderer.addClass(elementRef.nativeElement, 'novo-data-table-checkbox-header-cell');
|
|
35791
36071
|
_this.selectionSubscription = _this.dataTable.state.selectionSource.subscribe(function () {
|
|
35792
|
-
|
|
36072
|
+
var _a, _b, _c;
|
|
36073
|
+
_this.checked = _this.dataTable.allCurrentRowsSelected() || (((_a = _this.dataTable) === null || _a === void 0 ? void 0 : _a.canSelectAll) && ((_b = _this.dataTable) === null || _b === void 0 ? void 0 : _b.allMatchingSelected));
|
|
36074
|
+
if ((_c = _this.dataTable) === null || _c === void 0 ? void 0 : _c.canSelectAll) {
|
|
36075
|
+
_this.selectAllChanged();
|
|
36076
|
+
}
|
|
35793
36077
|
_this.ref.markForCheck();
|
|
35794
36078
|
});
|
|
35795
36079
|
_this.paginationSubscription = _this.dataTable.state.paginationSource.subscribe(function (event) {
|
|
36080
|
+
var _a, _b, _c, _d;
|
|
35796
36081
|
if (event.isPageSizeChange) {
|
|
35797
36082
|
_this.checked = false;
|
|
36083
|
+
if ((_a = _this.dataTable) === null || _a === void 0 ? void 0 : _a.canSelectAll) {
|
|
36084
|
+
_this.selectAllChanged();
|
|
36085
|
+
}
|
|
35798
36086
|
_this.dataTable.selectRows(false);
|
|
35799
36087
|
_this.dataTable.state.checkRetainment('pageSize');
|
|
35800
36088
|
_this.dataTable.state.reset(false, true);
|
|
35801
36089
|
}
|
|
35802
36090
|
else {
|
|
35803
|
-
_this.checked = _this.dataTable.allCurrentRowsSelected();
|
|
36091
|
+
_this.checked = _this.dataTable.allCurrentRowsSelected() || (((_b = _this.dataTable) === null || _b === void 0 ? void 0 : _b.canSelectAll) && ((_c = _this.dataTable) === null || _c === void 0 ? void 0 : _c.allMatchingSelected));
|
|
36092
|
+
if ((_d = _this.dataTable) === null || _d === void 0 ? void 0 : _d.canSelectAll) {
|
|
36093
|
+
_this.selectAllChanged();
|
|
36094
|
+
}
|
|
35804
36095
|
}
|
|
35805
36096
|
_this.ref.markForCheck();
|
|
35806
36097
|
});
|
|
35807
36098
|
_this.resetSubscription = _this.dataTable.state.resetSource.subscribe(function () {
|
|
36099
|
+
var _a;
|
|
35808
36100
|
_this.checked = false;
|
|
36101
|
+
if ((_a = _this.dataTable) === null || _a === void 0 ? void 0 : _a.canSelectAll) {
|
|
36102
|
+
_this.selectAllChanged();
|
|
36103
|
+
}
|
|
35809
36104
|
_this.ref.markForCheck();
|
|
35810
36105
|
});
|
|
35811
36106
|
return _this;
|
|
@@ -35829,6 +36124,7 @@
|
|
|
35829
36124
|
}
|
|
35830
36125
|
};
|
|
35831
36126
|
NovoDataTableCheckboxHeaderCell.prototype.onClick = function () {
|
|
36127
|
+
var _a;
|
|
35832
36128
|
if (this.isAtLimit) {
|
|
35833
36129
|
this.toaster.alert({
|
|
35834
36130
|
theme: 'danger',
|
|
@@ -35840,6 +36136,18 @@
|
|
|
35840
36136
|
else {
|
|
35841
36137
|
this.dataTable.selectRows(!this.checked);
|
|
35842
36138
|
}
|
|
36139
|
+
if ((_a = this.dataTable) === null || _a === void 0 ? void 0 : _a.canSelectAll) {
|
|
36140
|
+
this.selectAllChanged();
|
|
36141
|
+
}
|
|
36142
|
+
};
|
|
36143
|
+
NovoDataTableCheckboxHeaderCell.prototype.selectAllChanged = function () {
|
|
36144
|
+
var _a, _b, _c, _d;
|
|
36145
|
+
var allSelectedEvent = {
|
|
36146
|
+
allSelected: this.checked,
|
|
36147
|
+
selectedCount: (_c = (_b = (_a = this.dataTable) === null || _a === void 0 ? void 0 : _a.state) === null || _b === void 0 ? void 0 : _b.selected) === null || _c === void 0 ? void 0 : _c.length,
|
|
36148
|
+
allMatchingSelected: (_d = this.dataTable) === null || _d === void 0 ? void 0 : _d.allMatchingSelected,
|
|
36149
|
+
};
|
|
36150
|
+
this.dataTable.allSelected.emit(allSelectedEvent);
|
|
35843
36151
|
};
|
|
35844
36152
|
return NovoDataTableCheckboxHeaderCell;
|
|
35845
36153
|
}(table.CdkHeaderCell));
|
|
@@ -36020,7 +36328,8 @@
|
|
|
36020
36328
|
renderer.addClass(elementRef.nativeElement, "novo-checkbox-column-" + columnDef.cssClassFriendlyName);
|
|
36021
36329
|
renderer.addClass(elementRef.nativeElement, 'novo-data-table-checkbox-cell');
|
|
36022
36330
|
_this.selectionSubscription = _this.dataTable.state.selectionSource.subscribe(function () {
|
|
36023
|
-
|
|
36331
|
+
var _a, _b;
|
|
36332
|
+
_this.checked = _this.dataTable.isSelected(_this.row) || (((_a = _this.dataTable) === null || _a === void 0 ? void 0 : _a.canSelectAll) && ((_b = _this.dataTable) === null || _b === void 0 ? void 0 : _b.allMatchingSelected));
|
|
36024
36333
|
_this.ref.markForCheck();
|
|
36025
36334
|
});
|
|
36026
36335
|
_this.resetSubscription = _this.dataTable.state.resetSource.subscribe(function () {
|
|
@@ -36037,11 +36346,12 @@
|
|
|
36037
36346
|
configurable: true
|
|
36038
36347
|
});
|
|
36039
36348
|
NovoDataTableCheckboxCell.prototype.ngOnInit = function () {
|
|
36040
|
-
|
|
36349
|
+
var _a, _b;
|
|
36350
|
+
this.checked = this.dataTable.isSelected(this.row) || (((_a = this.dataTable) === null || _a === void 0 ? void 0 : _a.canSelectAll) && ((_b = this.dataTable) === null || _b === void 0 ? void 0 : _b.allMatchingSelected));
|
|
36041
36351
|
};
|
|
36042
36352
|
NovoDataTableCheckboxCell.prototype.onClick = function () {
|
|
36043
36353
|
if (!this.isAtLimit) {
|
|
36044
|
-
this.dataTable.selectRow(this.row);
|
|
36354
|
+
this.dataTable.selectRow(this.row, 'onClick');
|
|
36045
36355
|
}
|
|
36046
36356
|
};
|
|
36047
36357
|
NovoDataTableCheckboxCell.prototype.getTooltip = function () {
|
|
@@ -36434,6 +36744,7 @@
|
|
|
36434
36744
|
NovoDatePickerElement.prototype.setToday = function () {
|
|
36435
36745
|
var tmp = new Date();
|
|
36436
36746
|
this.updateView(tmp);
|
|
36747
|
+
this.updateSelection(Array.of(tmp));
|
|
36437
36748
|
};
|
|
36438
36749
|
NovoDatePickerElement.prototype.toggleRangeSelect = function (range) {
|
|
36439
36750
|
this.rangeSelectMode = range;
|
|
@@ -36520,7 +36831,7 @@
|
|
|
36520
36831
|
animations.transition('startDate <=> endDate', animations.animate('200ms ease-in')),
|
|
36521
36832
|
]),
|
|
36522
36833
|
],
|
|
36523
|
-
template: "\n <div class=\"date-picker-container\">\n <div class=\"date-range-tabs\" *ngIf=\"range\" [class.week-select-mode]=\"weekRangeSelect\">\n <span\n class=\"range-tab\"\n (click)=\"toggleRangeSelect('startDate')\"\n [@startDateTextState]=\"rangeSelectMode\"\n data-automation-id=\"calendar-start-date\"\n >{{ startDateLabel }}</span\n >\n <span\n class=\"range-tab\"\n (click)=\"toggleRangeSelect('endDate')\"\n [@endDateTextState]=\"rangeSelectMode\"\n data-automation-id=\"calendar-end-date\"\n >{{ endDateLabel }}</span\n >\n <i class=\"indicator\" [@indicatorState]=\"rangeSelectMode\"></i>\n </div>\n\n <novo-calendar\n [activeDate]=\"activeDate\"\n [(selected)]=\"selection\"\n (selectedChange)=\"updateSelection($event)\"\n [mode]=\"mode\"\n [numberOfMonths]=\"numberOfMonths\"\n [weekStartsOn]=\"weekStart\"\n ></novo-calendar>\n\n <div class=\"calendar-footer\" [hidden]=\"hideFooter\">\n <novo-button (click)=\"setToday()\" class=\"today\" size=\"small\" data-automation-id=\"calendar-today\">{{ labels.today }}</novo-button>\n </div>\n </div>\n "
|
|
36834
|
+
template: "\n <div class=\"date-picker-container\">\n <div class=\"date-range-tabs\" *ngIf=\"range\" [class.week-select-mode]=\"weekRangeSelect\">\n <span\n class=\"range-tab\"\n (click)=\"toggleRangeSelect('startDate')\"\n [@startDateTextState]=\"rangeSelectMode\"\n data-automation-id=\"calendar-start-date\"\n >{{ startDateLabel }}</span\n >\n <span\n class=\"range-tab\"\n (click)=\"toggleRangeSelect('endDate')\"\n [@endDateTextState]=\"rangeSelectMode\"\n data-automation-id=\"calendar-end-date\"\n >{{ endDateLabel }}</span\n >\n <i class=\"indicator\" [@indicatorState]=\"rangeSelectMode\"></i>\n </div>\n\n <novo-calendar\n [activeDate]=\"activeDate\"\n [(selected)]=\"selection\"\n (selectedChange)=\"updateSelection($event)\"\n [mode]=\"mode\"\n [numberOfMonths]=\"numberOfMonths\"\n [weekStartsOn]=\"weekStart\"\n [disabledDateMessage]=\"disabledDateMessage\"\n [minDate]=\"start\"\n [maxDate]=\"end\"\n ></novo-calendar>\n\n <div class=\"calendar-footer\" [hidden]=\"hideFooter\">\n <novo-button (click)=\"setToday()\" class=\"today\" size=\"small\" data-automation-id=\"calendar-today\">{{ labels.today }}</novo-button>\n </div>\n </div>\n "
|
|
36524
36835
|
},] }
|
|
36525
36836
|
];
|
|
36526
36837
|
NovoDatePickerElement.ctorParameters = function () { return [
|
|
@@ -36622,6 +36933,7 @@
|
|
|
36622
36933
|
var month;
|
|
36623
36934
|
var day;
|
|
36624
36935
|
var date = new Date();
|
|
36936
|
+
var isInvalidDate = true;
|
|
36625
36937
|
if (Helpers.isEmpty(dateFormat)) {
|
|
36626
36938
|
// Default to MM/dd/yyyy
|
|
36627
36939
|
dateFormat = 'mm/dd/yyyy';
|
|
@@ -36645,6 +36957,7 @@
|
|
|
36645
36957
|
}
|
|
36646
36958
|
if (month >= 0 && month <= 11 && year > 1900 && day > 0 && day <= 31) {
|
|
36647
36959
|
date = new Date(year, month, day);
|
|
36960
|
+
isInvalidDate = false;
|
|
36648
36961
|
}
|
|
36649
36962
|
}
|
|
36650
36963
|
else if (dateFormatTokens && dateFormatTokens.length === 4 && dateString.length >= 1) {
|
|
@@ -36659,7 +36972,7 @@
|
|
|
36659
36972
|
dateString = "" + dateString + delimiter[1];
|
|
36660
36973
|
}
|
|
36661
36974
|
}
|
|
36662
|
-
return [date, dateString];
|
|
36975
|
+
return [date, dateString, isInvalidDate];
|
|
36663
36976
|
};
|
|
36664
36977
|
DateFormatService.prototype.parseTimeString = function (timeString, militaryTime) {
|
|
36665
36978
|
var e_2, _a;
|
|
@@ -36780,6 +37093,7 @@
|
|
|
36780
37093
|
this._changeDetectorRef = _changeDetectorRef;
|
|
36781
37094
|
this.dateFormatService = dateFormatService;
|
|
36782
37095
|
this.formattedValue = '';
|
|
37096
|
+
this.invalidDateErrorMessage = '';
|
|
36783
37097
|
/** View -> model callback called when value changes */
|
|
36784
37098
|
this._onChange = function () { };
|
|
36785
37099
|
/** View -> model callback called when autocomplete has been touched */
|
|
@@ -36797,14 +37111,22 @@
|
|
|
36797
37111
|
this.blurEvent = new i0.EventEmitter();
|
|
36798
37112
|
this.focusEvent = new i0.EventEmitter();
|
|
36799
37113
|
this.changeEvent = new i0.EventEmitter();
|
|
36800
|
-
this.placeholder = this.labels.
|
|
37114
|
+
this.placeholder = this.labels.localizedDatePlaceholder();
|
|
36801
37115
|
}
|
|
36802
37116
|
NovoDatePickerInputElement.prototype.ngOnInit = function () {
|
|
37117
|
+
this._initFormatOptions();
|
|
37118
|
+
};
|
|
37119
|
+
NovoDatePickerInputElement.prototype.ngOnChanges = function (changes) {
|
|
37120
|
+
if (Object.keys(changes).some(function (key) { return ['format'].includes(key); })) {
|
|
37121
|
+
this._initFormatOptions();
|
|
37122
|
+
}
|
|
37123
|
+
};
|
|
37124
|
+
NovoDatePickerInputElement.prototype._initFormatOptions = function () {
|
|
36803
37125
|
this.userDefinedFormat = this.format ? !this.format.match(/^(DD\/MM\/YYYY|MM\/DD\/YYYY)$/g) : false;
|
|
36804
37126
|
if (!this.userDefinedFormat && this.textMaskEnabled && !this.allowInvalidDate) {
|
|
36805
37127
|
this.maskOptions = this.maskOptions || {
|
|
36806
37128
|
mask: this.dateFormatService.getDateMask(),
|
|
36807
|
-
pipe: createAutoCorrectedDatePipe__default['default'](this.format || this.labels.dateFormatString().toLowerCase()),
|
|
37129
|
+
pipe: createAutoCorrectedDatePipe__default['default']((this.format || this.labels.dateFormatString()).toLowerCase()),
|
|
36808
37130
|
keepCharPositions: false,
|
|
36809
37131
|
guide: true,
|
|
36810
37132
|
};
|
|
@@ -36812,6 +37134,7 @@
|
|
|
36812
37134
|
else {
|
|
36813
37135
|
this.maskOptions = { mask: false };
|
|
36814
37136
|
}
|
|
37137
|
+
this.setupInvalidDateErrorMessage();
|
|
36815
37138
|
};
|
|
36816
37139
|
/** BEGIN: Convenient Panel Methods. */
|
|
36817
37140
|
NovoDatePickerInputElement.prototype.openPanel = function () {
|
|
@@ -36843,9 +37166,11 @@
|
|
|
36843
37166
|
}
|
|
36844
37167
|
};
|
|
36845
37168
|
NovoDatePickerInputElement.prototype._handleBlur = function (event) {
|
|
37169
|
+
this.handleInvalidDate();
|
|
36846
37170
|
this.blurEvent.emit(event);
|
|
36847
37171
|
};
|
|
36848
37172
|
NovoDatePickerInputElement.prototype._handleFocus = function (event) {
|
|
37173
|
+
this.showInvalidDateError = false;
|
|
36849
37174
|
this.openPanel();
|
|
36850
37175
|
this.focusEvent.emit(event);
|
|
36851
37176
|
};
|
|
@@ -36862,7 +37187,8 @@
|
|
|
36862
37187
|
};
|
|
36863
37188
|
NovoDatePickerInputElement.prototype.formatDate = function (value, blur) {
|
|
36864
37189
|
try {
|
|
36865
|
-
var _a = __read(this.dateFormatService.parseString(value, false, 'date'),
|
|
37190
|
+
var _a = __read(this.dateFormatService.parseString(value, false, 'date'), 3), dateTimeValue = _a[0], formatted = _a[1], isInvalidDate = _a[2];
|
|
37191
|
+
this.isInvalidDate = isInvalidDate;
|
|
36866
37192
|
if (!isNaN(dateTimeValue.getUTCDate())) {
|
|
36867
37193
|
var dt = new Date(dateTimeValue);
|
|
36868
37194
|
this.dispatchOnChange(dt, blur);
|
|
@@ -36886,6 +37212,24 @@
|
|
|
36886
37212
|
NovoDatePickerInputElement.prototype.setDisabledState = function (disabled) {
|
|
36887
37213
|
this.disabled = disabled;
|
|
36888
37214
|
};
|
|
37215
|
+
NovoDatePickerInputElement.prototype.handleInvalidDate = function () {
|
|
37216
|
+
if (this.isInvalidDate && this.value) {
|
|
37217
|
+
this.showInvalidDateError = true;
|
|
37218
|
+
this.clearValue();
|
|
37219
|
+
this.closePanel();
|
|
37220
|
+
}
|
|
37221
|
+
};
|
|
37222
|
+
NovoDatePickerInputElement.prototype.setupInvalidDateErrorMessage = function () {
|
|
37223
|
+
var dateFormat = this.labels.dateFormatString();
|
|
37224
|
+
if (Helpers.isEmpty(dateFormat)) {
|
|
37225
|
+
// Default to mm/dd/yyyy
|
|
37226
|
+
dateFormat = 'mm/dd/yyyy';
|
|
37227
|
+
}
|
|
37228
|
+
else {
|
|
37229
|
+
dateFormat = dateFormat.toLowerCase();
|
|
37230
|
+
}
|
|
37231
|
+
this.invalidDateErrorMessage = "Invalid date field entered. Date format of " + dateFormat + " is required.";
|
|
37232
|
+
};
|
|
36889
37233
|
NovoDatePickerInputElement.prototype.dispatchOnChange = function (newValue, blur, skip) {
|
|
36890
37234
|
if (blur === void 0) { blur = false; }
|
|
36891
37235
|
if (skip === void 0) { skip = false; }
|
|
@@ -36912,8 +37256,8 @@
|
|
|
36912
37256
|
this.value = value;
|
|
36913
37257
|
};
|
|
36914
37258
|
NovoDatePickerInputElement.prototype._setFormValue = function (value) {
|
|
36915
|
-
if (
|
|
36916
|
-
var test = this.formatDateValue(
|
|
37259
|
+
if (value) {
|
|
37260
|
+
var test = this.formatDateValue(value);
|
|
36917
37261
|
this.formattedValue = test;
|
|
36918
37262
|
}
|
|
36919
37263
|
else {
|
|
@@ -36978,7 +37322,7 @@
|
|
|
36978
37322
|
{ type: i0.Component, args: [{
|
|
36979
37323
|
selector: 'novo-date-picker-input',
|
|
36980
37324
|
providers: [DATE_VALUE_ACCESSOR],
|
|
36981
|
-
template: "\n <input\n type=\"text\"\n [name]=\"name\"\n [(ngModel)]=\"formattedValue\"\n [textMask]=\"maskOptions\"\n [placeholder]=\"placeholder\"\n (focus)=\"_handleFocus($event)\"\n (keydown)=\"_handleKeydown($event)\"\n (input)=\"_handleInput($event)\"\n (blur)=\"_handleBlur($event)\"\n #input\n data-automation-id=\"date-input\"\n [disabled]=\"disabled\"\n />\n <i *ngIf=\"!hasValue\" (click)=\"openPanel()\" class=\"bhi-calendar\"></i>\n <i *ngIf=\"hasValue\" (click)=\"clearValue()\" class=\"bhi-times\"></i>\n <novo-overlay-template [parent]=\"element\" position=\"above-below\">\n <novo-date-picker\n [start]=\"start\"\n [end]=\"end\"\n inline=\"true\"\n (onSelect)=\"setValueAndClose($event)\"\n [disabledDateMessage]=\"disabledDateMessage\"\n [ngModel]=\"value\"\n [weekStart]=\"weekStart\"\n ></novo-date-picker>\n </novo-overlay-template>\n "
|
|
37325
|
+
template: "\n <input\n type=\"text\"\n [name]=\"name\"\n [(ngModel)]=\"formattedValue\"\n [textMask]=\"maskOptions\"\n [placeholder]=\"placeholder\"\n (focus)=\"_handleFocus($event)\"\n (keydown)=\"_handleKeydown($event)\"\n (input)=\"_handleInput($event)\"\n (blur)=\"_handleBlur($event)\"\n #input\n data-automation-id=\"date-input\"\n [disabled]=\"disabled\"\n />\n <span class=\"error-text\" *ngIf=\"showInvalidDateError\">{{ invalidDateErrorMessage }}</span>\n <i *ngIf=\"!hasValue\" (click)=\"openPanel()\" class=\"bhi-calendar\"></i>\n <i *ngIf=\"hasValue\" (click)=\"clearValue()\" class=\"bhi-times\"></i>\n <novo-overlay-template [parent]=\"element\" position=\"above-below\">\n <novo-date-picker\n [start]=\"start\"\n [end]=\"end\"\n inline=\"true\"\n (onSelect)=\"setValueAndClose($event)\"\n [disabledDateMessage]=\"disabledDateMessage\"\n [ngModel]=\"value\"\n [weekStart]=\"weekStart\"\n ></novo-date-picker>\n </novo-overlay-template>\n "
|
|
36982
37326
|
},] }
|
|
36983
37327
|
];
|
|
36984
37328
|
NovoDatePickerInputElement.ctorParameters = function () { return [
|
|
@@ -37020,6 +37364,7 @@
|
|
|
37020
37364
|
this.formattedStartDate = '';
|
|
37021
37365
|
this.formattedEndDate = '';
|
|
37022
37366
|
this.weekRangeSelect = false;
|
|
37367
|
+
this.mode = 'range';
|
|
37023
37368
|
this.textMaskEnabled = true;
|
|
37024
37369
|
this.allowInvalidDate = false;
|
|
37025
37370
|
this.weekStart = 0;
|
|
@@ -37064,11 +37409,19 @@
|
|
|
37064
37409
|
configurable: true
|
|
37065
37410
|
});
|
|
37066
37411
|
NovoDateRangeInputElement.prototype.ngOnInit = function () {
|
|
37412
|
+
this._initFormatOptions();
|
|
37413
|
+
};
|
|
37414
|
+
NovoDateRangeInputElement.prototype.ngOnChanges = function (changes) {
|
|
37415
|
+
if (Object.keys(changes).some(function (key) { return ['format'].includes(key); })) {
|
|
37416
|
+
this._initFormatOptions();
|
|
37417
|
+
}
|
|
37418
|
+
};
|
|
37419
|
+
NovoDateRangeInputElement.prototype._initFormatOptions = function () {
|
|
37067
37420
|
this.userDefinedFormat = this.format ? !this.format.match(/^(DD\/MM\/YYYY|MM\/DD\/YYYY)$/g) : false;
|
|
37068
37421
|
if (!this.userDefinedFormat && this.textMaskEnabled && !this.allowInvalidDate) {
|
|
37069
37422
|
this.maskOptions = this.maskOptions || {
|
|
37070
37423
|
mask: this.dateFormatService.getDateMask(),
|
|
37071
|
-
pipe: createAutoCorrectedDatePipe__default['default'](this.format || this.labels.dateFormatString().toLowerCase()),
|
|
37424
|
+
pipe: createAutoCorrectedDatePipe__default['default']((this.format || this.labels.dateFormatString()).toLowerCase()),
|
|
37072
37425
|
keepCharPositions: false,
|
|
37073
37426
|
guide: true,
|
|
37074
37427
|
};
|
|
@@ -37233,7 +37586,7 @@
|
|
|
37233
37586
|
{ type: i0.Component, args: [{
|
|
37234
37587
|
selector: 'novo-date-range-input',
|
|
37235
37588
|
providers: [DATE_VALUE_ACCESSOR$1],
|
|
37236
|
-
template: "\n <div class=\"date-range-input-container\">\n <input\n type=\"text\"\n [name]=\"name\"\n [(ngModel)]=\"formattedStartDate\"\n [textMask]=\"maskOptions\"\n [placeholder]=\"placeholder\"\n (keydown)=\"_onStartInputChange($event)\"\n (input)=\"_onStartInputChange($event)\"\n (focus)=\"_handleFocus($event)\"\n (blur)=\"_handleBlur($event)\"\n #startDate\n data-automation-id=\"date-range-input-start\"\n [disabled]=\"disabled\"\n />\n <novo-icon *ngIf=\"!hasStartValue\" (click)=\"openPanel()\">calendar</novo-icon>\n <novo-icon *ngIf=\"hasStartValue\" (click)=\"clearStartValue()\">x</novo-icon>\n </div>\n <div class=\"date-range-input-divider\">-</div>\n <div class=\"date-range-input-container\">\n <input\n type=\"text\"\n [name]=\"name\"\n [(ngModel)]=\"formattedEndDate\"\n [textMask]=\"maskOptions\"\n [placeholder]=\"placeholder\"\n (keydown)=\"_onEndInputChange($event)\"\n (input)=\"_onEndInputChange($event)\"\n (focus)=\"_handleFocus($event)\"\n (blur)=\"_handleBlur($event)\"\n #endDate\n data-automation-id=\"date-range-input-end\"\n [disabled]=\"disabled\"\n />\n <novo-icon *ngIf=\"!hasEndValue\" (click)=\"openPanel()\">calendar</novo-icon>\n <novo-icon *ngIf=\"hasEndValue\" (click)=\"clearEndValue()\">x</novo-icon>\n </div>\n <novo-overlay-template [parent]=\"element\" position=\"above-below\">\n <novo-date-picker\n [start]=\"start\"\n [end]=\"end\"\n [
|
|
37589
|
+
template: "\n <div class=\"date-range-input-container\">\n <input\n type=\"text\"\n [name]=\"name\"\n [(ngModel)]=\"formattedStartDate\"\n [textMask]=\"maskOptions\"\n [placeholder]=\"placeholder\"\n (keydown)=\"_onStartInputChange($event)\"\n (input)=\"_onStartInputChange($event)\"\n (focus)=\"_handleFocus($event)\"\n (blur)=\"_handleBlur($event)\"\n #startDate\n data-automation-id=\"date-range-input-start\"\n [disabled]=\"disabled\"\n />\n <novo-icon *ngIf=\"!hasStartValue\" (click)=\"openPanel()\">calendar</novo-icon>\n <novo-icon *ngIf=\"hasStartValue\" (click)=\"clearStartValue()\">x</novo-icon>\n </div>\n <div class=\"date-range-input-divider\">-</div>\n <div class=\"date-range-input-container\">\n <input\n type=\"text\"\n [name]=\"name\"\n [(ngModel)]=\"formattedEndDate\"\n [textMask]=\"maskOptions\"\n [placeholder]=\"placeholder\"\n (keydown)=\"_onEndInputChange($event)\"\n (input)=\"_onEndInputChange($event)\"\n (focus)=\"_handleFocus($event)\"\n (blur)=\"_handleBlur($event)\"\n #endDate\n data-automation-id=\"date-range-input-end\"\n [disabled]=\"disabled\"\n />\n <novo-icon *ngIf=\"!hasEndValue\" (click)=\"openPanel()\">calendar</novo-icon>\n <novo-icon *ngIf=\"hasEndValue\" (click)=\"clearEndValue()\">x</novo-icon>\n </div>\n <novo-overlay-template [parent]=\"element\" position=\"above-below\">\n <novo-date-picker\n [start]=\"start\"\n [end]=\"end\"\n [mode]=\"mode\"\n range=\"true\"\n inline=\"true\"\n (onSelect)=\"setValueAndClose($event)\"\n [ngModel]=\"value\"\n [weekStart]=\"weekStart\"\n ></novo-date-picker>\n </novo-overlay-template>\n "
|
|
37237
37590
|
},] }
|
|
37238
37591
|
];
|
|
37239
37592
|
NovoDateRangeInputElement.ctorParameters = function () { return [
|
|
@@ -37247,6 +37600,7 @@
|
|
|
37247
37600
|
start: [{ type: i0.Input }],
|
|
37248
37601
|
end: [{ type: i0.Input }],
|
|
37249
37602
|
weekRangeSelect: [{ type: i0.Input }],
|
|
37603
|
+
mode: [{ type: i0.Input }],
|
|
37250
37604
|
placeholder: [{ type: i0.Input }],
|
|
37251
37605
|
maskOptions: [{ type: i0.Input }],
|
|
37252
37606
|
format: [{ type: i0.Input }],
|
|
@@ -37427,7 +37781,7 @@
|
|
|
37427
37781
|
{ type: i0.Component, args: [{
|
|
37428
37782
|
selector: 'novo-multi-date-input',
|
|
37429
37783
|
providers: [MULTI_DATE_VALUE_ACCESSOR],
|
|
37430
|
-
template: "\n <novo-chip *ngFor=\"let date of value | default: []\" (removed)=\"remove($event, date)\">\n
|
|
37784
|
+
template: "\n <novo-chip-list>\n <novo-chip *ngFor=\"let date of value | default: []\" (removed)=\"remove($event, date)\">\n {{ date | date: format }}\n <novo-icon novoChipRemove>close</novo-icon>\n </novo-chip>\n </novo-chip-list>\n <!-- <div *ngIf=\"value.length > chipsCount\">\n <ul class=\"summary\">\n <li *ngFor=\"let type of notShown\">+ {{ type.count }} {{ labels.more }} {{ type.type }}</li>\n </ul>\n </div> -->\n <div class=\"chip-input-container\" (click)=\"_handleFocus($event)\">\n <span class=\"placeholder\" *ngIf=\"!value.length\" data-automation-id=\"multi-date-input\">{{ placeholder }}</span>\n </div>\n <novo-icon class=\"panel-toggle\" [class.selected]=\"panelOpen\" (click)=\"openPanel()\">calendar</novo-icon>\n <label class=\"clear-all\" *ngIf=\"value.length\" (click)=\"clearValue()\">{{ labels.clearAll }} <i class=\"bhi-times\"></i></label>\n <novo-overlay-template [parent]=\"element\" position=\"above-below\">\n <novo-date-picker\n [start]=\"start\"\n [end]=\"end\"\n inline=\"true\"\n mode=\"multiple\"\n (onSelect)=\"setValueAndClose($event)\"\n [(ngModel)]=\"value\"\n [weekStart]=\"weekStart\"\n ></novo-date-picker>\n </novo-overlay-template>\n "
|
|
37431
37785
|
},] }
|
|
37432
37786
|
];
|
|
37433
37787
|
NovoMultiDateInputElement.ctorParameters = function () { return [
|
|
@@ -37937,7 +38291,7 @@
|
|
|
37937
38291
|
_this.id = _this._uniqueId;
|
|
37938
38292
|
_this.name = _this._uniqueId;
|
|
37939
38293
|
_this.placeholder = 'Select...';
|
|
37940
|
-
_this.position = '
|
|
38294
|
+
_this.position = 'bottom';
|
|
37941
38295
|
_this.onSelect = new i0.EventEmitter();
|
|
37942
38296
|
/** Event emitted when the selected value has been changed by the user. */
|
|
37943
38297
|
_this.selectionChange = new i0.EventEmitter();
|
|
@@ -37952,7 +38306,7 @@
|
|
|
37952
38306
|
/** Function that maps an option's control value to its display value in the trigger. */
|
|
37953
38307
|
_this.displayWith = null;
|
|
37954
38308
|
/** * Function to compare the option values with the selected values. */
|
|
37955
|
-
_this.compareWith = function (o1, o2) { return o1 === o2; };
|
|
38309
|
+
_this.compareWith = function (o1, o2) { return o1 === o2 || o1 === o2.id || (!Helpers.isEmpty(o1.id) && !Helpers.isEmpty(o2.id) && o1.id === o2.id); };
|
|
37956
38310
|
_this.header = {
|
|
37957
38311
|
open: false,
|
|
37958
38312
|
valid: true,
|
|
@@ -37964,9 +38318,11 @@
|
|
|
37964
38318
|
_this.disabled = false;
|
|
37965
38319
|
_this._value = null;
|
|
37966
38320
|
_this._multiple = false;
|
|
38321
|
+
_this._focused = false;
|
|
37967
38322
|
if (ngControl) {
|
|
37968
38323
|
ngControl.valueAccessor = _this;
|
|
37969
38324
|
}
|
|
38325
|
+
_this._selectionModel = new collections.SelectionModel(_this.multiple);
|
|
37970
38326
|
return _this;
|
|
37971
38327
|
}
|
|
37972
38328
|
Object.defineProperty(NovoSelectElement.prototype, "value", {
|
|
@@ -38002,10 +38358,9 @@
|
|
|
38002
38358
|
configurable: true
|
|
38003
38359
|
});
|
|
38004
38360
|
Object.defineProperty(NovoSelectElement.prototype, "focused", {
|
|
38005
|
-
/** Whether
|
|
38361
|
+
/** Whether the select is focused. */
|
|
38006
38362
|
get: function () {
|
|
38007
|
-
|
|
38008
|
-
return false;
|
|
38363
|
+
return this._focused || this.panelOpen;
|
|
38009
38364
|
},
|
|
38010
38365
|
enumerable: false,
|
|
38011
38366
|
configurable: true
|
|
@@ -38044,13 +38399,14 @@
|
|
|
38044
38399
|
});
|
|
38045
38400
|
NovoSelectElement.prototype.ngOnInit = function () {
|
|
38046
38401
|
var _this = this;
|
|
38047
|
-
this._selectionModel = new collections.SelectionModel(this.multiple);
|
|
38048
38402
|
this.stateChanges.next();
|
|
38049
38403
|
this._initLegacyOptions();
|
|
38050
38404
|
this.focusMonitor.monitor(this.dropdown.nativeElement).subscribe(function (origin) { return _this.ngZone.run(function () {
|
|
38051
38405
|
if (origin === 'keyboard' && !_this.disabled) {
|
|
38052
38406
|
_this.openPanel();
|
|
38053
38407
|
}
|
|
38408
|
+
_this._focused = !!origin;
|
|
38409
|
+
_this.stateChanges.next();
|
|
38054
38410
|
}); });
|
|
38055
38411
|
};
|
|
38056
38412
|
NovoSelectElement.prototype.ngOnChanges = function (changes) {
|
|
@@ -38059,6 +38415,10 @@
|
|
|
38059
38415
|
if (changes === null || changes === void 0 ? void 0 : changes.disabled) {
|
|
38060
38416
|
this.stateChanges.next();
|
|
38061
38417
|
}
|
|
38418
|
+
if (changes === null || changes === void 0 ? void 0 : changes.multiple) {
|
|
38419
|
+
// TODO: copy selection over??
|
|
38420
|
+
this._selectionModel = new collections.SelectionModel(this.multiple);
|
|
38421
|
+
}
|
|
38062
38422
|
this._initLegacyOptions();
|
|
38063
38423
|
};
|
|
38064
38424
|
NovoSelectElement.prototype.ngAfterViewInit = function () {
|
|
@@ -38071,8 +38431,16 @@
|
|
|
38071
38431
|
this._initializeSelection();
|
|
38072
38432
|
// Listen to selection changes to select and deselect options
|
|
38073
38433
|
this._selectionModel.changed.pipe(operators.takeUntil(this._destroy)).subscribe(function (event) {
|
|
38074
|
-
event.added.forEach(function (option) {
|
|
38075
|
-
|
|
38434
|
+
event.added.forEach(function (option) {
|
|
38435
|
+
if (option.select) {
|
|
38436
|
+
option.select();
|
|
38437
|
+
}
|
|
38438
|
+
});
|
|
38439
|
+
event.removed.forEach(function (option) {
|
|
38440
|
+
if (option.deselect) {
|
|
38441
|
+
option.deselect();
|
|
38442
|
+
}
|
|
38443
|
+
});
|
|
38076
38444
|
});
|
|
38077
38445
|
// Listen to QueryList changes
|
|
38078
38446
|
rxjs.merge(this.contentOptions.changes, this.viewOptions.changes)
|
|
@@ -38114,13 +38482,17 @@
|
|
|
38114
38482
|
*/
|
|
38115
38483
|
NovoSelectElement.prototype._setSelectionByValue = function (value) {
|
|
38116
38484
|
var _this = this;
|
|
38117
|
-
this._selectionModel.selected.forEach(function (option) {
|
|
38485
|
+
this._selectionModel.selected.forEach(function (option) {
|
|
38486
|
+
if (option.setInactiveStyles) {
|
|
38487
|
+
option.setInactiveStyles();
|
|
38488
|
+
}
|
|
38489
|
+
});
|
|
38118
38490
|
this._selectionModel.clear();
|
|
38119
38491
|
if (this.multiple && value) {
|
|
38120
38492
|
value.forEach(function (currentValue) { return _this._selectValue(currentValue); });
|
|
38121
38493
|
this._sortValues();
|
|
38122
38494
|
}
|
|
38123
|
-
else {
|
|
38495
|
+
else if (this._keyManager) {
|
|
38124
38496
|
var correspondingOption = this._selectValue(value);
|
|
38125
38497
|
// Shift focus to the active item. Note that we shouldn't do this in multiple
|
|
38126
38498
|
// mode, because we don't know what option the user interacted with last.
|
|
@@ -38148,11 +38520,25 @@
|
|
|
38148
38520
|
if (_this._selectionModel.isSelected(option)) {
|
|
38149
38521
|
return false;
|
|
38150
38522
|
}
|
|
38151
|
-
return
|
|
38523
|
+
return !Helpers.isEmpty(value) && !Helpers.isEmpty(option.value) && _this.compareWith(option.value, value);
|
|
38152
38524
|
});
|
|
38153
38525
|
if (correspondingOption) {
|
|
38154
38526
|
this._selectionModel.select(correspondingOption);
|
|
38155
38527
|
}
|
|
38528
|
+
else if (value && !correspondingOption) {
|
|
38529
|
+
// Double Check option not already added.
|
|
38530
|
+
var legacyOption = this.filteredOptions.find(function (it) { return it.value === value; });
|
|
38531
|
+
if (!legacyOption) {
|
|
38532
|
+
// Add a disabled option to the list and select it
|
|
38533
|
+
this.filteredOptions.push({
|
|
38534
|
+
disabled: true,
|
|
38535
|
+
tooltip: 'Value is not provided in list of valid options.',
|
|
38536
|
+
label: (value === null || value === void 0 ? void 0 : value.label) || value,
|
|
38537
|
+
value: value,
|
|
38538
|
+
});
|
|
38539
|
+
this.ref.detectChanges();
|
|
38540
|
+
}
|
|
38541
|
+
}
|
|
38156
38542
|
return correspondingOption;
|
|
38157
38543
|
};
|
|
38158
38544
|
NovoSelectElement.prototype.select = function (option, i, fireEvents) {
|
|
@@ -38198,9 +38584,13 @@
|
|
|
38198
38584
|
this._watchSelectionEvents();
|
|
38199
38585
|
};
|
|
38200
38586
|
NovoSelectElement.prototype._getDisplayValue = function (option) {
|
|
38201
|
-
if (!option)
|
|
38587
|
+
if (!option) {
|
|
38202
38588
|
return '';
|
|
38203
|
-
|
|
38589
|
+
}
|
|
38590
|
+
var toDisplay = option.viewValue;
|
|
38591
|
+
if (this.displayWith) {
|
|
38592
|
+
toDisplay = this.displayWith(option.value);
|
|
38593
|
+
}
|
|
38204
38594
|
// Simply falling back to an empty string if the display value is falsy does not work properly.
|
|
38205
38595
|
// The display value can also be the number zero and shouldn't fall back to an empty string.
|
|
38206
38596
|
var displayValue = toDisplay != null ? toDisplay : '';
|
|
@@ -38280,6 +38670,9 @@
|
|
|
38280
38670
|
}
|
|
38281
38671
|
});
|
|
38282
38672
|
}
|
|
38673
|
+
else if ("Escape" /* Escape */ === key) {
|
|
38674
|
+
this.closePanel();
|
|
38675
|
+
}
|
|
38283
38676
|
else {
|
|
38284
38677
|
var previouslyFocusedIndex = manager.activeItemIndex;
|
|
38285
38678
|
manager.onKeydown(event);
|
|
@@ -38411,11 +38804,11 @@
|
|
|
38411
38804
|
}
|
|
38412
38805
|
else {
|
|
38413
38806
|
this.filteredOptions = (this.options || [])
|
|
38414
|
-
.
|
|
38415
|
-
return
|
|
38807
|
+
.map(function (item) {
|
|
38808
|
+
return Object.assign(Object.assign({}, item), { disabled: item.readOnly || item.disabled });
|
|
38416
38809
|
})
|
|
38417
|
-
.map(function (
|
|
38418
|
-
return Object.assign(Object.assign({},
|
|
38810
|
+
.map(function (item) {
|
|
38811
|
+
return Object.assign(Object.assign({}, item), { active: false });
|
|
38419
38812
|
});
|
|
38420
38813
|
}
|
|
38421
38814
|
};
|
|
@@ -38470,7 +38863,26 @@
|
|
|
38470
38863
|
{ provide: NovoFieldControl, useExisting: NovoSelectElement },
|
|
38471
38864
|
{ provide: NOVO_OPTION_PARENT_COMPONENT, useExisting: NovoSelectElement },
|
|
38472
38865
|
],
|
|
38473
|
-
template: "\n <div class=\"novo-select-trigger\" #dropdownElement (click)=\"togglePanel(); (false)\" tabIndex=\"{{ disabled ? -1 : 0 }}\" type=\"button\">\n <span class=\"novo-select-placeholder\" *ngIf=\"empty\">{{ placeholder }}</span>\n <span class=\"novo-select-display-value\" *ngIf=\"!empty\">{{ displayValue }}</span>\n <i class=\"bhi-collapse\"></i>\n </div>\n <novo-overlay-template\n [parent]=\"elementRef\"\n [position]=\"position\"\n [width]=\"overlayWidth\"\n [height]=\"overlayHeight\"\n (closing)=\"dropdown.nativeElement.focus()\"\n >\n <div #panel class=\"novo-select-list\" tabIndex=\"-1\" [class.has-header]=\"headerConfig\" [class.active]=\"panelOpen\">\n <novo-option *ngIf=\"headerConfig\" class=\"select-header\" [class.open]=\"header.open\">\n <novo-button *ngIf=\"!header.open\" icon=\"add-thin\" (click)=\"toggleHeader($event); (false)\" tabIndex=\"-1\" class=\"header\">\n {{ headerConfig.label }}\n </novo-button>\n <div *ngIf=\"header.open\" [ngClass]=\"{ active: header.open }\">\n <input\n autofocus\n type=\"text\"\n [placeholder]=\"headerConfig.placeholder\"\n [attr.id]=\"name\"\n autocomplete=\"off\"\n [value]=\"header.value\"\n [ngClass]=\"{ invalid: !header.valid }\"\n />\n <footer>\n <novo-button (click)=\"toggleHeader($event, false)\">{{ labels.cancel }}</novo-button>\n <novo-button (click)=\"saveHeader()\" class=\"primary\">{{ labels.save }}</novo-button>\n </footer>\n </div>\n </novo-option>\n <!-- Declarative Content Goes Here -->\n <ng-content></ng-content>\n <!-- Data Driven Content Goes Here -->\n <ng-container *ngFor=\"let option of filteredOptions; let i = index\">\n <novo-option\n *ngIf=\"!option.divider; else divider\"\n class=\"select-item\"\n [
|
|
38866
|
+
template: "\n <div class=\"novo-select-trigger\" #dropdownElement (click)=\"togglePanel(); (false)\" tabIndex=\"{{ disabled ? -1 : 0 }}\" type=\"button\">\n <span class=\"novo-select-placeholder\" *ngIf=\"empty\">{{ placeholder }}</span>\n <span class=\"novo-select-display-value\" *ngIf=\"!empty\">{{ displayValue }}</span>\n <i class=\"bhi-collapse\"></i>\n </div>\n <novo-overlay-template\n [parent]=\"elementRef\"\n [position]=\"position\"\n [width]=\"overlayWidth\"\n [height]=\"overlayHeight\"\n (closing)=\"dropdown.nativeElement.focus()\"\n >\n <div #panel class=\"novo-select-list\" tabIndex=\"-1\" [class.has-header]=\"headerConfig\" [class.active]=\"panelOpen\">\n <novo-option *ngIf=\"headerConfig\" class=\"select-header\" [class.open]=\"header.open\">\n <novo-button *ngIf=\"!header.open\" icon=\"add-thin\" (click)=\"toggleHeader($event); (false)\" tabIndex=\"-1\" class=\"header\">\n {{ headerConfig.label }}\n </novo-button>\n <div *ngIf=\"header.open\" [ngClass]=\"{ active: header.open }\">\n <input\n autofocus\n type=\"text\"\n [placeholder]=\"headerConfig.placeholder\"\n [attr.id]=\"name\"\n autocomplete=\"off\"\n [value]=\"header.value\"\n [ngClass]=\"{ invalid: !header.valid }\"\n />\n <footer>\n <novo-button (click)=\"toggleHeader($event, false)\">{{ labels.cancel }}</novo-button>\n <novo-button (click)=\"saveHeader()\" class=\"primary\">{{ labels.save }}</novo-button>\n </footer>\n </div>\n </novo-option>\n <!-- Declarative Content Goes Here -->\n <ng-content></ng-content>\n <!-- Data Driven Content Goes Here -->\n <ng-container *ngFor=\"let option of filteredOptions; let i = index\">\n <novo-option\n *ngIf=\"!option.divider; else divider\"\n class=\"select-item\"\n [disabled]=\"option.disabled\"\n [class.active]=\"option.active\"\n [attr.data-automation-value]=\"option.label\"\n [value]=\"option.value\"\n [tooltip]=\"option.tooltip\"\n [tooltipPosition]=\"option.tooltipPosition || 'right'\"\n >\n <span [innerHtml]=\"highlight(option.label, filterTerm)\"></span> <i *ngIf=\"option.active\" class=\"bhi-check\"></i>\n </novo-option>\n <ng-template #divider>\n <novo-divider class=\"select-item-divider\" [class.with-label]=\"option.label\" [class.without-label]=\"!option.label\">\n {{ option?.label }}\n </novo-divider>\n </ng-template>\n </ng-container>\n </div>\n </novo-overlay-template>\n ",
|
|
38867
|
+
host: {
|
|
38868
|
+
class: 'novo-select',
|
|
38869
|
+
role: 'combobox',
|
|
38870
|
+
'aria-autocomplete': 'none',
|
|
38871
|
+
'aria-haspopup': 'true',
|
|
38872
|
+
'[attr.id]': 'id',
|
|
38873
|
+
'[attr.aria-controls]': 'panelOpen ? id + "-panel" : null',
|
|
38874
|
+
'[attr.aria-expanded]': 'panelOpen',
|
|
38875
|
+
'[attr.aria-required]': 'required.toString()',
|
|
38876
|
+
'[attr.aria-disabled]': 'disabled.toString()',
|
|
38877
|
+
'[attr.aria-invalid]': 'errorState',
|
|
38878
|
+
'[attr.aria-describedby]': '_ariaDescribedby || null',
|
|
38879
|
+
'[attr.aria-activedescendant]': '_getAriaActiveDescendant()',
|
|
38880
|
+
'[class.novo-select-disabled]': 'disabled',
|
|
38881
|
+
'[class.novo-select-invalid]': 'errorState',
|
|
38882
|
+
'[class.novo-select-required]': 'required',
|
|
38883
|
+
'[class.novo-select-empty]': 'empty',
|
|
38884
|
+
'[class.novo-select-multiple]': 'multiple',
|
|
38885
|
+
}
|
|
38474
38886
|
},] }
|
|
38475
38887
|
];
|
|
38476
38888
|
NovoSelectElement.ctorParameters = function () { return [
|
|
@@ -39022,7 +39434,7 @@
|
|
|
39022
39434
|
return this._name;
|
|
39023
39435
|
},
|
|
39024
39436
|
set: function (value) {
|
|
39025
|
-
this.
|
|
39437
|
+
this._name = value;
|
|
39026
39438
|
},
|
|
39027
39439
|
enumerable: false,
|
|
39028
39440
|
configurable: true
|
|
@@ -39641,6 +40053,8 @@
|
|
|
39641
40053
|
this.theme = 'standard';
|
|
39642
40054
|
this._page = 0;
|
|
39643
40055
|
this._pageSizeOptions = [];
|
|
40056
|
+
this.canSelectAll = false;
|
|
40057
|
+
this.allMatchingSelected = false;
|
|
39644
40058
|
this._length = 0;
|
|
39645
40059
|
this.pageChange = new i0.EventEmitter();
|
|
39646
40060
|
this.resetSubscription = this.state.resetSource.subscribe(function () {
|
|
@@ -39708,12 +40122,12 @@
|
|
|
39708
40122
|
this.resetSubscription.unsubscribe();
|
|
39709
40123
|
};
|
|
39710
40124
|
NovoDataTablePagination.prototype.selectPage = function (page) {
|
|
39711
|
-
this.state.checkRetainment('page');
|
|
40125
|
+
this.state.checkRetainment('page', this.canSelectAll && this.allMatchingSelected);
|
|
39712
40126
|
this.page = page;
|
|
39713
40127
|
this.emitPageEvent();
|
|
39714
40128
|
};
|
|
39715
40129
|
NovoDataTablePagination.prototype.nextPage = function () {
|
|
39716
|
-
this.state.checkRetainment('page');
|
|
40130
|
+
this.state.checkRetainment('page', this.canSelectAll && this.allMatchingSelected);
|
|
39717
40131
|
if (!this.hasNextPage()) {
|
|
39718
40132
|
return;
|
|
39719
40133
|
}
|
|
@@ -39722,7 +40136,7 @@
|
|
|
39722
40136
|
this.emitPageEvent();
|
|
39723
40137
|
};
|
|
39724
40138
|
NovoDataTablePagination.prototype.previousPage = function () {
|
|
39725
|
-
this.state.checkRetainment('page');
|
|
40139
|
+
this.state.checkRetainment('page', this.canSelectAll && this.allMatchingSelected);
|
|
39726
40140
|
if (!this.hasPreviousPage()) {
|
|
39727
40141
|
return;
|
|
39728
40142
|
}
|
|
@@ -39841,6 +40255,8 @@
|
|
|
39841
40255
|
pageSize: [{ type: i0.Input }],
|
|
39842
40256
|
dataFeatureId: [{ type: i0.Input }],
|
|
39843
40257
|
pageSizeOptions: [{ type: i0.Input }],
|
|
40258
|
+
canSelectAll: [{ type: i0.Input }],
|
|
40259
|
+
allMatchingSelected: [{ type: i0.Input }],
|
|
39844
40260
|
length: [{ type: i0.Input }],
|
|
39845
40261
|
pageChange: [{ type: i0.Output }]
|
|
39846
40262
|
};
|
|
@@ -39912,12 +40328,13 @@
|
|
|
39912
40328
|
NovoLoadingModule,
|
|
39913
40329
|
NovoTilesModule,
|
|
39914
40330
|
NovoSearchBoxModule,
|
|
40331
|
+
NovoOptionModule,
|
|
39915
40332
|
NovoCommonModule,
|
|
39916
40333
|
NovoSelectModule,
|
|
39917
40334
|
NovoTooltipModule,
|
|
39918
|
-
NovoOptionModule,
|
|
39919
40335
|
NovoCheckboxModule,
|
|
39920
40336
|
NovoFlexModule,
|
|
40337
|
+
NovoFieldModule,
|
|
39921
40338
|
],
|
|
39922
40339
|
declarations: [
|
|
39923
40340
|
DataTableInterpolatePipe,
|
|
@@ -40949,8 +41366,9 @@
|
|
|
40949
41366
|
{ type: i0.Component, args: [{
|
|
40950
41367
|
selector: 'novo-time-picker',
|
|
40951
41368
|
providers: [TIME_PICKER_VALUE_ACCESSOR],
|
|
40952
|
-
template: "\n <!-- <div class=\"digital\" [class.inline]=\"inline\" [class.military]=\"military\" *ngIf=\"inline\">\n <div class=\"digital--inner\">\n <span class=\"digital--clock\" *ngIf=\"analog\">\n <span class=\"hours\" data-automation-id=\"novo-time-picker-hours\">{{ hours }}</span\n >:<span class=\"minutes\" data-automation-id=\"novo-time-picker-minutes\">{{ minutes }}</span>\n </span>\n <div class=\"control-block\" *ngIf=\"!military && analog\">\n <span\n *ngFor=\"let period of MERIDIANS\"\n class=\"digital--period\"\n [class.active]=\"meridian == period\"\n (click)=\"setPeriod($event, period, true)\"\n [attr.data-automation-id]=\"period\"\n >{{ period }}</span\n >\n </div>\n </div>\n </div> -->\n <div class=\"increments\" *ngIf=\"!analog\">\n <novo-list direction=\"vertical\" data-automation-id=\"novo-time-picker-
|
|
41369
|
+
template: "\n <!-- <div class=\"digital\" [class.inline]=\"inline\" [class.military]=\"military\" *ngIf=\"inline\">\n <div class=\"digital--inner\">\n <span class=\"digital--clock\" *ngIf=\"analog\">\n <span class=\"hours\" data-automation-id=\"novo-time-picker-hours\">{{ hours }}</span\n >:<span class=\"minutes\" data-automation-id=\"novo-time-picker-minutes\">{{ minutes }}</span>\n </span>\n <div class=\"control-block\" *ngIf=\"!military && analog\">\n <span\n *ngFor=\"let period of MERIDIANS\"\n class=\"digital--period\"\n [class.active]=\"meridian == period\"\n (click)=\"setPeriod($event, period, true)\"\n [attr.data-automation-id]=\"period\"\n >{{ period }}</span\n >\n </div>\n </div>\n </div> -->\n <div class=\"increments\" *ngIf=\"!analog\">\n <novo-list class=\"increments--hours\" direction=\"vertical\" data-automation-id=\"novo-time-picker-hours\">\n <novo-list-item\n class=\"increments--hour\"\n *ngFor=\"let increment of HOURS\"\n (click)=\"setHours($event, increment, true)\"\n [class.active]=\"increment == activeHour\"\n [attr.data-automation-id]=\"increment\"\n >\n <item-content>{{ increment }}</item-content>\n </novo-list-item>\n </novo-list>\n <novo-list class=\"increments--minutes\" direction=\"vertical\" data-automation-id=\"novo-time-picker-minutes\">\n <novo-list-item\n class=\"increments--minute\"\n *ngFor=\"let increment of MINUTES\"\n (click)=\"setMinutes($event, increment, true)\"\n [class.active]=\"increment == activeMinute\"\n [attr.data-automation-id]=\"increment\"\n >\n <item-content>{{ increment }}</item-content>\n </novo-list-item>\n </novo-list>\n <novo-list class=\"increments--meridians\" direction=\"vertical\" *ngIf=\"!military\" data-automation-id=\"novo-time-picker-meridians\">\n <novo-list-item\n class=\"increments--meridian\"\n *ngFor=\"let period of MERIDIANS\"\n (click)=\"setPeriod($event, period, true)\"\n [class.active]=\"meridian == period\"\n [attr.data-automation-id]=\"period\"\n >\n <item-content>{{ period }}</item-content>\n </novo-list-item>\n </novo-list>\n </div>\n <div class=\"analog\" *ngIf=\"analog\">\n <div class=\"analog--inner\">\n <div class=\"analog--face\">\n <span class=\"analog--center\"></span>\n <span class=\"analog--hand--hours\" [ngClass]=\"hoursClass\">\n <span class=\"analog--ball\"></span>\n </span>\n <span class=\"analog--hand--minutes\" [ngClass]=\"minutesClass\">\n <span class=\"analog--ball\" [ngClass]=\"{ between: inBetween }\"></span>\n </span>\n </div>\n <div class=\"analog--hours\">\n <span\n *ngFor=\"let hour of HOURS\"\n class=\"analog--hour\"\n [ngClass]=\"{ active: activeHour == hour }\"\n (click)=\"setHours($event, hour, true)\"\n [attr.data-automation-id]=\"hour\"\n >{{ hour }}</span\n >\n </div>\n <div class=\"analog--minutes\">\n <span\n *ngFor=\"let minute of MINUTES\"\n class=\"analog--minute\"\n [ngClass]=\"{ active: activeMinute == minute }\"\n (click)=\"setMinutes($event, minute, true)\"\n [attr.data-automation-id]=\"minute\"\n >{{ minute }}</span\n >\n </div>\n </div>\n </div>\n ",
|
|
40953
41370
|
host: {
|
|
41371
|
+
class: 'novo-time-picker',
|
|
40954
41372
|
'[class.military]': 'military',
|
|
40955
41373
|
}
|
|
40956
41374
|
},] }
|
|
@@ -40987,10 +41405,23 @@
|
|
|
40987
41405
|
this._onTouched = function () { };
|
|
40988
41406
|
this.military = false;
|
|
40989
41407
|
this.disabled = false;
|
|
41408
|
+
/**
|
|
41409
|
+
* @deprecated don't use
|
|
41410
|
+
*/
|
|
41411
|
+
this.analog = false;
|
|
40990
41412
|
this.blurEvent = new i0.EventEmitter();
|
|
40991
41413
|
this.focusEvent = new i0.EventEmitter();
|
|
40992
41414
|
}
|
|
40993
41415
|
NovoTimePickerInputElement.prototype.ngOnInit = function () {
|
|
41416
|
+
this.initFormatOptions();
|
|
41417
|
+
};
|
|
41418
|
+
NovoTimePickerInputElement.prototype.ngOnChanges = function (changes) {
|
|
41419
|
+
// set icon and styling
|
|
41420
|
+
if (Object.keys(changes).some(function (key) { return ['military', 'maskOptions'].includes(key); })) {
|
|
41421
|
+
this.initFormatOptions();
|
|
41422
|
+
}
|
|
41423
|
+
};
|
|
41424
|
+
NovoTimePickerInputElement.prototype.initFormatOptions = function () {
|
|
40994
41425
|
var _this = this;
|
|
40995
41426
|
this.placeholder = this.military ? this.labels.timeFormatPlaceholder24Hour : this.labels.timeFormatPlaceholderAM;
|
|
40996
41427
|
var timeFormat = this.military ? 'HH:mm' : 'hh:mm A';
|
|
@@ -41071,18 +41502,39 @@
|
|
|
41071
41502
|
/** END: Convenient Panel Methods. */
|
|
41072
41503
|
NovoTimePickerInputElement.prototype._handleKeydown = function (event) {
|
|
41073
41504
|
var input = event.target;
|
|
41074
|
-
|
|
41505
|
+
var hour = input.value.slice(0, 2);
|
|
41506
|
+
if ((event.key === "Escape" /* Escape */ || event.key === "Enter" /* Enter */) && this.panelOpen) {
|
|
41075
41507
|
this.closePanel();
|
|
41076
41508
|
event.stopPropagation();
|
|
41077
41509
|
event.stopImmediatePropagation();
|
|
41510
|
+
if (this.hourOneFormatRequired(hour)) {
|
|
41511
|
+
input.value = "01:" + input.value.slice(3, input.value.length);
|
|
41512
|
+
}
|
|
41078
41513
|
}
|
|
41079
|
-
if (event.key === "
|
|
41080
|
-
event.
|
|
41514
|
+
else if (event.key === "Tab" /* Tab */ && input.selectionStart <= 2 && this.hourOneFormatRequired(hour)) {
|
|
41515
|
+
event.preventDefault();
|
|
41516
|
+
event.stopPropagation();
|
|
41517
|
+
event.stopImmediatePropagation();
|
|
41518
|
+
input.value = "01:" + input.value.slice(3, input.value.length);
|
|
41519
|
+
input.setSelectionRange(3, 3);
|
|
41520
|
+
}
|
|
41521
|
+
else if (event.key === "Backspace" /* Backspace */ && input.selectionStart === input.value.length) {
|
|
41522
|
+
input.value = input.value.slice(0, 5) + " xx";
|
|
41523
|
+
}
|
|
41524
|
+
else if (event.key === "Tab" /* Tab */ && this.panelOpen) {
|
|
41525
|
+
this.closePanel();
|
|
41526
|
+
event.stopPropagation();
|
|
41527
|
+
event.stopImmediatePropagation();
|
|
41528
|
+
}
|
|
41529
|
+
else if (event.key === "ArrowRight" /* ArrowRight */ && input.selectionStart >= 2 && this.hourOneFormatRequired(hour)) {
|
|
41530
|
+
input.value = "01:" + input.value.slice(3, input.value.length);
|
|
41531
|
+
input.setSelectionRange(2, 2);
|
|
41081
41532
|
}
|
|
41082
41533
|
};
|
|
41083
41534
|
NovoTimePickerInputElement.prototype._handleInput = function (event) {
|
|
41084
41535
|
if (document.activeElement === event.target) {
|
|
41085
41536
|
var text = event.target.value;
|
|
41537
|
+
var hour = text.slice(0, 2);
|
|
41086
41538
|
this.openPanel();
|
|
41087
41539
|
if ((this.military && Number(text[0]) > 2) || (!this.military && Number(text[0]) > 1)) {
|
|
41088
41540
|
event.preventDefault();
|
|
@@ -41092,18 +41544,25 @@
|
|
|
41092
41544
|
var test_1 = text.substr(5, 4).replace(/x/g, '').trim().slice(0, 2);
|
|
41093
41545
|
var timePeriod = this.maskOptions.blocks.aa.enum.find(function (it) { return it[0] === test_1[0]; });
|
|
41094
41546
|
if (timePeriod) {
|
|
41095
|
-
event.target.value =
|
|
41547
|
+
event.target.value = event.target.value.slice(0, 5) + " " + timePeriod;
|
|
41548
|
+
}
|
|
41549
|
+
if (event.target.selectionStart >= 3 && this.hourOneFormatRequired(hour)) {
|
|
41550
|
+
event.target.value = "01:" + event.target.value.slice(3, event.target.value.length);
|
|
41096
41551
|
}
|
|
41097
41552
|
}
|
|
41098
41553
|
}
|
|
41099
41554
|
};
|
|
41100
41555
|
NovoTimePickerInputElement.prototype._handleBlur = function (event) {
|
|
41101
41556
|
var text = event.target.value;
|
|
41557
|
+
var hour = text.slice(0, 2);
|
|
41102
41558
|
if (!this.military) {
|
|
41103
41559
|
var test_2 = text.substr(5, 4).replace(/x/g, '').trim().slice(0, 2);
|
|
41104
41560
|
var timePeriod = this.maskOptions.blocks.aa.enum.find(function (it) { return it[0] === test_2[0]; });
|
|
41561
|
+
if (this.hourOneFormatRequired(hour)) {
|
|
41562
|
+
event.target.value = "01:" + text.slice(3, text.length);
|
|
41563
|
+
}
|
|
41105
41564
|
if (!timePeriod) {
|
|
41106
|
-
event.target.value =
|
|
41565
|
+
event.target.value = event.target.value.slice(0, 5) + " xx";
|
|
41107
41566
|
}
|
|
41108
41567
|
}
|
|
41109
41568
|
};
|
|
@@ -41181,13 +41640,16 @@
|
|
|
41181
41640
|
}
|
|
41182
41641
|
return hours + ":" + minutes;
|
|
41183
41642
|
};
|
|
41643
|
+
NovoTimePickerInputElement.prototype.hourOneFormatRequired = function (hourInput) {
|
|
41644
|
+
return hourInput === 'h1' || hourInput === '1h';
|
|
41645
|
+
};
|
|
41184
41646
|
return NovoTimePickerInputElement;
|
|
41185
41647
|
}());
|
|
41186
41648
|
NovoTimePickerInputElement.decorators = [
|
|
41187
41649
|
{ type: i0.Component, args: [{
|
|
41188
41650
|
selector: 'novo-time-picker-input',
|
|
41189
41651
|
providers: [DATE_VALUE_ACCESSOR$2],
|
|
41190
|
-
template: "\n <input\n type=\"text\"\n [name]=\"name\"\n [(ngModel)]=\"value\"\n [imask]=\"maskOptions\"\n [unmask]=\"'typed'\"\n (complete)=\"onComplete($event)\"\n [placeholder]=\"placeholder\"\n (focus)=\"_handleFocus($event)\"\n (keydown)=\"_handleKeydown($event)\"\n (input)=\"_handleInput($event)\"\n (blur)=\"_handleBlur($event)\"\n #input\n data-automation-id=\"time-input\"\n [disabled]=\"disabled\"\n />\n <i *ngIf=\"!hasValue\" (click)=\"openPanel()\" class=\"bhi-clock\"></i> <i *ngIf=\"hasValue\" (click)=\"clearValue()\" class=\"bhi-times\"></i>\n
|
|
41652
|
+
template: "\n <input\n type=\"text\"\n [name]=\"name\"\n [(ngModel)]=\"value\"\n [imask]=\"maskOptions\"\n [unmask]=\"'typed'\"\n (complete)=\"onComplete($event)\"\n [placeholder]=\"placeholder\"\n (focus)=\"_handleFocus($event)\"\n (keydown)=\"_handleKeydown($event)\"\n (input)=\"_handleInput($event)\"\n (blur)=\"_handleBlur($event)\"\n #input\n data-automation-id=\"time-input\"\n [disabled]=\"disabled\"\n />\n <i *ngIf=\"!hasValue\" (click)=\"openPanel()\" class=\"bhi-clock\"></i> <i *ngIf=\"hasValue\" (click)=\"clearValue()\" class=\"bhi-times\"></i>\n <novo-overlay-template [parent]=\"element\" position=\"above-below\">\n <novo-time-picker\n inline=\"true\"\n [analog]=\"analog\"\n (onSelect)=\"setValue($event)\"\n [ngModel]=\"value\"\n [military]=\"military\"\n ></novo-time-picker>\n </novo-overlay-template>\n "
|
|
41191
41653
|
},] }
|
|
41192
41654
|
];
|
|
41193
41655
|
NovoTimePickerInputElement.ctorParameters = function () { return [
|
|
@@ -41202,9 +41664,11 @@
|
|
|
41202
41664
|
military: [{ type: i0.Input }],
|
|
41203
41665
|
maskOptions: [{ type: i0.Input }],
|
|
41204
41666
|
disabled: [{ type: i0.HostBinding, args: ['class.disabled',] }, { type: i0.Input }],
|
|
41667
|
+
analog: [{ type: i0.Input }],
|
|
41205
41668
|
blurEvent: [{ type: i0.Output }],
|
|
41206
41669
|
focusEvent: [{ type: i0.Output }],
|
|
41207
|
-
overlay: [{ type: i0.ViewChild, args: [NovoOverlayTemplateComponent,] }]
|
|
41670
|
+
overlay: [{ type: i0.ViewChild, args: [NovoOverlayTemplateComponent,] }],
|
|
41671
|
+
input: [{ type: i0.ViewChild, args: ['input',] }]
|
|
41208
41672
|
};
|
|
41209
41673
|
|
|
41210
41674
|
// NG2
|
|
@@ -41577,7 +42041,7 @@
|
|
|
41577
42041
|
'[class.novo-expansion-panel-spacing]': '_hasSpacing()',
|
|
41578
42042
|
'[class.novo-expansion-panel-padding]': 'padding',
|
|
41579
42043
|
},
|
|
41580
|
-
styles: [".novo-expansion-panel{background:var(--background-bright,#fff);color:var(--text-main,#3d464d)}.novo-action-row{border-top-color:var(--border,#3d464d)}.novo-expansion-panel:not(.novo-expanded) .novo-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.novo-expansion-panel:not(.novo-expanded) .novo-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused,.novo-expansion-panel:not(.novo-expanded) .novo-expansion-panel-header:not([aria-disabled=true]):hover{background:rgba(0,0,0,.04)}.novo-expansion-panel-header-title{color:var(--text-main,#3d464d)}.novo-expansion-indicator:after,.novo-expansion-panel-header-description{color:#9e9e9e}.novo-expansion-panel-header[aria-disabled=true]{color:#9e9e9e;pointer-events:none}.novo-expansion-panel-header[aria-disabled=true] .novo-expansion-panel-header-description,.novo-expansion-panel-header[aria-disabled=true] .novo-expansion-panel-header-title{color:inherit}.novo-expansion-panel.novo-expanded[theme=black]{border-top:3px solid #000}.novo-expansion-panel.novo-expanded[theme=white]{border-top:3px solid #fff}.novo-expansion-panel.novo-expanded[theme=gray],.novo-expansion-panel.novo-expanded[theme=grey]{border-top:3px solid #9e9e9e}.novo-expansion-panel.novo-expanded[theme=bright],.novo-expansion-panel.novo-expanded[theme=offWhite]{border-top:3px solid #f7f7f7}.novo-expansion-panel.novo-expanded[theme=light]{border-top:3px solid #dbdbdb}.novo-expansion-panel.novo-expanded[theme=neutral]{border-top:3px solid #4f5361}.novo-expansion-panel.novo-expanded[theme=dark]{border-top:3px solid #3d464d}.novo-expansion-panel.novo-expanded[theme=orange]{border-top:3px solid #ff6900}.novo-expansion-panel.novo-expanded[theme=navigation]{border-top:3px solid #
|
|
42044
|
+
styles: [".novo-expansion-panel{background:var(--background-bright,#fff);color:var(--text-main,#3d464d)}.novo-action-row{border-top-color:var(--border,#3d464d)}.novo-expansion-panel:not(.novo-expanded) .novo-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.novo-expansion-panel:not(.novo-expanded) .novo-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused,.novo-expansion-panel:not(.novo-expanded) .novo-expansion-panel-header:not([aria-disabled=true]):hover{background:rgba(0,0,0,.04)}.novo-expansion-panel-header-title{color:var(--text-main,#3d464d)}.novo-expansion-indicator:after,.novo-expansion-panel-header-description{color:#9e9e9e}.novo-expansion-panel-header[aria-disabled=true]{color:#9e9e9e;pointer-events:none}.novo-expansion-panel-header[aria-disabled=true] .novo-expansion-panel-header-description,.novo-expansion-panel-header[aria-disabled=true] .novo-expansion-panel-header-title{color:inherit}.novo-expansion-panel.novo-expanded[theme=black]{border-top:3px solid #000}.novo-expansion-panel.novo-expanded[theme=white]{border-top:3px solid #fff}.novo-expansion-panel.novo-expanded[theme=gray],.novo-expansion-panel.novo-expanded[theme=grey]{border-top:3px solid #9e9e9e}.novo-expansion-panel.novo-expanded[theme=bright],.novo-expansion-panel.novo-expanded[theme=offWhite]{border-top:3px solid #f7f7f7}.novo-expansion-panel.novo-expanded[theme=light]{border-top:3px solid #dbdbdb}.novo-expansion-panel.novo-expanded[theme=neutral]{border-top:3px solid #4f5361}.novo-expansion-panel.novo-expanded[theme=dark]{border-top:3px solid #3d464d}.novo-expansion-panel.novo-expanded[theme=orange]{border-top:3px solid #ff6900}.novo-expansion-panel.novo-expanded[theme=navigation]{border-top:3px solid #202945}.novo-expansion-panel.novo-expanded[theme=skyBlue]{border-top:3px solid #009bdf}.novo-expansion-panel.novo-expanded[theme=steel]{border-top:3px solid #5b6770}.novo-expansion-panel.novo-expanded[theme=metal]{border-top:3px solid #637893}.novo-expansion-panel.novo-expanded[theme=sand]{border-top:3px solid #f4f4f4}.novo-expansion-panel.novo-expanded[theme=silver]{border-top:3px solid #e2e2e2}.novo-expansion-panel.novo-expanded[theme=stone]{border-top:3px solid #bebebe}.novo-expansion-panel.novo-expanded[theme=ash]{border-top:3px solid #a0a0a0}.novo-expansion-panel.novo-expanded[theme=slate]{border-top:3px solid #707070}.novo-expansion-panel.novo-expanded[theme=onyx]{border-top:3px solid #526980}.novo-expansion-panel.novo-expanded[theme=charcoal]{border-top:3px solid #282828}.novo-expansion-panel.novo-expanded[theme=moonlight]{border-top:3px solid #1a242f}.novo-expansion-panel.novo-expanded[theme=midnight]{border-top:3px solid #202945}.novo-expansion-panel.novo-expanded[theme=darkness]{border-top:3px solid #161f27}.novo-expansion-panel.novo-expanded[theme=navy]{border-top:3px solid #0d2d42}.novo-expansion-panel.novo-expanded[theme=aqua]{border-top:3px solid #3bafda}.novo-expansion-panel.novo-expanded[theme=ocean]{border-top:3px solid #4a89dc}.novo-expansion-panel.novo-expanded[theme=mint]{border-top:3px solid #37bc9b}.novo-expansion-panel.novo-expanded[theme=grass]{border-top:3px solid #8cc152}.novo-expansion-panel.novo-expanded[theme=sunflower]{border-top:3px solid #f6b042}.novo-expansion-panel.novo-expanded[theme=bittersweet]{border-top:3px solid #eb6845}.novo-expansion-panel.novo-expanded[theme=grapefruit]{border-top:3px solid #da4453}.novo-expansion-panel.novo-expanded[theme=carnation]{border-top:3px solid #d770ad}.novo-expansion-panel.novo-expanded[theme=lavender]{border-top:3px solid #967adc}.novo-expansion-panel.novo-expanded[theme=mountain]{border-top:3px solid #9678b6}.novo-expansion-panel.novo-expanded[theme=info],.novo-expansion-panel.novo-expanded[theme=positive]{border-top:3px solid #4a89dc}.novo-expansion-panel.novo-expanded[theme=success]{border-top:3px solid #8cc152}.novo-expansion-panel.novo-expanded[theme=danger],.novo-expansion-panel.novo-expanded[theme=error],.novo-expansion-panel.novo-expanded[theme=negative]{border-top:3px solid #da4453}.novo-expansion-panel.novo-expanded[theme=warning]{border-top:3px solid #f6b042}.novo-expansion-panel.novo-expanded[theme=empty]{border-top:3px solid #cccdcc}.novo-expansion-panel.novo-expanded[theme=disabled]{border-top:3px solid #bebebe}.novo-expansion-panel.novo-expanded[theme=background]{border-top:3px solid #f7f7f7}.novo-expansion-panel.novo-expanded[theme=backgroundDark]{border-top:3px solid #e2e2e2}.novo-expansion-panel.novo-expanded[theme=presentation]{border-top:3px solid #5b6770}.novo-expansion-panel.novo-expanded[theme=bullhorn]{border-top:3px solid #ff6900}.novo-expansion-panel.novo-expanded[theme=pulse]{border-top:3px solid #3bafda}.novo-expansion-panel.novo-expanded[theme=company]{border-top:3px solid #39d}.novo-expansion-panel.novo-expanded[theme=candidate]{border-top:3px solid #4b7}.novo-expansion-panel.novo-expanded[theme=lead]{border-top:3px solid #a69}.novo-expansion-panel.novo-expanded[theme=contact]{border-top:3px solid #fa4}.novo-expansion-panel.novo-expanded[theme=opportunity]{border-top:3px solid #625}.novo-expansion-panel.novo-expanded[theme=job]{border-top:3px solid #b56}.novo-expansion-panel.novo-expanded[theme=submission]{border-top:3px solid #a9adbb}.novo-expansion-panel.novo-expanded[theme=sendout]{border-top:3px solid #747884}.novo-expansion-panel.novo-expanded[theme=placement]{border-top:3px solid #0b344f}.novo-expansion-panel.novo-expanded[theme=note]{border-top:3px solid #747884}.novo-expansion-panel.novo-expanded[theme=contract]{border-top:3px solid #454ea0}.novo-expansion-panel.novo-expanded[theme=billableCharge],.novo-expansion-panel.novo-expanded[theme=corporateUser],.novo-expansion-panel.novo-expanded[theme=credential],.novo-expansion-panel.novo-expanded[theme=distributionList],.novo-expansion-panel.novo-expanded[theme=earnCode],.novo-expansion-panel.novo-expanded[theme=invoiceStatement],.novo-expansion-panel.novo-expanded[theme=jobCode],.novo-expansion-panel.novo-expanded[theme=payableCharge],.novo-expansion-panel.novo-expanded[theme=person],.novo-expansion-panel.novo-expanded[theme=user]{border-top:3px solid #696d79}.novo-expansion-panel{box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);box-sizing:content-box;display:block;margin:0 16px;transition:margin 225ms ease-in-out}.novo-expansion-panel.novo-expanded{margin:16px 4px}.novo-expansion-panel.novo-expanded:first-child{margin-top:0}.novo-expansion-panel.novo-expanded:last-child{margin-bottom:0}.novo-expansion-panel-content{overflow:hidden}.novo-expansion-panel-content.novo-expanded{overflow:visible}.novo-expansion-panel-padding .novo-expansion-panel-body{padding:0 24px 16px}.novo-accordion .novo-expansion-panel-spacing:first-child{margin-top:0}.novo-accordion .novo-expansion-panel-spacing:last-child{margin-bottom:0}.novo-action-row{border-top-style:solid;border-top-width:1px;display:flex;flex-direction:row;justify-content:flex-end;padding:16px 8px 16px 24px}.novo-action-row button.novo-button{margin-left:8px}[dir=rtl] .novo-action-row button.novo-button{margin-left:0;margin-right:8px}"]
|
|
41581
42045
|
},] }
|
|
41582
42046
|
];
|
|
41583
42047
|
NovoExpansionPanel.ctorParameters = function () { return [
|
|
@@ -41821,8 +42285,8 @@
|
|
|
41821
42285
|
}());
|
|
41822
42286
|
|
|
41823
42287
|
var zoomInOut = animations.trigger('zoomInOut', [
|
|
41824
|
-
animations.transition('void => *', [animations.style({ transform: 'scale3d(.3, .3, .3)' }), animations.animate(
|
|
41825
|
-
animations.transition('* => void', [animations.animate(
|
|
42288
|
+
animations.transition('void => *', [animations.style({ transform: 'scale3d(.3, .3, .3)' }), animations.animate(50)]),
|
|
42289
|
+
animations.transition('* => void', [animations.animate(50, animations.style({ transform: 'scale3d(.0, .0, .0)' }))]),
|
|
41826
42290
|
]);
|
|
41827
42291
|
|
|
41828
42292
|
var NovoModalContainerComponent = /** @class */ (function () {
|
|
@@ -43126,6 +43590,9 @@
|
|
|
43126
43590
|
'quick-note',
|
|
43127
43591
|
'date',
|
|
43128
43592
|
'custom',
|
|
43593
|
+
'switch',
|
|
43594
|
+
'native-select',
|
|
43595
|
+
'native-input',
|
|
43129
43596
|
].indexOf(this.form.controls[this.control.key].controlType) !== -1);
|
|
43130
43597
|
},
|
|
43131
43598
|
enumerable: false,
|
|
@@ -43366,6 +43833,10 @@
|
|
|
43366
43833
|
this._remove = false;
|
|
43367
43834
|
this._edit = false;
|
|
43368
43835
|
this._collapsible = false;
|
|
43836
|
+
// Edit icon at the end of each row (no bhi- prefix)
|
|
43837
|
+
this.editIcon = 'edit';
|
|
43838
|
+
// Remove icon at the end of each row (no bhi- prefix)
|
|
43839
|
+
this.removeIcon = 'delete-o';
|
|
43369
43840
|
this.onRemove = new i0.EventEmitter();
|
|
43370
43841
|
this.onEdit = new i0.EventEmitter();
|
|
43371
43842
|
this.onAdd = new i0.EventEmitter();
|
|
@@ -43647,7 +44118,7 @@
|
|
|
43647
44118
|
NovoControlGroup.decorators = [
|
|
43648
44119
|
{ type: i0.Component, args: [{
|
|
43649
44120
|
selector: 'novo-control-group',
|
|
43650
|
-
template: "<h6 class=\"novo-section-header\" *ngIf=\"label\">\n <span (click)=\"toggle($event)\" [class.clickable]=\"collapsible\">\n <i *ngIf=\"icon && !collapsible\" [ngClass]=\"icon\" [attr.data-automation-id]=\"'novo-control-group-icon-' + key\"></i>\n <i *ngIf=\"collapsible\" class=\"bhi-next\" [class.toggled]=\"toggled\"\n [attr.data-automation-id]=\"'novo-control-group-collapse-' + key\"></i>\n <span [attr.data-automation-id]=\"'novo-control-group-label-' + key\">{{ label }}</span>\n </span>\n <label class=\"novo-control-group-description\" *ngIf=\"description\"\n [attr.data-automation-id]=\"'novo-control-group-description-' + key\">{{ description }}</label>\n</h6>\n<div class=\"novo-control-group-controls\" [class.vertical]=\"vertical\" [class.horizontal]=\"!vertical\"\n [class.hidden]=\"collapsible && !toggled\">\n\n <ng-template #defaultTemplate let-index=\"index\" let-form=\"form\" let-key=\"key\">\n <div class=\"novo-control-group-control\">\n <div *ngFor=\"let c of controls\" class=\"novo-control-container {{c.key}}\"\n [class.is-label]=\"c.controlType === 'read-only'\" [style.max-width.px]=\"c.width\">\n <novo-control (change)=\"onChange()\" [form]=\"(form?.controls)[key]['controls'][index]\" [control]=\"c\"\n [condensed]=\"!vertical || c.controlType === 'read-only'\"></novo-control>\n </div>\n <div class=\"novo-control-container last\" *ngIf=\"edit && !vertical\">\n <novo-button class=\"control-group-action\" [disabled]=\"!disabledArray[index].edit\" type=\"button\"\n *ngIf=\"edit && !vertical\" theme=\"icon\" icon=\"
|
|
44121
|
+
template: "<h6 class=\"novo-section-header\" *ngIf=\"label\">\n <span (click)=\"toggle($event)\" [class.clickable]=\"collapsible\">\n <i *ngIf=\"icon && !collapsible\" [ngClass]=\"icon\" [attr.data-automation-id]=\"'novo-control-group-icon-' + key\"></i>\n <i *ngIf=\"collapsible\" class=\"bhi-next\" [class.toggled]=\"toggled\"\n [attr.data-automation-id]=\"'novo-control-group-collapse-' + key\"></i>\n <span [attr.data-automation-id]=\"'novo-control-group-label-' + key\">{{ label }}</span>\n </span>\n <label class=\"novo-control-group-description\" *ngIf=\"description\"\n [attr.data-automation-id]=\"'novo-control-group-description-' + key\">{{ description }}</label>\n</h6>\n<div class=\"novo-control-group-controls\" [class.vertical]=\"vertical\" [class.horizontal]=\"!vertical\"\n [class.hidden]=\"collapsible && !toggled\">\n\n <ng-template #defaultTemplate let-index=\"index\" let-form=\"form\" let-key=\"key\">\n <div class=\"novo-control-group-control\">\n <div *ngFor=\"let c of controls\" class=\"novo-control-container {{c.key}}\"\n [class.is-label]=\"c.controlType === 'read-only'\" [style.max-width.px]=\"c.width\">\n <novo-control (change)=\"onChange()\" [form]=\"(form?.controls)[key]['controls'][index]\" [control]=\"c\"\n [condensed]=\"!vertical || c.controlType === 'read-only'\"></novo-control>\n </div>\n <div class=\"novo-control-container edit last\" *ngIf=\"edit && !vertical\">\n <novo-button class=\"control-group-action\" [disabled]=\"!disabledArray[index].edit\" type=\"button\"\n *ngIf=\"edit && !vertical\" theme=\"icon\" [icon]=\"editIcon\"\n (click)=\"editControl(index)\" [attr.data-automation-id]=\"'novo-control-group-edit-' + key\" index=\"-1\">\n </novo-button>\n </div>\n <div class=\"novo-control-container remove last\" *ngIf=\"remove && !vertical\">\n <novo-button class=\"control-group-action\" [disabled]=\"!disabledArray[index].remove\" type=\"button\"\n *ngIf=\"remove && !vertical\" theme=\"icon\"\n [icon]=\"removeIcon\" (click)=\"removeControl(index)\"\n [attr.data-automation-id]=\"'novo-control-group-delete-' + key\"\n index=\"-1\">\n </novo-button>\n </div>\n </div>\n <novo-button class=\"control-group-action\" [disabled]=\"!disabledArray[index].edit\" type=\"button\"\n *ngIf=\"edit && vertical\"\n theme=\"icon\" [icon]=\"editIcon\"\n (click)=\"editControl(index)\" [attr.data-automation-id]=\"'novo-control-group-edit-' + key\" index=\"-1\">\n </novo-button>\n <novo-button class=\"control-group-action\" [disabled]=\"!disabledArray[index].remove\" type=\"button\"\n *ngIf=\"remove && vertical\" theme=\"icon\"\n [icon]=\"removeIcon\" (click)=\"removeControl(index)\"\n [attr.data-automation-id]=\"'novo-control-group-delete-' + key\"\n index=\"-1\">\n </novo-button>\n </ng-template>\n\n <ng-template #defaultColumnLabelTemplate let-form=\"form\" let-key=\"key\">\n <div *ngFor=\"let label of controlLabels\"\n class=\"novo-control-group-control-label {{ label.key }}\"\n [class.novo-control-group-control-hidden]=\"label.hidden\"\n [style.max-width.px]=\"label.width\" [class.column-required]=\"label.required\">\n <span [attr.data-automation-id]=\"'novo-control-group-label-' + label.value\">{{ label.value }}</span>\n </div>\n <div class=\"novo-control-group-control-label edit last\" *ngIf=\"edit\"\n [attr.data-automation-id]=\"'novo-control-group-edit-' + key\"></div>\n <div class=\"novo-control-group-control-label remove last\" *ngIf=\"remove\"\n [attr.data-automation-id]=\"'novo-control-group-delete-' + key\"></div>\n </ng-template>\n\n <ng-container *ngIf=\"!vertical && (form?.controls)[key] && (form?.controls)[key]['controls'].length !== 0\">\n <div class=\"novo-control-group-labels\"\n *ngIf=\"!vertical && (form?.controls)[key] && (form?.controls)[key]['controls'].length !== 0\">\n <ng-template [ngTemplateOutlet]=\"columnLabelTemplate || defaultColumnLabelTemplate\"\n [ngTemplateOutletContext]=\"{ form: form, key: key, controlLabels: controlLabels }\">\n </ng-template>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"(form?.controls)[key]\">\n <div class=\"novo-control-group-row\"\n *ngFor=\"let control of (form?.controls)[key]['controls']; let index = index\">\n <ng-template [ngTemplateOutlet]=\"rowTemplate || defaultTemplate\"\n [ngTemplateOutletContext]=\"{ form: form, formGroup: control, index: index, key: key, controls: controls }\">\n </ng-template>\n </div>\n </ng-container>\n\n <div class=\"novo-control-group-empty\"\n *ngIf=\"(form?.controls)[key] && (form?.controls)[key]['controls'].length === 0\"\n [attr.data-automation-id]=\"'novo-control-group-empty-' + key\">\n {{ emptyMessage }}\n </div>\n\n <div *ngIf=\"add\" class=\"novo-control-group-footer\">\n <novo-button type=\"button\" theme=\"dialogue\" icon=\"add-thin\" side=\"left\" (click)=\"onClickAdd()\"\n [attr.data-automation-id]=\"'novo-control-group-bottom-add-' + key\" index=\"-1\">\n {{ add?.label }}\n </novo-button>\n <!-- <novo-button *ngIf=\"editState==='editing'\" type=\"button\" theme=\"dialogue\" icon=\"close\" side=\"left\"\n (click)=\"onClickCancel()\" [attr.data-automation-id]=\"'novo-control-group-bottom-cancel-' + key\"\n index=\"-1\">\n {{ 'cancel' }}\n </novo-button>\n <novo-button *ngIf=\"editState==='editing'\" type=\"button\" theme=\"dialogue\" icon=\"check\" side=\"left\"\n (click)=\"onClickSave()\" [attr.data-automation-id]=\"'novo-control-group-bottom-save-' + key\"\n index=\"-1\">\n {{ add?.label }}\n </novo-button> -->\n </div>\n</div>\n",
|
|
43651
44122
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
43652
44123
|
host: {
|
|
43653
44124
|
'[class.novo-control-group-appearance-card]': "appearance=='card'",
|
|
@@ -43675,6 +44146,8 @@
|
|
|
43675
44146
|
description: [{ type: i0.Input }],
|
|
43676
44147
|
emptyMessage: [{ type: i0.Input }],
|
|
43677
44148
|
icon: [{ type: i0.Input }],
|
|
44149
|
+
editIcon: [{ type: i0.Input }],
|
|
44150
|
+
removeIcon: [{ type: i0.Input }],
|
|
43678
44151
|
initialValue: [{ type: i0.Input }],
|
|
43679
44152
|
canEdit: [{ type: i0.Input }],
|
|
43680
44153
|
canRemove: [{ type: i0.Input }],
|
|
@@ -43704,7 +44177,7 @@
|
|
|
43704
44177
|
NovoControlTemplates.decorators = [
|
|
43705
44178
|
{ type: i0.Component, args: [{
|
|
43706
44179
|
selector: 'novo-control-templates',
|
|
43707
|
-
template: "\n <!---Readonly--->\n <ng-template novoTemplate=\"read-only\" let-form=\"form\" let-control>\n <div>{{ form.value[control.key] }}</div>\n </ng-template>\n <!--Textbox--->\n <ng-template novoTemplate=\"textbox\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n [formGroup]=\"form\"\n class=\"novo-control-input-container novo-control-input-with-label\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <input\n *ngIf=\"control?.type !== 'number' && control?.textMaskEnabled\"\n [textMask]=\"control.maskOptions\"\n [formControlName]=\"control.key\"\n [id]=\"control.key\"\n [type]=\"control?.type\"\n [placeholder]=\"control?.placeholder\"\n (input)=\"methods.emitChange($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n autocomplete\n />\n <input\n *ngIf=\"control?.type !== 'number' && !control?.textMaskEnabled\"\n [class.maxlength-error]=\"errors?.maxlength\"\n [formControlName]=\"control.key\"\n [id]=\"control.key\"\n [type]=\"control?.type\"\n [placeholder]=\"control?.placeholder\"\n (input)=\"methods.emitChange($event)\"\n [maxlength]=\"control?.maxlength\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n autocomplete\n />\n <input\n *ngIf=\"control?.type === 'number' && control?.subType !== 'percentage'\"\n [class.maxlength-error]=\"errors?.maxlength\"\n [formControlName]=\"control.key\"\n [id]=\"control.key\"\n [type]=\"control?.type\"\n [placeholder]=\"control?.placeholder\"\n (keydown)=\"methods.restrictKeys($event)\"\n (input)=\"methods.emitChange($event)\"\n [maxlength]=\"control?.maxlength\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n step=\"any\"\n (mousewheel)=\"numberInput.blur()\"\n #numberInput\n />\n <!-- the percentage input does not use formControlName like a normal reactive input because instead of\n setting the floating point value directly, it is multiplied by 100 into a percentage value -->\n <input\n *ngIf=\"control?.type === 'number' && control?.subType === 'percentage'\"\n [id]=\"control.key\"\n [type]=\"control?.type\"\n [placeholder]=\"control?.placeholder\"\n (keydown)=\"methods.restrictKeys($event)\"\n [value]=\"control?.percentValue\"\n [disabled]=\"control?.readOnly\"\n (input)=\"methods.handlePercentChange($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n step=\"any\"\n (mousewheel)=\"percentInput.blur()\"\n #percentInput\n />\n <label class=\"input-label\" *ngIf=\"control?.subType === 'currency'\">{{ control.currencyFormat }}</label>\n <label class=\"input-label\" *ngIf=\"control?.subType === 'percentage'\">%</label>\n </div>\n </ng-template>\n\n <!--Textarea--->\n <ng-template novoTemplate=\"text-area\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n class=\"textarea-container\"\n [formGroup]=\"form\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <textarea\n [class.maxlength-error]=\"errors?.maxlength\"\n [name]=\"control.key\"\n [attr.id]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n [formControlName]=\"control.key\"\n autosize\n (input)=\"methods.handleTextAreaInput($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n [maxlength]=\"control?.maxlength\"\n ></textarea>\n </div>\n </ng-template>\n\n <!--Editor-->\n <ng-template novoTemplate=\"editor\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-editor\n [name]=\"control.key\"\n [formControlName]=\"control.key\"\n [startupFocus]=\"control.startupFocus\"\n [minimal]=\"control.minimal\"\n [fileBrowserImageUploadUrl]=\"control.fileBrowserImageUploadUrl\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n [config]=\"control.config\"\n ></novo-editor>\n </div>\n </ng-template>\n\n <!--AceEditor-->\n <ng-template novoTemplate=\"ace-editor\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-ace-editor\n [name]=\"control.key\"\n [formControlName]=\"control.key\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n ></novo-ace-editor>\n </div>\n </ng-template>\n\n <!--HTML5 Select-->\n <ng-template novoTemplate=\"native-select\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <select\n [id]=\"control.key\"\n [formControlName]=\"control.key\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <option *ngIf=\"control.placeholder\" value=\"\" disabled selected hidden>{{ control.placeholder }}</option>\n <option *ngFor=\"let opt of control.options\" [value]=\"opt.key\">{{ opt.value }}</option>\n </select>\n </div>\n </ng-template>\n\n <!--File-->\n <ng-template novoTemplate=\"file\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-file-input\n [formControlName]=\"control.key\"\n [id]=\"control.key\"\n [name]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n [value]=\"control.value\"\n [multiple]=\"control.multiple\"\n [layoutOptions]=\"control.layoutOptions\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n (edit)=\"methods.handleEdit($event)\"\n (save)=\"methods.handleSave($event)\"\n (delete)=\"methods.handleDelete($event)\"\n (upload)=\"methods.handleUpload($event)\"\n ></novo-file-input>\n </div>\n </ng-template>\n\n <!--Tiles-->\n <ng-template novoTemplate=\"tiles\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-tiles\n [options]=\"control.options\"\n [formControlName]=\"control.key\"\n (onChange)=\"methods.modelChange($event)\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n [controlDisabled]=\"control.disabled\"\n ></novo-tiles>\n </div>\n </ng-template>\n\n <!--Picker-->\n <ng-template novoTemplate=\"picker\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\" class=\"novo-control-input-container\">\n <novo-picker\n [config]=\"control.config\"\n [formControlName]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n [parentScrollSelector]=\"control.parentScrollSelector\"\n *ngIf=\"!control.multiple\"\n (select)=\"methods.modelChange($event)\"\n (changed)=\"methods.modelChangeWithRaw($event)\"\n (typing)=\"methods.handleTyping($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n ></novo-picker>\n <novo-chips\n [source]=\"control.config\"\n [type]=\"control.config.type\"\n [formControlName]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n [maxlength]=\"control?.maxlength\"\n *ngIf=\"control.multiple && !control.config.columns\"\n [closeOnSelect]=\"control.closeOnSelect\"\n (changed)=\"methods.modelChangeWithRaw($event)\"\n (typing)=\"methods.handleTyping($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n ></novo-chips>\n <novo-row-chips\n [source]=\"control.config\"\n [type]=\"control.config.type\"\n [formControlName]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n *ngIf=\"control.multiple && control.config.columns\"\n [closeOnSelect]=\"control.closeOnSelect\"\n (changed)=\"methods.modelChangeWithRaw($event)\"\n (typing)=\"methods.handleTyping($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n ></novo-row-chips>\n </div>\n </ng-template>\n\n <!--Novo Select-->\n <ng-template novoTemplate=\"select\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-select\n [options]=\"control.options\"\n [headerConfig]=\"control.headerConfig\"\n [placeholder]=\"control.placeholder\"\n [formControlName]=\"control.key\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n (onSelect)=\"methods.modelChange($event)\"\n ></novo-select>\n </div>\n </ng-template>\n\n <!--Timezone -->\n <ng-template novoTemplate=\"timezone\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-select\n [options]=\"control.options\"\n [headerConfig]=\"control.headerConfig\"\n [placeholder]=\"control.placeholder\"\n [formControlName]=\"control.key\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n position=\"bottom\"\n (onSelect)=\"methods.modelChange($event)\"\n ></novo-select>\n </div>\n </ng-template>\n\n <!--Radio-->\n <ng-template novoTemplate=\"radio\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\" class=\"novo-control-input-container\">\n <novo-radio-group [name]=\"control.key\" [formControlName]=\"control.key\">\n <novo-radio\n *ngFor=\"let option of control.options\"\n [value]=\"option.value\"\n [label]=\"option.label\"\n [checked]=\"option.value === form.value[control.key] || (form.value[control.key] && option.value === form.value[control.key].id)\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n [button]=\"!!option.icon\"\n [icon]=\"option.icon\"\n [color]=\"option.color\"\n [theme]=\"!!option.icon && !option.label ? 'icon' : 'secondary'\"\n [attr.data-automation-id]=\"control.key + '-' + (option?.label || option?.value)\"\n ></novo-radio>\n </novo-radio-group>\n </div>\n </ng-template>\n\n <!--Time-->\n <ng-template novoTemplate=\"time\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n [formGroup]=\"form\"\n class=\"novo-control-input-container\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <novo-time-picker-input\n [attr.id]=\"control.key\"\n [name]=\"control.key\"\n [formControlName]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n [military]=\"control.military\"\n ></novo-time-picker-input>\n </div>\n </ng-template>\n\n <!--Native Input--->\n <ng-template novoTemplate=\"native-input\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n [formGroup]=\"form\"\n class=\"novo-control-input-container novo-control-input-with-label\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <input\n [formControlName]=\"control.key\"\n [id]=\"control.key\"\n [type]=\"control.type\"\n [placeholder]=\"control?.placeholder\"\n (input)=\"methods.emitChange($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n />\n </div>\n </ng-template>\n\n <!--Date-->\n <ng-template novoTemplate=\"date\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n [formGroup]=\"form\"\n class=\"novo-control-input-container\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <novo-date-picker-input\n [attr.id]=\"control.key\"\n [name]=\"control.key\"\n [formControlName]=\"control.key\"\n [start]=\"control.startDate\"\n [end]=\"control.endDate\"\n [format]=\"control.dateFormat\"\n [allowInvalidDate]=\"control.allowInvalidDate\"\n [textMaskEnabled]=\"control.textMaskEnabled\"\n [placeholder]=\"control.placeholder\"\n [weekStart]=\"control.weekStart\"\n [disabledDateMessage]=\"control.disabledDateMessage\"\n (focusEvent)=\"methods.handleFocus($event)\"\n (blurEvent)=\"methods.handleBlur($event)\"\n (changeEvent)=\"methods.emitChange($event)\"\n ></novo-date-picker-input>\n </div>\n </ng-template>\n\n <!--Date and Time-->\n <ng-template novoTemplate=\"date-time\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n [formGroup]=\"form\"\n class=\"novo-control-input-container\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <novo-date-time-picker-input\n [attr.id]=\"control.key\"\n [name]=\"control.key\"\n [formControlName]=\"control.key\"\n [start]=\"control.startDate\"\n [end]=\"control.endDate\"\n [placeholder]=\"control.placeholder\"\n [military]=\"control.military\"\n [weekStart]=\"control.weekStart\"\n (focusEvent)=\"methods.handleFocus($event)\"\n (blurEvent)=\"methods.handleBlur($event)\"\n (changeEvent)=\"methods.emitChange($event)\"\n ></novo-date-time-picker-input>\n </div>\n </ng-template>\n\n <!--Address-->\n <ng-template novoTemplate=\"address\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-address\n [formControlName]=\"control.key\"\n [config]=\"control?.config\"\n [readOnly]=\"control?.readOnly\"\n (change)=\"methods.handleAddressChange($event)\"\n (focus)=\"methods.handleFocus($event.event, $event.field)\"\n (blur)=\"methods.handleBlur($event.event, $event.field)\"\n (validityChange)=\"methods.updateValidity()\"\n ></novo-address>\n </div>\n </ng-template>\n\n <!--Checkbox-->\n <ng-template novoTemplate=\"checkbox\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-checkbox\n [formControlName]=\"control?.key\"\n [name]=\"control?.key\"\n [label]=\"control?.checkboxLabel\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n [layoutOptions]=\"control?.layoutOptions\"\n ></novo-checkbox>\n </div>\n </ng-template>\n\n <!--Checklist-->\n <ng-template novoTemplate=\"checklist\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-check-list\n [formControlName]=\"control.key\"\n [name]=\"control.key\"\n [options]=\"control?.options\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n (onSelect)=\"methods.modelChange($event)\"\n ></novo-check-list>\n </div>\n </ng-template>\n\n <!--QuickNote-->\n <ng-template novoTemplate=\"quick-note\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-quick-note\n [formControlName]=\"control.key\"\n [startupFocus]=\"control?.startupFocus\"\n [placeholder]=\"control?.placeholder\"\n [config]=\"control?.config\"\n (change)=\"methods.modelChange($event)\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n ></novo-quick-note>\n </div>\n </ng-template>\n "
|
|
44180
|
+
template: "\n <!---Readonly--->\n <ng-template novoTemplate=\"read-only\" let-form=\"form\" let-control>\n <div>{{ form.value[control.key] }}</div>\n </ng-template>\n <!--Textbox--->\n <ng-template novoTemplate=\"textbox\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n [formGroup]=\"form\"\n class=\"novo-control-input-container novo-control-input-with-label\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <input\n *ngIf=\"control?.type !== 'number' && control?.textMaskEnabled\"\n [textMask]=\"control.maskOptions\"\n [formControlName]=\"control.key\"\n [id]=\"control.key\"\n [type]=\"control?.type\"\n [placeholder]=\"control?.placeholder\"\n (input)=\"methods.emitChange($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n autocomplete\n />\n <input\n *ngIf=\"control?.type !== 'number' && !control?.textMaskEnabled\"\n [class.maxlength-error]=\"errors?.maxlength\"\n [formControlName]=\"control.key\"\n [id]=\"control.key\"\n [type]=\"control?.type\"\n [placeholder]=\"control?.placeholder\"\n (input)=\"methods.emitChange($event)\"\n [maxlength]=\"control?.maxlength\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n autocomplete\n />\n <input\n *ngIf=\"control?.type === 'number' && control?.subType !== 'percentage'\"\n [class.maxlength-error]=\"errors?.maxlength\"\n [formControlName]=\"control.key\"\n [id]=\"control.key\"\n [type]=\"control?.type\"\n [placeholder]=\"control?.placeholder\"\n (keydown)=\"methods.restrictKeys($event)\"\n (input)=\"methods.emitChange($event)\"\n [maxlength]=\"control?.maxlength\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n step=\"any\"\n (mousewheel)=\"numberInput.blur()\"\n #numberInput\n />\n <!-- the percentage input does not use formControlName like a normal reactive input because instead of\n setting the floating point value directly, it is multiplied by 100 into a percentage value -->\n <input\n *ngIf=\"control?.type === 'number' && control?.subType === 'percentage'\"\n [id]=\"control.key\"\n [type]=\"control?.type\"\n [placeholder]=\"control?.placeholder\"\n (keydown)=\"methods.restrictKeys($event)\"\n [value]=\"control?.percentValue\"\n [disabled]=\"control?.readOnly\"\n (input)=\"methods.handlePercentChange($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n step=\"any\"\n (mousewheel)=\"percentInput.blur()\"\n #percentInput\n />\n <label class=\"input-label\" *ngIf=\"control?.subType === 'currency'\">{{ control.currencyFormat }}</label>\n <label class=\"input-label\" *ngIf=\"control?.subType === 'percentage'\">%</label>\n </div>\n </ng-template>\n\n <!--Textarea--->\n <ng-template novoTemplate=\"text-area\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n class=\"textarea-container\"\n [formGroup]=\"form\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <textarea\n [class.maxlength-error]=\"errors?.maxlength\"\n [name]=\"control.key\"\n [attr.id]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n [formControlName]=\"control.key\"\n autosize\n (input)=\"methods.handleTextAreaInput($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n [maxlength]=\"control?.maxlength\"\n ></textarea>\n </div>\n </ng-template>\n\n <!--Editor-->\n <ng-template novoTemplate=\"editor\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-editor\n [name]=\"control.key\"\n [formControlName]=\"control.key\"\n [startupFocus]=\"control.startupFocus\"\n [minimal]=\"control.minimal\"\n [fileBrowserImageUploadUrl]=\"control.fileBrowserImageUploadUrl\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n [config]=\"control.config\"\n ></novo-editor>\n </div>\n </ng-template>\n\n <!--AceEditor-->\n <ng-template novoTemplate=\"ace-editor\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-ace-editor\n [name]=\"control.key\"\n [formControlName]=\"control.key\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n ></novo-ace-editor>\n </div>\n </ng-template>\n\n <!--HTML5 Select-->\n <ng-template novoTemplate=\"native-select\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <select\n [id]=\"control.key\"\n [formControlName]=\"control.key\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <option *ngIf=\"control.placeholder\" value=\"\" disabled selected hidden>{{ control.placeholder }}</option>\n <option *ngFor=\"let opt of control.options\" [value]=\"opt.key\">{{ opt.value }}</option>\n </select>\n </div>\n </ng-template>\n\n <!--File-->\n <ng-template novoTemplate=\"file\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-file-input\n [formControlName]=\"control.key\"\n [id]=\"control.key\"\n [name]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n [value]=\"control.value\"\n [multiple]=\"control.multiple\"\n [layoutOptions]=\"control.layoutOptions\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n (edit)=\"methods.handleEdit($event)\"\n (save)=\"methods.handleSave($event)\"\n (delete)=\"methods.handleDelete($event)\"\n (upload)=\"methods.handleUpload($event)\"\n ></novo-file-input>\n </div>\n </ng-template>\n\n <!--Tiles-->\n <ng-template novoTemplate=\"tiles\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-tiles\n [options]=\"control.options\"\n [formControlName]=\"control.key\"\n (onChange)=\"methods.modelChange($event)\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n [controlDisabled]=\"control.disabled\"\n ></novo-tiles>\n </div>\n </ng-template>\n\n <!--Picker-->\n <ng-template novoTemplate=\"picker\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\" class=\"novo-control-input-container\">\n <novo-picker\n [config]=\"control.config\"\n [formControlName]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n [parentScrollSelector]=\"control.parentScrollSelector\"\n *ngIf=\"!control.multiple\"\n (select)=\"methods.modelChange($event)\"\n (changed)=\"methods.modelChangeWithRaw($event)\"\n (typing)=\"methods.handleTyping($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n ></novo-picker>\n <novo-chips\n [source]=\"control.config\"\n [type]=\"control.config.type\"\n [formControlName]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n [maxlength]=\"control?.maxlength\"\n *ngIf=\"control.multiple && !control.config.columns\"\n [closeOnSelect]=\"control.closeOnSelect\"\n (changed)=\"methods.modelChangeWithRaw($event)\"\n (typing)=\"methods.handleTyping($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n ></novo-chips>\n <novo-row-chips\n [source]=\"control.config\"\n [type]=\"control.config.type\"\n [formControlName]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n *ngIf=\"control.multiple && control.config.columns\"\n [closeOnSelect]=\"control.closeOnSelect\"\n (changed)=\"methods.modelChangeWithRaw($event)\"\n (typing)=\"methods.handleTyping($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n ></novo-row-chips>\n </div>\n </ng-template>\n\n <!--Novo Select-->\n <ng-template novoTemplate=\"select\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-select\n [options]=\"control.options\"\n [headerConfig]=\"control.headerConfig\"\n [placeholder]=\"control.placeholder\"\n [formControlName]=\"control.key\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n (onSelect)=\"methods.modelChange($event)\"\n ></novo-select>\n </div>\n </ng-template>\n\n <!--Timezone -->\n <ng-template novoTemplate=\"timezone\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-select\n [options]=\"control.options\"\n [headerConfig]=\"control.headerConfig\"\n [placeholder]=\"control.placeholder\"\n [formControlName]=\"control.key\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n position=\"bottom\"\n (onSelect)=\"methods.modelChange($event)\"\n ></novo-select>\n </div>\n </ng-template>\n\n <!--Radio-->\n <ng-template novoTemplate=\"radio\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\" class=\"novo-control-input-container\">\n <novo-radio-group [name]=\"control.key\" [formControlName]=\"control.key\">\n <novo-radio\n *ngFor=\"let option of control.options\"\n [value]=\"option.value\"\n [label]=\"option.label\"\n [checked]=\"option.value === form.value[control.key] || (form.value[control.key] && option.value === form.value[control.key].id)\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n [button]=\"!!option.icon\"\n [icon]=\"option.icon\"\n [color]=\"option.color\"\n [theme]=\"!!option.icon && !option.label ? 'icon' : 'secondary'\"\n [attr.data-automation-id]=\"control.key + '-' + (option?.label || option?.value)\"\n ></novo-radio>\n </novo-radio-group>\n </div>\n </ng-template>\n\n <!--Time-->\n <ng-template novoTemplate=\"time\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n [formGroup]=\"form\"\n class=\"novo-control-input-container\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <novo-time-picker-input\n [attr.id]=\"control.key\"\n [name]=\"control.key\"\n [formControlName]=\"control.key\"\n [placeholder]=\"control.placeholder\"\n [military]=\"control.military\"\n ></novo-time-picker-input>\n </div>\n </ng-template>\n\n <!--Native Input--->\n <ng-template novoTemplate=\"native-input\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n [formGroup]=\"form\"\n class=\"novo-control-input-container novo-control-input-with-label\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <input\n [formControlName]=\"control.key\"\n [id]=\"control.key\"\n [type]=\"control.type\"\n [placeholder]=\"control?.placeholder\"\n (input)=\"methods.emitChange($event)\"\n (focus)=\"methods.handleFocus($event)\"\n (blur)=\"methods.handleBlur($event)\"\n />\n </div>\n </ng-template>\n\n <!--Date-->\n <ng-template novoTemplate=\"date\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n [formGroup]=\"form\"\n class=\"novo-control-input-container\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <novo-date-picker-input\n [attr.id]=\"control.key\"\n [name]=\"control.key\"\n [formControlName]=\"control.key\"\n [start]=\"control.startDate\"\n [end]=\"control.endDate\"\n [format]=\"control.dateFormat\"\n [allowInvalidDate]=\"control.allowInvalidDate\"\n [textMaskEnabled]=\"control.textMaskEnabled\"\n [placeholder]=\"control.placeholder\"\n [weekStart]=\"control.weekStart\"\n [disabledDateMessage]=\"control.disabledDateMessage\"\n (focusEvent)=\"methods.handleFocus($event)\"\n (blurEvent)=\"methods.handleBlur($event)\"\n (changeEvent)=\"methods.emitChange($event)\"\n ></novo-date-picker-input>\n </div>\n </ng-template>\n\n <!--Date and Time-->\n <ng-template novoTemplate=\"date-time\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div\n [formGroup]=\"form\"\n class=\"novo-control-input-container\"\n [tooltip]=\"control.tooltip\"\n [tooltipPosition]=\"control.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n >\n <novo-date-time-picker-input\n [attr.id]=\"control.key\"\n [name]=\"control.key\"\n [formControlName]=\"control.key\"\n [start]=\"control.startDate\"\n [end]=\"control.endDate\"\n [placeholder]=\"control.placeholder\"\n [military]=\"control.military\"\n [weekStart]=\"control.weekStart\"\n (focusEvent)=\"methods.handleFocus($event)\"\n (blurEvent)=\"methods.handleBlur($event)\"\n (changeEvent)=\"methods.emitChange($event)\"\n ></novo-date-time-picker-input>\n </div>\n </ng-template>\n\n <!--Address-->\n <ng-template novoTemplate=\"address\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-address\n [formControlName]=\"control.key\"\n [config]=\"control?.config\"\n [readOnly]=\"control?.readOnly\"\n (change)=\"methods.handleAddressChange($event)\"\n (focus)=\"methods.handleFocus($event.event, $event.field)\"\n (blur)=\"methods.handleBlur($event.event, $event.field)\"\n (validityChange)=\"methods.updateValidity()\"\n ></novo-address>\n </div>\n </ng-template>\n\n <!--Checkbox-->\n <ng-template novoTemplate=\"checkbox\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-checkbox\n [formControlName]=\"control?.key\"\n [name]=\"control?.key\"\n [label]=\"control?.checkboxLabel\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n [layoutOptions]=\"control?.layoutOptions\"\n ></novo-checkbox>\n </div>\n </ng-template>\n\n <!--Switch-->\n <ng-template novoTemplate=\"switch\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-switch\n [formControlName]=\"control?.key\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n ></novo-switch>\n </div>\n </ng-template>\n\n <!--Checklist-->\n <ng-template novoTemplate=\"checklist\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-check-list\n [formControlName]=\"control.key\"\n [name]=\"control.key\"\n [options]=\"control?.options\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n (onSelect)=\"methods.modelChange($event)\"\n ></novo-check-list>\n </div>\n </ng-template>\n\n <!--QuickNote-->\n <ng-template novoTemplate=\"quick-note\" let-control let-form=\"form\" let-errors=\"errors\" let-methods=\"methods\">\n <div [formGroup]=\"form\">\n <novo-quick-note\n [formControlName]=\"control.key\"\n [startupFocus]=\"control?.startupFocus\"\n [placeholder]=\"control?.placeholder\"\n [config]=\"control?.config\"\n (change)=\"methods.modelChange($event)\"\n [tooltip]=\"control?.tooltip\"\n [tooltipPosition]=\"control?.tooltipPosition\"\n [tooltipSize]=\"control?.tooltipSize\"\n [removeTooltipArrow]=\"control?.removeTooltipArrow\"\n [tooltipAutoPosition]=\"control?.tooltipAutoPosition\"\n [tooltipPreline]=\"control?.tooltipPreline\"\n ></novo-quick-note>\n </div>\n </ng-template>\n "
|
|
43708
44181
|
},] }
|
|
43709
44182
|
];
|
|
43710
44183
|
NovoControlTemplates.ctorParameters = function () { return [
|
|
@@ -43723,7 +44196,7 @@
|
|
|
43723
44196
|
NovoFieldsetHeaderElement.decorators = [
|
|
43724
44197
|
{ type: i0.Component, args: [{
|
|
43725
44198
|
selector: 'novo-fieldset-header',
|
|
43726
|
-
template: "\n <novo-title smaller>\n <novo-icon>{{ icon
|
|
44199
|
+
template: "\n <novo-title smaller>\n <novo-icon>{{ icon?.replace('bhi-', '') }}</novo-icon\n >{{ title }}\n </novo-title>\n ",
|
|
43727
44200
|
host: {
|
|
43728
44201
|
class: 'novo-fieldset-header',
|
|
43729
44202
|
}
|
|
@@ -44101,7 +44574,7 @@
|
|
|
44101
44574
|
}());
|
|
44102
44575
|
NovoHeaderComponent.decorators = [
|
|
44103
44576
|
{ type: i0.Component, args: [{
|
|
44104
|
-
selector: 'novo-header,header[theme]',
|
|
44577
|
+
selector: 'novo-header,header[theme],header[accent]',
|
|
44105
44578
|
template: "\n <section>\n <div class=\"header-title\">\n <ng-content select=\"[prefix]\"></ng-content>\n <ng-container *ngIf=\"title\">\n <novo-icon class=\"header-icon\" *ngIf=\"icon\">{{ icon }}</novo-icon>\n <div class=\"header-titles\">\n <novo-title size=\"xl\">{{ title }}</novo-title>\n <novo-title size=\"md\" *ngIf=\"subTitle\">{{ subTitle }}</novo-title>\n </div>\n </ng-container>\n <ng-container *ngIf=\"!title\">\n <ng-content select=\"novo-icon, [novo-icon]\"></ng-content>\n <div class=\"header-titles\">\n <ng-content select=\"h1, h2, h3, h4, h5, h6, small, novo-title, [novo-title], [novo-subtitle]\"></ng-content>\n </div>\n </ng-container>\n </div>\n <ng-content select=\"section\"></ng-content>\n <span class=\"spacer\"></span>\n <div class=\"header-actions\">\n <ng-content select=\"novo-action,[novo-action]\"></ng-content>\n </div>\n <ng-content select=\"utils\"></ng-content>\n <ng-content select=\"[suffix]\"></ng-content>\n </section>\n <ng-content></ng-content>\n "
|
|
44106
44579
|
},] }
|
|
44107
44580
|
];
|
|
@@ -44146,7 +44619,10 @@
|
|
|
44146
44619
|
NovoModalElement.decorators = [
|
|
44147
44620
|
{ type: i0.Component, args: [{
|
|
44148
44621
|
selector: 'novo-modal',
|
|
44149
|
-
template: "\n <ng-content select=\"header,novo-header,novo-card-header\"></ng-content>\n <ng-content select=\"section,novo-card-content\"></ng-content>\n <footer><ng-content select=\"button,novo-button\"></ng-content></footer>\n "
|
|
44622
|
+
template: "\n <ng-content select=\"header,novo-header,novo-card-header\"></ng-content>\n <ng-content select=\"section,novo-card-content\"></ng-content>\n <footer class=\"novo-modal-footer\"><ng-content select=\"button,novo-button\"></ng-content></footer>\n ",
|
|
44623
|
+
host: {
|
|
44624
|
+
class: 'novo-modal',
|
|
44625
|
+
}
|
|
44150
44626
|
},] }
|
|
44151
44627
|
];
|
|
44152
44628
|
NovoModalElement.ctorParameters = function () { return [
|
|
@@ -44185,7 +44661,10 @@
|
|
|
44185
44661
|
NovoModalNotificationElement.decorators = [
|
|
44186
44662
|
{ type: i0.Component, args: [{
|
|
44187
44663
|
selector: 'novo-notification',
|
|
44188
|
-
template: "\n <novo-button class=\"modal-close\" theme=\"icon\" icon=\"x\" (click)=\"close()\"></novo-button>\n <header><ng-content select=\"label,novo-label\"></ng-content></header>\n <section class=\"notification-body\">\n <i class=\"indicator\" [ngClass]=\"iconType\" *ngIf=\"iconType\"></i>\n <ng-content select=\"h1\"></ng-content>\n <ng-content select=\"h2\"></ng-content>\n <ng-content select=\"p\"></ng-content>\n </section>\n <footer><ng-content select=\"button,novo-button\"></ng-content></footer>\n "
|
|
44664
|
+
template: "\n <novo-button class=\"modal-close\" theme=\"icon\" icon=\"x\" (click)=\"close()\"></novo-button>\n <header class=\"novo-notification-header\"><ng-content select=\"label,novo-label\"></ng-content></header>\n <section class=\"novo-notification-body notification-body\">\n <i class=\"indicator\" [ngClass]=\"iconType\" *ngIf=\"iconType\"></i>\n <ng-content select=\"h1\"></ng-content>\n <ng-content select=\"h2\"></ng-content>\n <ng-content select=\"p\"></ng-content>\n </section>\n <footer class=\"novo-notification-footer\"><ng-content select=\"button,novo-button\"></ng-content></footer>\n ",
|
|
44665
|
+
host: {
|
|
44666
|
+
class: 'novo-notification',
|
|
44667
|
+
}
|
|
44189
44668
|
},] }
|
|
44190
44669
|
];
|
|
44191
44670
|
NovoModalNotificationElement.ctorParameters = function () { return [
|
|
@@ -44935,6 +45414,7 @@
|
|
|
44935
45414
|
this.id = this._uniqueId;
|
|
44936
45415
|
this.name = this._uniqueId;
|
|
44937
45416
|
this.tabindex = 0;
|
|
45417
|
+
this.vertical = false;
|
|
44938
45418
|
this.button = false;
|
|
44939
45419
|
this.theme = 'secondary';
|
|
44940
45420
|
this.change = new i0.EventEmitter();
|
|
@@ -44998,6 +45478,7 @@
|
|
|
44998
45478
|
NovoRadioElement.prototype.ngOnInit = function () {
|
|
44999
45479
|
if (this.radioGroup) {
|
|
45000
45480
|
this.checked = this.radioGroup.value === this._value;
|
|
45481
|
+
this.vertical = this.radioGroup.appearance === 'vertical';
|
|
45001
45482
|
this.name = this.radioGroup.name;
|
|
45002
45483
|
}
|
|
45003
45484
|
};
|
|
@@ -45461,6 +45942,7 @@
|
|
|
45461
45942
|
NovoCheckboxModule,
|
|
45462
45943
|
NovoIconModule,
|
|
45463
45944
|
NovoRadioModule,
|
|
45945
|
+
NovoSwitchModule,
|
|
45464
45946
|
],
|
|
45465
45947
|
declarations: [
|
|
45466
45948
|
NovoAutoSize,
|
|
@@ -45511,7 +45993,8 @@
|
|
|
45511
45993
|
|
|
45512
45994
|
var NovoLayoutContent = /** @class */ (function (_super) {
|
|
45513
45995
|
__extends(NovoLayoutContent, _super);
|
|
45514
|
-
function NovoLayoutContent(_changeDetectorRef, _container,
|
|
45996
|
+
function NovoLayoutContent(_changeDetectorRef, _container, // NovoLayoutContainer
|
|
45997
|
+
elementRef, scrollDispatcher, ngZone) {
|
|
45515
45998
|
var _this = _super.call(this, elementRef, scrollDispatcher, ngZone) || this;
|
|
45516
45999
|
_this._changeDetectorRef = _changeDetectorRef;
|
|
45517
46000
|
_this._container = _container;
|
|
@@ -45523,6 +46006,9 @@
|
|
|
45523
46006
|
_this._changeDetectorRef.markForCheck();
|
|
45524
46007
|
});
|
|
45525
46008
|
};
|
|
46009
|
+
NovoLayoutContent.prototype.getHostElement = function () {
|
|
46010
|
+
return this.elementRef.nativeElement;
|
|
46011
|
+
};
|
|
45526
46012
|
return NovoLayoutContent;
|
|
45527
46013
|
}(i1.CdkScrollable));
|
|
45528
46014
|
NovoLayoutContent.decorators = [
|
|
@@ -45539,7 +46025,7 @@
|
|
|
45539
46025
|
];
|
|
45540
46026
|
NovoLayoutContent.ctorParameters = function () { return [
|
|
45541
46027
|
{ type: i0.ChangeDetectorRef },
|
|
45542
|
-
{ type:
|
|
46028
|
+
{ type: undefined, decorators: [{ type: i0.Inject, args: [NOVO_LAYOUT_CONTAINER,] }] },
|
|
45543
46029
|
{ type: i0.ElementRef },
|
|
45544
46030
|
{ type: i1.ScrollDispatcher },
|
|
45545
46031
|
{ type: i0.NgZone }
|
|
@@ -45966,7 +46452,7 @@
|
|
|
45966
46452
|
},
|
|
45967
46453
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
45968
46454
|
encapsulation: i0.ViewEncapsulation.None,
|
|
45969
|
-
styles: [".novo-sidenav-inner-container{-webkit-overflow-scrolling:touch;height:100%;overflow:auto;width:100%}.novo-sidenav-fixed{position:fixed}.novo-sidenav{bottom:0;box-sizing:border-box;display:block;outline:0;overflow-y:auto;position:relative;position:absolute;top:0;transform:translate3d(-100%,0,0);z-index:4;z-index:3}.novo-sidenav[theme=black]{background:#000;color:#fff}.novo-sidenav[theme=white]{background:#fff;color:#
|
|
46455
|
+
styles: [".novo-sidenav-inner-container{-webkit-overflow-scrolling:touch;height:100%;overflow:auto;width:100%}.novo-sidenav-fixed{position:fixed}.novo-sidenav{bottom:0;box-sizing:border-box;display:block;outline:0;overflow-y:auto;position:relative;position:absolute;top:0;transform:translate3d(-100%,0,0);z-index:4;z-index:3}.novo-sidenav[theme=black]{background:#000;color:#fff}.novo-sidenav[theme=white]{background:#fff;color:#3d464d}.novo-sidenav[theme=gray],.novo-sidenav[theme=grey]{background:#9e9e9e;color:#3d464d}.novo-sidenav[theme=bright],.novo-sidenav[theme=offWhite]{background:#f7f7f7;color:#3d464d}.novo-sidenav[theme=light]{background:#dbdbdb;color:#3d464d}.novo-sidenav[theme=neutral]{background:#4f5361;color:#fff}.novo-sidenav[theme=dark]{background:#3d464d;color:#fff}.novo-sidenav[theme=orange]{background:#ff6900;color:#3d464d}.novo-sidenav[theme=navigation]{background:#202945;color:#fff}.novo-sidenav[theme=skyBlue]{background:#009bdf;color:#fff}.novo-sidenav[theme=steel]{background:#5b6770;color:#fff}.novo-sidenav[theme=metal]{background:#637893;color:#fff}.novo-sidenav[theme=sand]{background:#f4f4f4;color:#3d464d}.novo-sidenav[theme=silver]{background:#e2e2e2;color:#3d464d}.novo-sidenav[theme=stone]{background:#bebebe;color:#3d464d}.novo-sidenav[theme=ash]{background:#a0a0a0;color:#3d464d}.novo-sidenav[theme=slate]{background:#707070;color:#fff}.novo-sidenav[theme=onyx]{background:#526980;color:#fff}.novo-sidenav[theme=charcoal]{background:#282828;color:#fff}.novo-sidenav[theme=moonlight]{background:#1a242f;color:#fff}.novo-sidenav[theme=midnight]{background:#202945;color:#fff}.novo-sidenav[theme=darkness]{background:#161f27;color:#fff}.novo-sidenav[theme=navy]{background:#0d2d42;color:#fff}.novo-sidenav[theme=aqua]{background:#3bafda;color:#3d464d}.novo-sidenav[theme=ocean]{background:#4a89dc;color:#fff}.novo-sidenav[theme=mint]{background:#37bc9b;color:#3d464d}.novo-sidenav[theme=grass]{background:#8cc152;color:#fff}.novo-sidenav[theme=sunflower]{background:#f6b042;color:#fff}.novo-sidenav[theme=bittersweet]{background:#eb6845;color:#fff}.novo-sidenav[theme=grapefruit]{background:#da4453;color:#fff}.novo-sidenav[theme=carnation]{background:#d770ad;color:#fff}.novo-sidenav[theme=lavender]{background:#967adc;color:#fff}.novo-sidenav[theme=mountain]{background:#9678b6;color:#fff}.novo-sidenav[theme=info],.novo-sidenav[theme=positive]{background:#4a89dc;color:#fff}.novo-sidenav[theme=success]{background:#8cc152;color:#fff}.novo-sidenav[theme=danger],.novo-sidenav[theme=error],.novo-sidenav[theme=negative]{background:#da4453;color:#fff}.novo-sidenav[theme=warning]{background:#f6b042;color:#fff}.novo-sidenav[theme=empty]{background:#cccdcc;color:#3d464d}.novo-sidenav[theme=disabled]{background:#bebebe;color:#3d464d}.novo-sidenav[theme=background]{background:#f7f7f7;color:#3d464d}.novo-sidenav[theme=backgroundDark]{background:#e2e2e2;color:#3d464d}.novo-sidenav[theme=presentation]{background:#5b6770;color:#fff}.novo-sidenav[theme=bullhorn]{background:#ff6900;color:#3d464d}.novo-sidenav[theme=pulse]{background:#3bafda;color:#3d464d}.novo-sidenav[theme=company]{background:#39d;color:#fff}.novo-sidenav[theme=candidate]{background:#4b7;color:#fff}.novo-sidenav[theme=lead]{background:#a69;color:#fff}.novo-sidenav[theme=contact]{background:#fa4;color:#fff}.novo-sidenav[theme=opportunity]{background:#625;color:#fff}.novo-sidenav[theme=job]{background:#b56;color:#fff}.novo-sidenav[theme=submission]{background:#a9adbb;color:#3d464d}.novo-sidenav[theme=sendout]{background:#747884;color:#fff}.novo-sidenav[theme=placement]{background:#0b344f;color:#fff}.novo-sidenav[theme=note]{background:#747884;color:#fff}.novo-sidenav[theme=contract]{background:#454ea0;color:#fff}.novo-sidenav[theme=billableCharge],.novo-sidenav[theme=corporateUser],.novo-sidenav[theme=credential],.novo-sidenav[theme=distributionList],.novo-sidenav[theme=earnCode],.novo-sidenav[theme=invoiceStatement],.novo-sidenav[theme=jobCode],.novo-sidenav[theme=payableCharge],.novo-sidenav[theme=person],.novo-sidenav[theme=user]{background:#696d79;color:#fff}.novo-sidenav,[dir=rtl] .novo-sidenav.novo-sidenav-end{border-right:1px solid var(--border)}.novo-sidenav.novo-sidenav-end,[dir=rtl] .novo-sidenav{border-left:1px solid var(--border);border-right:none}.novo-sidenav.novo-sidenav-side{z-index:2}.novo-sidenav.novo-sidenav-end{right:0}.novo-sidenav.novo-sidenav-end,[dir=rtl] .novo-sidenav{transform:translate3d(100%,0,0)}[dir=rtl] .novo-sidenav.novo-sidenav-end{left:0;right:auto;transform:translate3d(-100%,0,0)}"]
|
|
45970
46456
|
},] }
|
|
45971
46457
|
];
|
|
45972
46458
|
NovoSidenavComponent.ctorParameters = function () { return [
|
|
@@ -45976,7 +46462,7 @@
|
|
|
45976
46462
|
{ type: platform.Platform },
|
|
45977
46463
|
{ type: i0.NgZone },
|
|
45978
46464
|
{ type: undefined, decorators: [{ type: i0.Optional }, { type: i0.Inject, args: [common.DOCUMENT,] }] },
|
|
45979
|
-
{ type:
|
|
46465
|
+
{ type: undefined, decorators: [{ type: i0.Optional }, { type: i0.Inject, args: [NOVO_LAYOUT_CONTAINER,] }] }
|
|
45980
46466
|
]; };
|
|
45981
46467
|
NovoSidenavComponent.propDecorators = {
|
|
45982
46468
|
fixedInViewport: [{ type: i0.Input }],
|
|
@@ -45998,7 +46484,7 @@
|
|
|
45998
46484
|
_animationDoneListener: [{ type: i0.HostListener, args: ['@transform.done', ['$event'],] }]
|
|
45999
46485
|
};
|
|
46000
46486
|
|
|
46001
|
-
var NovoLayoutContainer
|
|
46487
|
+
var NovoLayoutContainer = /** @class */ (function () {
|
|
46002
46488
|
function NovoLayoutContainer(_dir, _element, _ngZone, _changeDetectorRef, viewportRuler, defaultAutosize, _animationMode) {
|
|
46003
46489
|
var _this = this;
|
|
46004
46490
|
if (defaultAutosize === void 0) { defaultAutosize = false; }
|
|
@@ -46314,7 +46800,7 @@
|
|
|
46314
46800
|
};
|
|
46315
46801
|
return NovoLayoutContainer;
|
|
46316
46802
|
}());
|
|
46317
|
-
NovoLayoutContainer
|
|
46803
|
+
NovoLayoutContainer.decorators = [
|
|
46318
46804
|
{ type: i0.Component, args: [{
|
|
46319
46805
|
selector: 'novo-layout-container',
|
|
46320
46806
|
exportAs: 'novoLayoutContainer',
|
|
@@ -46328,13 +46814,13 @@
|
|
|
46328
46814
|
providers: [
|
|
46329
46815
|
{
|
|
46330
46816
|
provide: NOVO_LAYOUT_CONTAINER,
|
|
46331
|
-
useExisting: NovoLayoutContainer
|
|
46817
|
+
useExisting: NovoLayoutContainer,
|
|
46332
46818
|
},
|
|
46333
46819
|
],
|
|
46334
46820
|
styles: [".novo-layout-container{-webkit-overflow-scrolling:touch;box-sizing:border-box;display:block;height:100%;overflow:hidden;position:relative;z-index:1}.novo-layout-container[fullscreen].novo-layout-container-has-open{overflow:hidden}.novo-layout-container.novo-layout-container-explicit-backdrop .novo-drawer-side{z-index:3}.ng-animate-disabled .novo-layout-container .novo-drawer-backdrop,.ng-animate-disabled .novo-layout-container .novo-layout-content,.novo-layout-container.ng-animate-disabled .novo-drawer-backdrop,.novo-layout-container.ng-animate-disabled .novo-layout-content{transition:none}.novo-drawer-backdrop{background:#000;bottom:0;display:block;left:0;opacity:.5;position:absolute;right:0;top:0;visibility:hidden;z-index:3}.novo-drawer-backdrop.novo-drawer-shown{visibility:visible}.novo-drawer-transition .novo-drawer-backdrop{transition-duration:.1s;transition-property:background-color,visibility;transition-timing-function:ease-out}.novo-layout-content{display:block;height:100%;overflow:auto;position:relative;z-index:1}.novo-drawer-transition .novo-layout-content{transition-duration:.1s;transition-property:transform,margin-left,margin-right;transition-timing-function:ease-out}.novo-rail{align-items:flex-start;background:var(--background-bright);display:inline-flex;flex-direction:column;height:inherit;height:100%;justify-content:flex-start;min-width:5rem;width:-webkit-max-content;width:-moz-max-content;width:max-content}.novo-rail .novo-rail-contents{display:inline-flex;flex-direction:column;width:-webkit-fill-available}.novo-layout-content-container{display:grid;grid-template-columns:1fr;height:100%}.novo-layout-content-container.and-has-rail{grid-template-columns:auto 1fr}"]
|
|
46335
46821
|
},] }
|
|
46336
46822
|
];
|
|
46337
|
-
NovoLayoutContainer
|
|
46823
|
+
NovoLayoutContainer.ctorParameters = function () { return [
|
|
46338
46824
|
{ type: bidi.Directionality, decorators: [{ type: i0.Optional }] },
|
|
46339
46825
|
{ type: i0.ElementRef },
|
|
46340
46826
|
{ type: i0.NgZone },
|
|
@@ -46343,7 +46829,7 @@
|
|
|
46343
46829
|
{ type: undefined, decorators: [{ type: i0.Inject, args: [NOVO_LAYOUT_DEFAULT_AUTOSIZE,] }] },
|
|
46344
46830
|
{ type: String, decorators: [{ type: i0.Optional }, { type: i0.Inject, args: [animations$1.ANIMATION_MODULE_TYPE,] }] }
|
|
46345
46831
|
]; };
|
|
46346
|
-
NovoLayoutContainer
|
|
46832
|
+
NovoLayoutContainer.propDecorators = {
|
|
46347
46833
|
_allDrawers: [{ type: i0.ContentChildren, args: [NovoSidenavComponent, {
|
|
46348
46834
|
// We need to use `descendants: true`, because Ivy will no longer match
|
|
46349
46835
|
// indirect descendants if it's left as false.
|
|
@@ -46366,8 +46852,8 @@
|
|
|
46366
46852
|
NovoLayoutModule.decorators = [
|
|
46367
46853
|
{ type: i0.NgModule, args: [{
|
|
46368
46854
|
imports: [common.CommonModule],
|
|
46369
|
-
declarations: [NovoLayoutContainer
|
|
46370
|
-
exports: [NovoLayoutContainer
|
|
46855
|
+
declarations: [NovoLayoutContainer, NovoLayoutContent, NovoSidenavComponent, NovoRailComponent],
|
|
46856
|
+
exports: [NovoLayoutContainer, NovoLayoutContent, NovoSidenavComponent, NovoRailComponent],
|
|
46371
46857
|
},] }
|
|
46372
46858
|
];
|
|
46373
46859
|
|
|
@@ -46502,7 +46988,7 @@
|
|
|
46502
46988
|
{ type: i0.Component, args: [{
|
|
46503
46989
|
selector: 'menu-content',
|
|
46504
46990
|
template: "<div class=\"menu-container novo-menu\" [ngClass]=\"menuClass\" tabindex=\"0\">\n <ul #menu class=\"menu\" style=\"position: static; float: none;\" tabindex=\"0\">\n <ng-container *ngFor=\"let menuItem of menuItems; let i = index\">\n <ng-template [ngTemplateOutlet]=\"menuItem.template\" [ngTemplateOutletContext]=\"{ $implicit: item }\"></ng-template>\n <!-- <novo-icon class=\"sub-menu-caret\" suffix *ngIf=\"!!menuItem.subMenu\" size=\"small\" color=\"ash\">expand</novo-icon> -->\n </ng-container>\n </ul>\n </div> ",
|
|
46505
|
-
styles: [":host .passive{clear:both;display:block;font-weight:400;padding:3px 20px;white-space:nowrap}:host .menu-container{width:180px}:host .menu-container .menu{-webkit-padding-start:0!important;background-color:var(--background-bright);box-shadow:0 -1px 3px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);cursor:default;list-style:none;padding-inline-start:0!important}:host .menu-container .menu :hover{background:rgba(74,137,220,.1);color:#3d464d}:host .menu-container .menu :active{background:rgba(74,137,220,.4)}:host .menu-container .menu .menu-item-container{align-items:center;display:flex;position:relative}:host .menu-container .menu .menu-item-container .sub-menu-caret{position:absolute;right:.5rem}:host .menu-container .menu .menu-item{align-items:center;box-sizing:border-box;color:inherit;cursor:pointer;display:inline;display:flex;flex:1;font-size:var(--font-size-text);font-weight:400;gap:1rem;margin:0;padding:1rem 1rem 1rem 1.25rem}:host .menu-container .menu .divider{background:#e2e2e2;height:1px;order:none}:host .menu-container .menu a.disabled{color:#bebebe;cursor:not-allowed}"]
|
|
46991
|
+
styles: [":host .passive{clear:both;display:block;font-weight:400;padding:3px 20px;white-space:nowrap}:host .menu-container{width:180px}:host .menu-container .menu{-webkit-padding-start:0!important;background-color:var(--background-bright);box-shadow:0 -1px 3px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);cursor:default;list-style:none;padding-inline-start:0!important}:host .menu-container .menu :hover{background:rgba(74,137,220,.1);color:#3d464d}:host .menu-container .menu :active{background:rgba(74,137,220,.4)}:host .menu-container .menu .menu-item-container{align-items:center;display:flex;position:relative}:host .menu-container .menu .menu-item-container .sub-menu-caret{position:absolute;right:.5rem}:host .menu-container .menu .menu-item{align-items:center;box-sizing:border-box;color:inherit;cursor:pointer;display:inline;display:flex;flex:1;font-size:var(--font-size-text);font-weight:400;gap:1rem;margin:0;padding:1rem 1rem 1rem 1.25rem;transition:.2s ease-out;transition-property:color,opacity;vertical-align:middle}:host .menu-container .menu .menu-item.text-nowrap{white-space:nowrap}:host .menu-container .menu .menu-item.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:host .menu-container .menu .menu-item.text-size-default{font-size:inherit}:host .menu-container .menu .menu-item.text-size-body{font-size:1.3rem}:host .menu-container .menu .menu-item.text-size-xs{font-size:1rem}:host .menu-container .menu .menu-item.text-size-sm{font-size:1.2rem}:host .menu-container .menu .menu-item.text-size-md{font-size:1.3rem}:host .menu-container .menu .menu-item.text-size-lg{font-size:1.6rem}:host .menu-container .menu .menu-item.text-size-xl{font-size:2rem}:host .menu-container .menu .menu-item.text-size-2xl{font-size:2.6rem}:host .menu-container .menu .menu-item.text-size-3xl{font-size:3.2rem}:host .menu-container .menu .menu-item.text-size-smaller{font-size:.8em}:host .menu-container .menu .menu-item.text-size-larger{font-size:1.2em}:host .menu-container .menu .menu-item.text-color-black{color:#000}:host .menu-container .menu .menu-item.text-color-white{color:#fff}:host .menu-container .menu .menu-item.text-color-gray,:host .menu-container .menu .menu-item.text-color-grey{color:#9e9e9e}:host .menu-container .menu .menu-item.text-color-bright,:host .menu-container .menu .menu-item.text-color-offWhite{color:#f7f7f7}:host .menu-container .menu .menu-item.text-color-light{color:#dbdbdb}:host .menu-container .menu .menu-item.text-color-neutral{color:#4f5361}:host .menu-container .menu .menu-item.text-color-dark{color:#3d464d}:host .menu-container .menu .menu-item.text-color-orange{color:#ff6900}:host .menu-container .menu .menu-item.text-color-navigation{color:#202945}:host .menu-container .menu .menu-item.text-color-skyBlue{color:#009bdf}:host .menu-container .menu .menu-item.text-color-steel{color:#5b6770}:host .menu-container .menu .menu-item.text-color-metal{color:#637893}:host .menu-container .menu .menu-item.text-color-sand{color:#f4f4f4}:host .menu-container .menu .menu-item.text-color-silver{color:#e2e2e2}:host .menu-container .menu .menu-item.text-color-stone{color:#bebebe}:host .menu-container .menu .menu-item.text-color-ash{color:#a0a0a0}:host .menu-container .menu .menu-item.text-color-slate{color:#707070}:host .menu-container .menu .menu-item.text-color-onyx{color:#526980}:host .menu-container .menu .menu-item.text-color-charcoal{color:#282828}:host .menu-container .menu .menu-item.text-color-moonlight{color:#1a242f}:host .menu-container .menu .menu-item.text-color-midnight{color:#202945}:host .menu-container .menu .menu-item.text-color-darkness{color:#161f27}:host .menu-container .menu .menu-item.text-color-navy{color:#0d2d42}:host .menu-container .menu .menu-item.text-color-aqua{color:#3bafda}:host .menu-container .menu .menu-item.text-color-ocean{color:#4a89dc}:host .menu-container .menu .menu-item.text-color-mint{color:#37bc9b}:host .menu-container .menu .menu-item.text-color-grass{color:#8cc152}:host .menu-container .menu .menu-item.text-color-sunflower{color:#f6b042}:host .menu-container .menu .menu-item.text-color-bittersweet{color:#eb6845}:host .menu-container .menu .menu-item.text-color-grapefruit{color:#da4453}:host .menu-container .menu .menu-item.text-color-carnation{color:#d770ad}:host .menu-container .menu .menu-item.text-color-lavender{color:#967adc}:host .menu-container .menu .menu-item.text-color-mountain{color:#9678b6}:host .menu-container .menu .menu-item.text-color-info,:host .menu-container .menu .menu-item.text-color-positive{color:#4a89dc}:host .menu-container .menu .menu-item.text-color-success{color:#8cc152}:host .menu-container .menu .menu-item.text-color-danger,:host .menu-container .menu .menu-item.text-color-error,:host .menu-container .menu .menu-item.text-color-negative{color:#da4453}:host .menu-container .menu .menu-item.text-color-warning{color:#f6b042}:host .menu-container .menu .menu-item.text-color-empty{color:#cccdcc}:host .menu-container .menu .menu-item.text-color-disabled{color:#bebebe}:host .menu-container .menu .menu-item.text-color-background{color:#f7f7f7}:host .menu-container .menu .menu-item.text-color-backgroundDark{color:#e2e2e2}:host .menu-container .menu .menu-item.text-color-presentation{color:#5b6770}:host .menu-container .menu .menu-item.text-color-bullhorn{color:#ff6900}:host .menu-container .menu .menu-item.text-color-pulse{color:#3bafda}:host .menu-container .menu .menu-item.text-color-company{color:#39d}:host .menu-container .menu .menu-item.text-color-candidate{color:#4b7}:host .menu-container .menu .menu-item.text-color-lead{color:#a69}:host .menu-container .menu .menu-item.text-color-contact{color:#fa4}:host .menu-container .menu .menu-item.text-color-opportunity{color:#625}:host .menu-container .menu .menu-item.text-color-job{color:#b56}:host .menu-container .menu .menu-item.text-color-submission{color:#a9adbb}:host .menu-container .menu .menu-item.text-color-sendout{color:#747884}:host .menu-container .menu .menu-item.text-color-placement{color:#0b344f}:host .menu-container .menu .menu-item.text-color-note{color:#747884}:host .menu-container .menu .menu-item.text-color-contract{color:#454ea0}:host .menu-container .menu .menu-item.text-color-billableCharge,:host .menu-container .menu .menu-item.text-color-corporateUser,:host .menu-container .menu .menu-item.text-color-credential,:host .menu-container .menu .menu-item.text-color-distributionList,:host .menu-container .menu .menu-item.text-color-earnCode,:host .menu-container .menu .menu-item.text-color-invoiceStatement,:host .menu-container .menu .menu-item.text-color-jobCode,:host .menu-container .menu .menu-item.text-color-payableCharge,:host .menu-container .menu .menu-item.text-color-person,:host .menu-container .menu .menu-item.text-color-user{color:#696d79}:host .menu-container .menu .menu-item.margin-before{margin-top:.4rem}:host .menu-container .menu .menu-item.margin-after{margin-bottom:.8rem}:host .menu-container .menu .menu-item.text-length-small{max-width:40ch}:host .menu-container .menu .menu-item.text-length-medium{max-width:55ch}:host .menu-container .menu .menu-item.text-length-large{max-width:70ch}:host .menu-container .menu .menu-item.text-weight-hairline{font-weight:100}:host .menu-container .menu .menu-item.text-weight-thin{font-weight:200}:host .menu-container .menu .menu-item.text-weight-light{font-weight:300}:host .menu-container .menu .menu-item.text-weight-normal{font-weight:400}:host .menu-container .menu .menu-item.text-weight-medium{font-weight:500}:host .menu-container .menu .menu-item.text-weight-semibold{font-weight:600}:host .menu-container .menu .menu-item.text-weight-bold{font-weight:700}:host .menu-container .menu .menu-item.text-weight-extrabold{font-weight:800}:host .menu-container .menu .menu-item.text-weight-heavy{font-weight:900}:host .menu-container .menu .menu-item.text-weight-lighter{font-weight:lighter}:host .menu-container .menu .menu-item.text-weight-bolder{font-weight:bolder}:host .menu-container .menu .divider{background:#e2e2e2;height:1px;order:none}:host .menu-container .menu a.disabled{color:#bebebe;cursor:not-allowed}"]
|
|
46506
46992
|
},] }
|
|
46507
46993
|
];
|
|
46508
46994
|
MenuContentComponent.ctorParameters = function () { return []; };
|
|
@@ -48598,6 +49084,7 @@
|
|
|
48598
49084
|
this.onTouchedCallback = function () {
|
|
48599
49085
|
// placeholder
|
|
48600
49086
|
};
|
|
49087
|
+
// NovoProgressElement
|
|
48601
49088
|
this.progress = progress;
|
|
48602
49089
|
}
|
|
48603
49090
|
Object.defineProperty(NovoProgressBarElement.prototype, "width", {
|
|
@@ -48679,12 +49166,12 @@
|
|
|
48679
49166
|
selector: 'novo-progress-bar',
|
|
48680
49167
|
providers: [PROGRESS_BAR_VALUE_ACCESSOR],
|
|
48681
49168
|
template: "\n <div *ngIf=\"isLinear()\" class=\"progress-bar\"></div>\n <svg *ngIf=\"isRadial()\" width=\"120\" height=\"120\">\n <circle\n [style.strokeDasharray]=\"circumference\"\n [style.strokeDashoffset]=\"dashoffset\"\n [attr.r]=\"radius\"\n cx=\"60\"\n cy=\"60\"\n stroke-width=\"4\"\n fill=\"transparent\"\n class=\"progress__value\"\n />\n <!-- <text x=\"18\" y=\"20.35\" class=\"percentage\">30%</text> -->\n </svg>\n ",
|
|
48682
|
-
styles: [":host{display:flex;height:100%}:host.linear{background-color:#4a89dc}:host.linear[color=black]{background:#000;color:#fff}:host.linear[color=white]{background:#fff;color:#
|
|
49169
|
+
styles: [":host{display:flex;height:100%}:host.linear{background-color:#4a89dc}:host.linear[color=black]{background:#000;color:#fff}:host.linear[color=white]{background:#fff;color:#3d464d}:host.linear[color=gray],:host.linear[color=grey]{background:#9e9e9e;color:#3d464d}:host.linear[color=bright],:host.linear[color=offWhite]{background:#f7f7f7;color:#3d464d}:host.linear[color=light]{background:#dbdbdb;color:#3d464d}:host.linear[color=neutral]{background:#4f5361;color:#fff}:host.linear[color=dark]{background:#3d464d;color:#fff}:host.linear[color=orange]{background:#ff6900;color:#3d464d}:host.linear[color=navigation]{background:#202945;color:#fff}:host.linear[color=skyBlue]{background:#009bdf;color:#fff}:host.linear[color=steel]{background:#5b6770;color:#fff}:host.linear[color=metal]{background:#637893;color:#fff}:host.linear[color=sand]{background:#f4f4f4;color:#3d464d}:host.linear[color=silver]{background:#e2e2e2;color:#3d464d}:host.linear[color=stone]{background:#bebebe;color:#3d464d}:host.linear[color=ash]{background:#a0a0a0;color:#3d464d}:host.linear[color=slate]{background:#707070;color:#fff}:host.linear[color=onyx]{background:#526980;color:#fff}:host.linear[color=charcoal]{background:#282828;color:#fff}:host.linear[color=moonlight]{background:#1a242f;color:#fff}:host.linear[color=midnight]{background:#202945;color:#fff}:host.linear[color=darkness]{background:#161f27;color:#fff}:host.linear[color=navy]{background:#0d2d42;color:#fff}:host.linear[color=aqua]{background:#3bafda;color:#3d464d}:host.linear[color=ocean]{background:#4a89dc;color:#fff}:host.linear[color=mint]{background:#37bc9b;color:#3d464d}:host.linear[color=grass]{background:#8cc152;color:#fff}:host.linear[color=sunflower]{background:#f6b042;color:#fff}:host.linear[color=bittersweet]{background:#eb6845;color:#fff}:host.linear[color=grapefruit]{background:#da4453;color:#fff}:host.linear[color=carnation]{background:#d770ad;color:#fff}:host.linear[color=lavender]{background:#967adc;color:#fff}:host.linear[color=mountain]{background:#9678b6;color:#fff}:host.linear[color=info],:host.linear[color=positive]{background:#4a89dc;color:#fff}:host.linear[color=success]{background:#8cc152;color:#fff}:host.linear[color=danger],:host.linear[color=error],:host.linear[color=negative]{background:#da4453;color:#fff}:host.linear[color=warning]{background:#f6b042;color:#fff}:host.linear[color=empty]{background:#cccdcc;color:#3d464d}:host.linear[color=disabled]{background:#bebebe;color:#3d464d}:host.linear[color=background]{background:#f7f7f7;color:#3d464d}:host.linear[color=backgroundDark]{background:#e2e2e2;color:#3d464d}:host.linear[color=presentation]{background:#5b6770;color:#fff}:host.linear[color=bullhorn]{background:#ff6900;color:#3d464d}:host.linear[color=pulse]{background:#3bafda;color:#3d464d}:host.linear[color=company]{background:#39d;color:#fff}:host.linear[color=candidate]{background:#4b7;color:#fff}:host.linear[color=lead]{background:#a69;color:#fff}:host.linear[color=contact]{background:#fa4;color:#fff}:host.linear[color=opportunity]{background:#625;color:#fff}:host.linear[color=job]{background:#b56;color:#fff}:host.linear[color=submission]{background:#a9adbb;color:#3d464d}:host.linear[color=sendout]{background:#747884;color:#fff}:host.linear[color=placement]{background:#0b344f;color:#fff}:host.linear[color=note]{background:#747884;color:#fff}:host.linear[color=contract]{background:#454ea0;color:#fff}:host.linear[color=billableCharge],:host.linear[color=corporateUser],:host.linear[color=credential],:host.linear[color=distributionList],:host.linear[color=earnCode],:host.linear[color=invoiceStatement],:host.linear[color=jobCode],:host.linear[color=payableCharge],:host.linear[color=person],:host.linear[color=user]{background:#696d79;color:#fff}:host.linear:first-child{border-radius:.2em 0 0 .2em}:host.linear:last-child{border-radius:0 .2em .2em 0}:host.linear.striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:40px 40px}:host.linear.animated{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}:host.radial{position:absolute}:host.radial[color=black] svg circle{stroke:#000}:host.radial[color=white] svg circle{stroke:#fff}:host.radial[color=gray] svg circle,:host.radial[color=grey] svg circle{stroke:#9e9e9e}:host.radial[color=bright] svg circle,:host.radial[color=offWhite] svg circle{stroke:#f7f7f7}:host.radial[color=light] svg circle{stroke:#dbdbdb}:host.radial[color=neutral] svg circle{stroke:#4f5361}:host.radial[color=dark] svg circle{stroke:#3d464d}:host.radial[color=orange] svg circle{stroke:#ff6900}:host.radial[color=navigation] svg circle{stroke:#202945}:host.radial[color=skyBlue] svg circle{stroke:#009bdf}:host.radial[color=steel] svg circle{stroke:#5b6770}:host.radial[color=metal] svg circle{stroke:#637893}:host.radial[color=sand] svg circle{stroke:#f4f4f4}:host.radial[color=silver] svg circle{stroke:#e2e2e2}:host.radial[color=stone] svg circle{stroke:#bebebe}:host.radial[color=ash] svg circle{stroke:#a0a0a0}:host.radial[color=slate] svg circle{stroke:#707070}:host.radial[color=onyx] svg circle{stroke:#526980}:host.radial[color=charcoal] svg circle{stroke:#282828}:host.radial[color=moonlight] svg circle{stroke:#1a242f}:host.radial[color=midnight] svg circle{stroke:#202945}:host.radial[color=darkness] svg circle{stroke:#161f27}:host.radial[color=navy] svg circle{stroke:#0d2d42}:host.radial[color=aqua] svg circle{stroke:#3bafda}:host.radial[color=ocean] svg circle{stroke:#4a89dc}:host.radial[color=mint] svg circle{stroke:#37bc9b}:host.radial[color=grass] svg circle{stroke:#8cc152}:host.radial[color=sunflower] svg circle{stroke:#f6b042}:host.radial[color=bittersweet] svg circle{stroke:#eb6845}:host.radial[color=grapefruit] svg circle{stroke:#da4453}:host.radial[color=carnation] svg circle{stroke:#d770ad}:host.radial[color=lavender] svg circle{stroke:#967adc}:host.radial[color=mountain] svg circle{stroke:#9678b6}:host.radial[color=info] svg circle,:host.radial[color=positive] svg circle{stroke:#4a89dc}:host.radial[color=success] svg circle{stroke:#8cc152}:host.radial[color=danger] svg circle,:host.radial[color=error] svg circle,:host.radial[color=negative] svg circle{stroke:#da4453}:host.radial[color=warning] svg circle{stroke:#f6b042}:host.radial[color=empty] svg circle{stroke:#cccdcc}:host.radial[color=disabled] svg circle{stroke:#bebebe}:host.radial[color=background] svg circle{stroke:#f7f7f7}:host.radial[color=backgroundDark] svg circle{stroke:#e2e2e2}:host.radial[color=presentation] svg circle{stroke:#5b6770}:host.radial[color=bullhorn] svg circle{stroke:#ff6900}:host.radial[color=pulse] svg circle{stroke:#3bafda}:host.radial[color=company] svg circle{stroke:#39d}:host.radial[color=candidate] svg circle{stroke:#4b7}:host.radial[color=lead] svg circle{stroke:#a69}:host.radial[color=contact] svg circle{stroke:#fa4}:host.radial[color=opportunity] svg circle{stroke:#625}:host.radial[color=job] svg circle{stroke:#b56}:host.radial[color=submission] svg circle{stroke:#a9adbb}:host.radial[color=sendout] svg circle{stroke:#747884}:host.radial[color=placement] svg circle{stroke:#0b344f}:host.radial[color=note] svg circle{stroke:#747884}:host.radial[color=contract] svg circle{stroke:#454ea0}:host.radial[color=billableCharge] svg circle,:host.radial[color=corporateUser] svg circle,:host.radial[color=credential] svg circle,:host.radial[color=distributionList] svg circle,:host.radial[color=earnCode] svg circle,:host.radial[color=invoiceStatement] svg circle,:host.radial[color=jobCode] svg circle,:host.radial[color=payableCharge] svg circle,:host.radial[color=person] svg circle,:host.radial[color=user] svg circle{stroke:#696d79}:host.radial svg circle{stroke:#4a89dc;transform:rotate(-90deg);transform-origin:50% 50%;transition:stroke-dashoffset .35s}:host.radial svg text{fill:#666;font-family:sans-serif;font-size:.5em;text-anchor:middle}@-webkit-keyframes progress-bar-stripes{0%{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{0%{background-position:0 0}to{background-position:40px 0}}"]
|
|
48683
49170
|
},] }
|
|
48684
49171
|
];
|
|
48685
49172
|
NovoProgressBarElement.ctorParameters = function () { return [
|
|
48686
49173
|
{ type: i0.ChangeDetectorRef },
|
|
48687
|
-
{ type:
|
|
49174
|
+
{ type: undefined, decorators: [{ type: i0.Optional }, { type: i0.Inject, args: [NOVO_PROGRESS_CONTAINER,] }] }
|
|
48688
49175
|
]; };
|
|
48689
49176
|
NovoProgressBarElement.propDecorators = {
|
|
48690
49177
|
appearance: [{ type: i0.HostBinding, args: ['class',] }],
|
|
@@ -48706,7 +49193,7 @@
|
|
|
48706
49193
|
};
|
|
48707
49194
|
|
|
48708
49195
|
// NG2
|
|
48709
|
-
var NovoProgressElement
|
|
49196
|
+
var NovoProgressElement = /** @class */ (function () {
|
|
48710
49197
|
function NovoProgressElement() {
|
|
48711
49198
|
this.total = 100;
|
|
48712
49199
|
this.radius = 54;
|
|
@@ -48760,20 +49247,20 @@
|
|
|
48760
49247
|
};
|
|
48761
49248
|
return NovoProgressElement;
|
|
48762
49249
|
}());
|
|
48763
|
-
NovoProgressElement
|
|
49250
|
+
NovoProgressElement.decorators = [
|
|
48764
49251
|
{ type: i0.Component, args: [{
|
|
48765
49252
|
selector: 'novo-progress',
|
|
48766
49253
|
template: " <ng-content></ng-content> ",
|
|
48767
49254
|
providers: [
|
|
48768
49255
|
{
|
|
48769
49256
|
provide: NOVO_PROGRESS_CONTAINER,
|
|
48770
|
-
useExisting: NovoProgressElement
|
|
49257
|
+
useExisting: NovoProgressElement,
|
|
48771
49258
|
},
|
|
48772
49259
|
],
|
|
48773
49260
|
styles: [":host{border-radius:.2em;display:flex;position:relative}:host.striped{background-image:linear-gradient(45deg,rgba(0,0,0,.25) 25%,transparent 0,transparent 50%,rgba(0,0,0,.25) 0,rgba(0,0,0,.25) 75%,transparent 0,transparent);background-size:20px 20px}:host.linear{background-color:#f7f7f7;border:1px solid #cccdcc;height:1.2em;width:200px}:host.radial{height:9.2em;width:9.2em}"]
|
|
48774
49261
|
},] }
|
|
48775
49262
|
];
|
|
48776
|
-
NovoProgressElement
|
|
49263
|
+
NovoProgressElement.propDecorators = {
|
|
48777
49264
|
color: [{ type: i0.Input }],
|
|
48778
49265
|
theme: [{ type: i0.Input }],
|
|
48779
49266
|
total: [{ type: i0.Input }],
|
|
@@ -48793,8 +49280,8 @@
|
|
|
48793
49280
|
NovoProgressModule.decorators = [
|
|
48794
49281
|
{ type: i0.NgModule, args: [{
|
|
48795
49282
|
imports: [common.CommonModule],
|
|
48796
|
-
declarations: [NovoProgressBarElement, NovoProgressElement
|
|
48797
|
-
exports: [NovoProgressBarElement, NovoProgressElement
|
|
49283
|
+
declarations: [NovoProgressBarElement, NovoProgressElement],
|
|
49284
|
+
exports: [NovoProgressBarElement, NovoProgressElement],
|
|
48798
49285
|
},] }
|
|
48799
49286
|
];
|
|
48800
49287
|
|
|
@@ -50069,7 +50556,7 @@
|
|
|
50069
50556
|
NovoSimpleCellHeader.decorators = [
|
|
50070
50557
|
{ type: i0.Component, args: [{
|
|
50071
50558
|
selector: '[novo-simple-cell-config]',
|
|
50072
|
-
template: "\n <label (click)=\"sort()\" data-automation-id=\"novo-activity-table-label\" [class.sort-disabled]=\"!config.sortable\">\n <ng-content></ng-content>\n </label>\n <div>\n <novo-button\n *ngIf=\"config.sortable\"\n theme=\"icon\"\n [icon]=\"icon\"\n (click)=\"sort()\"\n [class.active]=\"sortActive\"\n data-automation-id=\"novo-activity-table-sort\"\n ></novo-button>\n <novo-dropdown\n *ngIf=\"config.filterable\"\n side=\"right\"\n parentScrollSelector=\".novo-simple-table\"\n containerClass=\"simple-table-dropdown\"\n data-automation-id=\"novo-activity-table-filter\"\n >\n <novo-button type=\"button\" theme=\"icon\" icon=\"filter\" [class.active]=\"filterActive\"></novo-button>\n <div class=\"header\">\n <span>{{ labels.filters }}</span>\n <novo-button\n theme=\"dialogue\"\n color=\"negative\"\n icon=\"times\"\n (click)=\"clearFilter()\"\n *ngIf=\"filter\"\n data-automation-id=\"novo-activity-table-filter-clear\"\n >\n {{ labels.clear }}\n </novo-button>\n </div>\n <ng-container [ngSwitch]=\"config.filterConfig.type\">\n <
|
|
50559
|
+
template: "\n <label (click)=\"sort()\" data-automation-id=\"novo-activity-table-label\" [class.sort-disabled]=\"!config.sortable\">\n <ng-content></ng-content>\n </label>\n <div>\n <novo-button\n *ngIf=\"config.sortable\"\n theme=\"icon\"\n [icon]=\"icon\"\n (click)=\"sort()\"\n [class.active]=\"sortActive\"\n data-automation-id=\"novo-activity-table-sort\"\n ></novo-button>\n <novo-dropdown\n *ngIf=\"config.filterable\"\n side=\"right\"\n parentScrollSelector=\".novo-simple-table\"\n containerClass=\"simple-table-dropdown\"\n data-automation-id=\"novo-activity-table-filter\"\n >\n <novo-button type=\"button\" theme=\"icon\" icon=\"filter\" [class.active]=\"filterActive\"></novo-button>\n <div class=\"header\">\n <span>{{ labels.filters }}</span>\n <novo-button\n theme=\"dialogue\"\n color=\"negative\"\n icon=\"times\"\n (click)=\"clearFilter()\"\n *ngIf=\"filter\"\n data-automation-id=\"novo-activity-table-filter-clear\"\n >\n {{ labels.clear }}\n </novo-button>\n </div>\n <ng-container [ngSwitch]=\"config.filterConfig.type\">\n <novo-optgroup *ngSwitchCase=\"'date'\">\n <ng-container *ngIf=\"!showCustomRange\">\n <novo-option\n [class.active]=\"activeDateFilter === option.label\"\n *ngFor=\"let option of config.filterConfig.options\"\n (click)=\"filterData(option)\"\n [attr.data-automation-id]=\"'novo-activity-table-filter-' + option.label\"\n >\n {{ option.label }} <i class=\"bhi-check\" *ngIf=\"activeDateFilter === option.label\"></i>\n </novo-option>\n </ng-container>\n <novo-option\n [class.active]=\"labels.customDateRange === activeDateFilter\"\n (click)=\"toggleCustomRange($event, true)\"\n *ngIf=\"config.filterConfig.allowCustomRange && !showCustomRange\"\n [keepOpen]=\"true\"\n >\n {{ labels.customDateRange }} <i class=\"bhi-check\" *ngIf=\"labels.customDateRange === activeDateFilter\"></i>\n </novo-option>\n <div class=\"calendar-container\" *ngIf=\"showCustomRange\">\n <div (click)=\"toggleCustomRange($event, false)\"><i class=\"bhi-previous\"></i>{{ labels.backToPresetFilters }}</div>\n <novo-date-picker (onSelect)=\"filterData($event)\" [(ngModel)]=\"filter\" range=\"true\"></novo-date-picker>\n </div>\n </novo-optgroup>\n <novo-optgroup *ngSwitchCase=\"'select'\">\n <novo-option\n [class.active]=\"filter === option\"\n *ngFor=\"let option of config.filterConfig.options\"\n (click)=\"filterData(option)\"\n [attr.data-automation-id]=\"'novo-activity-table-filter-' + (option?.label || option)\"\n >\n <span>{{ option?.label || option }}</span>\n <i class=\"bhi-check\" *ngIf=\"option.hasOwnProperty('value') ? filter === option.value : filter === option\"></i>\n </novo-option>\n </novo-optgroup>\n <novo-optgroup *ngSwitchDefault>\n <novo-option class=\"filter-search\" keepOpen>\n <input\n type=\"text\"\n [(ngModel)]=\"filter\"\n (ngModelChange)=\"filterData($event)\"\n novoSimpleFilterFocus\n data-automation-id=\"novo-activity-table-filter-input\"\n />\n </novo-option>\n </novo-optgroup>\n </ng-container>\n </novo-dropdown>\n </div>\n ",
|
|
50073
50560
|
encapsulation: i0.ViewEncapsulation.None,
|
|
50074
50561
|
changeDetection: i0.ChangeDetectionStrategy.OnPush
|
|
50075
50562
|
},] }
|
|
@@ -50624,6 +51111,7 @@
|
|
|
50624
51111
|
table.CdkTableModule,
|
|
50625
51112
|
common.CommonModule,
|
|
50626
51113
|
forms.FormsModule,
|
|
51114
|
+
NovoCommonModule,
|
|
50627
51115
|
NovoButtonModule,
|
|
50628
51116
|
NovoDropdownModule,
|
|
50629
51117
|
NovoFormExtrasModule,
|
|
@@ -50631,6 +51119,7 @@
|
|
|
50631
51119
|
NovoTilesModule,
|
|
50632
51120
|
NovoSearchBoxModule,
|
|
50633
51121
|
NovoCheckboxModule,
|
|
51122
|
+
NovoOptionModule,
|
|
50634
51123
|
],
|
|
50635
51124
|
exports: [
|
|
50636
51125
|
NovoTable,
|
|
@@ -51178,6 +51667,7 @@
|
|
|
51178
51667
|
var _this = this;
|
|
51179
51668
|
this.labelService = labelService;
|
|
51180
51669
|
this.ref = ref;
|
|
51670
|
+
this.multiple = true;
|
|
51181
51671
|
this.selectionChange = new i0.EventEmitter();
|
|
51182
51672
|
this.displayTabIndex = 0;
|
|
51183
51673
|
this.filterText = new rxjs.BehaviorSubject('');
|
|
@@ -51459,8 +51949,9 @@
|
|
|
51459
51949
|
NovoTabbedGroupPickerElement.decorators = [
|
|
51460
51950
|
{ type: i0.Component, args: [{
|
|
51461
51951
|
selector: 'novo-tabbed-group-picker',
|
|
51462
|
-
template: "<novo-dropdown (toggled)=\"onDropdownToggle($event)\" multiple>\n <novo-button\n class=\"tabbed-group-picker-button\"\n [theme]=\"buttonConfig.theme\"\n [side]=\"buttonConfig.side\"\n [icon]=\"buttonConfig.icon\"\n [loading]=\"loading\">\n <div class=\"tabbed-group-picker-button-label\">{{ buttonConfig.label }}</div>\n </novo-button>\n <div class=\"tabbed-group-picker-search\" data-automation-id=\"tabbed-group-picker-search\">\n <input type=\"text\" [placeholder]=\"labelService.search\" [value]=\"filterText | async\" (input)=\"onFilter($event)\" />\n <i class=\"bhi-search\" *ngIf=\"!(filterText | async)\"></i>\n <i class=\"bhi-times\" *ngIf=\"(filterText | async)\" (click)=\"onClearFilter($event)\"></i>\n </div>\n <div class=\"tabbed-group-picker-column-container\">\n <div class=\"tabbed-group-picker-column left\">\n <novo-nav theme=\"white\" direction=\"vertical\">\n <novo-tab *ngFor=\"let tab of displayTabs\" [attr.data-automation-id]=\"tab.typeName\"\n (activeChange)=\"changeTab(tab)\">\n <span>{{ tab.typeLabel }} ({{ tab.data.length }})</span><i class=\"bhi-next\"></i>\n </novo-tab>\n </novo-nav>\n <novo-button *ngIf=\"showClearAll\" class=\"clear-all-button\" theme=\"dialogue\" icon=\"times\" side=\"right\"\n color=\"grapefruit\" (click)=\"deselectEverything($event)\">{{ labelService.clear }}</novo-button>\n </div>\n <div class=\"tabbed-group-picker-column right\">\n <div class=\"quick-select\" *ngIf=\"quickSelectConfig && !(filterText | async)\">\n <div class=\"quick-select-label\">{{ quickSelectConfig.label }}</div
|
|
51463
|
-
changeDetection: i0.ChangeDetectionStrategy.OnPush
|
|
51952
|
+
template: "<novo-dropdown (toggled)=\"onDropdownToggle($event)\" multiple>\n <novo-button\n class=\"tabbed-group-picker-button\"\n [theme]=\"buttonConfig.theme\"\n [side]=\"buttonConfig.side\"\n [icon]=\"buttonConfig.icon\"\n [loading]=\"loading\">\n <div class=\"tabbed-group-picker-button-label\">{{ buttonConfig.label }}</div>\n </novo-button>\n <div class=\"tabbed-group-picker-search\" data-automation-id=\"tabbed-group-picker-search\">\n <input type=\"text\" [placeholder]=\"labelService.search\" [value]=\"filterText | async\" (input)=\"onFilter($event)\" />\n <i class=\"bhi-search\" *ngIf=\"!(filterText | async)\"></i>\n <i class=\"bhi-times\" *ngIf=\"(filterText | async)\" (click)=\"onClearFilter($event)\"></i>\n </div>\n <div class=\"tabbed-group-picker-column-container\">\n <div class=\"tabbed-group-picker-column left\">\n <novo-nav theme=\"white\" direction=\"vertical\">\n <novo-tab *ngFor=\"let tab of displayTabs\" [attr.data-automation-id]=\"tab.typeName\"\n (activeChange)=\"changeTab(tab)\">\n <span>{{ tab.typeLabel }} ({{ tab.data.length }})</span><i class=\"bhi-next\"></i>\n </novo-tab>\n </novo-nav>\n <novo-button *ngIf=\"showClearAll\" class=\"clear-all-button\" theme=\"dialogue\" icon=\"times\" side=\"right\"\n color=\"grapefruit\" (click)=\"deselectEverything($event)\">{{ labelService.clear }}</novo-button>\n </div>\n <div class=\"tabbed-group-picker-column right\">\n <div class=\"quick-select\" *ngIf=\"quickSelectConfig && !(filterText | async)\">\n <!-- <div class=\"quick-select-label\">{{ quickSelectConfig.label }}</div> -->\n <novo-optgroup class=\"quick-select-list\" [label]=\"quickSelectConfig.label\">\n <novo-option\n class=\"quick-select-item\"\n *ngFor=\"let quickSelect of quickSelectConfig.items\"\n [attr.data-automation-id]=\"quickSelect.label\"\n [selected]=\"quickSelect.selected\"\n (click)=\"quickSelect.selected = !quickSelect.selected; onItemToggled(quickSelect)\">\n {{quickSelect.label}}\n <!-- <novo-checkbox\n [label]=\"quickSelect.label\"\n [name]=\"'selected'\"\n [(ngModel)]=\"quickSelect.selected\"\n (ngModelChange)=\"onItemToggled(quickSelect)\"></novo-checkbox> -->\n </novo-option>\n </novo-optgroup>\n </div>\n <novo-optgroup *ngIf=\"displayTab.data.length\">\n <cdk-virtual-scroll-viewport\n [itemSize]=\"virtualScrollItemSize\"\n [maxBufferPx]=\"maxBufferPx\"\n [minBufferPx]=\"minBufferPx\"\n #tabbedGroupPickerVirtualScrollViewport>\n <novo-option\n *cdkVirtualFor=\"let item of displayTab.data\"\n [attr.data-automation-id]=\"item[displayTab.labelField]\"\n [selected]=\"item.selected\"\n (click)=\"item.selected = !item.selected; onItemToggled(item)\">\n {{item[displayTab.labelField]}}\n\n <!-- <novo-checkbox\n [label]=\"item[displayTab.labelField]\"\n [name]=\"'selected'\"\n [indeterminate]=\"item.indeterminate\"\n [(ngModel)]=\"item.selected\"\n (ngModelChange)=\"onItemToggled(item)\">\n </novo-checkbox> -->\n </novo-option>\n </cdk-virtual-scroll-viewport>\n </novo-optgroup>\n <div class=\"tabbed-group-picker-empty-item\" *ngIf=\"!displayTab.data.length && (filterText | async)\">\n <i class=\"{{ displayTab.icon || 'bhi-search' }}\"></i>\n <div class=\"empty-item-main-message\">{{ labelService.tabbedGroupPickerEmpty }}</div>\n <div class=\"empty-item-sub-message\">{{ labelService.tabbedGroupClearSuggestion(displayTab.typeLabel) }}\n </div>\n </div>\n </div>\n </div>\n</novo-dropdown>",
|
|
51953
|
+
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
51954
|
+
providers: [{ provide: NOVO_OPTION_PARENT_COMPONENT, useExisting: NovoTabbedGroupPickerElement }]
|
|
51464
51955
|
},] }
|
|
51465
51956
|
];
|
|
51466
51957
|
NovoTabbedGroupPickerElement.ctorParameters = function () { return [
|
|
@@ -52056,7 +52547,7 @@
|
|
|
52056
52547
|
}
|
|
52057
52548
|
ThSortable.prototype.onToggleSort = function (event) {
|
|
52058
52549
|
if (event) {
|
|
52059
|
-
event.preventDefault();
|
|
52550
|
+
// event.preventDefault();
|
|
52060
52551
|
}
|
|
52061
52552
|
if (this.config && this.column && this.config.sorting !== false && this.column.sorting !== false) {
|
|
52062
52553
|
switch (this.column.sort) {
|
|
@@ -52094,7 +52585,7 @@
|
|
|
52094
52585
|
}());
|
|
52095
52586
|
NovoTableExtrasModule.decorators = [
|
|
52096
52587
|
{ type: i0.NgModule, args: [{
|
|
52097
|
-
imports: [common.CommonModule, forms.FormsModule, NovoSelectModule, NovoDropdownModule, NovoButtonModule],
|
|
52588
|
+
imports: [common.CommonModule, forms.FormsModule, NovoSelectModule, NovoDropdownModule, NovoButtonModule, NovoCommonModule],
|
|
52098
52589
|
declarations: [
|
|
52099
52590
|
NovoTableHeaderElement,
|
|
52100
52591
|
NovoTableFooterElement,
|
|
@@ -52159,7 +52650,7 @@
|
|
|
52159
52650
|
this.showSelectAllMessage = false;
|
|
52160
52651
|
this.pagedData = [];
|
|
52161
52652
|
// Map to keep track of what dropdowns are toggled
|
|
52162
|
-
// Used to properly *ngIf the <
|
|
52653
|
+
// Used to properly *ngIf the <novo-optgroup> so that the keepFilterFocused Directive
|
|
52163
52654
|
// will properly fire the ngAfterViewInit event
|
|
52164
52655
|
this.toggledDropdownMap = {};
|
|
52165
52656
|
this.NovoTableMode = exports.NovoTableMode;
|
|
@@ -52304,6 +52795,7 @@
|
|
|
52304
52795
|
});
|
|
52305
52796
|
NovoTableElement.prototype.onDropdownToggled = function (event, column) {
|
|
52306
52797
|
this.toggledDropdownMap[column] = event;
|
|
52798
|
+
this.cdr.markForCheck();
|
|
52307
52799
|
};
|
|
52308
52800
|
NovoTableElement.prototype.focusInput = function () {
|
|
52309
52801
|
if (this.filterInputs && this.filterInputs.length) {
|
|
@@ -52948,7 +53440,7 @@
|
|
|
52948
53440
|
'[class.novo-table-loading]': 'loading',
|
|
52949
53441
|
},
|
|
52950
53442
|
// directives: [],
|
|
52951
|
-
template: "\n <header *ngIf=\"columns.length\">\n <ng-content select=\"novo-table-header\"></ng-content>\n <div class=\"header-actions\">\n <novo-pagination\n *ngIf=\"config.paging && !(dataProvider.isEmpty() && !dataProvider.isFiltered())\"\n [rowOptions]=\"config.paging.rowOptions\"\n [disablePageSelection]=\"config.paging.disablePageSelection\"\n [(page)]=\"dataProvider.page\"\n [(itemsPerPage)]=\"dataProvider.pageSize\"\n [totalItems]=\"dataProvider.total\"\n (onPageChange)=\"onPageChange($event)\"\n >\n </novo-pagination>\n <ng-content select=\"novo-table-actions\"></ng-content>\n </div>\n </header>\n <div class=\"novo-table-loading-overlay\" *ngIf=\"loading || dataProvider.isLoading()\">\n <novo-loading></novo-loading>\n </div>\n <novo-toast *ngIf=\"toast\" [theme]=\"toast?.theme\" [icon]=\"toast?.icon\" [message]=\"toast?.message\"></novo-toast>\n <div class=\"table-container\" *ngIf=\"!grossFlagToAvoidTheTableFromBeingUglyWhenHidingTheToast\">\n <novo-form hideHeader=\"true\" [form]=\"tableForm\">\n <table class=\"table table-striped dataTable\" [class.table-details]=\"config.hasDetails\" role=\"grid\">\n <!-- skipSortAndFilterClear is a hack right now, will be removed once Canvas is refactored -->\n <thead *ngIf=\"columns.length && (!dataProvider.isEmpty() || dataProvider.isFiltered() || skipSortAndFilterClear || editing)\">\n <tr role=\"row\">\n <!-- DETAILS -->\n <th class=\"row-actions\" *ngIf=\"config.hasDetails\">\n <novo-button\n theme=\"icon\"\n icon=\"next\"\n (click)=\"expandAllOnPage(config.expandAll)\"\n *ngIf=\"!config.expandAll\"\n data-automation-id=\"expand-all\"\n ></novo-button>\n <novo-button\n theme=\"icon\"\n icon=\"sort-desc\"\n (click)=\"expandAllOnPage(config.expandAll)\"\n *ngIf=\"config.expandAll\"\n data-automation-id=\"collapse-all\"\n ></novo-button>\n </th>\n <!-- CHECKBOX -->\n <th class=\"row-actions checkbox mass-action\" *ngIf=\"config.rowSelectionStyle === 'checkbox'\">\n <novo-checkbox\n [(ngModel)]=\"master\"\n [indeterminate]=\"pageSelected.length > 0 && pageSelected.length < pagedData.length\"\n (ngModelChange)=\"selectPage($event)\"\n data-automation-id=\"select-all-checkbox\"\n [tooltip]=\"master ? labels.deselectAll : labels.selectAllOnPage\"\n tooltipPosition=\"right\"\n ></novo-checkbox>\n </th>\n <!-- TABLE HEADERS -->\n <th\n *ngFor=\"let column of columns\"\n [ngClass]=\"{\n 'mass-action': config?.rowSelectionStyle === 'checkbox',\n actions: column?.actions?.items?.length > 0,\n preview: column?.name === 'preview'\n }\"\n [novoThOrderable]=\"column\"\n (onOrderChange)=\"onOrderChange($event)\"\n [hidden]=\"isColumnHidden(column)\"\n >\n <div class=\"th-group\" [attr.data-automation-id]=\"column.id || column.name\" *ngIf=\"!column.hideHeader\">\n <!-- LABEL & SORT ARROWS -->\n <div\n class=\"th-title\"\n [ngClass]=\"config.sorting !== false && column.sorting !== false ? 'sortable' : ''\"\n [novoThSortable]=\"config\"\n [column]=\"column\"\n (onSortChange)=\"onSortChange($event)\"\n >\n <label>{{ column.title || column.label }}</label>\n <div\n class=\"table-sort-icons\"\n tooltipPosition=\"bottom\"\n [tooltip]=\"labels.sort\"\n [ngClass]=\"column.sort || ''\"\n *ngIf=\"config.sorting !== false && column.sorting !== false\"\n >\n <i class=\"bhi-arrow-up\"></i>\n <i class=\"bhi-arrow-down\"></i>\n </div>\n </div>\n <!-- FILTER DROP-DOWN -->\n <novo-dropdown\n side=\"right\"\n *ngIf=\"config.filtering !== false && column.filtering !== false\"\n class=\"column-filters\"\n (toggled)=\"onDropdownToggled($event, column.name)\"\n parentScrollSelector=\".table-container\"\n containerClass=\"table-dropdown\"\n >\n <novo-button\n type=\"button\"\n theme=\"icon\"\n icon=\"filter\"\n tooltipPosition=\"bottom\"\n [tooltip]=\"labels.filters\"\n [class.filtered]=\"column.filter || column.filter === false\"\n (click)=\"focusInput()\"\n ></novo-button>\n <!-- FILTER OPTIONS LIST -->\n <list\n *ngIf=\"\n (column?.options?.length || column?.originalOptions?.length) &&\n column?.type !== 'date' &&\n toggledDropdownMap[column.name]\n \"\n >\n <item class=\"filter-search\">\n <div class=\"header\">\n <span>{{ labels.filters }}</span>\n <novo-button\n theme=\"dialogue\"\n color=\"negative\"\n icon=\"times\"\n (click)=\"onFilterClear(column)\"\n *ngIf=\"column.filter || column.filter === false\"\n >\n {{ labels.clear }}\n </novo-button>\n </div>\n <input\n type=\"text\"\n *ngIf=\"!!column.allowCustomTextOption\"\n [attr.id]=\"column.name + '-input'\"\n [novoTableFilter]=\"column\"\n (onFilterChange)=\"onFilterKeywords($event)\"\n [(ngModel)]=\"column.freetextFilter\"\n keepFilterFocused\n #filterInput\n />\n </item>\n <item\n [ngClass]=\"{ active: isFilterActive(column, option) }\"\n *ngFor=\"let option of column.options\"\n (click)=\"onFilterClick(column, option)\"\n [attr.data-automation-id]=\"getOptionDataAutomationId(option)\"\n >\n <span>{{ option?.label || option }}</span> <i class=\"bhi-check\" *ngIf=\"isFilterActive(column, option)\"></i>\n </item>\n </list>\n <!-- FILTER SEARCH INPUT -->\n <list *ngIf=\"!(column?.options?.length || column?.originalOptions?.length) && toggledDropdownMap[column.name]\">\n <item class=\"filter-search\">\n <div class=\"header\">\n <span>{{ labels.filters }}</span>\n <novo-button theme=\"dialogue\" color=\"negative\" icon=\"times\" (click)=\"onFilterClear(column)\" *ngIf=\"column.filter\">\n {{ labels.clear }}\n </novo-button>\n </div>\n <input\n type=\"text\"\n [attr.id]=\"column.name + '-input'\"\n [novoTableFilter]=\"column\"\n (onFilterChange)=\"onFilterChange($event)\"\n [(ngModel)]=\"column.filter\"\n keepFilterFocused\n #filterInput\n />\n </item>\n </list>\n <!-- FILTER DATE OPTIONS -->\n <list *ngIf=\"column?.options?.length && column?.type === 'date' && toggledDropdownMap[column.name]\">\n <item class=\"filter-search\" *ngIf=\"!column.calenderShow\">\n <div class=\"header\">\n <span>{{ labels.filters }}</span>\n <novo-button theme=\"dialogue\" color=\"negative\" icon=\"times\" (click)=\"onFilterClear(column)\" *ngIf=\"column.filter\">\n {{ labels.clear }}\n </novo-button>\n </div>\n </item>\n <item\n [ngClass]=\"{ active: isFilterActive(column, option) }\"\n *ngFor=\"let option of column.options\"\n (click)=\"onFilterClick(column, option)\"\n [keepOpen]=\"option.range\"\n [hidden]=\"column.calenderShow\"\n [attr.data-automation-id]=\"option?.label || option\"\n >\n {{ option?.label || option }} <i class=\"bhi-check\" *ngIf=\"isFilterActive(column, option)\"></i>\n </item>\n <div class=\"calendar-container\" [hidden]=\"!column.calenderShow\">\n <div (click)=\"column.calenderShow = false\"><i class=\"bhi-previous\"></i>{{ labels.backToPresetFilters }}</div>\n <novo-date-picker\n #rangePicker\n (onSelect)=\"onCalenderSelect(column, $event)\"\n [(ngModel)]=\"column.filter\"\n range=\"true\"\n ></novo-date-picker>\n </div>\n </list>\n </novo-dropdown>\n </div>\n </th>\n </tr>\n </thead>\n <!-- TABLE DATA -->\n <tbody *ngIf=\"!dataProvider.isEmpty() || editing\">\n <tr\n class=\"table-selection-row\"\n *ngIf=\"config.rowSelectionStyle === 'checkbox' && showSelectAllMessage && config.selectAllEnabled\"\n data-automation-id=\"table-selection-row\"\n >\n <td colspan=\"100%\">\n {{ labels.selectedRecords(selected.length) }}\n <a (click)=\"selectAll(true)\" data-automation-id=\"all-matching-records\">{{ labels.totalRecords(dataProvider.total) }}</a>\n </td>\n </tr>\n <ng-template ngFor let-row=\"$implicit\" let-i=\"index\" [ngForOf]=\"rows\">\n <tr\n class=\"table-row\"\n [ngClass]=\"row.customClass || ''\"\n [id]=\"name + '-' + row[rowIdentifier]\"\n [attr.data-automation-id]=\"row.id\"\n (click)=\"rowClickHandler(row)\"\n [class.active]=\"row.id === activeId\"\n >\n <td class=\"row-actions\" *ngIf=\"config.hasDetails\">\n <novo-button theme=\"icon\" icon=\"next\" (click)=\"row._expanded = !row._expanded\" *ngIf=\"!row._expanded\"></novo-button>\n <novo-button theme=\"icon\" icon=\"sort-desc\" (click)=\"row._expanded = !row._expanded\" *ngIf=\"row._expanded\"></novo-button>\n </td>\n <td class=\"row-actions checkbox\" *ngIf=\"config.rowSelectionStyle === 'checkbox'\">\n <novo-checkbox\n [(ngModel)]=\"row._selected\"\n (ngModelChange)=\"rowSelectHandler(row)\"\n data-automation-id=\"select-row-checkbox\"\n ></novo-checkbox>\n </td>\n <td\n *ngFor=\"let column of columns\"\n [attr.data-automation-id]=\"column.id || column.name\"\n [class.novo-form-row]=\"editable\"\n [hidden]=\"isColumnHidden(column)\"\n >\n <novo-table-cell\n *ngIf=\"row._editing && !row._editing[column.name]\"\n [hasEditor]=\"editable\"\n [column]=\"column\"\n [row]=\"row\"\n [form]=\"getRowControlForm(i)\"\n ></novo-table-cell>\n <novo-control\n *ngIf=\"row._editing && row._editing[column.name]\"\n condensed=\"true\"\n [form]=\"getRowControlForm(i)\"\n [control]=\"row.controls[column.name]\"\n ></novo-control>\n </td>\n </tr>\n <tr\n class=\"details-row\"\n *ngIf=\"config.hasDetails\"\n [hidden]=\"!row._expanded\"\n [attr.data-automation-id]=\"'details-row-' + row.id\"\n >\n <td class=\"row-actions\"></td>\n <td [attr.colspan]=\"config.rowSelectionStyle === 'checkbox' ? columns.length + 1 : columns.length\">\n <novo-row-details [data]=\"row\" [renderer]=\"config.detailsRenderer\"></novo-row-details>\n </td>\n </tr>\n </ng-template>\n </tbody>\n <!-- NO TABLE DATA PLACEHOLDER -->\n <tbody\n class=\"table-message\"\n *ngIf=\"dataProvider.isEmpty() && !dataProvider.isFiltered() && !editing\"\n data-automation-id=\"empty-table\"\n >\n <tr>\n <td colspan=\"100%\">\n <div #emptymessage><ng-content select=\"[table-empty-message]\"></ng-content></div>\n <div class=\"table-empty-message\" *ngIf=\"emptymessage.childNodes.length == 0\">\n <h4><i class=\"bhi-search-question\"></i> {{ labels.emptyTableMessage }}</h4>\n </div>\n </td>\n </tr>\n </tbody>\n <!-- NO MATCHING RECORDS -->\n <tbody class=\"table-message\" *ngIf=\"dataProvider.isEmpty() && dataProvider.isFiltered()\" data-automation-id=\"empty-table\">\n <tr>\n <td colspan=\"100%\">\n <div #nomatchmessage><ng-content select=\"[table-no-matching-records-message]\"></ng-content></div>\n <div class=\"no-matching-records\" *ngIf=\"nomatchmessage.childNodes.length == 0\">\n <h4><i class=\"bhi-search-question\"></i> {{ labels.noMatchingRecordsMessage }}</h4>\n </div>\n </td>\n </tr>\n </tbody>\n <!-- TABLE DATA ERROR PLACEHOLDER -->\n <tbody class=\"table-message\" *ngIf=\"dataProvider.hasErrors()\" data-automation-id=\"table-errors\">\n <tr>\n <td colspan=\"100%\">\n <div #errormessage><ng-content select=\"[table-error-message]\"></ng-content></div>\n <div class=\"table-error-message\" *ngIf=\"errormessage.childNodes.length == 0\">\n <h4><i class=\"bhi-caution\"></i> {{ labels.erroredTableMessage }}</h4>\n </div>\n </td>\n </tr>\n </tbody>\n <tfoot *ngIf=\"!config.footers\" [ngClass]=\"dataProvider.length % 2 == 0 ? 'odd' : 'even'\">\n <tr>\n <td colspan=\"100%\">\n <ng-content select=\"novo-table-footer\"></ng-content>\n </td>\n </tr>\n </tfoot>\n <tfoot *ngFor=\"let footer of footers; let i = index\" class=\"novo-table-total-footer\">\n <tr>\n <td *ngFor=\"let column of columns\" [attr.data-automation-id]=\"(column.id || column.name) + '-total-' + i\">\n {{ footer[column.name] }}\n </td>\n </tr>\n </tfoot>\n </table>\n </novo-form>\n </div>\n "
|
|
53443
|
+
template: "\n <header *ngIf=\"columns.length\">\n <ng-content select=\"novo-table-header\"></ng-content>\n <div class=\"header-actions\">\n <novo-pagination\n *ngIf=\"config.paging && !(dataProvider.isEmpty() && !dataProvider.isFiltered())\"\n [rowOptions]=\"config.paging.rowOptions\"\n [disablePageSelection]=\"config.paging.disablePageSelection\"\n [(page)]=\"dataProvider.page\"\n [(itemsPerPage)]=\"dataProvider.pageSize\"\n [totalItems]=\"dataProvider.total\"\n (onPageChange)=\"onPageChange($event)\"\n >\n </novo-pagination>\n <ng-content select=\"novo-table-actions\"></ng-content>\n </div>\n </header>\n <div class=\"novo-table-loading-overlay\" *ngIf=\"loading || dataProvider.isLoading()\">\n <novo-loading></novo-loading>\n </div>\n <novo-toast *ngIf=\"toast\" [theme]=\"toast?.theme\" [icon]=\"toast?.icon\" [message]=\"toast?.message\"></novo-toast>\n <div class=\"table-container\" *ngIf=\"!grossFlagToAvoidTheTableFromBeingUglyWhenHidingTheToast\">\n <novo-form hideHeader=\"true\" [form]=\"tableForm\">\n <table class=\"table table-striped dataTable\" [class.table-details]=\"config.hasDetails\" role=\"grid\">\n <!-- skipSortAndFilterClear is a hack right now, will be removed once Canvas is refactored -->\n <thead *ngIf=\"columns.length && (!dataProvider.isEmpty() || dataProvider.isFiltered() || skipSortAndFilterClear || editing)\">\n <tr role=\"row\">\n <!-- DETAILS -->\n <th class=\"row-actions\" *ngIf=\"config.hasDetails\">\n <novo-button\n theme=\"icon\"\n icon=\"next\"\n (click)=\"expandAllOnPage(config.expandAll)\"\n *ngIf=\"!config.expandAll\"\n data-automation-id=\"expand-all\"\n ></novo-button>\n <novo-button\n theme=\"icon\"\n icon=\"sort-desc\"\n (click)=\"expandAllOnPage(config.expandAll)\"\n *ngIf=\"config.expandAll\"\n data-automation-id=\"collapse-all\"\n ></novo-button>\n </th>\n <!-- CHECKBOX -->\n <th class=\"row-actions checkbox mass-action\" *ngIf=\"config.rowSelectionStyle === 'checkbox'\">\n <novo-checkbox\n [(ngModel)]=\"master\"\n [indeterminate]=\"pageSelected.length > 0 && pageSelected.length < pagedData.length\"\n (ngModelChange)=\"selectPage($event)\"\n data-automation-id=\"select-all-checkbox\"\n [tooltip]=\"master ? labels.deselectAll : labels.selectAllOnPage\"\n tooltipPosition=\"right\"\n ></novo-checkbox>\n </th>\n <!-- TABLE HEADERS -->\n <th\n *ngFor=\"let column of columns\"\n [ngClass]=\"{\n 'mass-action': config?.rowSelectionStyle === 'checkbox',\n actions: column?.actions?.items?.length > 0,\n preview: column?.name === 'preview'\n }\"\n [novoThOrderable]=\"column\"\n (onOrderChange)=\"onOrderChange($event)\"\n [hidden]=\"isColumnHidden(column)\"\n >\n <div class=\"th-group\" [attr.data-automation-id]=\"column.id || column.name\" *ngIf=\"!column.hideHeader\">\n <!-- LABEL & SORT ARROWS -->\n <div\n class=\"th-title\"\n [ngClass]=\"config.sorting !== false && column.sorting !== false ? 'sortable' : ''\"\n [novoThSortable]=\"config\"\n [column]=\"column\"\n (onSortChange)=\"onSortChange($event)\"\n >\n <label>{{ column.title || column.label }}</label>\n <div\n class=\"table-sort-icons\"\n tooltipPosition=\"bottom\"\n [tooltip]=\"labels.sort\"\n [ngClass]=\"column.sort || ''\"\n *ngIf=\"config.sorting !== false && column.sorting !== false\"\n >\n <i class=\"bhi-arrow-up\"></i>\n <i class=\"bhi-arrow-down\"></i>\n </div>\n </div>\n <!-- FILTER DROP-DOWN -->\n <novo-dropdown\n side=\"default\"\n *ngIf=\"config.filtering !== false && column.filtering !== false\"\n class=\"column-filters\"\n (toggled)=\"onDropdownToggled($event, column.name)\"\n parentScrollSelector=\".table-container\"\n containerClass=\"table-dropdown\"\n >\n <novo-button\n type=\"button\"\n theme=\"icon\"\n icon=\"filter\"\n tooltipPosition=\"bottom\"\n [tooltip]=\"labels.filters\"\n [class.filtered]=\"column.filter || column.filter === false\"\n (click)=\"focusInput()\"\n ></novo-button>\n <!-- FILTER OPTIONS LIST -->\n <novo-optgroup\n *ngIf=\"\n (column?.options?.length || column?.originalOptions?.length) &&\n column?.type !== 'date' &&\n toggledDropdownMap[column.name]\n \"\n >\n <novo-option class=\"filter-search\" inert>\n <div class=\"header\">\n <span>{{ labels.filters }}</span>\n <novo-button\n theme=\"dialogue\"\n color=\"negative\"\n icon=\"times\"\n (click)=\"onFilterClear(column)\"\n *ngIf=\"column.filter || column.filter === false\"\n >\n {{ labels.clear }}\n </novo-button>\n </div>\n <input\n type=\"text\"\n *ngIf=\"!!column.allowCustomTextOption\"\n [attr.id]=\"column.name + '-input'\"\n [novoTableFilter]=\"column\"\n (onFilterChange)=\"onFilterKeywords($event)\"\n [(ngModel)]=\"column.freetextFilter\"\n keepFilterFocused\n #filterInput\n />\n </novo-option>\n <novo-option\n [ngClass]=\"{ active: isFilterActive(column, option) }\"\n *ngFor=\"let option of column.options\"\n (click)=\"onFilterClick(column, option)\"\n [attr.data-automation-id]=\"getOptionDataAutomationId(option)\"\n >\n <span>{{ option?.label || option }}</span> <i class=\"bhi-check\" *ngIf=\"isFilterActive(column, option)\"></i>\n </novo-option>\n </novo-optgroup>\n <!-- FILTER SEARCH INPUT -->\n <novo-optgroup *ngIf=\"!(column?.options?.length || column?.originalOptions?.length) && toggledDropdownMap[column.name]\">\n <novo-option class=\"filter-search\" inert>\n <div class=\"header\">\n <span>{{ labels.filters }}</span>\n <novo-button theme=\"dialogue\" color=\"negative\" icon=\"times\" (click)=\"onFilterClear(column)\" *ngIf=\"column.filter\">\n {{ labels.clear }}\n </novo-button>\n </div>\n <input\n type=\"text\"\n [attr.id]=\"column.name + '-input'\"\n [novoTableFilter]=\"column\"\n (onFilterChange)=\"onFilterChange($event)\"\n [(ngModel)]=\"column.filter\"\n keepFilterFocused\n #filterInput\n />\n </novo-option>\n </novo-optgroup>\n <!-- FILTER DATE OPTIONS -->\n <novo-optgroup *ngIf=\"column?.options?.length && column?.type === 'date' && toggledDropdownMap[column.name]\">\n <novo-option class=\"filter-search\" *ngIf=\"!column.calenderShow\" inert>\n <div class=\"header\">\n <span>{{ labels.filters }}</span>\n <novo-button theme=\"dialogue\" color=\"negative\" icon=\"times\" (click)=\"onFilterClear(column)\" *ngIf=\"column.filter\">\n {{ labels.clear }}\n </novo-button>\n </div>\n </novo-option>\n <novo-option\n [class.active]=\"isFilterActive(column, option)\"\n *ngFor=\"let option of column.options\"\n (click)=\"onFilterClick(column, option)\"\n [keepOpen]=\"option.range\"\n [hidden]=\"column.calenderShow\"\n [attr.data-automation-id]=\"option?.label || option\"\n >\n {{ option?.label || option }}\n <novo-icon novoSuffix color=\"positive\" *ngIf=\"isFilterActive(column, option)\">check</novo-icon>\n </novo-option>\n <novo-option class=\"calendar-container\" *ngIf=\"column.calenderShow\" keepOpen inert>\n <novo-stack>\n <div class=\"back-link\" (click)=\"column.calenderShow = false\">\n <i class=\"bhi-previous\"></i>{{ labels.backToPresetFilters }}\n </div>\n <novo-date-picker\n (onSelect)=\"onCalenderSelect(column, $event)\"\n [(ngModel)]=\"column.filter\"\n mode=\"range\"\n ></novo-date-picker>\n </novo-stack>\n </novo-option>\n </novo-optgroup>\n </novo-dropdown>\n </div>\n </th>\n </tr>\n </thead>\n <!-- TABLE DATA -->\n <tbody *ngIf=\"!dataProvider.isEmpty() || editing\">\n <tr\n class=\"table-selection-row\"\n *ngIf=\"config.rowSelectionStyle === 'checkbox' && showSelectAllMessage && config.selectAllEnabled\"\n data-automation-id=\"table-selection-row\"\n >\n <td colspan=\"100%\">\n {{ labels.selectedRecords(selected.length) }}\n <a (click)=\"selectAll(true)\" data-automation-id=\"all-matching-records\">{{ labels.totalRecords(dataProvider.total) }}</a>\n </td>\n </tr>\n <ng-template ngFor let-row=\"$implicit\" let-i=\"index\" [ngForOf]=\"rows\">\n <tr\n class=\"table-row\"\n [ngClass]=\"row.customClass || ''\"\n [id]=\"name + '-' + row[rowIdentifier]\"\n [attr.data-automation-id]=\"row.id\"\n (click)=\"rowClickHandler(row)\"\n [class.active]=\"row.id === activeId\"\n >\n <td class=\"row-actions\" *ngIf=\"config.hasDetails\">\n <novo-button theme=\"icon\" icon=\"next\" (click)=\"row._expanded = !row._expanded\" *ngIf=\"!row._expanded\"></novo-button>\n <novo-button theme=\"icon\" icon=\"sort-desc\" (click)=\"row._expanded = !row._expanded\" *ngIf=\"row._expanded\"></novo-button>\n </td>\n <td class=\"row-actions checkbox\" *ngIf=\"config.rowSelectionStyle === 'checkbox'\">\n <novo-checkbox\n [(ngModel)]=\"row._selected\"\n (ngModelChange)=\"rowSelectHandler(row)\"\n data-automation-id=\"select-row-checkbox\"\n ></novo-checkbox>\n </td>\n <td\n *ngFor=\"let column of columns\"\n [attr.data-automation-id]=\"column.id || column.name\"\n [class.novo-form-row]=\"editable\"\n [hidden]=\"isColumnHidden(column)\"\n >\n <novo-table-cell\n *ngIf=\"row._editing && !row._editing[column.name]\"\n [hasEditor]=\"editable\"\n [column]=\"column\"\n [row]=\"row\"\n [form]=\"getRowControlForm(i)\"\n ></novo-table-cell>\n <novo-control\n *ngIf=\"row._editing && row._editing[column.name]\"\n condensed=\"true\"\n [form]=\"getRowControlForm(i)\"\n [control]=\"row.controls[column.name]\"\n ></novo-control>\n </td>\n </tr>\n <tr\n class=\"details-row\"\n *ngIf=\"config.hasDetails\"\n [hidden]=\"!row._expanded\"\n [attr.data-automation-id]=\"'details-row-' + row.id\"\n >\n <td class=\"row-actions\"></td>\n <td [attr.colspan]=\"config.rowSelectionStyle === 'checkbox' ? columns.length + 1 : columns.length\">\n <novo-row-details [data]=\"row\" [renderer]=\"config.detailsRenderer\"></novo-row-details>\n </td>\n </tr>\n </ng-template>\n </tbody>\n <!-- NO TABLE DATA PLACEHOLDER -->\n <tbody\n class=\"table-message\"\n *ngIf=\"dataProvider.isEmpty() && !dataProvider.isFiltered() && !editing\"\n data-automation-id=\"empty-table\"\n >\n <tr>\n <td colspan=\"100%\">\n <div #emptymessage><ng-content select=\"[table-empty-message]\"></ng-content></div>\n <div class=\"table-empty-message\" *ngIf=\"emptymessage.childNodes.length == 0\">\n <h4><i class=\"bhi-search-question\"></i> {{ labels.emptyTableMessage }}</h4>\n </div>\n </td>\n </tr>\n </tbody>\n <!-- NO MATCHING RECORDS -->\n <tbody class=\"table-message\" *ngIf=\"dataProvider.isEmpty() && dataProvider.isFiltered()\" data-automation-id=\"empty-table\">\n <tr>\n <td colspan=\"100%\">\n <div #nomatchmessage><ng-content select=\"[table-no-matching-records-message]\"></ng-content></div>\n <div class=\"no-matching-records\" *ngIf=\"nomatchmessage.childNodes.length == 0\">\n <h4><i class=\"bhi-search-question\"></i> {{ labels.noMatchingRecordsMessage }}</h4>\n </div>\n </td>\n </tr>\n </tbody>\n <!-- TABLE DATA ERROR PLACEHOLDER -->\n <tbody class=\"table-message\" *ngIf=\"dataProvider.hasErrors()\" data-automation-id=\"table-errors\">\n <tr>\n <td colspan=\"100%\">\n <div #errormessage><ng-content select=\"[table-error-message]\"></ng-content></div>\n <div class=\"table-error-message\" *ngIf=\"errormessage.childNodes.length == 0\">\n <h4><i class=\"bhi-caution\"></i> {{ labels.erroredTableMessage }}</h4>\n </div>\n </td>\n </tr>\n </tbody>\n <tfoot *ngIf=\"!config.footers\" [ngClass]=\"dataProvider.length % 2 == 0 ? 'odd' : 'even'\">\n <tr>\n <td colspan=\"100%\">\n <ng-content select=\"novo-table-footer\"></ng-content>\n </td>\n </tr>\n </tfoot>\n <tfoot *ngFor=\"let footer of footers; let i = index\" class=\"novo-table-total-footer\">\n <tr>\n <td *ngFor=\"let column of columns\" [attr.data-automation-id]=\"(column.id || column.name) + '-total-' + i\">\n {{ footer[column.name] }}\n </td>\n </tr>\n </tfoot>\n </table>\n </novo-form>\n </div>\n "
|
|
52952
53444
|
},] }
|
|
52953
53445
|
];
|
|
52954
53446
|
NovoTableElement.ctorParameters = function () { return [
|
|
@@ -53011,6 +53503,10 @@
|
|
|
53011
53503
|
NovoCheckboxModule,
|
|
53012
53504
|
angular2TextMask.TextMaskModule,
|
|
53013
53505
|
angularImask.IMaskDirectiveModule,
|
|
53506
|
+
NovoOptionModule,
|
|
53507
|
+
NovoCommonModule,
|
|
53508
|
+
NovoFlexModule,
|
|
53509
|
+
NovoIconModule,
|
|
53014
53510
|
],
|
|
53015
53511
|
declarations: [NovoTableElement],
|
|
53016
53512
|
exports: [NovoTableElement],
|
|
@@ -53061,7 +53557,7 @@
|
|
|
53061
53557
|
},
|
|
53062
53558
|
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
53063
53559
|
encapsulation: i0.ViewEncapsulation.None,
|
|
53064
|
-
styles: [".novo-toolbar .novo-toolbar-row,.novo-toolbar.novo-toolbar-single-row{align-items:center;background-color:var(--background-bright);box-sizing:border-box;color:var(--text-main);display:flex;flex-direction:row;min-height:5rem;padding:0 1rem;white-space:nowrap;width:100%}.novo-toolbar .novo-toolbar-row .novo-divider.novo-divider-vertical,.novo-toolbar .novo-toolbar-row novo-nav,.novo-toolbar .novo-toolbar-row novo-tab,.novo-toolbar.novo-toolbar-single-row .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row novo-nav,.novo-toolbar.novo-toolbar-single-row novo-tab{height:inherit;min-height:inherit}.novo-toolbar .novo-toolbar-row.novo-color-black,.novo-toolbar.novo-toolbar-single-row.novo-color-black{background:#000;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-black>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-black .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-black .novo-divider.novo-divider-vertical{border-right-color:#333}.novo-toolbar .novo-toolbar-row.novo-accent-black,.novo-toolbar.novo-toolbar-single-row.novo-accent-black{border-bottom:2px solid #000}.novo-toolbar .novo-toolbar-row.novo-color-white,.novo-toolbar.novo-toolbar-single-row.novo-color-white{background:#fff;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-white>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-white .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-white .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-white,.novo-toolbar.novo-toolbar-single-row.novo-accent-white{border-bottom:2px solid #fff}.novo-toolbar .novo-toolbar-row.novo-color-gray,.novo-toolbar.novo-toolbar-single-row.novo-color-gray{background:#9e9e9e;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-gray .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-gray .novo-divider.novo-divider-vertical{border-right-color:#b1b1b1}.novo-toolbar .novo-toolbar-row.novo-accent-gray,.novo-toolbar.novo-toolbar-single-row.novo-accent-gray{border-bottom:2px solid #9e9e9e}.novo-toolbar .novo-toolbar-row.novo-color-grey,.novo-toolbar.novo-toolbar-single-row.novo-color-grey{background:#9e9e9e;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-grey .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-grey .novo-divider.novo-divider-vertical{border-right-color:#b1b1b1}.novo-toolbar .novo-toolbar-row.novo-accent-grey,.novo-toolbar.novo-toolbar-single-row.novo-accent-grey{border-bottom:2px solid #9e9e9e}.novo-toolbar .novo-toolbar-row.novo-color-offWhite,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite{background:#f7f7f7;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-offWhite .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite .novo-divider.novo-divider-vertical{border-right-color:#f8f8f8}.novo-toolbar .novo-toolbar-row.novo-accent-offWhite,.novo-toolbar.novo-toolbar-single-row.novo-accent-offWhite{border-bottom:2px solid #f7f7f7}.novo-toolbar .novo-toolbar-row.novo-color-bright,.novo-toolbar.novo-toolbar-single-row.novo-color-bright{background:#f7f7f7;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-bright .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-bright .novo-divider.novo-divider-vertical{border-right-color:#f8f8f8}.novo-toolbar .novo-toolbar-row.novo-accent-bright,.novo-toolbar.novo-toolbar-single-row.novo-accent-bright{border-bottom:2px solid #f7f7f7}.novo-toolbar .novo-toolbar-row.novo-color-light,.novo-toolbar.novo-toolbar-single-row.novo-color-light{background:#dbdbdb;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-light>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-light .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-light .novo-divider.novo-divider-vertical{border-right-color:#e2e2e2}.novo-toolbar .novo-toolbar-row.novo-accent-light,.novo-toolbar.novo-toolbar-single-row.novo-accent-light{border-bottom:2px solid #dbdbdb}.novo-toolbar .novo-toolbar-row.novo-color-neutral,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral{background:#4f5361;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-neutral .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral .novo-divider.novo-divider-vertical{border-right-color:#727580}.novo-toolbar .novo-toolbar-row.novo-accent-neutral,.novo-toolbar.novo-toolbar-single-row.novo-accent-neutral{border-bottom:2px solid #4f5361}.novo-toolbar .novo-toolbar-row.novo-color-dark,.novo-toolbar.novo-toolbar-single-row.novo-color-dark{background:#3d464d;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-dark .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-dark .novo-divider.novo-divider-vertical{border-right-color:#636b70}.novo-toolbar .novo-toolbar-row.novo-accent-dark,.novo-toolbar.novo-toolbar-single-row.novo-accent-dark{border-bottom:2px solid #3d464d}.novo-toolbar .novo-toolbar-row.novo-color-orange,.novo-toolbar.novo-toolbar-single-row.novo-color-orange{background:#ff6900;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-orange .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-orange .novo-divider.novo-divider-vertical{border-right-color:#ff8733}.novo-toolbar .novo-toolbar-row.novo-accent-orange,.novo-toolbar.novo-toolbar-single-row.novo-accent-orange{border-bottom:2px solid #ff6900}.novo-toolbar .novo-toolbar-row.novo-color-navigation,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation{background:#202b38;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-navigation .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation .novo-divider.novo-divider-vertical{border-right-color:#4c555f}.novo-toolbar .novo-toolbar-row.novo-accent-navigation,.novo-toolbar.novo-toolbar-single-row.novo-accent-navigation{border-bottom:2px solid #202b38}.novo-toolbar .novo-toolbar-row.novo-color-skyBlue,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue{background:#009bdf;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-skyBlue .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue .novo-divider.novo-divider-vertical{border-right-color:#33afe5}.novo-toolbar .novo-toolbar-row.novo-accent-skyBlue,.novo-toolbar.novo-toolbar-single-row.novo-accent-skyBlue{border-bottom:2px solid #009bdf}.novo-toolbar .novo-toolbar-row.novo-color-steel,.novo-toolbar.novo-toolbar-single-row.novo-color-steel{background:#5b6770;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-steel .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-steel .novo-divider.novo-divider-vertical{border-right-color:#7b858c}.novo-toolbar .novo-toolbar-row.novo-accent-steel,.novo-toolbar.novo-toolbar-single-row.novo-accent-steel{border-bottom:2px solid #5b6770}.novo-toolbar .novo-toolbar-row.novo-color-metal,.novo-toolbar.novo-toolbar-single-row.novo-color-metal{background:#637893;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-metal .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-metal .novo-divider.novo-divider-vertical{border-right-color:#8293a8}.novo-toolbar .novo-toolbar-row.novo-accent-metal,.novo-toolbar.novo-toolbar-single-row.novo-accent-metal{border-bottom:2px solid #637893}.novo-toolbar .novo-toolbar-row.novo-color-sand,.novo-toolbar.novo-toolbar-single-row.novo-color-sand{background:#f4f4f4;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-sand .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-sand .novo-divider.novo-divider-vertical{border-right-color:#f6f6f6}.novo-toolbar .novo-toolbar-row.novo-accent-sand,.novo-toolbar.novo-toolbar-single-row.novo-accent-sand{border-bottom:2px solid #f4f4f4}.novo-toolbar .novo-toolbar-row.novo-color-silver,.novo-toolbar.novo-toolbar-single-row.novo-color-silver{background:#e2e2e2;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-silver .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-silver .novo-divider.novo-divider-vertical{border-right-color:#e7e7e7}.novo-toolbar .novo-toolbar-row.novo-accent-silver,.novo-toolbar.novo-toolbar-single-row.novo-accent-silver{border-bottom:2px solid #e2e2e2}.novo-toolbar .novo-toolbar-row.novo-color-stone,.novo-toolbar.novo-toolbar-single-row.novo-color-stone{background:#bebebe;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-stone .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-stone .novo-divider.novo-divider-vertical{border-right-color:#cbcbcb}.novo-toolbar .novo-toolbar-row.novo-accent-stone,.novo-toolbar.novo-toolbar-single-row.novo-accent-stone{border-bottom:2px solid #bebebe}.novo-toolbar .novo-toolbar-row.novo-color-ash,.novo-toolbar.novo-toolbar-single-row.novo-color-ash{background:#a0a0a0;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-ash .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-ash .novo-divider.novo-divider-vertical{border-right-color:#b3b3b3}.novo-toolbar .novo-toolbar-row.novo-accent-ash,.novo-toolbar.novo-toolbar-single-row.novo-accent-ash{border-bottom:2px solid #a0a0a0}.novo-toolbar .novo-toolbar-row.novo-color-slate,.novo-toolbar.novo-toolbar-single-row.novo-color-slate{background:#707070;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-slate .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-slate .novo-divider.novo-divider-vertical{border-right-color:#8c8c8c}.novo-toolbar .novo-toolbar-row.novo-accent-slate,.novo-toolbar.novo-toolbar-single-row.novo-accent-slate{border-bottom:2px solid #707070}.novo-toolbar .novo-toolbar-row.novo-color-onyx,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx{background:#526980;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-onyx .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx .novo-divider.novo-divider-vertical{border-right-color:#748799}.novo-toolbar .novo-toolbar-row.novo-accent-onyx,.novo-toolbar.novo-toolbar-single-row.novo-accent-onyx{border-bottom:2px solid #526980}.novo-toolbar .novo-toolbar-row.novo-color-charcoal,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal{background:#282828;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-charcoal .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal .novo-divider.novo-divider-vertical{border-right-color:#535353}.novo-toolbar .novo-toolbar-row.novo-accent-charcoal,.novo-toolbar.novo-toolbar-single-row.novo-accent-charcoal{border-bottom:2px solid #282828}.novo-toolbar .novo-toolbar-row.novo-color-moonlight,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight{background:#1a242f;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-moonlight .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight .novo-divider.novo-divider-vertical{border-right-color:#474f58}.novo-toolbar .novo-toolbar-row.novo-accent-moonlight,.novo-toolbar.novo-toolbar-single-row.novo-accent-moonlight{border-bottom:2px solid #1a242f}.novo-toolbar .novo-toolbar-row.novo-color-midnight,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight{background:#202b38;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-midnight .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight .novo-divider.novo-divider-vertical{border-right-color:#4c555f}.novo-toolbar .novo-toolbar-row.novo-accent-midnight,.novo-toolbar.novo-toolbar-single-row.novo-accent-midnight{border-bottom:2px solid #202b38}.novo-toolbar .novo-toolbar-row.novo-color-darkness,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness{background:#161f27;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-darkness .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness .novo-divider.novo-divider-vertical{border-right-color:#444b52}.novo-toolbar .novo-toolbar-row.novo-accent-darkness,.novo-toolbar.novo-toolbar-single-row.novo-accent-darkness{border-bottom:2px solid #161f27}.novo-toolbar .novo-toolbar-row.novo-color-navy,.novo-toolbar.novo-toolbar-single-row.novo-color-navy{background:#0d2d42;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-navy .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-navy .novo-divider.novo-divider-vertical{border-right-color:#3d5767}.novo-toolbar .novo-toolbar-row.novo-accent-navy,.novo-toolbar.novo-toolbar-single-row.novo-accent-navy{border-bottom:2px solid #0d2d42}.novo-toolbar .novo-toolbar-row.novo-color-aqua,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua{background:#3bafda;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-aqua .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua .novo-divider.novo-divider-vertical{border-right-color:#62bfe1}.novo-toolbar .novo-toolbar-row.novo-accent-aqua,.novo-toolbar.novo-toolbar-single-row.novo-accent-aqua{border-bottom:2px solid #3bafda}.novo-toolbar .novo-toolbar-row.novo-color-ocean,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean{background:#4a89dc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-ocean .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean .novo-divider.novo-divider-vertical{border-right-color:#6ea0e3}.novo-toolbar .novo-toolbar-row.novo-accent-ocean,.novo-toolbar.novo-toolbar-single-row.novo-accent-ocean{border-bottom:2px solid #4a89dc}.novo-toolbar .novo-toolbar-row.novo-color-mint,.novo-toolbar.novo-toolbar-single-row.novo-color-mint{background:#37bc9b;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-mint .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-mint .novo-divider.novo-divider-vertical{border-right-color:#5fc9af}.novo-toolbar .novo-toolbar-row.novo-accent-mint,.novo-toolbar.novo-toolbar-single-row.novo-accent-mint{border-bottom:2px solid #37bc9b}.novo-toolbar .novo-toolbar-row.novo-color-grass,.novo-toolbar.novo-toolbar-single-row.novo-color-grass{background:#8cc152;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-grass .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-grass .novo-divider.novo-divider-vertical{border-right-color:#a3cd74}.novo-toolbar .novo-toolbar-row.novo-accent-grass,.novo-toolbar.novo-toolbar-single-row.novo-accent-grass{border-bottom:2px solid #8cc152}.novo-toolbar .novo-toolbar-row.novo-color-sunflower,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower{background:#f6b042;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-sunflower .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower .novo-divider.novo-divider-vertical{border-right-color:#f7bf67}.novo-toolbar .novo-toolbar-row.novo-accent-sunflower,.novo-toolbar.novo-toolbar-single-row.novo-accent-sunflower{border-bottom:2px solid #f6b042}.novo-toolbar .novo-toolbar-row.novo-color-bittersweet,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet{background:#eb6845;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-bittersweet .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet .novo-divider.novo-divider-vertical{border-right-color:#ef866a}.novo-toolbar .novo-toolbar-row.novo-accent-bittersweet,.novo-toolbar.novo-toolbar-single-row.novo-accent-bittersweet{border-bottom:2px solid #eb6845}.novo-toolbar .novo-toolbar-row.novo-color-grapefruit,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit{background:#da4453;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-grapefruit .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit .novo-divider.novo-divider-vertical{border-right-color:#e16975}.novo-toolbar .novo-toolbar-row.novo-accent-grapefruit,.novo-toolbar.novo-toolbar-single-row.novo-accent-grapefruit{border-bottom:2px solid #da4453}.novo-toolbar .novo-toolbar-row.novo-color-carnation,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation{background:#d770ad;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-carnation .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation .novo-divider.novo-divider-vertical{border-right-color:#df8cbd}.novo-toolbar .novo-toolbar-row.novo-accent-carnation,.novo-toolbar.novo-toolbar-single-row.novo-accent-carnation{border-bottom:2px solid #d770ad}.novo-toolbar .novo-toolbar-row.novo-color-lavender,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender{background:#967adc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-lavender .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender .novo-divider.novo-divider-vertical{border-right-color:#ab94e3}.novo-toolbar .novo-toolbar-row.novo-accent-lavender,.novo-toolbar.novo-toolbar-single-row.novo-accent-lavender{border-bottom:2px solid #967adc}.novo-toolbar .novo-toolbar-row.novo-color-mountain,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain{background:#9678b6;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-mountain .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain .novo-divider.novo-divider-vertical{border-right-color:#ab93c4}.novo-toolbar .novo-toolbar-row.novo-accent-mountain,.novo-toolbar.novo-toolbar-single-row.novo-accent-mountain{border-bottom:2px solid #9678b6}.novo-toolbar .novo-toolbar-row.novo-color-info,.novo-toolbar.novo-toolbar-single-row.novo-color-info{background:#4a89dc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-info>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-info>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-info>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-info>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-info>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-info>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-info .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-info .novo-divider.novo-divider-vertical{border-right-color:#6ea0e3}.novo-toolbar .novo-toolbar-row.novo-accent-info,.novo-toolbar.novo-toolbar-single-row.novo-accent-info{border-bottom:2px solid #4a89dc}.novo-toolbar .novo-toolbar-row.novo-color-positive,.novo-toolbar.novo-toolbar-single-row.novo-color-positive{background:#4a89dc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-positive .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-positive .novo-divider.novo-divider-vertical{border-right-color:#6ea0e3}.novo-toolbar .novo-toolbar-row.novo-accent-positive,.novo-toolbar.novo-toolbar-single-row.novo-accent-positive{border-bottom:2px solid #4a89dc}.novo-toolbar .novo-toolbar-row.novo-color-success,.novo-toolbar.novo-toolbar-single-row.novo-color-success{background:#8cc152;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-success>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-success .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-success .novo-divider.novo-divider-vertical{border-right-color:#a3cd74}.novo-toolbar .novo-toolbar-row.novo-accent-success,.novo-toolbar.novo-toolbar-single-row.novo-accent-success{border-bottom:2px solid #8cc152}.novo-toolbar .novo-toolbar-row.novo-color-negative,.novo-toolbar.novo-toolbar-single-row.novo-color-negative{background:#da4453;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-negative .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-negative .novo-divider.novo-divider-vertical{border-right-color:#e16975}.novo-toolbar .novo-toolbar-row.novo-accent-negative,.novo-toolbar.novo-toolbar-single-row.novo-accent-negative{border-bottom:2px solid #da4453}.novo-toolbar .novo-toolbar-row.novo-color-danger,.novo-toolbar.novo-toolbar-single-row.novo-color-danger{background:#da4453;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-danger .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-danger .novo-divider.novo-divider-vertical{border-right-color:#e16975}.novo-toolbar .novo-toolbar-row.novo-accent-danger,.novo-toolbar.novo-toolbar-single-row.novo-accent-danger{border-bottom:2px solid #da4453}.novo-toolbar .novo-toolbar-row.novo-color-error,.novo-toolbar.novo-toolbar-single-row.novo-color-error{background:#da4453;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-error>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-error>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-error>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-error>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-error>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-error>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-error .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-error .novo-divider.novo-divider-vertical{border-right-color:#e16975}.novo-toolbar .novo-toolbar-row.novo-accent-error,.novo-toolbar.novo-toolbar-single-row.novo-accent-error{border-bottom:2px solid #da4453}.novo-toolbar .novo-toolbar-row.novo-color-warning,.novo-toolbar.novo-toolbar-single-row.novo-color-warning{background:#f6b042;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-warning .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-warning .novo-divider.novo-divider-vertical{border-right-color:#f7bf67}.novo-toolbar .novo-toolbar-row.novo-accent-warning,.novo-toolbar.novo-toolbar-single-row.novo-accent-warning{border-bottom:2px solid #f6b042}.novo-toolbar .novo-toolbar-row.novo-color-empty,.novo-toolbar.novo-toolbar-single-row.novo-color-empty{background:#cccdcc;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-empty .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-empty .novo-divider.novo-divider-vertical{border-right-color:#d6d7d6}.novo-toolbar .novo-toolbar-row.novo-accent-empty,.novo-toolbar.novo-toolbar-single-row.novo-accent-empty{border-bottom:2px solid #cccdcc}.novo-toolbar .novo-toolbar-row.novo-color-disabled,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled{background:#bebebe;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-disabled .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled .novo-divider.novo-divider-vertical{border-right-color:#cbcbcb}.novo-toolbar .novo-toolbar-row.novo-accent-disabled,.novo-toolbar.novo-toolbar-single-row.novo-accent-disabled{border-bottom:2px solid #bebebe}.novo-toolbar .novo-toolbar-row.novo-color-background,.novo-toolbar.novo-toolbar-single-row.novo-color-background{background:#f7f7f7;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-background>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-background .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-background .novo-divider.novo-divider-vertical{border-right-color:#f8f8f8}.novo-toolbar .novo-toolbar-row.novo-accent-background,.novo-toolbar.novo-toolbar-single-row.novo-accent-background{border-bottom:2px solid #f7f7f7}.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark{background:#e2e2e2;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark .novo-divider.novo-divider-vertical{border-right-color:#e7e7e7}.novo-toolbar .novo-toolbar-row.novo-accent-backgroundDark,.novo-toolbar.novo-toolbar-single-row.novo-accent-backgroundDark{border-bottom:2px solid #e2e2e2}.novo-toolbar .novo-toolbar-row.novo-color-presentation,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation{background:#5b6770;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-presentation .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation .novo-divider.novo-divider-vertical{border-right-color:#7b858c}.novo-toolbar .novo-toolbar-row.novo-accent-presentation,.novo-toolbar.novo-toolbar-single-row.novo-accent-presentation{border-bottom:2px solid #5b6770}.novo-toolbar .novo-toolbar-row.novo-color-bullhorn,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn{background:#ff6900;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-bullhorn .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn .novo-divider.novo-divider-vertical{border-right-color:#ff8733}.novo-toolbar .novo-toolbar-row.novo-accent-bullhorn,.novo-toolbar.novo-toolbar-single-row.novo-accent-bullhorn{border-bottom:2px solid #ff6900}.novo-toolbar .novo-toolbar-row.novo-color-pulse,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse{background:#3bafda;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-pulse .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse .novo-divider.novo-divider-vertical{border-right-color:#62bfe1}.novo-toolbar .novo-toolbar-row.novo-accent-pulse,.novo-toolbar.novo-toolbar-single-row.novo-accent-pulse{border-bottom:2px solid #3bafda}.novo-toolbar .novo-toolbar-row.novo-color-company,.novo-toolbar.novo-toolbar-single-row.novo-color-company{background:#39d;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-company>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-company .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-company .novo-divider.novo-divider-vertical{border-right-color:#5bade3}.novo-toolbar .novo-toolbar-row.novo-accent-company,.novo-toolbar.novo-toolbar-single-row.novo-accent-company{border-bottom:2px solid #39d}.novo-toolbar .novo-toolbar-row.novo-color-candidate,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate{background:#4b7;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-candidate .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate .novo-divider.novo-divider-vertical{border-right-color:#69c892}.novo-toolbar .novo-toolbar-row.novo-accent-candidate,.novo-toolbar.novo-toolbar-single-row.novo-accent-candidate{border-bottom:2px solid #4b7}.novo-toolbar .novo-toolbar-row.novo-color-lead,.novo-toolbar.novo-toolbar-single-row.novo-color-lead{background:#a69;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-lead .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-lead .novo-divider.novo-divider-vertical{border-right-color:#bb84ad}.novo-toolbar .novo-toolbar-row.novo-accent-lead,.novo-toolbar.novo-toolbar-single-row.novo-accent-lead{border-bottom:2px solid #a69}.novo-toolbar .novo-toolbar-row.novo-color-contact,.novo-toolbar.novo-toolbar-single-row.novo-color-contact{background:#fa4;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-contact .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-contact .novo-divider.novo-divider-vertical{border-right-color:#ffbb69}.novo-toolbar .novo-toolbar-row.novo-accent-contact,.novo-toolbar.novo-toolbar-single-row.novo-accent-contact{border-bottom:2px solid #fa4}.novo-toolbar .novo-toolbar-row.novo-color-opportunity,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity{background:#625;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-opportunity .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity .novo-divider.novo-divider-vertical{border-right-color:#844e77}.novo-toolbar .novo-toolbar-row.novo-accent-opportunity,.novo-toolbar.novo-toolbar-single-row.novo-accent-opportunity{border-bottom:2px solid #625}.novo-toolbar .novo-toolbar-row.novo-color-job,.novo-toolbar.novo-toolbar-single-row.novo-color-job{background:#b56;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-job>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-job .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-job .novo-divider.novo-divider-vertical{border-right-color:#c87784}.novo-toolbar .novo-toolbar-row.novo-accent-job,.novo-toolbar.novo-toolbar-single-row.novo-accent-job{border-bottom:2px solid #b56}.novo-toolbar .novo-toolbar-row.novo-color-submission,.novo-toolbar.novo-toolbar-single-row.novo-color-submission{background:#a9adbb;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-submission .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-submission .novo-divider.novo-divider-vertical{border-right-color:#babdc8}.novo-toolbar .novo-toolbar-row.novo-accent-submission,.novo-toolbar.novo-toolbar-single-row.novo-accent-submission{border-bottom:2px solid #a9adbb}.novo-toolbar .novo-toolbar-row.novo-color-sendout,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout{background:#747884;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-sendout .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout .novo-divider.novo-divider-vertical{border-right-color:#8f939c}.novo-toolbar .novo-toolbar-row.novo-accent-sendout,.novo-toolbar.novo-toolbar-single-row.novo-accent-sendout{border-bottom:2px solid #747884}.novo-toolbar .novo-toolbar-row.novo-color-placement,.novo-toolbar.novo-toolbar-single-row.novo-color-placement{background:#0b344f;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-placement .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-placement .novo-divider.novo-divider-vertical{border-right-color:#3b5c72}.novo-toolbar .novo-toolbar-row.novo-accent-placement,.novo-toolbar.novo-toolbar-single-row.novo-accent-placement{border-bottom:2px solid #0b344f}.novo-toolbar .novo-toolbar-row.novo-color-note,.novo-toolbar.novo-toolbar-single-row.novo-color-note{background:#747884;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-note>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-note .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-note .novo-divider.novo-divider-vertical{border-right-color:#8f939c}.novo-toolbar .novo-toolbar-row.novo-accent-note,.novo-toolbar.novo-toolbar-single-row.novo-accent-note{border-bottom:2px solid #747884}.novo-toolbar .novo-toolbar-row.novo-color-contract,.novo-toolbar.novo-toolbar-single-row.novo-color-contract{background:#454ea0;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-contract .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-contract .novo-divider.novo-divider-vertical{border-right-color:#6a71b3}.novo-toolbar .novo-toolbar-row.novo-accent-contract,.novo-toolbar.novo-toolbar-single-row.novo-accent-contract{border-bottom:2px solid #454ea0}.novo-toolbar .novo-toolbar-row.novo-color-jobCode,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-jobCode .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode .novo-divider.novo-divider-vertical{border-right-color:#878a93}.novo-toolbar .novo-toolbar-row.novo-accent-jobCode,.novo-toolbar.novo-toolbar-single-row.novo-accent-jobCode{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-earnCode,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-earnCode .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode .novo-divider.novo-divider-vertical{border-right-color:#878a93}.novo-toolbar .novo-toolbar-row.novo-accent-earnCode,.novo-toolbar.novo-toolbar-single-row.novo-accent-earnCode{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement .novo-divider.novo-divider-vertical{border-right-color:#878a93}.novo-toolbar .novo-toolbar-row.novo-accent-invoiceStatement,.novo-toolbar.novo-toolbar-single-row.novo-accent-invoiceStatement{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-billableCharge,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-billableCharge .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge .novo-divider.novo-divider-vertical{border-right-color:#878a93}.novo-toolbar .novo-toolbar-row.novo-accent-billableCharge,.novo-toolbar.novo-toolbar-single-row.novo-accent-billableCharge{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-payableCharge,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-payableCharge .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge .novo-divider.novo-divider-vertical{border-right-color:#878a93}.novo-toolbar .novo-toolbar-row.novo-accent-payableCharge,.novo-toolbar.novo-toolbar-single-row.novo-accent-payableCharge{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-user,.novo-toolbar.novo-toolbar-single-row.novo-color-user{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-user>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-user .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-user .novo-divider.novo-divider-vertical{border-right-color:#878a93}.novo-toolbar .novo-toolbar-row.novo-accent-user,.novo-toolbar.novo-toolbar-single-row.novo-accent-user{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-corporateUser,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-corporateUser .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser .novo-divider.novo-divider-vertical{border-right-color:#878a93}.novo-toolbar .novo-toolbar-row.novo-accent-corporateUser,.novo-toolbar.novo-toolbar-single-row.novo-accent-corporateUser{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-distributionList,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-distributionList .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList .novo-divider.novo-divider-vertical{border-right-color:#878a93}.novo-toolbar .novo-toolbar-row.novo-accent-distributionList,.novo-toolbar.novo-toolbar-single-row.novo-accent-distributionList{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-credential,.novo-toolbar.novo-toolbar-single-row.novo-color-credential{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-credential .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-credential .novo-divider.novo-divider-vertical{border-right-color:#878a93}.novo-toolbar .novo-toolbar-row.novo-accent-credential,.novo-toolbar.novo-toolbar-single-row.novo-accent-credential{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-person,.novo-toolbar.novo-toolbar-single-row.novo-color-person{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-person>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-person .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-person .novo-divider.novo-divider-vertical{border-right-color:#878a93}.novo-toolbar .novo-toolbar-row.novo-accent-person,.novo-toolbar.novo-toolbar-single-row.novo-accent-person{border-bottom:2px solid #696d79}.novo-toolbar.novo-toolbar-multiple-rows{box-sizing:border-box;display:flex;flex-direction:column;width:100%}"]
|
|
53560
|
+
styles: [".novo-toolbar .novo-toolbar-row,.novo-toolbar.novo-toolbar-single-row{align-items:center;background-color:var(--background-bright);box-sizing:border-box;color:var(--text-main);display:flex;flex-direction:row;min-height:5rem;padding:0 1rem;white-space:nowrap;width:100%}.novo-toolbar .novo-toolbar-row .novo-divider.novo-divider-vertical,.novo-toolbar .novo-toolbar-row novo-nav,.novo-toolbar .novo-toolbar-row novo-tab,.novo-toolbar.novo-toolbar-single-row .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row novo-nav,.novo-toolbar.novo-toolbar-single-row novo-tab{height:inherit;min-height:inherit}.novo-toolbar .novo-toolbar-row.novo-color-black,.novo-toolbar.novo-toolbar-single-row.novo-color-black{background:#000;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-black>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-black .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-black .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-black,.novo-toolbar.novo-toolbar-single-row.novo-accent-black{border-bottom:2px solid #000}.novo-toolbar .novo-toolbar-row.novo-color-white,.novo-toolbar.novo-toolbar-single-row.novo-color-white{background:#fff;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-white>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-white .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-white .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-white,.novo-toolbar.novo-toolbar-single-row.novo-accent-white{border-bottom:2px solid #fff}.novo-toolbar .novo-toolbar-row.novo-color-gray,.novo-toolbar.novo-toolbar-single-row.novo-color-gray{background:#9e9e9e;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-gray .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-gray .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-gray,.novo-toolbar.novo-toolbar-single-row.novo-accent-gray{border-bottom:2px solid #9e9e9e}.novo-toolbar .novo-toolbar-row.novo-color-grey,.novo-toolbar.novo-toolbar-single-row.novo-color-grey{background:#9e9e9e;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-grey .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-grey .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-grey,.novo-toolbar.novo-toolbar-single-row.novo-accent-grey{border-bottom:2px solid #9e9e9e}.novo-toolbar .novo-toolbar-row.novo-color-offWhite,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite{background:#f7f7f7;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-offWhite .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-offWhite,.novo-toolbar.novo-toolbar-single-row.novo-accent-offWhite{border-bottom:2px solid #f7f7f7}.novo-toolbar .novo-toolbar-row.novo-color-bright,.novo-toolbar.novo-toolbar-single-row.novo-color-bright{background:#f7f7f7;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-bright .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-bright .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-bright,.novo-toolbar.novo-toolbar-single-row.novo-accent-bright{border-bottom:2px solid #f7f7f7}.novo-toolbar .novo-toolbar-row.novo-color-light,.novo-toolbar.novo-toolbar-single-row.novo-color-light{background:#dbdbdb;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-light>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-light .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-light .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-light,.novo-toolbar.novo-toolbar-single-row.novo-accent-light{border-bottom:2px solid #dbdbdb}.novo-toolbar .novo-toolbar-row.novo-color-neutral,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral{background:#4f5361;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-neutral .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-neutral,.novo-toolbar.novo-toolbar-single-row.novo-accent-neutral{border-bottom:2px solid #4f5361}.novo-toolbar .novo-toolbar-row.novo-color-dark,.novo-toolbar.novo-toolbar-single-row.novo-color-dark{background:#3d464d;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-dark .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-dark .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-dark,.novo-toolbar.novo-toolbar-single-row.novo-accent-dark{border-bottom:2px solid #3d464d}.novo-toolbar .novo-toolbar-row.novo-color-orange,.novo-toolbar.novo-toolbar-single-row.novo-color-orange{background:#ff6900;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-orange .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-orange .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-orange,.novo-toolbar.novo-toolbar-single-row.novo-accent-orange{border-bottom:2px solid #ff6900}.novo-toolbar .novo-toolbar-row.novo-color-navigation,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation{background:#202945;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-navigation .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-navigation,.novo-toolbar.novo-toolbar-single-row.novo-accent-navigation{border-bottom:2px solid #202945}.novo-toolbar .novo-toolbar-row.novo-color-skyBlue,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue{background:#009bdf;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-skyBlue .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-skyBlue,.novo-toolbar.novo-toolbar-single-row.novo-accent-skyBlue{border-bottom:2px solid #009bdf}.novo-toolbar .novo-toolbar-row.novo-color-steel,.novo-toolbar.novo-toolbar-single-row.novo-color-steel{background:#5b6770;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-steel .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-steel .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-steel,.novo-toolbar.novo-toolbar-single-row.novo-accent-steel{border-bottom:2px solid #5b6770}.novo-toolbar .novo-toolbar-row.novo-color-metal,.novo-toolbar.novo-toolbar-single-row.novo-color-metal{background:#637893;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-metal .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-metal .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-metal,.novo-toolbar.novo-toolbar-single-row.novo-accent-metal{border-bottom:2px solid #637893}.novo-toolbar .novo-toolbar-row.novo-color-sand,.novo-toolbar.novo-toolbar-single-row.novo-color-sand{background:#f4f4f4;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-sand .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-sand .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-sand,.novo-toolbar.novo-toolbar-single-row.novo-accent-sand{border-bottom:2px solid #f4f4f4}.novo-toolbar .novo-toolbar-row.novo-color-silver,.novo-toolbar.novo-toolbar-single-row.novo-color-silver{background:#e2e2e2;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-silver .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-silver .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-silver,.novo-toolbar.novo-toolbar-single-row.novo-accent-silver{border-bottom:2px solid #e2e2e2}.novo-toolbar .novo-toolbar-row.novo-color-stone,.novo-toolbar.novo-toolbar-single-row.novo-color-stone{background:#bebebe;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-stone .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-stone .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-stone,.novo-toolbar.novo-toolbar-single-row.novo-accent-stone{border-bottom:2px solid #bebebe}.novo-toolbar .novo-toolbar-row.novo-color-ash,.novo-toolbar.novo-toolbar-single-row.novo-color-ash{background:#a0a0a0;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-ash .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-ash .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-ash,.novo-toolbar.novo-toolbar-single-row.novo-accent-ash{border-bottom:2px solid #a0a0a0}.novo-toolbar .novo-toolbar-row.novo-color-slate,.novo-toolbar.novo-toolbar-single-row.novo-color-slate{background:#707070;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-slate .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-slate .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-slate,.novo-toolbar.novo-toolbar-single-row.novo-accent-slate{border-bottom:2px solid #707070}.novo-toolbar .novo-toolbar-row.novo-color-onyx,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx{background:#526980;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-onyx .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-onyx,.novo-toolbar.novo-toolbar-single-row.novo-accent-onyx{border-bottom:2px solid #526980}.novo-toolbar .novo-toolbar-row.novo-color-charcoal,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal{background:#282828;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-charcoal .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-charcoal,.novo-toolbar.novo-toolbar-single-row.novo-accent-charcoal{border-bottom:2px solid #282828}.novo-toolbar .novo-toolbar-row.novo-color-moonlight,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight{background:#1a242f;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-moonlight .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-moonlight,.novo-toolbar.novo-toolbar-single-row.novo-accent-moonlight{border-bottom:2px solid #1a242f}.novo-toolbar .novo-toolbar-row.novo-color-midnight,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight{background:#202945;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-midnight .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-midnight,.novo-toolbar.novo-toolbar-single-row.novo-accent-midnight{border-bottom:2px solid #202945}.novo-toolbar .novo-toolbar-row.novo-color-darkness,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness{background:#161f27;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-darkness .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-darkness,.novo-toolbar.novo-toolbar-single-row.novo-accent-darkness{border-bottom:2px solid #161f27}.novo-toolbar .novo-toolbar-row.novo-color-navy,.novo-toolbar.novo-toolbar-single-row.novo-color-navy{background:#0d2d42;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-navy .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-navy .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-navy,.novo-toolbar.novo-toolbar-single-row.novo-accent-navy{border-bottom:2px solid #0d2d42}.novo-toolbar .novo-toolbar-row.novo-color-aqua,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua{background:#3bafda;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-aqua .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-aqua,.novo-toolbar.novo-toolbar-single-row.novo-accent-aqua{border-bottom:2px solid #3bafda}.novo-toolbar .novo-toolbar-row.novo-color-ocean,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean{background:#4a89dc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-ocean .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-ocean,.novo-toolbar.novo-toolbar-single-row.novo-accent-ocean{border-bottom:2px solid #4a89dc}.novo-toolbar .novo-toolbar-row.novo-color-mint,.novo-toolbar.novo-toolbar-single-row.novo-color-mint{background:#37bc9b;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-mint .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-mint .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-mint,.novo-toolbar.novo-toolbar-single-row.novo-accent-mint{border-bottom:2px solid #37bc9b}.novo-toolbar .novo-toolbar-row.novo-color-grass,.novo-toolbar.novo-toolbar-single-row.novo-color-grass{background:#8cc152;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-grass .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-grass .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-grass,.novo-toolbar.novo-toolbar-single-row.novo-accent-grass{border-bottom:2px solid #8cc152}.novo-toolbar .novo-toolbar-row.novo-color-sunflower,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower{background:#f6b042;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-sunflower .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-sunflower,.novo-toolbar.novo-toolbar-single-row.novo-accent-sunflower{border-bottom:2px solid #f6b042}.novo-toolbar .novo-toolbar-row.novo-color-bittersweet,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet{background:#eb6845;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-bittersweet .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-bittersweet,.novo-toolbar.novo-toolbar-single-row.novo-accent-bittersweet{border-bottom:2px solid #eb6845}.novo-toolbar .novo-toolbar-row.novo-color-grapefruit,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit{background:#da4453;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-grapefruit .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-grapefruit,.novo-toolbar.novo-toolbar-single-row.novo-accent-grapefruit{border-bottom:2px solid #da4453}.novo-toolbar .novo-toolbar-row.novo-color-carnation,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation{background:#d770ad;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-carnation .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-carnation,.novo-toolbar.novo-toolbar-single-row.novo-accent-carnation{border-bottom:2px solid #d770ad}.novo-toolbar .novo-toolbar-row.novo-color-lavender,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender{background:#967adc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-lavender .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-lavender,.novo-toolbar.novo-toolbar-single-row.novo-accent-lavender{border-bottom:2px solid #967adc}.novo-toolbar .novo-toolbar-row.novo-color-mountain,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain{background:#9678b6;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-mountain .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-mountain,.novo-toolbar.novo-toolbar-single-row.novo-accent-mountain{border-bottom:2px solid #9678b6}.novo-toolbar .novo-toolbar-row.novo-color-info,.novo-toolbar.novo-toolbar-single-row.novo-color-info{background:#4a89dc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-info>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-info>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-info>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-info>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-info>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-info>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-info>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-info .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-info .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-info,.novo-toolbar.novo-toolbar-single-row.novo-accent-info{border-bottom:2px solid #4a89dc}.novo-toolbar .novo-toolbar-row.novo-color-positive,.novo-toolbar.novo-toolbar-single-row.novo-color-positive{background:#4a89dc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-positive .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-positive .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-positive,.novo-toolbar.novo-toolbar-single-row.novo-accent-positive{border-bottom:2px solid #4a89dc}.novo-toolbar .novo-toolbar-row.novo-color-success,.novo-toolbar.novo-toolbar-single-row.novo-color-success{background:#8cc152;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-success>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-success .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-success .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-success,.novo-toolbar.novo-toolbar-single-row.novo-accent-success{border-bottom:2px solid #8cc152}.novo-toolbar .novo-toolbar-row.novo-color-negative,.novo-toolbar.novo-toolbar-single-row.novo-color-negative{background:#da4453;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-negative .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-negative .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-negative,.novo-toolbar.novo-toolbar-single-row.novo-accent-negative{border-bottom:2px solid #da4453}.novo-toolbar .novo-toolbar-row.novo-color-danger,.novo-toolbar.novo-toolbar-single-row.novo-color-danger{background:#da4453;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-danger>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-danger>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-danger .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-danger .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-danger,.novo-toolbar.novo-toolbar-single-row.novo-accent-danger{border-bottom:2px solid #da4453}.novo-toolbar .novo-toolbar-row.novo-color-error,.novo-toolbar.novo-toolbar-single-row.novo-color-error{background:#da4453;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-error>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-error>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-error>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-error>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-error>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-error>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-error>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-error .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-error .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-error,.novo-toolbar.novo-toolbar-single-row.novo-accent-error{border-bottom:2px solid #da4453}.novo-toolbar .novo-toolbar-row.novo-color-warning,.novo-toolbar.novo-toolbar-single-row.novo-color-warning{background:#f6b042;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-warning .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-warning .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-warning,.novo-toolbar.novo-toolbar-single-row.novo-accent-warning{border-bottom:2px solid #f6b042}.novo-toolbar .novo-toolbar-row.novo-color-empty,.novo-toolbar.novo-toolbar-single-row.novo-color-empty{background:#cccdcc;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-empty .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-empty .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-empty,.novo-toolbar.novo-toolbar-single-row.novo-accent-empty{border-bottom:2px solid #cccdcc}.novo-toolbar .novo-toolbar-row.novo-color-disabled,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled{background:#bebebe;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-disabled .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-disabled,.novo-toolbar.novo-toolbar-single-row.novo-accent-disabled{border-bottom:2px solid #bebebe}.novo-toolbar .novo-toolbar-row.novo-color-background,.novo-toolbar.novo-toolbar-single-row.novo-color-background{background:#f7f7f7;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-background>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-background .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-background .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-background,.novo-toolbar.novo-toolbar-single-row.novo-accent-background{border-bottom:2px solid #f7f7f7}.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark{background:#e2e2e2;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-backgroundDark,.novo-toolbar.novo-toolbar-single-row.novo-accent-backgroundDark{border-bottom:2px solid #e2e2e2}.novo-toolbar .novo-toolbar-row.novo-color-presentation,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation{background:#5b6770;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-presentation .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-presentation,.novo-toolbar.novo-toolbar-single-row.novo-accent-presentation{border-bottom:2px solid #5b6770}.novo-toolbar .novo-toolbar-row.novo-color-bullhorn,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn{background:#ff6900;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-bullhorn .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-bullhorn,.novo-toolbar.novo-toolbar-single-row.novo-accent-bullhorn{border-bottom:2px solid #ff6900}.novo-toolbar .novo-toolbar-row.novo-color-pulse,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse{background:#3bafda;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-pulse .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-pulse,.novo-toolbar.novo-toolbar-single-row.novo-accent-pulse{border-bottom:2px solid #3bafda}.novo-toolbar .novo-toolbar-row.novo-color-company,.novo-toolbar.novo-toolbar-single-row.novo-color-company{background:#39d;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-company>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-company .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-company .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-company,.novo-toolbar.novo-toolbar-single-row.novo-accent-company{border-bottom:2px solid #39d}.novo-toolbar .novo-toolbar-row.novo-color-candidate,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate{background:#4b7;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-candidate .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-candidate,.novo-toolbar.novo-toolbar-single-row.novo-accent-candidate{border-bottom:2px solid #4b7}.novo-toolbar .novo-toolbar-row.novo-color-lead,.novo-toolbar.novo-toolbar-single-row.novo-color-lead{background:#a69;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-lead .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-lead .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-lead,.novo-toolbar.novo-toolbar-single-row.novo-accent-lead{border-bottom:2px solid #a69}.novo-toolbar .novo-toolbar-row.novo-color-contact,.novo-toolbar.novo-toolbar-single-row.novo-color-contact{background:#fa4;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-contact .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-contact .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-contact,.novo-toolbar.novo-toolbar-single-row.novo-accent-contact{border-bottom:2px solid #fa4}.novo-toolbar .novo-toolbar-row.novo-color-opportunity,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity{background:#625;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-opportunity .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-opportunity,.novo-toolbar.novo-toolbar-single-row.novo-accent-opportunity{border-bottom:2px solid #625}.novo-toolbar .novo-toolbar-row.novo-color-job,.novo-toolbar.novo-toolbar-single-row.novo-color-job{background:#b56;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-job>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-job .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-job .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-job,.novo-toolbar.novo-toolbar-single-row.novo-accent-job{border-bottom:2px solid #b56}.novo-toolbar .novo-toolbar-row.novo-color-submission,.novo-toolbar.novo-toolbar-single-row.novo-color-submission{background:#a9adbb;color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-submission .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-submission .novo-divider.novo-divider-vertical{border-right-color:#3d464d}.novo-toolbar .novo-toolbar-row.novo-accent-submission,.novo-toolbar.novo-toolbar-single-row.novo-accent-submission{border-bottom:2px solid #a9adbb}.novo-toolbar .novo-toolbar-row.novo-color-sendout,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout{background:#747884;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-sendout .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-sendout,.novo-toolbar.novo-toolbar-single-row.novo-accent-sendout{border-bottom:2px solid #747884}.novo-toolbar .novo-toolbar-row.novo-color-placement,.novo-toolbar.novo-toolbar-single-row.novo-color-placement{background:#0b344f;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-placement .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-placement .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-placement,.novo-toolbar.novo-toolbar-single-row.novo-accent-placement{border-bottom:2px solid #0b344f}.novo-toolbar .novo-toolbar-row.novo-color-note,.novo-toolbar.novo-toolbar-single-row.novo-color-note{background:#747884;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-note>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-note .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-note .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-note,.novo-toolbar.novo-toolbar-single-row.novo-accent-note{border-bottom:2px solid #747884}.novo-toolbar .novo-toolbar-row.novo-color-contract,.novo-toolbar.novo-toolbar-single-row.novo-color-contract{background:#454ea0;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-contract .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-contract .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-contract,.novo-toolbar.novo-toolbar-single-row.novo-accent-contract{border-bottom:2px solid #454ea0}.novo-toolbar .novo-toolbar-row.novo-color-jobCode,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-jobCode .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-jobCode,.novo-toolbar.novo-toolbar-single-row.novo-accent-jobCode{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-earnCode,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-earnCode .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-earnCode,.novo-toolbar.novo-toolbar-single-row.novo-accent-earnCode{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-invoiceStatement,.novo-toolbar.novo-toolbar-single-row.novo-accent-invoiceStatement{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-billableCharge,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-billableCharge .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-billableCharge,.novo-toolbar.novo-toolbar-single-row.novo-accent-billableCharge{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-payableCharge,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-payableCharge .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-payableCharge,.novo-toolbar.novo-toolbar-single-row.novo-accent-payableCharge{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-user,.novo-toolbar.novo-toolbar-single-row.novo-color-user{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-user>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-user .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-user .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-user,.novo-toolbar.novo-toolbar-single-row.novo-accent-user{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-corporateUser,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-corporateUser .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-corporateUser,.novo-toolbar.novo-toolbar-single-row.novo-accent-corporateUser{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-distributionList,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-distributionList .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-distributionList,.novo-toolbar.novo-toolbar-single-row.novo-accent-distributionList{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-credential,.novo-toolbar.novo-toolbar-single-row.novo-color-credential{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-credential .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-credential .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-credential,.novo-toolbar.novo-toolbar-single-row.novo-accent-credential{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-person,.novo-toolbar.novo-toolbar-single-row.novo-color-person{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-person>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-person .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-person .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-person,.novo-toolbar.novo-toolbar-single-row.novo-accent-person{border-bottom:2px solid #696d79}.novo-toolbar.novo-toolbar-multiple-rows{box-sizing:border-box;display:flex;flex-direction:column;width:100%}"]
|
|
53065
53561
|
},] }
|
|
53066
53562
|
];
|
|
53067
53563
|
NovoToolbar.ctorParameters = function () { return [
|
|
@@ -54095,6 +54591,7 @@
|
|
|
54095
54591
|
exports.FieldInteractionApi = FieldInteractionApi;
|
|
54096
54592
|
exports.FileControl = FileControl;
|
|
54097
54593
|
exports.FillColorDirective = FillColorDirective;
|
|
54594
|
+
exports.FlexDirective = FlexDirective;
|
|
54098
54595
|
exports.FormUtils = FormUtils;
|
|
54099
54596
|
exports.FormValidators = FormValidators;
|
|
54100
54597
|
exports.GapDirective = GapDirective;
|
|
@@ -54287,7 +54784,7 @@
|
|
|
54287
54784
|
exports.NovoItemTitleElement = NovoItemTitleElement;
|
|
54288
54785
|
exports.NovoLabel = NovoLabel;
|
|
54289
54786
|
exports.NovoLabelService = NovoLabelService;
|
|
54290
|
-
exports.NovoLayoutContainer = NovoLayoutContainer
|
|
54787
|
+
exports.NovoLayoutContainer = NovoLayoutContainer;
|
|
54291
54788
|
exports.NovoLayoutContent = NovoLayoutContent;
|
|
54292
54789
|
exports.NovoLayoutModule = NovoLayoutModule;
|
|
54293
54790
|
exports.NovoLink = NovoLink;
|
|
@@ -54334,7 +54831,7 @@
|
|
|
54334
54831
|
exports.NovoPipesModule = NovoPipesModule;
|
|
54335
54832
|
exports.NovoPopOverModule = NovoPopOverModule;
|
|
54336
54833
|
exports.NovoProgressBarElement = NovoProgressBarElement;
|
|
54337
|
-
exports.NovoProgressElement = NovoProgressElement
|
|
54834
|
+
exports.NovoProgressElement = NovoProgressElement;
|
|
54338
54835
|
exports.NovoProgressModule = NovoProgressModule;
|
|
54339
54836
|
exports.NovoPseudoCheckbox = NovoPseudoCheckbox;
|
|
54340
54837
|
exports.NovoPseudoCheckboxModule = NovoPseudoCheckboxModule;
|
|
@@ -54457,6 +54954,7 @@
|
|
|
54457
54954
|
exports.SkillsSpecialtyPickerResults = SkillsSpecialtyPickerResults;
|
|
54458
54955
|
exports.StaticActivityTableService = StaticActivityTableService;
|
|
54459
54956
|
exports.StaticDataTableService = StaticDataTableService;
|
|
54957
|
+
exports.SwitchControl = SwitchControl;
|
|
54460
54958
|
exports.TIMEFORMAT_VALUE_ACCESSOR = TIMEFORMAT_VALUE_ACCESSOR;
|
|
54461
54959
|
exports.TableCell = TableCell;
|
|
54462
54960
|
exports.TableFilter = TableFilter;
|
|
@@ -54466,6 +54964,7 @@
|
|
|
54466
54964
|
exports.TextColorDirective = TextColorDirective;
|
|
54467
54965
|
exports.ThOrderable = ThOrderable;
|
|
54468
54966
|
exports.ThSortable = ThSortable;
|
|
54967
|
+
exports.ThemeColorDirective = ThemeColorDirective;
|
|
54469
54968
|
exports.TilesControl = TilesControl;
|
|
54470
54969
|
exports.TimeControl = TimeControl;
|
|
54471
54970
|
exports.TimezoneControl = TimezoneControl;
|