@nova-design-system/nova-angular-19 3.30.0 → 3.31.0
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.
|
@@ -785,18 +785,19 @@ let NvFielddropdown = class NvFielddropdown {
|
|
|
785
785
|
this.z = z;
|
|
786
786
|
this.valueChanged = new EventEmitter();
|
|
787
787
|
this.filterTextChanged = new EventEmitter();
|
|
788
|
+
this.cleared = new EventEmitter();
|
|
788
789
|
this.openChanged = new EventEmitter();
|
|
789
790
|
this.dropdownItemSelected = new EventEmitter();
|
|
790
791
|
c.detach();
|
|
791
792
|
this.el = r.nativeElement;
|
|
792
793
|
}
|
|
793
794
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFielddropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
794
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddropdown, isStandalone: false, selector: "nv-fielddropdown", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autocomplete: "autocomplete", autofocus: "autofocus", controlledFilter: "controlledFilter", debounceDelay: "debounceDelay", description: "description", disabled: "disabled", emptyResult: "emptyResult", error: "error", errorDescription: "errorDescription", filterMode: "filterMode", filterable: "filterable", fluid: "fluid", fuzzyThreshold: "fuzzyThreshold", inputId: "inputId", label: "label", locale: "locale", maxHeight: "maxHeight", maxResults: "maxResults", name: "name", openOnSelect: "openOnSelect", options: "options", placeholder: "placeholder", readonly: "readonly", required: "required", startFilterAt: "startFilterAt", truncatedResultsText: "truncatedResultsText", value: "value", workerThreshold: "workerThreshold" }, outputs: { valueChanged: "valueChanged", filterTextChanged: "filterTextChanged", openChanged: "openChanged", dropdownItemSelected: "dropdownItemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
795
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFielddropdown, isStandalone: false, selector: "nv-fielddropdown", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autocomplete: "autocomplete", autofocus: "autofocus", clearable: "clearable", controlledFilter: "controlledFilter", debounceDelay: "debounceDelay", description: "description", disabled: "disabled", emptyResult: "emptyResult", error: "error", errorDescription: "errorDescription", filterMode: "filterMode", filterable: "filterable", fluid: "fluid", fuzzyThreshold: "fuzzyThreshold", inputId: "inputId", label: "label", locale: "locale", maxHeight: "maxHeight", maxResults: "maxResults", name: "name", openOnSelect: "openOnSelect", options: "options", placeholder: "placeholder", readonly: "readonly", required: "required", startFilterAt: "startFilterAt", truncatedResultsText: "truncatedResultsText", value: "value", workerThreshold: "workerThreshold" }, outputs: { valueChanged: "valueChanged", filterTextChanged: "filterTextChanged", cleared: "cleared", openChanged: "openChanged", dropdownItemSelected: "dropdownItemSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
795
796
|
};
|
|
796
797
|
NvFielddropdown = __decorate([
|
|
797
798
|
ProxyCmp({
|
|
798
|
-
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterMode', 'filterable', 'fluid', 'fuzzyThreshold', 'inputId', 'label', 'locale', 'maxHeight', 'maxResults', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'startFilterAt', 'truncatedResultsText', 'value', 'workerThreshold'],
|
|
799
|
-
methods: ['clearFilter', 'toggleDropdown']
|
|
799
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'clearable', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterMode', 'filterable', 'fluid', 'fuzzyThreshold', 'inputId', 'label', 'locale', 'maxHeight', 'maxResults', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'startFilterAt', 'truncatedResultsText', 'value', 'workerThreshold'],
|
|
800
|
+
methods: ['clearFilter', 'clear', 'toggleDropdown']
|
|
800
801
|
})
|
|
801
802
|
], NvFielddropdown);
|
|
802
803
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFielddropdown, decorators: [{
|
|
@@ -806,14 +807,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
806
807
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
807
808
|
template: '<ng-content></ng-content>',
|
|
808
809
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
809
|
-
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterMode', 'filterable', 'fluid', 'fuzzyThreshold', 'inputId', 'label', 'locale', 'maxHeight', 'maxResults', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'startFilterAt', 'truncatedResultsText', 'value', 'workerThreshold'],
|
|
810
|
-
outputs: ['valueChanged', 'filterTextChanged', 'openChanged', 'dropdownItemSelected'],
|
|
810
|
+
inputs: ['ariaRequiredAttr', 'autocomplete', 'autofocus', 'clearable', 'controlledFilter', 'debounceDelay', 'description', 'disabled', 'emptyResult', 'error', 'errorDescription', 'filterMode', 'filterable', 'fluid', 'fuzzyThreshold', 'inputId', 'label', 'locale', 'maxHeight', 'maxResults', 'name', 'openOnSelect', 'options', 'placeholder', 'readonly', 'required', 'startFilterAt', 'truncatedResultsText', 'value', 'workerThreshold'],
|
|
811
|
+
outputs: ['valueChanged', 'filterTextChanged', 'cleared', 'openChanged', 'dropdownItemSelected'],
|
|
811
812
|
standalone: false
|
|
812
813
|
}]
|
|
813
814
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
814
815
|
type: Output
|
|
815
816
|
}], filterTextChanged: [{
|
|
816
817
|
type: Output
|
|
818
|
+
}], cleared: [{
|
|
819
|
+
type: Output
|
|
817
820
|
}], openChanged: [{
|
|
818
821
|
type: Output
|
|
819
822
|
}], dropdownItemSelected: [{
|
|
@@ -1001,15 +1004,17 @@ let NvFieldselect = class NvFieldselect {
|
|
|
1001
1004
|
constructor(c, r, z) {
|
|
1002
1005
|
this.z = z;
|
|
1003
1006
|
this.valueChanged = new EventEmitter();
|
|
1007
|
+
this.cleared = new EventEmitter();
|
|
1004
1008
|
c.detach();
|
|
1005
1009
|
this.el = r.nativeElement;
|
|
1006
1010
|
}
|
|
1007
1011
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFieldselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1008
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldselect, isStandalone: false, selector: "nv-fieldselect", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autofocus: "autofocus", description: "description", disabled: "disabled", displayValue: "displayValue", error: "error", errorDescription: "errorDescription", fluid: "fluid", inputId: "inputId", label: "label", message: "message", multiple: "multiple", name: "name", options: "options", readonly: "readonly", required: "required", success: "success", validation: "validation", value: "value" }, outputs: { valueChanged: "valueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1012
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: NvFieldselect, isStandalone: false, selector: "nv-fieldselect", inputs: { ariaRequiredAttr: "ariaRequiredAttr", autofocus: "autofocus", clearable: "clearable", description: "description", disabled: "disabled", displayValue: "displayValue", error: "error", errorDescription: "errorDescription", fluid: "fluid", inputId: "inputId", label: "label", message: "message", multiple: "multiple", name: "name", options: "options", readonly: "readonly", required: "required", success: "success", validation: "validation", value: "value" }, outputs: { valueChanged: "valueChanged", cleared: "cleared" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1009
1013
|
};
|
|
1010
1014
|
NvFieldselect = __decorate([
|
|
1011
1015
|
ProxyCmp({
|
|
1012
|
-
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value']
|
|
1016
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'clearable', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
|
|
1017
|
+
methods: ['clear']
|
|
1013
1018
|
})
|
|
1014
1019
|
], NvFieldselect);
|
|
1015
1020
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: NvFieldselect, decorators: [{
|
|
@@ -1019,12 +1024,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
1019
1024
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1020
1025
|
template: '<ng-content></ng-content>',
|
|
1021
1026
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1022
|
-
inputs: ['ariaRequiredAttr', 'autofocus', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
|
|
1023
|
-
outputs: ['valueChanged'],
|
|
1027
|
+
inputs: ['ariaRequiredAttr', 'autofocus', 'clearable', 'description', 'disabled', 'displayValue', 'error', 'errorDescription', 'fluid', 'inputId', 'label', 'message', 'multiple', 'name', 'options', 'readonly', 'required', 'success', 'validation', 'value'],
|
|
1028
|
+
outputs: ['valueChanged', 'cleared'],
|
|
1024
1029
|
standalone: false
|
|
1025
1030
|
}]
|
|
1026
1031
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { valueChanged: [{
|
|
1027
1032
|
type: Output
|
|
1033
|
+
}], cleared: [{
|
|
1034
|
+
type: Output
|
|
1028
1035
|
}] } });
|
|
1029
1036
|
let NvFieldslider = class NvFieldslider {
|
|
1030
1037
|
constructor(c, r, z) {
|