novo-elements 7.13.1-next.2 → 7.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/elements/checkbox/CheckList.scss +14 -11
- package/elements/checkbox/Checkbox.scss +14 -11
- package/elements/form/Form.scss +6 -0
- package/elements/radio/Radio.scss +10 -4
- package/elements/switch/Switch.scss +1 -1
- package/elements/tiles/Tiles.scss +11 -23
- package/esm2020/src/elements/checkbox/CheckList.mjs +3 -3
- package/esm2020/src/elements/checkbox/Checkbox.mjs +6 -6
- package/esm2020/src/elements/form/ControlTemplates.mjs +42 -42
- package/esm2020/src/elements/popover/PopOver.mjs +13 -3
- package/esm2020/src/elements/query-builder/condition-definitions/boolean-condition.definition.mjs +1 -1
- package/esm2020/src/elements/query-builder/condition-definitions/date-condition.definition.mjs +1 -1
- package/esm2020/src/elements/query-builder/condition-definitions/date-time-condition.definition.mjs +1 -1
- package/esm2020/src/elements/query-builder/condition-definitions/number-condition.definition.mjs +1 -1
- package/esm2020/src/elements/query-builder/condition-definitions/picker-condition.definition.mjs +1 -1
- package/esm2020/src/elements/query-builder/condition-definitions/string-condition.definition.mjs +1 -1
- package/esm2020/src/elements/radio/Radio.mjs +26 -16
- package/fesm2015/novo-elements.mjs +90 -70
- package/fesm2015/novo-elements.mjs.map +1 -1
- package/fesm2020/novo-elements.mjs +90 -70
- package/fesm2020/novo-elements.mjs.map +1 -1
- package/package.json +1 -1
- package/src/elements/checkbox/Checkbox.d.ts +4 -4
- package/src/elements/popover/PopOver.d.ts +2 -1
- package/src/elements/radio/Radio.d.ts +6 -4
|
@@ -31881,7 +31881,6 @@ class NovoCheckboxElement {
|
|
|
31881
31881
|
*/
|
|
31882
31882
|
this.ariaLabelledby = null;
|
|
31883
31883
|
this._uniqueId = `novo-checkbox-${++nextId$5}`;
|
|
31884
|
-
this.boxIcon = true;
|
|
31885
31884
|
this.id = this._uniqueId;
|
|
31886
31885
|
this.name = this._uniqueId;
|
|
31887
31886
|
this.disabled = false;
|
|
@@ -31892,6 +31891,7 @@ class NovoCheckboxElement {
|
|
|
31892
31891
|
/** Event emitted when the checkbox's `indeterminate` value changes. */
|
|
31893
31892
|
this.indeterminateChange = new EventEmitter();
|
|
31894
31893
|
this.onSelect = new EventEmitter();
|
|
31894
|
+
this.boxIcon = true;
|
|
31895
31895
|
this.onModelChange = () => { };
|
|
31896
31896
|
this.onModelTouched = () => { };
|
|
31897
31897
|
// this.color = this.defaultColor = this._options.color || defaults.color;
|
|
@@ -32031,7 +32031,7 @@ NovoCheckboxElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
32031
32031
|
<input
|
|
32032
32032
|
#input
|
|
32033
32033
|
type="checkbox"
|
|
32034
|
-
[required]="
|
|
32034
|
+
[required]="required"
|
|
32035
32035
|
[checked]="checked"
|
|
32036
32036
|
[id]="id"
|
|
32037
32037
|
[attr.name]="name"
|
|
@@ -32058,7 +32058,7 @@ NovoCheckboxElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
32058
32058
|
<span *ngIf="!label" class="novo-checkbox-text"><ng-content></ng-content></span>
|
|
32059
32059
|
</label>
|
|
32060
32060
|
</div>
|
|
32061
|
-
`, isInline: true, styles: [":host{display:flex;flex-flow:row wrap}:host.has-label [class*=-group]{margin-right:15px}:host .novo-checkbox-text{margin-left:15px}:host .novo-checkbox-group{cursor:pointer;position:relative}:host .novo-checkbox-group:hover:
|
|
32061
|
+
`, isInline: true, styles: [":host{display:flex;flex-flow:row wrap}:host.has-label [class*=-group]{margin-right:15px}:host .novo-checkbox-text{margin-left:15px}:host .novo-checkbox-group{cursor:pointer;position:relative}:host .novo-checkbox-group:hover label i:before{box-shadow:0 0 15px 3px #4a89dc40}:host .novo-checkbox-group:hover label i.bhi-checkbox-empty,:host .novo-checkbox-group:hover label i.bhi-radio-empty{color:#4a89dc}:host .novo-checkbox-group.checked label{color:#393939}:host .novo-checkbox-group.checked label i{-webkit-animation:iconEnter .16s ease-in-out;animation:iconEnter .16s ease-in-out}:host .novo-checkbox-group.disabled{pointer-events:none}:host .novo-checkbox-group.disabled label>i{opacity:.7}:host .novo-checkbox-group input[type=checkbox]{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;height:0!important;border:none!important;position:absolute}:host .novo-checkbox-group input[type=checkbox]:focus+label i:before{text-shadow:0px 0px 20px rgba(74,137,220,.5)}:host .novo-checkbox-group input[type=checkbox]:focus+label i.bhi-checkbox-empty,:host .novo-checkbox-group input[type=checkbox]:focus+label i.bhi-checkbox-filled{color:#4a89dc}:host .novo-checkbox-group label{color:#868686;margin-left:0;cursor:pointer;transition:all .2s ease-in-out;display:flex;align-items:baseline}:host .novo-checkbox-group label i{margin-right:5px;transition:all .2s ease-in-out}:host .novo-checkbox-group label i.bhi-checkbox-empty,:host .novo-checkbox-group label i.bhi-radio-empty,:host .novo-checkbox-group label i.bhi-circle-o{color:#d2d2d2}:host .novo-checkbox-group label i.bhi-check{background:#d2d2d2;color:#fff;padding:.15em 0 0 .3em;font-size:1em;width:20px;height:20px;border-radius:50%}:host .novo-checkbox-group label i.bhi-checkbox-filled,:host .novo-checkbox-group label i.bhi-radio-filled{color:#4a89dc}:host .novo-checkbox-group label span{display:inline-block}\n"], directives: [{ type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
32062
32062
|
__decorate([
|
|
32063
32063
|
BooleanInput(),
|
|
32064
32064
|
__metadata("design:type", Boolean),
|
|
@@ -32076,7 +32076,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
32076
32076
|
<input
|
|
32077
32077
|
#input
|
|
32078
32078
|
type="checkbox"
|
|
32079
|
-
[required]="
|
|
32079
|
+
[required]="required"
|
|
32080
32080
|
[checked]="checked"
|
|
32081
32081
|
[id]="id"
|
|
32082
32082
|
[attr.name]="name"
|
|
@@ -32106,7 +32106,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
32106
32106
|
`, host: {
|
|
32107
32107
|
class: 'novo-checkbox',
|
|
32108
32108
|
'[class.has-label]': 'label',
|
|
32109
|
-
}, styles: [":host{display:flex;flex-flow:row wrap}:host.has-label [class*=-group]{margin-right:15px}:host .novo-checkbox-text{margin-left:15px}:host .novo-checkbox-group{cursor:pointer;position:relative}:host .novo-checkbox-group:hover:
|
|
32109
|
+
}, styles: [":host{display:flex;flex-flow:row wrap}:host.has-label [class*=-group]{margin-right:15px}:host .novo-checkbox-text{margin-left:15px}:host .novo-checkbox-group{cursor:pointer;position:relative}:host .novo-checkbox-group:hover label i:before{box-shadow:0 0 15px 3px #4a89dc40}:host .novo-checkbox-group:hover label i.bhi-checkbox-empty,:host .novo-checkbox-group:hover label i.bhi-radio-empty{color:#4a89dc}:host .novo-checkbox-group.checked label{color:#393939}:host .novo-checkbox-group.checked label i{-webkit-animation:iconEnter .16s ease-in-out;animation:iconEnter .16s ease-in-out}:host .novo-checkbox-group.disabled{pointer-events:none}:host .novo-checkbox-group.disabled label>i{opacity:.7}:host .novo-checkbox-group input[type=checkbox]{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;height:0!important;border:none!important;position:absolute}:host .novo-checkbox-group input[type=checkbox]:focus+label i:before{text-shadow:0px 0px 20px rgba(74,137,220,.5)}:host .novo-checkbox-group input[type=checkbox]:focus+label i.bhi-checkbox-empty,:host .novo-checkbox-group input[type=checkbox]:focus+label i.bhi-checkbox-filled{color:#4a89dc}:host .novo-checkbox-group label{color:#868686;margin-left:0;cursor:pointer;transition:all .2s ease-in-out;display:flex;align-items:baseline}:host .novo-checkbox-group label i{margin-right:5px;transition:all .2s ease-in-out}:host .novo-checkbox-group label i.bhi-checkbox-empty,:host .novo-checkbox-group label i.bhi-radio-empty,:host .novo-checkbox-group label i.bhi-circle-o{color:#d2d2d2}:host .novo-checkbox-group label i.bhi-check{background:#d2d2d2;color:#fff;padding:.15em 0 0 .3em;font-size:1em;width:20px;height:20px;border-radius:50%}:host .novo-checkbox-group label i.bhi-checkbox-filled,:host .novo-checkbox-group label i.bhi-radio-filled{color:#4a89dc}:host .novo-checkbox-group label span{display:inline-block}\n"] }]
|
|
32110
32110
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i1$5.FocusMonitor }, { type: undefined, decorators: [{
|
|
32111
32111
|
type: Attribute,
|
|
32112
32112
|
args: ['tabindex']
|
|
@@ -32242,7 +32242,7 @@ NovoCheckListElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
32242
32242
|
<span>{{ option.label }}</span>
|
|
32243
32243
|
</label>
|
|
32244
32244
|
</div>
|
|
32245
|
-
`, isInline: true, styles: [":host{display:flex;flex-flow:row wrap;gap:1rem}:host.hasLabel [class*=-group]{margin-right:15px}:host .novo-checkbox-group{cursor:pointer;position:relative}:host .novo-checkbox-group:hover:
|
|
32245
|
+
`, isInline: true, styles: [":host{display:flex;flex-flow:row wrap;gap:1rem}:host.hasLabel [class*=-group]{margin-right:15px}:host .novo-checkbox-group{cursor:pointer;position:relative}:host .novo-checkbox-group:hover label i:before{box-shadow:0 0 15px 3px #4a89dc40}:host .novo-checkbox-group:hover label i.bhi-checkbox-empty,:host .novo-checkbox-group:hover label i.bhi-radio-empty{color:#4a89dc}:host .novo-checkbox-group.checked label{color:var(--text-main)}:host .novo-checkbox-group.checked label i{-webkit-animation:iconEnter .16s ease-in-out;animation:iconEnter .16s ease-in-out}:host .novo-checkbox-group.disabled{pointer-events:none}:host .novo-checkbox-group.disabled label>i{opacity:.7}:host .novo-checkbox-group input[type=checkbox]{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;height:0!important;border:none!important;position:absolute}:host .novo-checkbox-group input[type=checkbox]:focus+label i:before{text-shadow:0px 0px 20px rgba(74,137,220,.5)}:host .novo-checkbox-group input[type=checkbox]:focus+label i.bhi-checkbox-empty,:host .novo-checkbox-group input[type=checkbox]:focus+label i.bhi-checkbox-filled{color:#4a89dc}:host .novo-checkbox-group label{color:#868686;margin-left:0;cursor:pointer;transition:all .2s ease-in-out;display:flex;align-items:baseline}:host .novo-checkbox-group label i{margin-right:5px;transition:all .2s ease-in-out}:host .novo-checkbox-group label i.bhi-checkbox-empty,:host .novo-checkbox-group label i.bhi-radio-empty,:host .novo-checkbox-group label i.bhi-circle-o{color:#d2d2d2}:host .novo-checkbox-group label i.bhi-check{background:#d2d2d2;color:#fff;padding:.15em 0 0 .3em;font-size:1em;width:20px;height:20px;border-radius:50%}:host .novo-checkbox-group label i.bhi-checkbox-filled,:host .novo-checkbox-group label i.bhi-radio-filled{color:#4a89dc}:host .novo-checkbox-group label span{display:inline-block}\n"], directives: [{ type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i4.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
|
|
32246
32246
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoCheckListElement, decorators: [{
|
|
32247
32247
|
type: Component,
|
|
32248
32248
|
args: [{ selector: 'novo-check-list', providers: [CHECKLIST_VALUE_ACCESSOR], template: `
|
|
@@ -32267,7 +32267,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
32267
32267
|
<span>{{ option.label }}</span>
|
|
32268
32268
|
</label>
|
|
32269
32269
|
</div>
|
|
32270
|
-
`, styles: [":host{display:flex;flex-flow:row wrap;gap:1rem}:host.hasLabel [class*=-group]{margin-right:15px}:host .novo-checkbox-group{cursor:pointer;position:relative}:host .novo-checkbox-group:hover:
|
|
32270
|
+
`, styles: [":host{display:flex;flex-flow:row wrap;gap:1rem}:host.hasLabel [class*=-group]{margin-right:15px}:host .novo-checkbox-group{cursor:pointer;position:relative}:host .novo-checkbox-group:hover label i:before{box-shadow:0 0 15px 3px #4a89dc40}:host .novo-checkbox-group:hover label i.bhi-checkbox-empty,:host .novo-checkbox-group:hover label i.bhi-radio-empty{color:#4a89dc}:host .novo-checkbox-group.checked label{color:var(--text-main)}:host .novo-checkbox-group.checked label i{-webkit-animation:iconEnter .16s ease-in-out;animation:iconEnter .16s ease-in-out}:host .novo-checkbox-group.disabled{pointer-events:none}:host .novo-checkbox-group.disabled label>i{opacity:.7}:host .novo-checkbox-group input[type=checkbox]{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;height:0!important;border:none!important;position:absolute}:host .novo-checkbox-group input[type=checkbox]:focus+label i:before{text-shadow:0px 0px 20px rgba(74,137,220,.5)}:host .novo-checkbox-group input[type=checkbox]:focus+label i.bhi-checkbox-empty,:host .novo-checkbox-group input[type=checkbox]:focus+label i.bhi-checkbox-filled{color:#4a89dc}:host .novo-checkbox-group label{color:#868686;margin-left:0;cursor:pointer;transition:all .2s ease-in-out;display:flex;align-items:baseline}:host .novo-checkbox-group label i{margin-right:5px;transition:all .2s ease-in-out}:host .novo-checkbox-group label i.bhi-checkbox-empty,:host .novo-checkbox-group label i.bhi-radio-empty,:host .novo-checkbox-group label i.bhi-circle-o{color:#d2d2d2}:host .novo-checkbox-group label i.bhi-check{background:#d2d2d2;color:#fff;padding:.15em 0 0 .3em;font-size:1em;width:20px;height:20px;border-radius:50%}:host .novo-checkbox-group label i.bhi-checkbox-filled,:host .novo-checkbox-group label i.bhi-radio-filled{color:#4a89dc}:host .novo-checkbox-group label span{display:inline-block}\n"] }]
|
|
32271
32271
|
}], propDecorators: { name: [{
|
|
32272
32272
|
type: Input
|
|
32273
32273
|
}], options: [{
|
|
@@ -49665,8 +49665,6 @@ class NovoRadioElement {
|
|
|
49665
49665
|
this.radioGroup = radioGroup;
|
|
49666
49666
|
this.ref = ref;
|
|
49667
49667
|
this._uniqueId = `novo-radio-${++nextId$2}`;
|
|
49668
|
-
this._value = false;
|
|
49669
|
-
this._checked = false;
|
|
49670
49668
|
this.id = this._uniqueId;
|
|
49671
49669
|
this.name = this._uniqueId;
|
|
49672
49670
|
this.tabindex = 0;
|
|
@@ -49676,6 +49674,9 @@ class NovoRadioElement {
|
|
|
49676
49674
|
this.change = new EventEmitter();
|
|
49677
49675
|
this.blur = new EventEmitter();
|
|
49678
49676
|
this.focus = new EventEmitter();
|
|
49677
|
+
this._checked = false;
|
|
49678
|
+
this._value = false;
|
|
49679
|
+
this._disabled = false;
|
|
49679
49680
|
this.onChangeCallback = (_) => {
|
|
49680
49681
|
// placeholder
|
|
49681
49682
|
};
|
|
@@ -49709,12 +49710,18 @@ class NovoRadioElement {
|
|
|
49709
49710
|
this.onChangeCallback(this._value);
|
|
49710
49711
|
}
|
|
49711
49712
|
}
|
|
49713
|
+
// Disabled State
|
|
49714
|
+
get disabled() {
|
|
49715
|
+
return this._disabled || (this.radioGroup != null && this.radioGroup.disabled);
|
|
49716
|
+
}
|
|
49717
|
+
set disabled(value) {
|
|
49718
|
+
this._disabled = !!value;
|
|
49719
|
+
}
|
|
49712
49720
|
ngOnInit() {
|
|
49713
49721
|
if (this.radioGroup) {
|
|
49714
49722
|
this.checked = this.radioGroup.value === this._value;
|
|
49715
49723
|
this.vertical = this.radioGroup.appearance === 'vertical';
|
|
49716
49724
|
this.name = this.radioGroup.name;
|
|
49717
|
-
this.disabled = this.disabled || this.radioGroup.disabled;
|
|
49718
49725
|
}
|
|
49719
49726
|
}
|
|
49720
49727
|
_onInputChange(event) {
|
|
@@ -49740,12 +49747,12 @@ class NovoRadioElement {
|
|
|
49740
49747
|
}
|
|
49741
49748
|
}
|
|
49742
49749
|
NovoRadioElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoRadioElement, deps: [{ token: NOVO_RADIO_GROUP, optional: true }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
49743
|
-
NovoRadioElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoRadioElement, selector: "novo-radio", inputs: { id: "id", name: "name", tabindex: "tabindex", vertical: "vertical", label: "label", button: "button", theme: "theme", size: "size", icon: "icon", color: "color",
|
|
49750
|
+
NovoRadioElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoRadioElement, selector: "novo-radio", inputs: { id: "id", name: "name", tabindex: "tabindex", vertical: "vertical", label: "label", button: "button", theme: "theme", size: "size", icon: "icon", color: "color", checked: "checked", value: "value", disabled: "disabled" }, outputs: { change: "change", blur: "blur", focus: "focus" }, host: { properties: { "class.vertical": "vertical", "class.disabled": "this.disabled" } }, providers: [RADIO_VALUE_ACCESSOR], ngImport: i0, template: `
|
|
49744
49751
|
<input
|
|
49745
49752
|
type="radio"
|
|
49746
49753
|
[id]="id"
|
|
49747
49754
|
[name]="name"
|
|
49748
|
-
[checked]="
|
|
49755
|
+
[checked]="checked"
|
|
49749
49756
|
[tabIndex]="tabindex"
|
|
49750
49757
|
[disabled]="disabled"
|
|
49751
49758
|
(focus)="focus.emit($event)"
|
|
@@ -49755,16 +49762,16 @@ NovoRadioElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
|
|
|
49755
49762
|
<label [attr.for]="id" [class.disabled]="disabled">
|
|
49756
49763
|
<novo-button
|
|
49757
49764
|
*ngIf="button"
|
|
49758
|
-
[ngClass]="{ unchecked: !
|
|
49765
|
+
[ngClass]="{ unchecked: !checked, checked: checked, 'has-icon': !!icon }"
|
|
49759
49766
|
[theme]="theme"
|
|
49760
|
-
[color]="
|
|
49767
|
+
[color]="checked ? color : null"
|
|
49761
49768
|
[icon]="icon"
|
|
49762
49769
|
[size]="size"
|
|
49763
49770
|
>
|
|
49764
49771
|
{{ label }}
|
|
49765
49772
|
</novo-button>
|
|
49766
49773
|
<div *ngIf="!button" class="novo-radio-button-label">
|
|
49767
|
-
<i [ngClass]="{ 'bhi-radio-empty': !
|
|
49774
|
+
<i [ngClass]="{ 'bhi-radio-empty': !checked, 'bhi-radio-filled': checked }"></i>
|
|
49768
49775
|
{{ label }}
|
|
49769
49776
|
<ng-content></ng-content>
|
|
49770
49777
|
</div>
|
|
@@ -49780,7 +49787,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
49780
49787
|
type="radio"
|
|
49781
49788
|
[id]="id"
|
|
49782
49789
|
[name]="name"
|
|
49783
|
-
[checked]="
|
|
49790
|
+
[checked]="checked"
|
|
49784
49791
|
[tabIndex]="tabindex"
|
|
49785
49792
|
[disabled]="disabled"
|
|
49786
49793
|
(focus)="focus.emit($event)"
|
|
@@ -49790,16 +49797,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
49790
49797
|
<label [attr.for]="id" [class.disabled]="disabled">
|
|
49791
49798
|
<novo-button
|
|
49792
49799
|
*ngIf="button"
|
|
49793
|
-
[ngClass]="{ unchecked: !
|
|
49800
|
+
[ngClass]="{ unchecked: !checked, checked: checked, 'has-icon': !!icon }"
|
|
49794
49801
|
[theme]="theme"
|
|
49795
|
-
[color]="
|
|
49802
|
+
[color]="checked ? color : null"
|
|
49796
49803
|
[icon]="icon"
|
|
49797
49804
|
[size]="size"
|
|
49798
49805
|
>
|
|
49799
49806
|
{{ label }}
|
|
49800
49807
|
</novo-button>
|
|
49801
49808
|
<div *ngIf="!button" class="novo-radio-button-label">
|
|
49802
|
-
<i [ngClass]="{ 'bhi-radio-empty': !
|
|
49809
|
+
<i [ngClass]="{ 'bhi-radio-empty': !checked, 'bhi-radio-filled': checked }"></i>
|
|
49803
49810
|
{{ label }}
|
|
49804
49811
|
<ng-content></ng-content>
|
|
49805
49812
|
</div>
|
|
@@ -49834,8 +49841,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
49834
49841
|
type: Input
|
|
49835
49842
|
}], color: [{
|
|
49836
49843
|
type: Input
|
|
49837
|
-
}], disabled: [{
|
|
49838
|
-
type: Input
|
|
49839
49844
|
}], change: [{
|
|
49840
49845
|
type: Output
|
|
49841
49846
|
}], blur: [{
|
|
@@ -49846,6 +49851,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
49846
49851
|
type: Input
|
|
49847
49852
|
}], value: [{
|
|
49848
49853
|
type: Input
|
|
49854
|
+
}], disabled: [{
|
|
49855
|
+
type: Input
|
|
49856
|
+
}, {
|
|
49857
|
+
type: HostBinding,
|
|
49858
|
+
args: ['class.disabled']
|
|
49849
49859
|
}] } });
|
|
49850
49860
|
|
|
49851
49861
|
// make radio-button-group ids unique
|
|
@@ -51020,6 +51030,9 @@ class PopOverDirective {
|
|
|
51020
51030
|
this.onShown = new EventEmitter();
|
|
51021
51031
|
this.onHidden = new EventEmitter();
|
|
51022
51032
|
}
|
|
51033
|
+
set novoPopover(content) {
|
|
51034
|
+
this.content = content;
|
|
51035
|
+
}
|
|
51023
51036
|
// ---------------------------------------------------
|
|
51024
51037
|
// Event listeners
|
|
51025
51038
|
// ---------------------------------------------------
|
|
@@ -51132,15 +51145,22 @@ class PopOverDirective {
|
|
|
51132
51145
|
}
|
|
51133
51146
|
}
|
|
51134
51147
|
PopOverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PopOverDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Directive });
|
|
51135
|
-
PopOverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: PopOverDirective, selector: "[popover]", inputs: { content: ["popover", "content"], popoverHtmlContent: "popoverHtmlContent", popoverDisabled: "popoverDisabled", popoverAlways: "popoverAlways", popoverAnimation: "popoverAnimation", popoverPlacement: "popoverPlacement", popoverTitle: "popoverTitle", popoverOnHover: "popoverOnHover", popoverDismissTimeout: "popoverDismissTimeout" }, outputs: { onShown: "onShown", onHidden: "onHidden" }, host: { listeners: { "click": "showOrHideOnClick()", "focusin": "showOnHover()", "mouseenter": "showOnHover()", "focusout": "hideOnHover()", "mouseleave": "hideOnHover()" } }, usesOnChanges: true, ngImport: i0 });
|
|
51148
|
+
PopOverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: PopOverDirective, selector: "[popover], [novoPopover]", inputs: { content: ["popover", "content"], novoPopover: "novoPopover", popoverHtmlContent: "popoverHtmlContent", popoverDisabled: "popoverDisabled", popoverAlways: "popoverAlways", popoverAnimation: "popoverAnimation", popoverPlacement: "popoverPlacement", popoverTitle: "popoverTitle", popoverOnHover: "popoverOnHover", popoverDismissTimeout: "popoverDismissTimeout" }, outputs: { onShown: "onShown", onHidden: "onHidden" }, host: { listeners: { "click": "showOrHideOnClick()", "focusin": "showOnHover()", "mouseenter": "showOnHover()", "focusout": "hideOnHover()", "mouseleave": "hideOnHover()" } }, usesOnChanges: true, ngImport: i0 });
|
|
51136
51149
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PopOverDirective, decorators: [{
|
|
51137
51150
|
type: Directive,
|
|
51138
51151
|
args: [{
|
|
51139
|
-
|
|
51152
|
+
/**
|
|
51153
|
+
* [popover] selector retained for backwards compatability, but should be avoived as
|
|
51154
|
+
* it interferes with the newly added (2023) HTML standard spec popover attribute.
|
|
51155
|
+
*/
|
|
51156
|
+
selector: '[popover], [novoPopover]',
|
|
51140
51157
|
}]
|
|
51141
51158
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.ComponentFactoryResolver }]; }, propDecorators: { content: [{
|
|
51142
51159
|
type: Input,
|
|
51143
51160
|
args: ['popover']
|
|
51161
|
+
}], novoPopover: [{
|
|
51162
|
+
type: Input,
|
|
51163
|
+
args: ['novoPopover']
|
|
51144
51164
|
}], popoverHtmlContent: [{
|
|
51145
51165
|
type: Input
|
|
51146
51166
|
}], popoverDisabled: [{
|
|
@@ -51207,7 +51227,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51207
51227
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51208
51228
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51209
51229
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51210
|
-
[
|
|
51230
|
+
[novoPopover]="control.popoverContent"
|
|
51211
51231
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51212
51232
|
[popoverTitle]="control.popoverTitle"
|
|
51213
51233
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51291,7 +51311,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51291
51311
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51292
51312
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51293
51313
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51294
|
-
[
|
|
51314
|
+
[novoPopover]="control.popoverContent"
|
|
51295
51315
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51296
51316
|
[popoverTitle]="control.popoverTitle"
|
|
51297
51317
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51356,7 +51376,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51356
51376
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51357
51377
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51358
51378
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51359
|
-
[
|
|
51379
|
+
[novoPopover]="control.popoverContent"
|
|
51360
51380
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51361
51381
|
[popoverTitle]="control.popoverTitle"
|
|
51362
51382
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51389,7 +51409,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51389
51409
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51390
51410
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51391
51411
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51392
|
-
[
|
|
51412
|
+
[novoPopover]="control.popoverContent"
|
|
51393
51413
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51394
51414
|
[popoverTitle]="control.popoverTitle"
|
|
51395
51415
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51419,7 +51439,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51419
51439
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51420
51440
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51421
51441
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51422
|
-
[
|
|
51442
|
+
[novoPopover]="control.popoverContent"
|
|
51423
51443
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51424
51444
|
[popoverTitle]="control.popoverTitle"
|
|
51425
51445
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51453,7 +51473,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51453
51473
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51454
51474
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51455
51475
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51456
|
-
[
|
|
51476
|
+
[novoPopover]="control.popoverContent"
|
|
51457
51477
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51458
51478
|
[popoverTitle]="control.popoverTitle"
|
|
51459
51479
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51481,7 +51501,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51481
51501
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51482
51502
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51483
51503
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51484
|
-
[
|
|
51504
|
+
[novoPopover]="control.popoverContent"
|
|
51485
51505
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51486
51506
|
[popoverTitle]="control.popoverTitle"
|
|
51487
51507
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51509,7 +51529,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51509
51529
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51510
51530
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51511
51531
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51512
|
-
[
|
|
51532
|
+
[novoPopover]="control.popoverContent"
|
|
51513
51533
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51514
51534
|
[popoverTitle]="control.popoverTitle"
|
|
51515
51535
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51536,7 +51556,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51536
51556
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51537
51557
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51538
51558
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51539
|
-
[
|
|
51559
|
+
[novoPopover]="control.popoverContent"
|
|
51540
51560
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51541
51561
|
[popoverTitle]="control.popoverTitle"
|
|
51542
51562
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51564,7 +51584,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51564
51584
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51565
51585
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51566
51586
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51567
|
-
[
|
|
51587
|
+
[novoPopover]="control.popoverContent"
|
|
51568
51588
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51569
51589
|
[popoverTitle]="control.popoverTitle"
|
|
51570
51590
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51582,7 +51602,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51582
51602
|
<!--Radio-->
|
|
51583
51603
|
<ng-template novoTemplate="radio" let-control let-form="form" let-errors="errors" let-methods="methods">
|
|
51584
51604
|
<div [formGroup]="form" class="novo-control-input-container">
|
|
51585
|
-
<novo-radio-group [name]="control.key" [formControlName]="control.key"
|
|
51605
|
+
<novo-radio-group [name]="control.key" [formControlName]="control.key">
|
|
51586
51606
|
<novo-radio
|
|
51587
51607
|
*ngFor="let option of control.options"
|
|
51588
51608
|
[value]="option.value"
|
|
@@ -51597,7 +51617,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51597
51617
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51598
51618
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51599
51619
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51600
|
-
[
|
|
51620
|
+
[novoPopover]="control.popoverContent"
|
|
51601
51621
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51602
51622
|
[popoverTitle]="control.popoverTitle"
|
|
51603
51623
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51627,7 +51647,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51627
51647
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51628
51648
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51629
51649
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51630
|
-
[
|
|
51650
|
+
[novoPopover]="control.popoverContent"
|
|
51631
51651
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51632
51652
|
[popoverTitle]="control.popoverTitle"
|
|
51633
51653
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51658,7 +51678,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51658
51678
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51659
51679
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51660
51680
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51661
|
-
[
|
|
51681
|
+
[novoPopover]="control.popoverContent"
|
|
51662
51682
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51663
51683
|
[popoverTitle]="control.popoverTitle"
|
|
51664
51684
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51691,7 +51711,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51691
51711
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51692
51712
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51693
51713
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51694
|
-
[
|
|
51714
|
+
[novoPopover]="control.popoverContent"
|
|
51695
51715
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51696
51716
|
[popoverTitle]="control.popoverTitle"
|
|
51697
51717
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51731,7 +51751,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51731
51751
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51732
51752
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51733
51753
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51734
|
-
[
|
|
51754
|
+
[novoPopover]="control.popoverContent"
|
|
51735
51755
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51736
51756
|
[popoverTitle]="control.popoverTitle"
|
|
51737
51757
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51785,7 +51805,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51785
51805
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51786
51806
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51787
51807
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51788
|
-
[
|
|
51808
|
+
[novoPopover]="control.popoverContent"
|
|
51789
51809
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51790
51810
|
[popoverTitle]="control.popoverTitle"
|
|
51791
51811
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51810,7 +51830,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51810
51830
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51811
51831
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51812
51832
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51813
|
-
[
|
|
51833
|
+
[novoPopover]="control.popoverContent"
|
|
51814
51834
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51815
51835
|
[popoverTitle]="control.popoverTitle"
|
|
51816
51836
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51836,7 +51856,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51836
51856
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51837
51857
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51838
51858
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51839
|
-
[
|
|
51859
|
+
[novoPopover]="control.popoverContent"
|
|
51840
51860
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51841
51861
|
[popoverTitle]="control.popoverTitle"
|
|
51842
51862
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51865,7 +51885,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51865
51885
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51866
51886
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51867
51887
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51868
|
-
[
|
|
51888
|
+
[novoPopover]="control.popoverContent"
|
|
51869
51889
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51870
51890
|
[popoverTitle]="control.popoverTitle"
|
|
51871
51891
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51877,7 +51897,7 @@ NovoControlTemplates.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
51877
51897
|
></novo-quick-note>
|
|
51878
51898
|
</div>
|
|
51879
51899
|
</ng-template>
|
|
51880
|
-
`, isInline: true, components: [{ type: NovoCKEditorElement, selector: "novo-editor", inputs: ["config", "debounce", "name", "minimal", "startupFocus", "fileBrowserImageUploadUrl", "disabled", "value"], outputs: ["change", "ready", "blur", "focus", "paste", "loaded"] }, { type: NovoAceEditor, selector: "novo-ace-editor", inputs: ["theme", "options", "mode", "name"], outputs: ["blur", "focus"] }, { type: NovoFileInputElement, selector: "novo-file-input", inputs: ["id", "tabindex", "errorStateMatcher", "multiple", "layoutOptions", "value", "dataFeatureId", "name", "disabled", "required", "placeholder"], outputs: ["edit", "save", "delete", "upload"] }, { type: NovoTilesElement, selector: "novo-tiles", inputs: ["name", "options", "required", "controlDisabled"], outputs: ["onChange", "onSelectedOptionClick", "onDisabledOptionClick"] }, { type: NovoPickerElement, selector: "novo-picker", inputs: ["config", "placeholder", "clearValueOnSelect", "closeOnSelect", "selected", "appendToBody", "parentScrollSelector", "parentScrollAction", "containerClass", "side", "autoSelectFirstOption", "overrideElement", "maxlength", "disablePickerInput"], outputs: ["changed", "select", "focus", "blur", "typing"] }, { type: NovoChipsElement, selector: "chips,novo-chips", inputs: ["closeOnSelect", "placeholder", "source", "maxlength", "type", "disablePickerInput", "value"], outputs: ["changed", "focus", "blur", "typing"] }, { type: NovoRowChipsElement, selector: "novo-row-chips", inputs: ["closeOnSelect"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "
|
|
51900
|
+
`, isInline: true, components: [{ type: NovoCKEditorElement, selector: "novo-editor", inputs: ["config", "debounce", "name", "minimal", "startupFocus", "fileBrowserImageUploadUrl", "disabled", "value"], outputs: ["change", "ready", "blur", "focus", "paste", "loaded"] }, { type: NovoAceEditor, selector: "novo-ace-editor", inputs: ["theme", "options", "mode", "name"], outputs: ["blur", "focus"] }, { type: NovoFileInputElement, selector: "novo-file-input", inputs: ["id", "tabindex", "errorStateMatcher", "multiple", "layoutOptions", "value", "dataFeatureId", "name", "disabled", "required", "placeholder"], outputs: ["edit", "save", "delete", "upload"] }, { type: NovoTilesElement, selector: "novo-tiles", inputs: ["name", "options", "required", "controlDisabled"], outputs: ["onChange", "onSelectedOptionClick", "onDisabledOptionClick"] }, { type: NovoPickerElement, selector: "novo-picker", inputs: ["config", "placeholder", "clearValueOnSelect", "closeOnSelect", "selected", "appendToBody", "parentScrollSelector", "parentScrollAction", "containerClass", "side", "autoSelectFirstOption", "overrideElement", "maxlength", "disablePickerInput"], outputs: ["changed", "select", "focus", "blur", "typing"] }, { type: NovoChipsElement, selector: "chips,novo-chips", inputs: ["closeOnSelect", "placeholder", "source", "maxlength", "type", "disablePickerInput", "value"], outputs: ["changed", "focus", "blur", "typing"] }, { type: NovoRowChipsElement, selector: "novo-row-chips", inputs: ["closeOnSelect"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "checked", "value", "disabled"], outputs: ["change", "blur", "focus"] }, { type: NovoTimePickerInputElement, selector: "novo-time-picker-input", inputs: ["name", "placeholder", "military", "maskOptions", "disabled", "analog"], outputs: ["blurEvent", "focusEvent"] }, { type: NovoDatePickerInputElement, selector: "novo-date-picker-input", inputs: ["name", "start", "end", "placeholder", "maskOptions", "format", "textMaskEnabled", "allowInvalidDate", "disabled", "disabledDateMessage", "weekStart"], outputs: ["blurEvent", "focusEvent", "changeEvent"] }, { type: NovoDateTimePickerInputElement, selector: "novo-date-time-picker-input", inputs: ["name", "start", "end", "placeholder", "maskOptions", "military", "disabled", "format", "weekStart", "disabledDateMessage"], outputs: ["blurEvent", "focusEvent", "changeEvent"] }, { type: NovoAddressElement, selector: "novo-address", inputs: ["config", "readOnly"], outputs: ["change", "focus", "blur", "validityChange"] }, { type: NovoCheckboxElement, selector: "novo-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "id", "name", "label", "disabled", "layoutOptions", "color", "value", "tabIndex", "required", "checked", "indeterminate"], outputs: ["change", "indeterminateChange", "onSelect"] }, { type: NovoSwitchElement, selector: "novo-switch", inputs: ["theme", "icons", "disabled"], outputs: ["onChange"] }, { type: NovoCheckListElement, selector: "novo-check-list", inputs: ["name", "options", "disabled"], outputs: ["onSelect"] }, { type: QuickNoteElement, selector: "novo-quick-note", inputs: ["config", "startupFocus", "placeholder"], outputs: ["focus", "blur", "change"] }], directives: [{ type: NovoTemplate, selector: "[novoTemplate]", inputs: ["type", "novoTemplate"] }, { type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: TooltipDirective, selector: "[tooltip]", inputs: ["tooltip", "tooltipPosition", "tooltipType", "tooltipSize", "tooltipBounce", "tooltipNoAnimate", "tooltipRounded", "tooltipAlways", "tooltipActive", "tooltipPreline", "removeTooltipArrow", "tooltipAutoPosition", "tooltipIsHTML"] }, { type: PopOverDirective, selector: "[popover], [novoPopover]", inputs: ["popover", "novoPopover", "popoverHtmlContent", "popoverDisabled", "popoverAlways", "popoverAnimation", "popoverPlacement", "popoverTitle", "popoverOnHover", "popoverDismissTimeout"], outputs: ["onShown", "onHidden"] }, { type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i6.MaskedInputDirective, selector: "[textMask]", inputs: ["textMask"], exportAs: ["textMask"] }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: i4.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { type: NovoAutoSize, selector: "textarea[autosize]" }, { type: i4.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { type: i4.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { type: i4.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: ThemeColorDirective, selector: "[theme]", inputs: ["theme"] }] });
|
|
51881
51901
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoControlTemplates, decorators: [{
|
|
51882
51902
|
type: Component,
|
|
51883
51903
|
args: [{
|
|
@@ -51898,7 +51918,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
51898
51918
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51899
51919
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51900
51920
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51901
|
-
[
|
|
51921
|
+
[novoPopover]="control.popoverContent"
|
|
51902
51922
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51903
51923
|
[popoverTitle]="control.popoverTitle"
|
|
51904
51924
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -51982,7 +52002,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
51982
52002
|
[tooltipPreline]="control?.tooltipPreline"
|
|
51983
52003
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
51984
52004
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
51985
|
-
[
|
|
52005
|
+
[novoPopover]="control.popoverContent"
|
|
51986
52006
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
51987
52007
|
[popoverTitle]="control.popoverTitle"
|
|
51988
52008
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52047,7 +52067,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52047
52067
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52048
52068
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52049
52069
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52050
|
-
[
|
|
52070
|
+
[novoPopover]="control.popoverContent"
|
|
52051
52071
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52052
52072
|
[popoverTitle]="control.popoverTitle"
|
|
52053
52073
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52080,7 +52100,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52080
52100
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52081
52101
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52082
52102
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52083
|
-
[
|
|
52103
|
+
[novoPopover]="control.popoverContent"
|
|
52084
52104
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52085
52105
|
[popoverTitle]="control.popoverTitle"
|
|
52086
52106
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52110,7 +52130,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52110
52130
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52111
52131
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52112
52132
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52113
|
-
[
|
|
52133
|
+
[novoPopover]="control.popoverContent"
|
|
52114
52134
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52115
52135
|
[popoverTitle]="control.popoverTitle"
|
|
52116
52136
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52144,7 +52164,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52144
52164
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52145
52165
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52146
52166
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52147
|
-
[
|
|
52167
|
+
[novoPopover]="control.popoverContent"
|
|
52148
52168
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52149
52169
|
[popoverTitle]="control.popoverTitle"
|
|
52150
52170
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52172,7 +52192,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52172
52192
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52173
52193
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52174
52194
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52175
|
-
[
|
|
52195
|
+
[novoPopover]="control.popoverContent"
|
|
52176
52196
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52177
52197
|
[popoverTitle]="control.popoverTitle"
|
|
52178
52198
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52200,7 +52220,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52200
52220
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52201
52221
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52202
52222
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52203
|
-
[
|
|
52223
|
+
[novoPopover]="control.popoverContent"
|
|
52204
52224
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52205
52225
|
[popoverTitle]="control.popoverTitle"
|
|
52206
52226
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52227,7 +52247,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52227
52247
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52228
52248
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52229
52249
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52230
|
-
[
|
|
52250
|
+
[novoPopover]="control.popoverContent"
|
|
52231
52251
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52232
52252
|
[popoverTitle]="control.popoverTitle"
|
|
52233
52253
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52255,7 +52275,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52255
52275
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52256
52276
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52257
52277
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52258
|
-
[
|
|
52278
|
+
[novoPopover]="control.popoverContent"
|
|
52259
52279
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52260
52280
|
[popoverTitle]="control.popoverTitle"
|
|
52261
52281
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52273,7 +52293,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52273
52293
|
<!--Radio-->
|
|
52274
52294
|
<ng-template novoTemplate="radio" let-control let-form="form" let-errors="errors" let-methods="methods">
|
|
52275
52295
|
<div [formGroup]="form" class="novo-control-input-container">
|
|
52276
|
-
<novo-radio-group [name]="control.key" [formControlName]="control.key"
|
|
52296
|
+
<novo-radio-group [name]="control.key" [formControlName]="control.key">
|
|
52277
52297
|
<novo-radio
|
|
52278
52298
|
*ngFor="let option of control.options"
|
|
52279
52299
|
[value]="option.value"
|
|
@@ -52288,7 +52308,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52288
52308
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52289
52309
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52290
52310
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52291
|
-
[
|
|
52311
|
+
[novoPopover]="control.popoverContent"
|
|
52292
52312
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52293
52313
|
[popoverTitle]="control.popoverTitle"
|
|
52294
52314
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52318,7 +52338,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52318
52338
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52319
52339
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52320
52340
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52321
|
-
[
|
|
52341
|
+
[novoPopover]="control.popoverContent"
|
|
52322
52342
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52323
52343
|
[popoverTitle]="control.popoverTitle"
|
|
52324
52344
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52349,7 +52369,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52349
52369
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52350
52370
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52351
52371
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52352
|
-
[
|
|
52372
|
+
[novoPopover]="control.popoverContent"
|
|
52353
52373
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52354
52374
|
[popoverTitle]="control.popoverTitle"
|
|
52355
52375
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52382,7 +52402,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52382
52402
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52383
52403
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52384
52404
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52385
|
-
[
|
|
52405
|
+
[novoPopover]="control.popoverContent"
|
|
52386
52406
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52387
52407
|
[popoverTitle]="control.popoverTitle"
|
|
52388
52408
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52422,7 +52442,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52422
52442
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52423
52443
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52424
52444
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52425
|
-
[
|
|
52445
|
+
[novoPopover]="control.popoverContent"
|
|
52426
52446
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52427
52447
|
[popoverTitle]="control.popoverTitle"
|
|
52428
52448
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52476,7 +52496,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52476
52496
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52477
52497
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52478
52498
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52479
|
-
[
|
|
52499
|
+
[novoPopover]="control.popoverContent"
|
|
52480
52500
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52481
52501
|
[popoverTitle]="control.popoverTitle"
|
|
52482
52502
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52501,7 +52521,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52501
52521
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52502
52522
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52503
52523
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52504
|
-
[
|
|
52524
|
+
[novoPopover]="control.popoverContent"
|
|
52505
52525
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52506
52526
|
[popoverTitle]="control.popoverTitle"
|
|
52507
52527
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52527,7 +52547,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52527
52547
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52528
52548
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52529
52549
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52530
|
-
[
|
|
52550
|
+
[novoPopover]="control.popoverContent"
|
|
52531
52551
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52532
52552
|
[popoverTitle]="control.popoverTitle"
|
|
52533
52553
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -52556,7 +52576,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
52556
52576
|
[tooltipPreline]="control?.tooltipPreline"
|
|
52557
52577
|
[removeTooltipArrow]="control?.removeTooltipArrow"
|
|
52558
52578
|
[tooltipAutoPosition]="control?.tooltipAutoPosition"
|
|
52559
|
-
[
|
|
52579
|
+
[novoPopover]="control.popoverContent"
|
|
52560
52580
|
[popoverHtmlContent]="control.popoverHtmlContent"
|
|
52561
52581
|
[popoverTitle]="control.popoverTitle"
|
|
52562
52582
|
[popoverPlacement]="control.popoverPlacement"
|
|
@@ -57713,7 +57733,7 @@ NovoDefaultBooleanConditionDef.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
|
57713
57733
|
</novo-radio-group>
|
|
57714
57734
|
</novo-field>
|
|
57715
57735
|
</ng-container>
|
|
57716
|
-
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "
|
|
57736
|
+
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "checked", "value", "disabled"], outputs: ["change", "blur", "focus"] }], directives: [{ type: NovoConditionFieldDef, selector: "[novoConditionFieldDef]" }, { type: NovoConditionOperatorsDef, selector: "[novoConditionOperatorsDef]" }, { type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: NovoConditionInputDef, selector: "[novoConditionInputDef]" }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
|
57717
57737
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDefaultBooleanConditionDef, decorators: [{
|
|
57718
57738
|
type: Component,
|
|
57719
57739
|
args: [{
|
|
@@ -57795,7 +57815,7 @@ NovoDefaultDateConditionDef.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.
|
|
|
57795
57815
|
</novo-field>
|
|
57796
57816
|
</ng-container>
|
|
57797
57817
|
</ng-container>
|
|
57798
|
-
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoPickerToggleElement, selector: "novo-picker-toggle", inputs: ["for", "icon", "tabIndex", "aria-label", "triggerOnFocus", "overlayId", "width", "disabled"], exportAs: ["novoPickerToggle"] }, { type: NovoDatePickerElement, selector: "novo-date-picker", inputs: ["minYear", "maxYear", "start", "end", "inline", "weekStart", "preselected", "hideOverflowDays", "hideFooter", "disabledDateMessage", "numberOfMonths", "mode", "range", "weekRangeSelect"], outputs: ["onSelect"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "
|
|
57818
|
+
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoPickerToggleElement, selector: "novo-picker-toggle", inputs: ["for", "icon", "tabIndex", "aria-label", "triggerOnFocus", "overlayId", "width", "disabled"], exportAs: ["novoPickerToggle"] }, { type: NovoDatePickerElement, selector: "novo-date-picker", inputs: ["minYear", "maxYear", "start", "end", "inline", "weekStart", "preselected", "hideOverflowDays", "hideFooter", "disabledDateMessage", "numberOfMonths", "mode", "range", "weekRangeSelect"], outputs: ["onSelect"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "checked", "value", "disabled"], outputs: ["change", "blur", "focus"] }], directives: [{ type: NovoConditionFieldDef, selector: "[novoConditionFieldDef]" }, { type: NovoConditionOperatorsDef, selector: "[novoConditionOperatorsDef]" }, { type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: NovoConditionInputDef, selector: "[novoConditionInputDef]" }, { type: i1$1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: SwitchCasesDirective, selector: "[novoSwitchCases]", inputs: ["novoSwitchCases"] }, { type: NovoInput, selector: "input[novoInput], textarea[novoInput], select[novoInput]", inputs: ["disabled", "id", "placeholder", "required", "type", "value", "readonly"] }, { type: NovoDateFormatDirective, selector: "input[dateFormat]", inputs: ["dateFormat"] }, { type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: NovoPickerDirective, selector: "input[picker]", inputs: ["picker", "autocomplete"] }, { type: NovoFieldSuffixDirective, selector: "[novoSuffix]" }, { type: NovoDateRangeFormatDirective, selector: "input[dateRangeFormat]", inputs: ["dateRangeFormat"] }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
|
57799
57819
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDefaultDateConditionDef, decorators: [{
|
|
57800
57820
|
type: Component,
|
|
57801
57821
|
args: [{
|
|
@@ -57902,7 +57922,7 @@ NovoDefaultDateTimeConditionDef.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
57902
57922
|
</novo-field>
|
|
57903
57923
|
</ng-container>
|
|
57904
57924
|
</ng-container>
|
|
57905
|
-
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoPickerToggleElement, selector: "novo-picker-toggle", inputs: ["for", "icon", "tabIndex", "aria-label", "triggerOnFocus", "overlayId", "width", "disabled"], exportAs: ["novoPickerToggle"] }, { type: NovoDateTimePickerElement, selector: "novo-date-time-picker", inputs: ["defaultTime", "minYear", "maxYear", "start", "end", "military", "weekStart", "disabledDateMessage"], outputs: ["onSelect"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "
|
|
57925
|
+
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoPickerToggleElement, selector: "novo-picker-toggle", inputs: ["for", "icon", "tabIndex", "aria-label", "triggerOnFocus", "overlayId", "width", "disabled"], exportAs: ["novoPickerToggle"] }, { type: NovoDateTimePickerElement, selector: "novo-date-time-picker", inputs: ["defaultTime", "minYear", "maxYear", "start", "end", "military", "weekStart", "disabledDateMessage"], outputs: ["onSelect"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "checked", "value", "disabled"], outputs: ["change", "blur", "focus"] }], directives: [{ type: NovoConditionFieldDef, selector: "[novoConditionFieldDef]" }, { type: NovoConditionOperatorsDef, selector: "[novoConditionOperatorsDef]" }, { type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: NovoConditionInputDef, selector: "[novoConditionInputDef]" }, { type: i1$1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: SwitchCasesDirective, selector: "[novoSwitchCases]", inputs: ["novoSwitchCases"] }, { type: NovoInput, selector: "input[novoInput], textarea[novoInput], select[novoInput]", inputs: ["disabled", "id", "placeholder", "required", "type", "value", "readonly"] }, { type: NovoDateTimeFormatDirective, selector: "input[dateTimeFormat]", inputs: ["military", "dateTimeFormat"] }, { type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: NovoPickerDirective, selector: "input[picker]", inputs: ["picker", "autocomplete"] }, { type: NovoFieldSuffixDirective, selector: "[novoSuffix]" }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
|
57906
57926
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDefaultDateTimeConditionDef, decorators: [{
|
|
57907
57927
|
type: Component,
|
|
57908
57928
|
args: [{
|
|
@@ -58033,7 +58053,7 @@ NovoDefaultNumberConditionDef.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
|
|
|
58033
58053
|
</novo-field>
|
|
58034
58054
|
</ng-container>
|
|
58035
58055
|
</ng-container>
|
|
58036
|
-
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "
|
|
58056
|
+
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "checked", "value", "disabled"], outputs: ["change", "blur", "focus"] }], directives: [{ type: NovoConditionFieldDef, selector: "[novoConditionFieldDef]" }, { type: NovoConditionOperatorsDef, selector: "[novoConditionOperatorsDef]" }, { type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: NovoConditionInputDef, selector: "[novoConditionInputDef]" }, { type: i1$1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: SwitchCasesDirective, selector: "[novoSwitchCases]", inputs: ["novoSwitchCases"] }, { type: NovoInput, selector: "input[novoInput], textarea[novoInput], select[novoInput]", inputs: ["disabled", "id", "placeholder", "required", "type", "value", "readonly"] }, { type: i4.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
|
58037
58057
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDefaultNumberConditionDef, decorators: [{
|
|
58038
58058
|
type: Component,
|
|
58039
58059
|
args: [{
|
|
@@ -58103,7 +58123,7 @@ NovoDefaultPickerConditionDef.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
|
|
|
58103
58123
|
</novo-field>
|
|
58104
58124
|
</ng-container>
|
|
58105
58125
|
</ng-container>
|
|
58106
|
-
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "
|
|
58126
|
+
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "checked", "value", "disabled"], outputs: ["change", "blur", "focus"] }], directives: [{ type: NovoConditionFieldDef, selector: "[novoConditionFieldDef]" }, { type: NovoConditionOperatorsDef, selector: "[novoConditionOperatorsDef]" }, { type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: NovoConditionInputDef, selector: "[novoConditionInputDef]" }, { type: i1$1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: SwitchCasesDirective, selector: "[novoSwitchCases]", inputs: ["novoSwitchCases"] }, { type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
|
58107
58127
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDefaultPickerConditionDef, decorators: [{
|
|
58108
58128
|
type: Component,
|
|
58109
58129
|
args: [{
|
|
@@ -58215,7 +58235,7 @@ NovoDefaultStringConditionDef.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
|
|
|
58215
58235
|
</novo-field>
|
|
58216
58236
|
</ng-container>
|
|
58217
58237
|
</ng-container>
|
|
58218
|
-
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoChipList, selector: "novo-chip-list", inputs: ["errorStateMatcher", "multiple", "stacked", "compareWith", "value", "required", "placeholder", "disabled", "aria-orientation", "selectable", "tabIndex"], outputs: ["change", "valueChange"], exportAs: ["novoChipList"] }, { type: NovoChipElement, selector: "novo-chip, [novo-chip]", inputs: ["color", "tabIndex", "size", "type", "selected", "value", "selectable", "disabled", "removable"], outputs: ["selectionChange", "destroyed", "removed"] }, { type: NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { type: NovoAutocompleteElement, selector: "novo-autocomplete", inputs: ["tabIndex", "triggerOn", "displayWith", "aria-label", "multiple", "disabled"], outputs: ["optionSelected", "optionActivated"], exportAs: ["novoAutocomplete"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "
|
|
58238
|
+
`, isInline: true, components: [{ type: NovoFieldElement, selector: "novo-field", inputs: ["layout", "appearance", "width"], outputs: ["valueChanges", "stateChanges"] }, { type: NovoSelectElement, selector: "novo-select", inputs: ["disabled", "required", "tabIndex", "id", "name", "options", "placeholder", "readonly", "headerConfig", "position", "overlayWidth", "overlayHeight", "displayWith", "compareWith", "value", "multiple"], outputs: ["onSelect", "selectionChange", "valueChange", "openedChange", "opened", "closed"] }, { type: NovoOption, selector: "novo-option", inputs: ["selected", "keepOpen", "novoInert", "value", "disabled"], exportAs: ["novoOption"] }, { type: NovoChipList, selector: "novo-chip-list", inputs: ["errorStateMatcher", "multiple", "stacked", "compareWith", "value", "required", "placeholder", "disabled", "aria-orientation", "selectable", "tabIndex"], outputs: ["change", "valueChange"], exportAs: ["novoChipList"] }, { type: NovoChipElement, selector: "novo-chip, [novo-chip]", inputs: ["color", "tabIndex", "size", "type", "selected", "value", "selectable", "disabled", "removable"], outputs: ["selectionChange", "destroyed", "removed"] }, { type: NovoIconComponent, selector: "novo-icon", inputs: ["raised", "theme", "shape", "color", "size", "smaller", "larger", "alt", "name"] }, { type: NovoAutocompleteElement, selector: "novo-autocomplete", inputs: ["tabIndex", "triggerOn", "displayWith", "aria-label", "multiple", "disabled"], outputs: ["optionSelected", "optionActivated"], exportAs: ["novoAutocomplete"] }, { type: NovoRadioGroup, selector: "novo-radio-group", inputs: ["id", "tabindex", "errorStateMatcher", "appearance", "value", "name", "disabled", "required", "placeholder"], outputs: ["change", "blur"] }, { type: NovoRadioElement, selector: "novo-radio", inputs: ["id", "name", "tabindex", "vertical", "label", "button", "theme", "size", "icon", "color", "checked", "value", "disabled"], outputs: ["change", "blur", "focus"] }], directives: [{ type: NovoConditionFieldDef, selector: "[novoConditionFieldDef]" }, { type: NovoConditionOperatorsDef, selector: "[novoConditionOperatorsDef]" }, { type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: NovoConditionInputDef, selector: "[novoConditionInputDef]" }, { type: i1$1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: SwitchCasesDirective, selector: "[novoSwitchCases]", inputs: ["novoSwitchCases"] }, { type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: NovoChipRemove, selector: "[novoChipRemove]" }, { type: NovoChipInput, selector: "input[novoChipInput]", inputs: ["novoChipInputAddOnBlur", "novoChipInputSeparatorKeyCodes", "placeholder", "id", "disabled"], outputs: ["novoChipInputTokenEnd"], exportAs: ["novoChipInput", "novoChipInputFor"] }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
|
58219
58239
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoDefaultStringConditionDef, decorators: [{
|
|
58220
58240
|
type: Component,
|
|
58221
58241
|
args: [{
|