@ni/nimble-angular 20.2.21 → 20.3.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/list-option/nimble-list-option.directive.d.ts +5 -1
- package/esm2020/directives/list-option/nimble-list-option.directive.mjs +18 -2
- package/esm2020/select/testing/ni-nimble-angular-select-testing.mjs +5 -0
- package/esm2020/select/testing/public-api.mjs +2 -0
- package/esm2020/select/testing/select.pageobject.mjs +3 -0
- package/fesm2015/ni-nimble-angular-select-testing.mjs +6 -0
- package/fesm2015/ni-nimble-angular-select-testing.mjs.map +1 -0
- package/fesm2015/ni-nimble-angular.mjs +17 -1
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular-select-testing.mjs +6 -0
- package/fesm2020/ni-nimble-angular-select-testing.mjs.map +1 -0
- package/fesm2020/ni-nimble-angular.mjs +17 -1
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/package.json +10 -2
- package/select/testing/index.d.ts +5 -0
- package/select/testing/public-api.d.ts +1 -0
- package/select/testing/select.pageobject.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/nimble-angular",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.3.0",
|
|
4
4
|
"description": "Angular components for the NI Nimble Design System",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -168,6 +168,14 @@
|
|
|
168
168
|
"node": "./fesm2015/ni-nimble-angular-rich-text-viewer-testing.mjs",
|
|
169
169
|
"default": "./fesm2020/ni-nimble-angular-rich-text-viewer-testing.mjs"
|
|
170
170
|
},
|
|
171
|
+
"./select/testing": {
|
|
172
|
+
"types": "./select/testing/index.d.ts",
|
|
173
|
+
"esm2020": "./esm2020/select/testing/ni-nimble-angular-select-testing.mjs",
|
|
174
|
+
"es2020": "./fesm2020/ni-nimble-angular-select-testing.mjs",
|
|
175
|
+
"es2015": "./fesm2015/ni-nimble-angular-select-testing.mjs",
|
|
176
|
+
"node": "./fesm2015/ni-nimble-angular-select-testing.mjs",
|
|
177
|
+
"default": "./fesm2020/ni-nimble-angular-select-testing.mjs"
|
|
178
|
+
},
|
|
171
179
|
"./table-column/anchor": {
|
|
172
180
|
"types": "./table-column/anchor/index.d.ts",
|
|
173
181
|
"esm2020": "./esm2020/table-column/anchor/ni-nimble-angular-table-column-anchor.mjs",
|
|
@@ -271,7 +279,7 @@
|
|
|
271
279
|
"@angular/forms": "^15.2.10",
|
|
272
280
|
"@angular/localize": "^15.2.10",
|
|
273
281
|
"@angular/router": "^15.2.10",
|
|
274
|
-
"@ni/nimble-components": "^21.10.
|
|
282
|
+
"@ni/nimble-components": "^21.10.2"
|
|
275
283
|
},
|
|
276
284
|
"dependencies": {
|
|
277
285
|
"tslib": "^2.2.0"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './select.pageobject';
|