@ni/nimble-angular 14.0.20 → 14.2.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.
Files changed (33) hide show
  1. package/directives/anchor/nimble-anchor-router-link-with-href.directive.d.ts +19 -0
  2. package/directives/anchor/nimble-anchor-router-link.directive.d.ts +11 -0
  3. package/directives/anchor/nimble-anchor.directive.d.ts +20 -0
  4. package/directives/anchor/nimble-anchor.module.d.ts +11 -0
  5. package/directives/anchor-base/nimble-anchor-base.directive.d.ts +27 -0
  6. package/directives/anchor-button/nimble-anchor-button-router-link-with-href.directive.d.ts +19 -0
  7. package/directives/anchor-button/nimble-anchor-button-router-link.directive.d.ts +11 -0
  8. package/directives/anchor-button/nimble-anchor-button.directive.d.ts +23 -0
  9. package/directives/anchor-button/nimble-anchor-button.module.d.ts +11 -0
  10. package/directives/breadcrumb-item/nimble-breadcrumb-item.directive.d.ts +3 -18
  11. package/directives/button/nimble-button.directive.d.ts +2 -3
  12. package/directives/spinner/nimble-spinner.directive.d.ts +10 -0
  13. package/directives/spinner/nimble-spinner.module.d.ts +9 -0
  14. package/esm2020/directives/anchor/nimble-anchor-router-link-with-href.directive.mjs +29 -0
  15. package/esm2020/directives/anchor/nimble-anchor-router-link.directive.mjs +19 -0
  16. package/esm2020/directives/anchor/nimble-anchor.directive.mjs +42 -0
  17. package/esm2020/directives/anchor/nimble-anchor.module.mjs +21 -0
  18. package/esm2020/directives/anchor-base/nimble-anchor-base.directive.mjs +73 -0
  19. package/esm2020/directives/anchor-button/nimble-anchor-button-router-link-with-href.directive.mjs +29 -0
  20. package/esm2020/directives/anchor-button/nimble-anchor-button-router-link.directive.mjs +19 -0
  21. package/esm2020/directives/anchor-button/nimble-anchor-button.directive.mjs +59 -0
  22. package/esm2020/directives/anchor-button/nimble-anchor-button.module.mjs +21 -0
  23. package/esm2020/directives/breadcrumb-item/nimble-breadcrumb-item.directive.mjs +7 -63
  24. package/esm2020/directives/button/nimble-button.directive.mjs +1 -3
  25. package/esm2020/directives/spinner/nimble-spinner.directive.mjs +16 -0
  26. package/esm2020/directives/spinner/nimble-spinner.module.mjs +19 -0
  27. package/esm2020/public-api.mjs +12 -2
  28. package/fesm2015/ni-nimble-angular.mjs +331 -81
  29. package/fesm2015/ni-nimble-angular.mjs.map +1 -1
  30. package/fesm2020/ni-nimble-angular.mjs +331 -81
  31. package/fesm2020/ni-nimble-angular.mjs.map +1 -1
  32. package/package.json +1 -1
  33. package/public-api.d.ts +11 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ni/nimble-angular",
3
- "version": "14.0.20",
3
+ "version": "14.2.0",
4
4
  "description": "Angular components for the NI Nimble Design System",
5
5
  "repository": {
6
6
  "type": "git",
package/public-api.d.ts CHANGED
@@ -1,3 +1,11 @@
1
+ export * from './directives/anchor/nimble-anchor-router-link-with-href.directive';
2
+ export * from './directives/anchor/nimble-anchor-router-link.directive';
3
+ export * from './directives/anchor/nimble-anchor.directive';
4
+ export * from './directives/anchor/nimble-anchor.module';
5
+ export * from './directives/anchor-button/nimble-anchor-button-router-link-with-href.directive';
6
+ export * from './directives/anchor-button/nimble-anchor-button-router-link.directive';
7
+ export * from './directives/anchor-button/nimble-anchor-button.directive';
8
+ export * from './directives/anchor-button/nimble-anchor-button.module';
1
9
  export * from './directives/breadcrumb/nimble-breadcrumb.directive';
2
10
  export * from './directives/breadcrumb/nimble-breadcrumb.module';
3
11
  export * from './directives/breadcrumb-item/nimble-breadcrumb-item-router-link-with-href.directive';
@@ -39,6 +47,8 @@ export * from './directives/radio-group/nimble-radio-group.module';
39
47
  export * from './directives/select/nimble-select-control-value-accessor.directive';
40
48
  export * from './directives/select/nimble-select.directive';
41
49
  export * from './directives/select/nimble-select.module';
50
+ export * from './directives/spinner/nimble-spinner.directive';
51
+ export * from './directives/spinner/nimble-spinner.module';
42
52
  export * from './directives/switch/nimble-switch-control-value-accessor.directive';
43
53
  export * from './directives/switch/nimble-switch.directive';
44
54
  export * from './directives/switch/nimble-switch.module';
@@ -72,7 +82,7 @@ export * from './directives/tree-view/nimble-tree-view.module';
72
82
  export * from './directives/tooltip/nimble-tooltip.directive';
73
83
  export * from './directives/tooltip/nimble-tooltip.module';
74
84
  export * from './testing/async-helpers';
75
- export { ButtonAppearance } from '@ni/nimble-components/dist/esm/patterns/button/types';
85
+ export { ButtonAppearance, ButtonAppearanceVariant } from '@ni/nimble-components/dist/esm/patterns/button/types';
76
86
  export { DropdownAppearance } from '@ni/nimble-components/dist/esm/patterns/dropdown/types';
77
87
  export { IconSeverity } from '@ni/nimble-components/dist/esm/icon-base/types';
78
88
  export type { ListOption } from '@ni/nimble-components/dist/esm/list-option';