@ni/nimble-angular 14.1.0 → 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 (29) 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/esm2020/directives/anchor/nimble-anchor-router-link-with-href.directive.mjs +29 -0
  13. package/esm2020/directives/anchor/nimble-anchor-router-link.directive.mjs +19 -0
  14. package/esm2020/directives/anchor/nimble-anchor.directive.mjs +42 -0
  15. package/esm2020/directives/anchor/nimble-anchor.module.mjs +21 -0
  16. package/esm2020/directives/anchor-base/nimble-anchor-base.directive.mjs +73 -0
  17. package/esm2020/directives/anchor-button/nimble-anchor-button-router-link-with-href.directive.mjs +29 -0
  18. package/esm2020/directives/anchor-button/nimble-anchor-button-router-link.directive.mjs +19 -0
  19. package/esm2020/directives/anchor-button/nimble-anchor-button.directive.mjs +59 -0
  20. package/esm2020/directives/anchor-button/nimble-anchor-button.module.mjs +21 -0
  21. package/esm2020/directives/breadcrumb-item/nimble-breadcrumb-item.directive.mjs +7 -63
  22. package/esm2020/directives/button/nimble-button.directive.mjs +1 -3
  23. package/esm2020/public-api.mjs +10 -2
  24. package/fesm2015/ni-nimble-angular.mjs +302 -81
  25. package/fesm2015/ni-nimble-angular.mjs.map +1 -1
  26. package/fesm2020/ni-nimble-angular.mjs +302 -81
  27. package/fesm2020/ni-nimble-angular.mjs.map +1 -1
  28. package/package.json +1 -1
  29. package/public-api.d.ts +9 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ni/nimble-angular",
3
- "version": "14.1.0",
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';
@@ -74,7 +82,7 @@ export * from './directives/tree-view/nimble-tree-view.module';
74
82
  export * from './directives/tooltip/nimble-tooltip.directive';
75
83
  export * from './directives/tooltip/nimble-tooltip.module';
76
84
  export * from './testing/async-helpers';
77
- export { ButtonAppearance } from '@ni/nimble-components/dist/esm/patterns/button/types';
85
+ export { ButtonAppearance, ButtonAppearanceVariant } from '@ni/nimble-components/dist/esm/patterns/button/types';
78
86
  export { DropdownAppearance } from '@ni/nimble-components/dist/esm/patterns/dropdown/types';
79
87
  export { IconSeverity } from '@ni/nimble-components/dist/esm/icon-base/types';
80
88
  export type { ListOption } from '@ni/nimble-components/dist/esm/list-option';