@ni/nimble-angular 4.0.5 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/ni-nimble-angular.umd.js +101 -4
- package/bundles/ni-nimble-angular.umd.js.map +1 -1
- package/directives/switch/nimble-switch-control-value-accessor.directive.d.ts +12 -0
- package/directives/switch/nimble-switch.directive.d.ts +19 -0
- package/directives/switch/nimble-switch.module.d.ts +10 -0
- package/esm2015/directives/switch/nimble-switch-control-value-accessor.directive.js +32 -0
- package/esm2015/directives/switch/nimble-switch.directive.js +37 -0
- package/esm2015/directives/switch/nimble-switch.module.js +20 -0
- package/esm2015/public-api.js +4 -1
- package/fesm2015/ni-nimble-angular.js +79 -1
- package/fesm2015/ni-nimble-angular.js.map +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/nimble-angular",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"description": "Angular components for the NI Nimble Design System",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@angular/core": "^12.1.0",
|
|
20
20
|
"@angular/forms": "^12.1.0",
|
|
21
21
|
"@angular/router": "^12.1.0",
|
|
22
|
-
"@ni/nimble-components": "^7.
|
|
22
|
+
"@ni/nimble-components": "^7.2.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.2.0"
|
package/public-api.d.ts
CHANGED
|
@@ -307,6 +307,9 @@ export * from './directives/number-field/nimble-number-field.module';
|
|
|
307
307
|
export * from './directives/select/nimble-select-control-value-accessor.directive';
|
|
308
308
|
export * from './directives/select/nimble-select.directive';
|
|
309
309
|
export * from './directives/select/nimble-select.module';
|
|
310
|
+
export * from './directives/switch/nimble-switch-control-value-accessor.directive';
|
|
311
|
+
export * from './directives/switch/nimble-switch.directive';
|
|
312
|
+
export * from './directives/switch/nimble-switch.module';
|
|
310
313
|
export * from './directives/tab/nimble-tab.directive';
|
|
311
314
|
export * from './directives/tab/nimble-tab.module';
|
|
312
315
|
export * from './directives/tab-panel/nimble-tab-panel.directive';
|