@ni/nimble-angular 28.7.4 → 28.8.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.
- package/directives/combobox/nimble-combobox.directive.d.ts +3 -1
- package/directives/number-field/nimble-number-field.directive.d.ts +3 -1
- package/directives/radio-group/nimble-radio-group.directive.d.ts +3 -1
- package/directives/select/nimble-select.directive.d.ts +3 -1
- package/directives/text-area/nimble-text-area.directive.d.ts +3 -1
- package/directives/text-field/nimble-text-field.directive.d.ts +3 -1
- package/esm2022/directives/combobox/nimble-combobox.directive.mjs +11 -2
- package/esm2022/directives/number-field/nimble-number-field.directive.mjs +11 -2
- package/esm2022/directives/radio-group/nimble-radio-group.directive.mjs +11 -2
- package/esm2022/directives/select/nimble-select.directive.mjs +11 -2
- package/esm2022/directives/text-area/nimble-text-area.directive.mjs +11 -2
- package/esm2022/directives/text-field/nimble-text-field.directive.mjs +11 -2
- package/fesm2022/ni-nimble-angular.mjs +60 -6
- package/fesm2022/ni-nimble-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2174,12 +2174,18 @@ class NimbleComboboxDirective {
|
|
|
2174
2174
|
set open(value) {
|
|
2175
2175
|
this.renderer.setProperty(this.elementRef.nativeElement, 'open', toBooleanProperty(value));
|
|
2176
2176
|
}
|
|
2177
|
+
get requiredVisible() {
|
|
2178
|
+
return this.elementRef.nativeElement.requiredVisible;
|
|
2179
|
+
}
|
|
2180
|
+
set requiredVisible(value) {
|
|
2181
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'requiredVisible', toBooleanProperty(value));
|
|
2182
|
+
}
|
|
2177
2183
|
constructor(renderer, elementRef) {
|
|
2178
2184
|
this.renderer = renderer;
|
|
2179
2185
|
this.elementRef = elementRef;
|
|
2180
2186
|
}
|
|
2181
2187
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleComboboxDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2182
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleComboboxDirective, selector: "nimble-combobox", inputs: { appearance: "appearance", disabled: "disabled", autocomplete: "autocomplete", placeholder: "placeholder", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"], open: "open" }, ngImport: i0 }); }
|
|
2188
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleComboboxDirective, selector: "nimble-combobox", inputs: { appearance: "appearance", disabled: "disabled", autocomplete: "autocomplete", placeholder: "placeholder", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"], open: "open", requiredVisible: ["required-visible", "requiredVisible"] }, ngImport: i0 }); }
|
|
2183
2189
|
}
|
|
2184
2190
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleComboboxDirective, decorators: [{
|
|
2185
2191
|
type: Directive,
|
|
@@ -2202,6 +2208,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
2202
2208
|
args: ['error-visible']
|
|
2203
2209
|
}], open: [{
|
|
2204
2210
|
type: Input
|
|
2211
|
+
}], requiredVisible: [{
|
|
2212
|
+
type: Input,
|
|
2213
|
+
args: ['required-visible']
|
|
2205
2214
|
}] } });
|
|
2206
2215
|
|
|
2207
2216
|
class NimbleComboboxModule {
|
|
@@ -9797,12 +9806,18 @@ class NimbleNumberFieldDirective {
|
|
|
9797
9806
|
set errorVisible(value) {
|
|
9798
9807
|
this.renderer.setProperty(this.elementRef.nativeElement, 'errorVisible', toBooleanProperty(value));
|
|
9799
9808
|
}
|
|
9809
|
+
get requiredVisible() {
|
|
9810
|
+
return this.elementRef.nativeElement.requiredVisible;
|
|
9811
|
+
}
|
|
9812
|
+
set requiredVisible(value) {
|
|
9813
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'requiredVisible', toBooleanProperty(value));
|
|
9814
|
+
}
|
|
9800
9815
|
constructor(renderer, elementRef) {
|
|
9801
9816
|
this.renderer = renderer;
|
|
9802
9817
|
this.elementRef = elementRef;
|
|
9803
9818
|
}
|
|
9804
9819
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleNumberFieldDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
9805
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleNumberFieldDirective, selector: "nimble-number-field", inputs: { appearance: "appearance", readOnly: ["readonly", "readOnly"], min: "min", max: "max", step: "step", hideStep: ["hide-step", "hideStep"], placeholder: "placeholder", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"] }, ngImport: i0 }); }
|
|
9820
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleNumberFieldDirective, selector: "nimble-number-field", inputs: { appearance: "appearance", readOnly: ["readonly", "readOnly"], min: "min", max: "max", step: "step", hideStep: ["hide-step", "hideStep"], placeholder: "placeholder", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"], requiredVisible: ["required-visible", "requiredVisible"] }, ngImport: i0 }); }
|
|
9806
9821
|
}
|
|
9807
9822
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleNumberFieldDirective, decorators: [{
|
|
9808
9823
|
type: Directive,
|
|
@@ -9831,6 +9846,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
9831
9846
|
}], errorVisible: [{
|
|
9832
9847
|
type: Input,
|
|
9833
9848
|
args: ['error-visible']
|
|
9849
|
+
}], requiredVisible: [{
|
|
9850
|
+
type: Input,
|
|
9851
|
+
args: ['required-visible']
|
|
9834
9852
|
}] } });
|
|
9835
9853
|
|
|
9836
9854
|
class NimbleNumberFieldModule {
|
|
@@ -10216,12 +10234,18 @@ class NimbleRadioGroupDirective {
|
|
|
10216
10234
|
set errorVisible(value) {
|
|
10217
10235
|
this.renderer.setProperty(this.elementRef.nativeElement, 'errorVisible', toBooleanProperty(value));
|
|
10218
10236
|
}
|
|
10237
|
+
get requiredVisible() {
|
|
10238
|
+
return this.elementRef.nativeElement.requiredVisible;
|
|
10239
|
+
}
|
|
10240
|
+
set requiredVisible(value) {
|
|
10241
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'requiredVisible', toBooleanProperty(value));
|
|
10242
|
+
}
|
|
10219
10243
|
constructor(renderer, elementRef) {
|
|
10220
10244
|
this.renderer = renderer;
|
|
10221
10245
|
this.elementRef = elementRef;
|
|
10222
10246
|
}
|
|
10223
10247
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleRadioGroupDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
10224
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleRadioGroupDirective, selector: "nimble-radio-group", inputs: { disabled: "disabled", name: "name", orientation: "orientation", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"] }, ngImport: i0 }); }
|
|
10248
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleRadioGroupDirective, selector: "nimble-radio-group", inputs: { disabled: "disabled", name: "name", orientation: "orientation", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"], requiredVisible: ["required-visible", "requiredVisible"] }, ngImport: i0 }); }
|
|
10225
10249
|
}
|
|
10226
10250
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleRadioGroupDirective, decorators: [{
|
|
10227
10251
|
type: Directive,
|
|
@@ -10240,6 +10264,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
10240
10264
|
}], errorVisible: [{
|
|
10241
10265
|
type: Input,
|
|
10242
10266
|
args: ['error-visible']
|
|
10267
|
+
}], requiredVisible: [{
|
|
10268
|
+
type: Input,
|
|
10269
|
+
args: ['required-visible']
|
|
10243
10270
|
}] } });
|
|
10244
10271
|
|
|
10245
10272
|
class NimbleRadioGroupModule {
|
|
@@ -10302,12 +10329,18 @@ class NimbleSelectDirective {
|
|
|
10302
10329
|
set loadingVisible(value) {
|
|
10303
10330
|
this.renderer.setProperty(this.elementRef.nativeElement, 'loadingVisible', toBooleanProperty(value));
|
|
10304
10331
|
}
|
|
10332
|
+
get requiredVisible() {
|
|
10333
|
+
return this.elementRef.nativeElement.requiredVisible;
|
|
10334
|
+
}
|
|
10335
|
+
set requiredVisible(value) {
|
|
10336
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'requiredVisible', toBooleanProperty(value));
|
|
10337
|
+
}
|
|
10305
10338
|
constructor(renderer, elementRef) {
|
|
10306
10339
|
this.renderer = renderer;
|
|
10307
10340
|
this.elementRef = elementRef;
|
|
10308
10341
|
}
|
|
10309
10342
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleSelectDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
10310
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleSelectDirective, selector: "nimble-select", inputs: { appearance: "appearance", filterMode: ["filter-mode", "filterMode"], clearable: "clearable", disabled: "disabled", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"], loadingVisible: ["loading-visible", "loadingVisible"] }, ngImport: i0 }); }
|
|
10343
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleSelectDirective, selector: "nimble-select", inputs: { appearance: "appearance", filterMode: ["filter-mode", "filterMode"], clearable: "clearable", disabled: "disabled", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"], loadingVisible: ["loading-visible", "loadingVisible"], requiredVisible: ["required-visible", "requiredVisible"] }, ngImport: i0 }); }
|
|
10311
10344
|
}
|
|
10312
10345
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleSelectDirective, decorators: [{
|
|
10313
10346
|
type: Directive,
|
|
@@ -10332,6 +10365,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
10332
10365
|
}], loadingVisible: [{
|
|
10333
10366
|
type: Input,
|
|
10334
10367
|
args: ['loading-visible']
|
|
10368
|
+
}], requiredVisible: [{
|
|
10369
|
+
type: Input,
|
|
10370
|
+
args: ['required-visible']
|
|
10335
10371
|
}] } });
|
|
10336
10372
|
|
|
10337
10373
|
class NimbleSelectModule {
|
|
@@ -10882,12 +10918,18 @@ class NimbleTextAreaDirective {
|
|
|
10882
10918
|
set spellcheck(value) {
|
|
10883
10919
|
this.renderer.setProperty(this.elementRef.nativeElement, 'spellcheck', toBooleanProperty(value));
|
|
10884
10920
|
}
|
|
10921
|
+
get requiredVisible() {
|
|
10922
|
+
return this.elementRef.nativeElement.requiredVisible;
|
|
10923
|
+
}
|
|
10924
|
+
set requiredVisible(value) {
|
|
10925
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'requiredVisible', toBooleanProperty(value));
|
|
10926
|
+
}
|
|
10885
10927
|
constructor(renderer, elementRef) {
|
|
10886
10928
|
this.renderer = renderer;
|
|
10887
10929
|
this.elementRef = elementRef;
|
|
10888
10930
|
}
|
|
10889
10931
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleTextAreaDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
10890
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleTextAreaDirective, selector: "nimble-text-area", inputs: { appearance: "appearance", readOnly: ["readonly", "readOnly"], resize: "resize", autofocus: "autofocus", disabled: "disabled", errorVisible: ["error-visible", "errorVisible"], errorText: ["error-text", "errorText"], required: "required", formId: ["form", "formId"], maxlength: "maxlength", minlength: "minlength", placeholder: "placeholder", cols: "cols", rows: "rows", spellcheck: "spellcheck" }, ngImport: i0 }); }
|
|
10932
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleTextAreaDirective, selector: "nimble-text-area", inputs: { appearance: "appearance", readOnly: ["readonly", "readOnly"], resize: "resize", autofocus: "autofocus", disabled: "disabled", errorVisible: ["error-visible", "errorVisible"], errorText: ["error-text", "errorText"], required: "required", formId: ["form", "formId"], maxlength: "maxlength", minlength: "minlength", placeholder: "placeholder", cols: "cols", rows: "rows", spellcheck: "spellcheck", requiredVisible: ["required-visible", "requiredVisible"] }, ngImport: i0 }); }
|
|
10891
10933
|
}
|
|
10892
10934
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleTextAreaDirective, decorators: [{
|
|
10893
10935
|
type: Directive,
|
|
@@ -10928,6 +10970,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
10928
10970
|
type: Input
|
|
10929
10971
|
}], spellcheck: [{
|
|
10930
10972
|
type: Input
|
|
10973
|
+
}], requiredVisible: [{
|
|
10974
|
+
type: Input,
|
|
10975
|
+
args: ['required-visible']
|
|
10931
10976
|
}] } });
|
|
10932
10977
|
|
|
10933
10978
|
class NimbleTextAreaModule {
|
|
@@ -11075,12 +11120,18 @@ class NimbleTextFieldDirective {
|
|
|
11075
11120
|
set fullBleed(value) {
|
|
11076
11121
|
this.renderer.setProperty(this.elementRef.nativeElement, 'fullBleed', toBooleanProperty(value));
|
|
11077
11122
|
}
|
|
11123
|
+
get requiredVisible() {
|
|
11124
|
+
return this.elementRef.nativeElement.requiredVisible;
|
|
11125
|
+
}
|
|
11126
|
+
set requiredVisible(value) {
|
|
11127
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'requiredVisible', toBooleanProperty(value));
|
|
11128
|
+
}
|
|
11078
11129
|
constructor(renderer, elementRef) {
|
|
11079
11130
|
this.renderer = renderer;
|
|
11080
11131
|
this.elementRef = elementRef;
|
|
11081
11132
|
}
|
|
11082
11133
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleTextFieldDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11083
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleTextFieldDirective, selector: "nimble-text-field", inputs: { appearance: "appearance", readOnly: ["readonly", "readOnly"], type: "type", autofocus: "autofocus", disabled: "disabled", required: "required", placeholder: "placeholder", maxlength: "maxlength", minlength: "minlength", pattern: "pattern", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"], size: "size", spellcheck: "spellcheck", fullBleed: ["full-bleed", "fullBleed"] }, ngImport: i0 }); }
|
|
11134
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NimbleTextFieldDirective, selector: "nimble-text-field", inputs: { appearance: "appearance", readOnly: ["readonly", "readOnly"], type: "type", autofocus: "autofocus", disabled: "disabled", required: "required", placeholder: "placeholder", maxlength: "maxlength", minlength: "minlength", pattern: "pattern", errorText: ["error-text", "errorText"], errorVisible: ["error-visible", "errorVisible"], size: "size", spellcheck: "spellcheck", fullBleed: ["full-bleed", "fullBleed"], requiredVisible: ["required-visible", "requiredVisible"] }, ngImport: i0 }); }
|
|
11084
11135
|
}
|
|
11085
11136
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NimbleTextFieldDirective, decorators: [{
|
|
11086
11137
|
type: Directive,
|
|
@@ -11121,6 +11172,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
11121
11172
|
}], fullBleed: [{
|
|
11122
11173
|
type: Input,
|
|
11123
11174
|
args: ['full-bleed']
|
|
11175
|
+
}], requiredVisible: [{
|
|
11176
|
+
type: Input,
|
|
11177
|
+
args: ['required-visible']
|
|
11124
11178
|
}] } });
|
|
11125
11179
|
|
|
11126
11180
|
class NimbleTextFieldModule {
|