@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.
- package/directives/anchor/nimble-anchor-router-link-with-href.directive.d.ts +19 -0
- package/directives/anchor/nimble-anchor-router-link.directive.d.ts +11 -0
- package/directives/anchor/nimble-anchor.directive.d.ts +20 -0
- package/directives/anchor/nimble-anchor.module.d.ts +11 -0
- package/directives/anchor-base/nimble-anchor-base.directive.d.ts +27 -0
- package/directives/anchor-button/nimble-anchor-button-router-link-with-href.directive.d.ts +19 -0
- package/directives/anchor-button/nimble-anchor-button-router-link.directive.d.ts +11 -0
- package/directives/anchor-button/nimble-anchor-button.directive.d.ts +23 -0
- package/directives/anchor-button/nimble-anchor-button.module.d.ts +11 -0
- package/directives/breadcrumb-item/nimble-breadcrumb-item.directive.d.ts +3 -18
- package/directives/button/nimble-button.directive.d.ts +2 -3
- package/directives/spinner/nimble-spinner.directive.d.ts +10 -0
- package/directives/spinner/nimble-spinner.module.d.ts +9 -0
- package/esm2020/directives/anchor/nimble-anchor-router-link-with-href.directive.mjs +29 -0
- package/esm2020/directives/anchor/nimble-anchor-router-link.directive.mjs +19 -0
- package/esm2020/directives/anchor/nimble-anchor.directive.mjs +42 -0
- package/esm2020/directives/anchor/nimble-anchor.module.mjs +21 -0
- package/esm2020/directives/anchor-base/nimble-anchor-base.directive.mjs +73 -0
- package/esm2020/directives/anchor-button/nimble-anchor-button-router-link-with-href.directive.mjs +29 -0
- package/esm2020/directives/anchor-button/nimble-anchor-button-router-link.directive.mjs +19 -0
- package/esm2020/directives/anchor-button/nimble-anchor-button.directive.mjs +59 -0
- package/esm2020/directives/anchor-button/nimble-anchor-button.module.mjs +21 -0
- package/esm2020/directives/breadcrumb-item/nimble-breadcrumb-item.directive.mjs +7 -63
- package/esm2020/directives/button/nimble-button.directive.mjs +1 -3
- package/esm2020/directives/spinner/nimble-spinner.directive.mjs +16 -0
- package/esm2020/directives/spinner/nimble-spinner.module.mjs +19 -0
- package/esm2020/public-api.mjs +12 -2
- package/fesm2015/ni-nimble-angular.mjs +331 -81
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular.mjs +331 -81
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +11 -1
package/package.json
CHANGED
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';
|