@ni/nimble-angular 1.0.0-beta.9 → 1.0.0-beta.93

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.
Files changed (78) hide show
  1. package/README.md +6 -2
  2. package/bundles/ni-nimble-angular.umd.js +953 -0
  3. package/bundles/ni-nimble-angular.umd.js.map +1 -0
  4. package/directives/button/index.d.ts +2 -0
  5. package/directives/button/nimble-button.directive.d.ts +11 -0
  6. package/directives/button/nimble-button.module.d.ts +9 -0
  7. package/directives/checkbox/index.d.ts +3 -0
  8. package/directives/checkbox/nimble-checkbox-control-value-accessor.directive.d.ts +12 -0
  9. package/directives/checkbox/nimble-checkbox.directive.d.ts +8 -0
  10. package/directives/checkbox/nimble-checkbox.module.d.ts +10 -0
  11. package/directives/control-value-accessor/index.d.ts +3 -0
  12. package/directives/control-value-accessor/nimble-control-value-accessor.module.d.ts +9 -0
  13. package/directives/control-value-accessor/nimble-default-control-value-accessor.directive.d.ts +12 -0
  14. package/directives/control-value-accessor/nimble-number-control-value-accessor.directive.d.ts +12 -0
  15. package/directives/listbox-option/index.d.ts +2 -0
  16. package/directives/listbox-option/nimble-listbox-option.directive.d.ts +14 -0
  17. package/directives/listbox-option/nimble-listbox-option.module.d.ts +9 -0
  18. package/directives/number-field/index.d.ts +2 -0
  19. package/directives/number-field/nimble-number-field.directive.d.ts +13 -0
  20. package/directives/number-field/nimble-number-field.module.d.ts +10 -0
  21. package/directives/select/index.d.ts +3 -0
  22. package/directives/select/nimble-select-control-value-accessor.directive.d.ts +14 -0
  23. package/directives/select/nimble-select.directive.d.ts +8 -0
  24. package/directives/select/nimble-select.module.d.ts +10 -0
  25. package/directives/text-field/index.d.ts +2 -0
  26. package/directives/text-field/nimble-text-field.directive.d.ts +9 -0
  27. package/directives/text-field/nimble-text-field.module.d.ts +10 -0
  28. package/directives/theme-provider/index.d.ts +2 -0
  29. package/directives/theme-provider/nimble-theme-provider.directive.d.ts +9 -0
  30. package/directives/theme-provider/nimble-theme-provider.module.d.ts +9 -0
  31. package/directives/tree-item/index.d.ts +2 -0
  32. package/directives/tree-item/nimble-tree-item.directive.d.ts +19 -0
  33. package/directives/tree-item/nimble-tree-item.module.d.ts +9 -0
  34. package/directives/tree-view/index.d.ts +2 -0
  35. package/directives/tree-view/nimble-tree-view.directive.d.ts +8 -0
  36. package/directives/tree-view/nimble-tree-view.module.d.ts +9 -0
  37. package/esm2015/directives/button/index.js +3 -0
  38. package/esm2015/directives/button/nimble-button.directive.js +26 -0
  39. package/esm2015/directives/button/nimble-button.module.js +19 -0
  40. package/esm2015/directives/checkbox/index.js +4 -0
  41. package/esm2015/directives/checkbox/nimble-checkbox-control-value-accessor.directive.js +32 -0
  42. package/esm2015/directives/checkbox/nimble-checkbox.directive.js +16 -0
  43. package/esm2015/directives/checkbox/nimble-checkbox.module.js +20 -0
  44. package/esm2015/directives/control-value-accessor/index.js +4 -0
  45. package/esm2015/directives/control-value-accessor/nimble-control-value-accessor.module.js +19 -0
  46. package/esm2015/directives/control-value-accessor/nimble-default-control-value-accessor.directive.js +37 -0
  47. package/esm2015/directives/control-value-accessor/nimble-number-control-value-accessor.directive.js +32 -0
  48. package/esm2015/directives/listbox-option/index.js +3 -0
  49. package/esm2015/directives/listbox-option/nimble-listbox-option.directive.js +30 -0
  50. package/esm2015/directives/listbox-option/nimble-listbox-option.module.js +19 -0
  51. package/esm2015/directives/number-field/index.js +3 -0
  52. package/esm2015/directives/number-field/nimble-number-field.directive.js +41 -0
  53. package/esm2015/directives/number-field/nimble-number-field.module.js +21 -0
  54. package/esm2015/directives/select/index.js +4 -0
  55. package/esm2015/directives/select/nimble-select-control-value-accessor.directive.js +34 -0
  56. package/esm2015/directives/select/nimble-select.directive.js +16 -0
  57. package/esm2015/directives/select/nimble-select.module.js +20 -0
  58. package/esm2015/directives/text-field/index.js +3 -0
  59. package/esm2015/directives/text-field/nimble-text-field.directive.js +21 -0
  60. package/esm2015/directives/text-field/nimble-text-field.module.js +21 -0
  61. package/esm2015/directives/theme-provider/index.js +3 -0
  62. package/esm2015/directives/theme-provider/nimble-theme-provider.directive.js +21 -0
  63. package/esm2015/directives/theme-provider/nimble-theme-provider.module.js +19 -0
  64. package/esm2015/directives/tree-item/index.js +3 -0
  65. package/esm2015/directives/tree-item/nimble-tree-item.directive.js +63 -0
  66. package/esm2015/directives/tree-item/nimble-tree-item.module.js +19 -0
  67. package/esm2015/directives/tree-view/index.js +3 -0
  68. package/esm2015/directives/tree-view/nimble-tree-view.directive.js +16 -0
  69. package/esm2015/directives/tree-view/nimble-tree-view.module.js +19 -0
  70. package/esm2015/ni-nimble-angular.js +5 -0
  71. package/esm2015/public-api.js +14 -0
  72. package/fesm2015/ni-nimble-angular.js +519 -0
  73. package/fesm2015/ni-nimble-angular.js.map +1 -0
  74. package/ni-nimble-angular.d.ts +5 -0
  75. package/package.json +22 -13
  76. package/public-api.d.ts +10 -0
  77. package/.eslintrc.js +0 -38
  78. package/karma.conf.js +0 -46
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <p align="center"><b>ni | nimble | angular</b></p>
2
+ <p><b>ni | nimble | angular</b></p>
3
3
  </div>
4
4
 
5
5
  # Nimble Angular
@@ -8,10 +8,14 @@
8
8
 
9
9
  NI-styled UI components for Angular applications
10
10
 
11
- ## Getting Started
11
+ ## Getting started
12
12
 
13
13
  You are currently required to set `"buildOptimizer": "false"` in `angular.json`. See [#18](https://github.com/ni/nimble/issues/18) for more info.
14
14
 
15
+ ### Using Nimble form controls
16
+
17
+ For best results, always use `ngModel`, `formControl`, or `formControlName` bindings when integrating Nimble form controls in Angular. Binding to the control's native value property or event (e.g. `[value]` or `(change)`) is not supported, and can cause build failures and other issues. If a value change event is necessary, use `ngModel (ngModelChange)="onChange()"`.
18
+
15
19
  ## Contributing
16
20
 
17
21
  Follow the instructions in [CONTRIBUTING.md](CONTRIBUTING.md) to modify this library.