@ni/nimble-angular 24.0.9 → 24.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 (35) hide show
  1. package/esm2022/mapping/empty/ni-nimble-angular-mapping-empty.mjs +5 -0
  2. package/esm2022/mapping/empty/nimble-mapping-empty.directive.mjs +32 -0
  3. package/esm2022/mapping/empty/nimble-mapping-empty.module.mjs +19 -0
  4. package/esm2022/mapping/empty/public-api.mjs +3 -0
  5. package/esm2022/pipes/public-api.mjs +3 -1
  6. package/esm2022/unit/celsius/ni-nimble-angular-unit-celsius.mjs +5 -0
  7. package/esm2022/unit/celsius/nimble-unit-celsius.directive.mjs +18 -0
  8. package/esm2022/unit/celsius/nimble-unit-celsius.module.mjs +19 -0
  9. package/esm2022/unit/celsius/public-api.mjs +3 -0
  10. package/esm2022/unit/fahrenheit/ni-nimble-angular-unit-fahrenheit.mjs +5 -0
  11. package/esm2022/unit/fahrenheit/nimble-unit-fahrenheit.directive.mjs +18 -0
  12. package/esm2022/unit/fahrenheit/nimble-unit-fahrenheit.module.mjs +19 -0
  13. package/esm2022/unit/fahrenheit/public-api.mjs +3 -0
  14. package/fesm2022/ni-nimble-angular-mapping-empty.mjs +53 -0
  15. package/fesm2022/ni-nimble-angular-mapping-empty.mjs.map +1 -0
  16. package/fesm2022/ni-nimble-angular-pipes.mjs +2 -0
  17. package/fesm2022/ni-nimble-angular-pipes.mjs.map +1 -1
  18. package/fesm2022/ni-nimble-angular-unit-celsius.mjs +39 -0
  19. package/fesm2022/ni-nimble-angular-unit-celsius.mjs.map +1 -0
  20. package/fesm2022/ni-nimble-angular-unit-fahrenheit.mjs +39 -0
  21. package/fesm2022/ni-nimble-angular-unit-fahrenheit.mjs.map +1 -0
  22. package/mapping/empty/index.d.ts +5 -0
  23. package/mapping/empty/nimble-mapping-empty.directive.d.ts +19 -0
  24. package/mapping/empty/nimble-mapping-empty.module.d.ts +9 -0
  25. package/mapping/empty/public-api.d.ts +2 -0
  26. package/package.json +20 -2
  27. package/pipes/public-api.d.ts +2 -0
  28. package/unit/celsius/index.d.ts +5 -0
  29. package/unit/celsius/nimble-unit-celsius.directive.d.ts +11 -0
  30. package/unit/celsius/nimble-unit-celsius.module.d.ts +9 -0
  31. package/unit/celsius/public-api.d.ts +2 -0
  32. package/unit/fahrenheit/index.d.ts +5 -0
  33. package/unit/fahrenheit/nimble-unit-fahrenheit.directive.d.ts +11 -0
  34. package/unit/fahrenheit/nimble-unit-fahrenheit.module.d.ts +9 -0
  35. package/unit/fahrenheit/public-api.d.ts +2 -0
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmktbmltYmxlLWFuZ3VsYXItbWFwcGluZy1lbXB0eS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL25pbWJsZS1hbmd1bGFyL21hcHBpbmcvZW1wdHkvbmktbmltYmxlLWFuZ3VsYXItbWFwcGluZy1lbXB0eS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,32 @@
1
+ import { Directive, Input } from '@angular/core';
2
+ import { NimbleMappingDirective } from '@ni/nimble-angular/mapping/base';
3
+ import { mappingEmptyTag } from '@ni/nimble-components/dist/esm/mapping/empty';
4
+ import * as i0 from "@angular/core";
5
+ export { mappingEmptyTag };
6
+ /**
7
+ * Directive to provide Angular integration for the mapping empty element used by the mapping column.
8
+ */
9
+ export class NimbleMappingEmptyDirective extends NimbleMappingDirective {
10
+ get text() {
11
+ return this.elementRef.nativeElement.text;
12
+ }
13
+ set text(value) {
14
+ this.renderer.setProperty(this.elementRef.nativeElement, 'text', value);
15
+ }
16
+ constructor(renderer, elementRef) {
17
+ super(renderer, elementRef);
18
+ this.renderer = renderer;
19
+ this.elementRef = elementRef;
20
+ }
21
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
22
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NimbleMappingEmptyDirective, selector: "nimble-mapping-empty", inputs: { text: "text" }, usesInheritance: true, ngImport: i0 }); }
23
+ }
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyDirective, decorators: [{
25
+ type: Directive,
26
+ args: [{
27
+ selector: 'nimble-mapping-empty'
28
+ }]
29
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { text: [{
30
+ type: Input
31
+ }] } });
32
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLW1hcHBpbmctZW1wdHkuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbmltYmxlLWFuZ3VsYXIvbWFwcGluZy9lbXB0eS9uaW1ibGUtbWFwcGluZy1lbXB0eS5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBYyxLQUFLLEVBQWEsTUFBTSxlQUFlLENBQUM7QUFDeEUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDekUsT0FBTyxFQUFxQixlQUFlLEVBQUUsTUFBTSw4Q0FBOEMsQ0FBQzs7QUFJbEcsT0FBTyxFQUFFLGVBQWUsRUFBRSxDQUFDO0FBRTNCOztHQUVHO0FBSUgsTUFBTSxPQUFPLDJCQUE0QixTQUFRLHNCQUFrQztJQUMvRSxJQUFXLElBQUk7UUFDWCxPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQztJQUM5QyxDQUFDO0lBRUQsSUFBb0IsSUFBSSxDQUFDLEtBQXlCO1FBQzlDLElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxFQUFFLE1BQU0sRUFBRSxLQUFLLENBQUMsQ0FBQztJQUM1RSxDQUFDO0lBRUQsWUFBc0MsUUFBbUIsRUFBcUIsVUFBb0M7UUFDOUcsS0FBSyxDQUFDLFFBQVEsRUFBRSxVQUFVLENBQUMsQ0FBQztRQURNLGFBQVEsR0FBUixRQUFRLENBQVc7UUFBcUIsZUFBVSxHQUFWLFVBQVUsQ0FBMEI7SUFFbEgsQ0FBQzsrR0FYUSwyQkFBMkI7bUdBQTNCLDJCQUEyQjs7NEZBQTNCLDJCQUEyQjtrQkFIdkMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsc0JBQXNCO2lCQUNuQzt5SEFNdUIsSUFBSTtzQkFBdkIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgSW5wdXQsIFJlbmRlcmVyMiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTmltYmxlTWFwcGluZ0RpcmVjdGl2ZSB9IGZyb20gJ0BuaS9uaW1ibGUtYW5ndWxhci9tYXBwaW5nL2Jhc2UnO1xuaW1wb3J0IHsgdHlwZSBNYXBwaW5nRW1wdHksIG1hcHBpbmdFbXB0eVRhZyB9IGZyb20gJ0BuaS9uaW1ibGUtY29tcG9uZW50cy9kaXN0L2VzbS9tYXBwaW5nL2VtcHR5JztcbmltcG9ydCB0eXBlIHsgTWFwcGluZ0tleSB9IGZyb20gJ0BuaS9uaW1ibGUtY29tcG9uZW50cy9kaXN0L2VzbS9tYXBwaW5nL2Jhc2UvdHlwZXMnO1xuXG5leHBvcnQgdHlwZSB7IE1hcHBpbmdFbXB0eSwgTWFwcGluZ0tleSB9O1xuZXhwb3J0IHsgbWFwcGluZ0VtcHR5VGFnIH07XG5cbi8qKlxuICogRGlyZWN0aXZlIHRvIHByb3ZpZGUgQW5ndWxhciBpbnRlZ3JhdGlvbiBmb3IgdGhlIG1hcHBpbmcgZW1wdHkgZWxlbWVudCB1c2VkIGJ5IHRoZSBtYXBwaW5nIGNvbHVtbi5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICduaW1ibGUtbWFwcGluZy1lbXB0eSdcbn0pXG5leHBvcnQgY2xhc3MgTmltYmxlTWFwcGluZ0VtcHR5RGlyZWN0aXZlIGV4dGVuZHMgTmltYmxlTWFwcGluZ0RpcmVjdGl2ZTxNYXBwaW5nS2V5PiB7XG4gICAgcHVibGljIGdldCB0ZXh0KCk6IHN0cmluZyB8IHVuZGVmaW5lZCB7XG4gICAgICAgIHJldHVybiB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC50ZXh0O1xuICAgIH1cblxuICAgIEBJbnB1dCgpIHB1YmxpYyBzZXQgdGV4dCh2YWx1ZTogc3RyaW5nIHwgdW5kZWZpbmVkKSB7XG4gICAgICAgIHRoaXMucmVuZGVyZXIuc2V0UHJvcGVydHkodGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQsICd0ZXh0JywgdmFsdWUpO1xuICAgIH1cblxuICAgIHB1YmxpYyBjb25zdHJ1Y3Rvcihwcm90ZWN0ZWQgcmVhZG9ubHkgcmVuZGVyZXI6IFJlbmRlcmVyMiwgcHJvdGVjdGVkIHJlYWRvbmx5IGVsZW1lbnRSZWY6IEVsZW1lbnRSZWY8TWFwcGluZ0VtcHR5Pikge1xuICAgICAgICBzdXBlcihyZW5kZXJlciwgZWxlbWVudFJlZik7XG4gICAgfVxufVxuIl19
@@ -0,0 +1,19 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { NimbleMappingEmptyDirective } from './nimble-mapping-empty.directive';
4
+ import '@ni/nimble-components/dist/esm/mapping/empty';
5
+ import * as i0 from "@angular/core";
6
+ export class NimbleMappingEmptyModule {
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
8
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyModule, declarations: [NimbleMappingEmptyDirective], imports: [CommonModule], exports: [NimbleMappingEmptyDirective] }); }
9
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyModule, imports: [CommonModule] }); }
10
+ }
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyModule, decorators: [{
12
+ type: NgModule,
13
+ args: [{
14
+ declarations: [NimbleMappingEmptyDirective],
15
+ imports: [CommonModule],
16
+ exports: [NimbleMappingEmptyDirective]
17
+ }]
18
+ }] });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLW1hcHBpbmctZW1wdHkubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbmltYmxlLWFuZ3VsYXIvbWFwcGluZy9lbXB0eS9uaW1ibGUtbWFwcGluZy1lbXB0eS5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFFL0UsT0FBTyw4Q0FBOEMsQ0FBQzs7QUFPdEQsTUFBTSxPQUFPLHdCQUF3QjsrR0FBeEIsd0JBQXdCO2dIQUF4Qix3QkFBd0IsaUJBSmxCLDJCQUEyQixhQUNoQyxZQUFZLGFBQ1osMkJBQTJCO2dIQUU1Qix3QkFBd0IsWUFIdkIsWUFBWTs7NEZBR2Isd0JBQXdCO2tCQUxwQyxRQUFRO21CQUFDO29CQUNOLFlBQVksRUFBRSxDQUFDLDJCQUEyQixDQUFDO29CQUMzQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLE9BQU8sRUFBRSxDQUFDLDJCQUEyQixDQUFDO2lCQUN6QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmltYmxlTWFwcGluZ0VtcHR5RGlyZWN0aXZlIH0gZnJvbSAnLi9uaW1ibGUtbWFwcGluZy1lbXB0eS5kaXJlY3RpdmUnO1xuXG5pbXBvcnQgJ0BuaS9uaW1ibGUtY29tcG9uZW50cy9kaXN0L2VzbS9tYXBwaW5nL2VtcHR5JztcblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtOaW1ibGVNYXBwaW5nRW1wdHlEaXJlY3RpdmVdLFxuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICAgIGV4cG9ydHM6IFtOaW1ibGVNYXBwaW5nRW1wdHlEaXJlY3RpdmVdXG59KVxuZXhwb3J0IGNsYXNzIE5pbWJsZU1hcHBpbmdFbXB0eU1vZHVsZSB7IH0iXX0=
@@ -0,0 +1,3 @@
1
+ export * from './nimble-mapping-empty.directive';
2
+ export * from './nimble-mapping-empty.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL25pbWJsZS1hbmd1bGFyL21hcHBpbmcvZW1wdHkvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsK0JBQStCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL25pbWJsZS1tYXBwaW5nLWVtcHR5LmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL25pbWJsZS1tYXBwaW5nLWVtcHR5Lm1vZHVsZSc7Il19
@@ -2,5 +2,7 @@ export * from './duration.pipe';
2
2
  export * from './number-text.pipe';
3
3
  export { byteUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/byte-unit-scale';
4
4
  export { byte1024UnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/byte-1024-unit-scale';
5
+ export { celsiusUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/celsius-unit-scale';
6
+ export { fahrenheitUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/fahrenheit-unit-scale';
5
7
  export { voltUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/volt-unit-scale';
6
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL25pbWJsZS1hbmd1bGFyL3BpcGVzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxpRkFBaUYsQ0FBQztBQUNoSCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxzRkFBc0YsQ0FBQztBQUN6SCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUZBQWlGLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2R1cmF0aW9uLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9udW1iZXItdGV4dC5waXBlJztcbmV4cG9ydCB7IGJ5dGVVbml0U2NhbGUgfSBmcm9tICdAbmkvbmltYmxlLWNvbXBvbmVudHMvZGlzdC9lc20vdXRpbGl0aWVzL3VuaXQtZm9ybWF0L3VuaXQtc2NhbGUvYnl0ZS11bml0LXNjYWxlJztcbmV4cG9ydCB7IGJ5dGUxMDI0VW5pdFNjYWxlIH0gZnJvbSAnQG5pL25pbWJsZS1jb21wb25lbnRzL2Rpc3QvZXNtL3V0aWxpdGllcy91bml0LWZvcm1hdC91bml0LXNjYWxlL2J5dGUtMTAyNC11bml0LXNjYWxlJztcbmV4cG9ydCB7IHZvbHRVbml0U2NhbGUgfSBmcm9tICdAbmkvbmltYmxlLWNvbXBvbmVudHMvZGlzdC9lc20vdXRpbGl0aWVzL3VuaXQtZm9ybWF0L3VuaXQtc2NhbGUvdm9sdC11bml0LXNjYWxlJztcbiJdfQ==
8
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL25pbWJsZS1hbmd1bGFyL3BpcGVzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxpQkFBaUIsQ0FBQztBQUNoQyxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxpRkFBaUYsQ0FBQztBQUNoSCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxzRkFBc0YsQ0FBQztBQUN6SCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxvRkFBb0YsQ0FBQztBQUN0SCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx1RkFBdUYsQ0FBQztBQUM1SCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUZBQWlGLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2R1cmF0aW9uLnBpcGUnO1xuZXhwb3J0ICogZnJvbSAnLi9udW1iZXItdGV4dC5waXBlJztcbmV4cG9ydCB7IGJ5dGVVbml0U2NhbGUgfSBmcm9tICdAbmkvbmltYmxlLWNvbXBvbmVudHMvZGlzdC9lc20vdXRpbGl0aWVzL3VuaXQtZm9ybWF0L3VuaXQtc2NhbGUvYnl0ZS11bml0LXNjYWxlJztcbmV4cG9ydCB7IGJ5dGUxMDI0VW5pdFNjYWxlIH0gZnJvbSAnQG5pL25pbWJsZS1jb21wb25lbnRzL2Rpc3QvZXNtL3V0aWxpdGllcy91bml0LWZvcm1hdC91bml0LXNjYWxlL2J5dGUtMTAyNC11bml0LXNjYWxlJztcbmV4cG9ydCB7IGNlbHNpdXNVbml0U2NhbGUgfSBmcm9tICdAbmkvbmltYmxlLWNvbXBvbmVudHMvZGlzdC9lc20vdXRpbGl0aWVzL3VuaXQtZm9ybWF0L3VuaXQtc2NhbGUvY2Vsc2l1cy11bml0LXNjYWxlJztcbmV4cG9ydCB7IGZhaHJlbmhlaXRVbml0U2NhbGUgfSBmcm9tICdAbmkvbmltYmxlLWNvbXBvbmVudHMvZGlzdC9lc20vdXRpbGl0aWVzL3VuaXQtZm9ybWF0L3VuaXQtc2NhbGUvZmFocmVuaGVpdC11bml0LXNjYWxlJztcbmV4cG9ydCB7IHZvbHRVbml0U2NhbGUgfSBmcm9tICdAbmkvbmltYmxlLWNvbXBvbmVudHMvZGlzdC9lc20vdXRpbGl0aWVzL3VuaXQtZm9ybWF0L3VuaXQtc2NhbGUvdm9sdC11bml0LXNjYWxlJztcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmktbmltYmxlLWFuZ3VsYXItdW5pdC1jZWxzaXVzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbmltYmxlLWFuZ3VsYXIvdW5pdC9jZWxzaXVzL25pLW5pbWJsZS1hbmd1bGFyLXVuaXQtY2Vsc2l1cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,18 @@
1
+ import { Directive } from '@angular/core';
2
+ import { unitCelsiusTag } from '@ni/nimble-components/dist/esm/unit/celsius';
3
+ import * as i0 from "@angular/core";
4
+ export { unitCelsiusTag };
5
+ /**
6
+ * Directive to provide Angular integration for the Celsius unit element used by the number-text column.
7
+ */
8
+ export class NimbleUnitCelsiusDirective {
9
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
10
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NimbleUnitCelsiusDirective, selector: "nimble-unit-celsius", ngImport: i0 }); }
11
+ }
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusDirective, decorators: [{
13
+ type: Directive,
14
+ args: [{
15
+ selector: 'nimble-unit-celsius'
16
+ }]
17
+ }] });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLXVuaXQtY2Vsc2l1cy5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9uaW1ibGUtYW5ndWxhci91bml0L2NlbHNpdXMvbmltYmxlLXVuaXQtY2Vsc2l1cy5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxQyxPQUFPLEVBQW9CLGNBQWMsRUFBRSxNQUFNLDZDQUE2QyxDQUFDOztBQUcvRixPQUFPLEVBQUUsY0FBYyxFQUFFLENBQUM7QUFFMUI7O0dBRUc7QUFJSCxNQUFNLE9BQU8sMEJBQTBCOytHQUExQiwwQkFBMEI7bUdBQTFCLDBCQUEwQjs7NEZBQTFCLDBCQUEwQjtrQkFIdEMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUscUJBQXFCO2lCQUNsQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgdHlwZSBVbml0Q2Vsc2l1cywgdW5pdENlbHNpdXNUYWcgfSBmcm9tICdAbmkvbmltYmxlLWNvbXBvbmVudHMvZGlzdC9lc20vdW5pdC9jZWxzaXVzJztcblxuZXhwb3J0IHR5cGUgeyBVbml0Q2Vsc2l1cyB9O1xuZXhwb3J0IHsgdW5pdENlbHNpdXNUYWcgfTtcblxuLyoqXG4gKiBEaXJlY3RpdmUgdG8gcHJvdmlkZSBBbmd1bGFyIGludGVncmF0aW9uIGZvciB0aGUgQ2Vsc2l1cyB1bml0IGVsZW1lbnQgdXNlZCBieSB0aGUgbnVtYmVyLXRleHQgY29sdW1uLlxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ25pbWJsZS11bml0LWNlbHNpdXMnXG59KVxuZXhwb3J0IGNsYXNzIE5pbWJsZVVuaXRDZWxzaXVzRGlyZWN0aXZlIHtcbn0iXX0=
@@ -0,0 +1,19 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { NimbleUnitCelsiusDirective } from './nimble-unit-celsius.directive';
4
+ import '@ni/nimble-components/dist/esm/unit/celsius';
5
+ import * as i0 from "@angular/core";
6
+ export class NimbleUnitCelsiusModule {
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
8
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusModule, declarations: [NimbleUnitCelsiusDirective], imports: [CommonModule], exports: [NimbleUnitCelsiusDirective] }); }
9
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusModule, imports: [CommonModule] }); }
10
+ }
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusModule, decorators: [{
12
+ type: NgModule,
13
+ args: [{
14
+ declarations: [NimbleUnitCelsiusDirective],
15
+ imports: [CommonModule],
16
+ exports: [NimbleUnitCelsiusDirective]
17
+ }]
18
+ }] });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLXVuaXQtY2Vsc2l1cy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9uaW1ibGUtYW5ndWxhci91bml0L2NlbHNpdXMvbmltYmxlLXVuaXQtY2Vsc2l1cy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFFN0UsT0FBTyw2Q0FBNkMsQ0FBQzs7QUFPckQsTUFBTSxPQUFPLHVCQUF1QjsrR0FBdkIsdUJBQXVCO2dIQUF2Qix1QkFBdUIsaUJBSmpCLDBCQUEwQixhQUMvQixZQUFZLGFBQ1osMEJBQTBCO2dIQUUzQix1QkFBdUIsWUFIdEIsWUFBWTs7NEZBR2IsdUJBQXVCO2tCQUxuQyxRQUFRO21CQUFDO29CQUNOLFlBQVksRUFBRSxDQUFDLDBCQUEwQixDQUFDO29CQUMxQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLE9BQU8sRUFBRSxDQUFDLDBCQUEwQixDQUFDO2lCQUN4QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmltYmxlVW5pdENlbHNpdXNEaXJlY3RpdmUgfSBmcm9tICcuL25pbWJsZS11bml0LWNlbHNpdXMuZGlyZWN0aXZlJztcblxuaW1wb3J0ICdAbmkvbmltYmxlLWNvbXBvbmVudHMvZGlzdC9lc20vdW5pdC9jZWxzaXVzJztcblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtOaW1ibGVVbml0Q2Vsc2l1c0RpcmVjdGl2ZV0sXG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gICAgZXhwb3J0czogW05pbWJsZVVuaXRDZWxzaXVzRGlyZWN0aXZlXVxufSlcbmV4cG9ydCBjbGFzcyBOaW1ibGVVbml0Q2Vsc2l1c01vZHVsZSB7IH0iXX0=
@@ -0,0 +1,3 @@
1
+ export * from './nimble-unit-celsius.directive';
2
+ export * from './nimble-unit-celsius.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL25pbWJsZS1hbmd1bGFyL3VuaXQvY2Vsc2l1cy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyw4QkFBOEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbmltYmxlLXVuaXQtY2Vsc2l1cy5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9uaW1ibGUtdW5pdC1jZWxzaXVzLm1vZHVsZSc7Il19
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmktbmltYmxlLWFuZ3VsYXItdW5pdC1mYWhyZW5oZWl0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbmltYmxlLWFuZ3VsYXIvdW5pdC9mYWhyZW5oZWl0L25pLW5pbWJsZS1hbmd1bGFyLXVuaXQtZmFocmVuaGVpdC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,18 @@
1
+ import { Directive } from '@angular/core';
2
+ import { unitFahrenheitTag } from '@ni/nimble-components/dist/esm/unit/fahrenheit';
3
+ import * as i0 from "@angular/core";
4
+ export { unitFahrenheitTag };
5
+ /**
6
+ * Directive to provide Angular integration for the Fahrenheit unit element used by the number-text column.
7
+ */
8
+ export class NimbleUnitFahrenheitDirective {
9
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
10
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NimbleUnitFahrenheitDirective, selector: "nimble-unit-fahrenheit", ngImport: i0 }); }
11
+ }
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitDirective, decorators: [{
13
+ type: Directive,
14
+ args: [{
15
+ selector: 'nimble-unit-fahrenheit'
16
+ }]
17
+ }] });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLXVuaXQtZmFocmVuaGVpdC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9uaW1ibGUtYW5ndWxhci91bml0L2ZhaHJlbmhlaXQvbmltYmxlLXVuaXQtZmFocmVuaGVpdC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxQyxPQUFPLEVBQXVCLGlCQUFpQixFQUFFLE1BQU0sZ0RBQWdELENBQUM7O0FBR3hHLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxDQUFDO0FBRTdCOztHQUVHO0FBSUgsTUFBTSxPQUFPLDZCQUE2QjsrR0FBN0IsNkJBQTZCO21HQUE3Qiw2QkFBNkI7OzRGQUE3Qiw2QkFBNkI7a0JBSHpDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLHdCQUF3QjtpQkFDckMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IHR5cGUgVW5pdEZhaHJlbmhlaXQsIHVuaXRGYWhyZW5oZWl0VGFnIH0gZnJvbSAnQG5pL25pbWJsZS1jb21wb25lbnRzL2Rpc3QvZXNtL3VuaXQvZmFocmVuaGVpdCc7XG5cbmV4cG9ydCB0eXBlIHsgVW5pdEZhaHJlbmhlaXQgfTtcbmV4cG9ydCB7IHVuaXRGYWhyZW5oZWl0VGFnIH07XG5cbi8qKlxuICogRGlyZWN0aXZlIHRvIHByb3ZpZGUgQW5ndWxhciBpbnRlZ3JhdGlvbiBmb3IgdGhlIEZhaHJlbmhlaXQgdW5pdCBlbGVtZW50IHVzZWQgYnkgdGhlIG51bWJlci10ZXh0IGNvbHVtbi5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICduaW1ibGUtdW5pdC1mYWhyZW5oZWl0J1xufSlcbmV4cG9ydCBjbGFzcyBOaW1ibGVVbml0RmFocmVuaGVpdERpcmVjdGl2ZSB7XG59Il19
@@ -0,0 +1,19 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { NimbleUnitFahrenheitDirective } from './nimble-unit-fahrenheit.directive';
4
+ import '@ni/nimble-components/dist/esm/unit/fahrenheit';
5
+ import * as i0 from "@angular/core";
6
+ export class NimbleUnitFahrenheitModule {
7
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
8
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitModule, declarations: [NimbleUnitFahrenheitDirective], imports: [CommonModule], exports: [NimbleUnitFahrenheitDirective] }); }
9
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitModule, imports: [CommonModule] }); }
10
+ }
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitModule, decorators: [{
12
+ type: NgModule,
13
+ args: [{
14
+ declarations: [NimbleUnitFahrenheitDirective],
15
+ imports: [CommonModule],
16
+ exports: [NimbleUnitFahrenheitDirective]
17
+ }]
18
+ }] });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLXVuaXQtZmFocmVuaGVpdC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9uaW1ibGUtYW5ndWxhci91bml0L2ZhaHJlbmhlaXQvbmltYmxlLXVuaXQtZmFocmVuaGVpdC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sb0NBQW9DLENBQUM7QUFFbkYsT0FBTyxnREFBZ0QsQ0FBQzs7QUFPeEQsTUFBTSxPQUFPLDBCQUEwQjsrR0FBMUIsMEJBQTBCO2dIQUExQiwwQkFBMEIsaUJBSnBCLDZCQUE2QixhQUNsQyxZQUFZLGFBQ1osNkJBQTZCO2dIQUU5QiwwQkFBMEIsWUFIekIsWUFBWTs7NEZBR2IsMEJBQTBCO2tCQUx0QyxRQUFRO21CQUFDO29CQUNOLFlBQVksRUFBRSxDQUFDLDZCQUE2QixDQUFDO29CQUM3QyxPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLE9BQU8sRUFBRSxDQUFDLDZCQUE2QixDQUFDO2lCQUMzQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmltYmxlVW5pdEZhaHJlbmhlaXREaXJlY3RpdmUgfSBmcm9tICcuL25pbWJsZS11bml0LWZhaHJlbmhlaXQuZGlyZWN0aXZlJztcblxuaW1wb3J0ICdAbmkvbmltYmxlLWNvbXBvbmVudHMvZGlzdC9lc20vdW5pdC9mYWhyZW5oZWl0JztcblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtOaW1ibGVVbml0RmFocmVuaGVpdERpcmVjdGl2ZV0sXG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gICAgZXhwb3J0czogW05pbWJsZVVuaXRGYWhyZW5oZWl0RGlyZWN0aXZlXVxufSlcbmV4cG9ydCBjbGFzcyBOaW1ibGVVbml0RmFocmVuaGVpdE1vZHVsZSB7IH0iXX0=
@@ -0,0 +1,3 @@
1
+ export * from './nimble-unit-fahrenheit.directive';
2
+ export * from './nimble-unit-fahrenheit.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL25pbWJsZS1hbmd1bGFyL3VuaXQvZmFocmVuaGVpdC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxpQ0FBaUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbmltYmxlLXVuaXQtZmFocmVuaGVpdC5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9uaW1ibGUtdW5pdC1mYWhyZW5oZWl0Lm1vZHVsZSc7Il19
@@ -0,0 +1,53 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, Input, NgModule } from '@angular/core';
3
+ import { NimbleMappingDirective } from '@ni/nimble-angular/mapping/base';
4
+ export { mappingEmptyTag } from '@ni/nimble-components/dist/esm/mapping/empty';
5
+ import { CommonModule } from '@angular/common';
6
+
7
+ /**
8
+ * Directive to provide Angular integration for the mapping empty element used by the mapping column.
9
+ */
10
+ class NimbleMappingEmptyDirective extends NimbleMappingDirective {
11
+ get text() {
12
+ return this.elementRef.nativeElement.text;
13
+ }
14
+ set text(value) {
15
+ this.renderer.setProperty(this.elementRef.nativeElement, 'text', value);
16
+ }
17
+ constructor(renderer, elementRef) {
18
+ super(renderer, elementRef);
19
+ this.renderer = renderer;
20
+ this.elementRef = elementRef;
21
+ }
22
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
23
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NimbleMappingEmptyDirective, selector: "nimble-mapping-empty", inputs: { text: "text" }, usesInheritance: true, ngImport: i0 }); }
24
+ }
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyDirective, decorators: [{
26
+ type: Directive,
27
+ args: [{
28
+ selector: 'nimble-mapping-empty'
29
+ }]
30
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { text: [{
31
+ type: Input
32
+ }] } });
33
+
34
+ class NimbleMappingEmptyModule {
35
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
36
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyModule, declarations: [NimbleMappingEmptyDirective], imports: [CommonModule], exports: [NimbleMappingEmptyDirective] }); }
37
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyModule, imports: [CommonModule] }); }
38
+ }
39
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleMappingEmptyModule, decorators: [{
40
+ type: NgModule,
41
+ args: [{
42
+ declarations: [NimbleMappingEmptyDirective],
43
+ imports: [CommonModule],
44
+ exports: [NimbleMappingEmptyDirective]
45
+ }]
46
+ }] });
47
+
48
+ /**
49
+ * Generated bundle index. Do not edit.
50
+ */
51
+
52
+ export { NimbleMappingEmptyDirective, NimbleMappingEmptyModule };
53
+ //# sourceMappingURL=ni-nimble-angular-mapping-empty.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ni-nimble-angular-mapping-empty.mjs","sources":["../../../nimble-angular/mapping/empty/nimble-mapping-empty.directive.ts","../../../nimble-angular/mapping/empty/nimble-mapping-empty.module.ts","../../../nimble-angular/mapping/empty/ni-nimble-angular-mapping-empty.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport { NimbleMappingDirective } from '@ni/nimble-angular/mapping/base';\nimport { type MappingEmpty, mappingEmptyTag } from '@ni/nimble-components/dist/esm/mapping/empty';\nimport type { MappingKey } from '@ni/nimble-components/dist/esm/mapping/base/types';\n\nexport type { MappingEmpty, MappingKey };\nexport { mappingEmptyTag };\n\n/**\n * Directive to provide Angular integration for the mapping empty element used by the mapping column.\n */\n@Directive({\n selector: 'nimble-mapping-empty'\n})\nexport class NimbleMappingEmptyDirective extends NimbleMappingDirective<MappingKey> {\n public get text(): string | undefined {\n return this.elementRef.nativeElement.text;\n }\n\n @Input() public set text(value: string | undefined) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'text', value);\n }\n\n public constructor(protected readonly renderer: Renderer2, protected readonly elementRef: ElementRef<MappingEmpty>) {\n super(renderer, elementRef);\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleMappingEmptyDirective } from './nimble-mapping-empty.directive';\n\nimport '@ni/nimble-components/dist/esm/mapping/empty';\n\n@NgModule({\n declarations: [NimbleMappingEmptyDirective],\n imports: [CommonModule],\n exports: [NimbleMappingEmptyDirective]\n})\nexport class NimbleMappingEmptyModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;AAQA;;AAEG;AAIG,MAAO,2BAA4B,SAAQ,sBAAkC,CAAA;AAC/E,IAAA,IAAW,IAAI,GAAA;AACX,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,IAAI,CAAC;KAC7C;IAED,IAAoB,IAAI,CAAC,KAAyB,EAAA;AAC9C,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;KAC3E;IAED,WAAsC,CAAA,QAAmB,EAAqB,UAAoC,EAAA;AAC9G,QAAA,KAAK,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;QADM,IAAQ,CAAA,QAAA,GAAR,QAAQ,CAAW;QAAqB,IAAU,CAAA,UAAA,GAAV,UAAU,CAA0B;KAEjH;+GAXQ,2BAA2B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,SAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;mGAA3B,2BAA2B,EAAA,QAAA,EAAA,sBAAA,EAAA,MAAA,EAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA,EAAA;;4FAA3B,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBAHvC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,sBAAsB;AACnC,iBAAA,CAAA;yHAMuB,IAAI,EAAA,CAAA;sBAAvB,KAAK;;;MCRG,wBAAwB,CAAA;+GAAxB,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAxB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,wBAAwB,EAJlB,YAAA,EAAA,CAAA,2BAA2B,CAChC,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,2BAA2B,CAAA,EAAA,CAAA,CAAA,EAAA;AAE5B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,wBAAwB,YAHvB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;4FAGb,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBALpC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,YAAY,EAAE,CAAC,2BAA2B,CAAC;oBAC3C,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,2BAA2B,CAAC;AACzC,iBAAA,CAAA;;;ACVD;;AAEG;;;;"}
@@ -4,6 +4,8 @@ import { DurationFormatter } from '@ni/nimble-components/dist/esm/table-column/d
4
4
  import { NumberTextUnitFormat } from '@ni/nimble-components/dist/esm/table-column/number-text/models/number-text-unit-format';
5
5
  export { byteUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/byte-unit-scale';
6
6
  export { byte1024UnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/byte-1024-unit-scale';
7
+ export { celsiusUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/celsius-unit-scale';
8
+ export { fahrenheitUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/fahrenheit-unit-scale';
7
9
  export { voltUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/volt-unit-scale';
8
10
 
9
11
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"ni-nimble-angular-pipes.mjs","sources":["../../../nimble-angular/pipes/duration.pipe.ts","../../../nimble-angular/pipes/number-text.pipe.ts","../../../nimble-angular/pipes/ni-nimble-angular-pipes.ts"],"sourcesContent":["import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core';\nimport { DurationFormatter } from '@ni/nimble-components/dist/esm/table-column/duration-text/models/duration-formatter';\n\n/**\n * A pipe that transforms a number of milliseconds (string/number) into a string formatted like \"1 day, 2 hr, 3 min, 4.567 sec\"\n */\n@Pipe({\n name: 'duration',\n standalone: true\n})\nexport class DurationPipe implements PipeTransform {\n private readonly durationFormatter;\n\n public constructor(@Inject(LOCALE_ID) locale: string) {\n this.durationFormatter = new DurationFormatter(locale);\n }\n\n public transform(timeInMilliseconds: string | number | null | undefined): string {\n const milliseconds = this.parseDuration(timeInMilliseconds);\n return this.durationFormatter.format(milliseconds);\n }\n\n private parseDuration(duration: string | number | null | undefined): number | null | undefined {\n return typeof duration === 'string' ? parseFloat(duration) : duration;\n }\n}\n","import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core';\nimport { NumberTextUnitFormat, NumberTextUnitFormatOptions } from '@ni/nimble-components/dist/esm/table-column/number-text/models/number-text-unit-format';\n\n/**\n * A pipe that transforms a number into a string with optional unit\n */\n@Pipe({\n name: 'numberText',\n standalone: true\n})\nexport class NumberTextPipe implements PipeTransform {\n /**\n * @internal\n */\n public numberTextUnitFormat?: NumberTextUnitFormat;\n\n public constructor(@Inject(LOCALE_ID) private readonly locale: string) {}\n\n public transform(value: number, options?: NumberTextUnitFormatOptions): string {\n if (!this.numberTextUnitFormat?.optionsMatch(options)) {\n this.numberTextUnitFormat = new NumberTextUnitFormat(this.locale, options);\n }\n return this.numberTextUnitFormat.format(value);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;AAGA;;AAEG;MAKU,YAAY,CAAA;AAGrB,IAAA,WAAA,CAAsC,MAAc,EAAA;QAChD,IAAI,CAAC,iBAAiB,GAAG,IAAI,iBAAiB,CAAC,MAAM,CAAC,CAAC;KAC1D;AAEM,IAAA,SAAS,CAAC,kBAAsD,EAAA;QACnE,MAAM,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,CAAC;QAC5D,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;KACtD;AAEO,IAAA,aAAa,CAAC,QAA4C,EAAA;AAC9D,QAAA,OAAO,OAAO,QAAQ,KAAK,QAAQ,GAAG,UAAU,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAC;KACzE;AAdQ,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,kBAGM,SAAS,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA,EAAA;6GAH3B,YAAY,EAAA,YAAA,EAAA,IAAA,EAAA,IAAA,EAAA,UAAA,EAAA,CAAA,CAAA,EAAA;;4FAAZ,YAAY,EAAA,UAAA,EAAA,CAAA;kBAJxB,IAAI;AAAC,YAAA,IAAA,EAAA,CAAA;AACF,oBAAA,IAAI,EAAE,UAAU;AAChB,oBAAA,UAAU,EAAE,IAAI;AACnB,iBAAA,CAAA;;0BAIuB,MAAM;2BAAC,SAAS,CAAA;;;ACVxC;;AAEG;MAKU,cAAc,CAAA;AAMvB,IAAA,WAAA,CAAuD,MAAc,EAAA;QAAd,IAAM,CAAA,MAAA,GAAN,MAAM,CAAQ;KAAI;IAElE,SAAS,CAAC,KAAa,EAAE,OAAqC,EAAA;QACjE,IAAI,CAAC,IAAI,CAAC,oBAAoB,EAAE,YAAY,CAAC,OAAO,CAAC,EAAE;AACnD,YAAA,IAAI,CAAC,oBAAoB,GAAG,IAAI,oBAAoB,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAC9E,SAAA;QACD,OAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;KAClD;AAbQ,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,cAAc,kBAMI,SAAS,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA,EAAA;6GAN3B,cAAc,EAAA,YAAA,EAAA,IAAA,EAAA,IAAA,EAAA,YAAA,EAAA,CAAA,CAAA,EAAA;;4FAAd,cAAc,EAAA,UAAA,EAAA,CAAA;kBAJ1B,IAAI;AAAC,YAAA,IAAA,EAAA,CAAA;AACF,oBAAA,IAAI,EAAE,YAAY;AAClB,oBAAA,UAAU,EAAE,IAAI;AACnB,iBAAA,CAAA;;0BAOuB,MAAM;2BAAC,SAAS,CAAA;;;AChBxC;;AAEG;;;;"}
1
+ {"version":3,"file":"ni-nimble-angular-pipes.mjs","sources":["../../../nimble-angular/pipes/duration.pipe.ts","../../../nimble-angular/pipes/number-text.pipe.ts","../../../nimble-angular/pipes/ni-nimble-angular-pipes.ts"],"sourcesContent":["import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core';\nimport { DurationFormatter } from '@ni/nimble-components/dist/esm/table-column/duration-text/models/duration-formatter';\n\n/**\n * A pipe that transforms a number of milliseconds (string/number) into a string formatted like \"1 day, 2 hr, 3 min, 4.567 sec\"\n */\n@Pipe({\n name: 'duration',\n standalone: true\n})\nexport class DurationPipe implements PipeTransform {\n private readonly durationFormatter;\n\n public constructor(@Inject(LOCALE_ID) locale: string) {\n this.durationFormatter = new DurationFormatter(locale);\n }\n\n public transform(timeInMilliseconds: string | number | null | undefined): string {\n const milliseconds = this.parseDuration(timeInMilliseconds);\n return this.durationFormatter.format(milliseconds);\n }\n\n private parseDuration(duration: string | number | null | undefined): number | null | undefined {\n return typeof duration === 'string' ? parseFloat(duration) : duration;\n }\n}\n","import { Inject, LOCALE_ID, Pipe, PipeTransform } from '@angular/core';\nimport { NumberTextUnitFormat, NumberTextUnitFormatOptions } from '@ni/nimble-components/dist/esm/table-column/number-text/models/number-text-unit-format';\n\n/**\n * A pipe that transforms a number into a string with optional unit\n */\n@Pipe({\n name: 'numberText',\n standalone: true\n})\nexport class NumberTextPipe implements PipeTransform {\n /**\n * @internal\n */\n public numberTextUnitFormat?: NumberTextUnitFormat;\n\n public constructor(@Inject(LOCALE_ID) private readonly locale: string) {}\n\n public transform(value: number, options?: NumberTextUnitFormatOptions): string {\n if (!this.numberTextUnitFormat?.optionsMatch(options)) {\n this.numberTextUnitFormat = new NumberTextUnitFormat(this.locale, options);\n }\n return this.numberTextUnitFormat.format(value);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;;;AAGA;;AAEG;MAKU,YAAY,CAAA;AAGrB,IAAA,WAAA,CAAsC,MAAc,EAAA;QAChD,IAAI,CAAC,iBAAiB,GAAG,IAAI,iBAAiB,CAAC,MAAM,CAAC,CAAC;KAC1D;AAEM,IAAA,SAAS,CAAC,kBAAsD,EAAA;QACnE,MAAM,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,CAAC;QAC5D,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;KACtD;AAEO,IAAA,aAAa,CAAC,QAA4C,EAAA;AAC9D,QAAA,OAAO,OAAO,QAAQ,KAAK,QAAQ,GAAG,UAAU,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAC;KACzE;AAdQ,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,kBAGM,SAAS,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA,EAAA;6GAH3B,YAAY,EAAA,YAAA,EAAA,IAAA,EAAA,IAAA,EAAA,UAAA,EAAA,CAAA,CAAA,EAAA;;4FAAZ,YAAY,EAAA,UAAA,EAAA,CAAA;kBAJxB,IAAI;AAAC,YAAA,IAAA,EAAA,CAAA;AACF,oBAAA,IAAI,EAAE,UAAU;AAChB,oBAAA,UAAU,EAAE,IAAI;AACnB,iBAAA,CAAA;;0BAIuB,MAAM;2BAAC,SAAS,CAAA;;;ACVxC;;AAEG;MAKU,cAAc,CAAA;AAMvB,IAAA,WAAA,CAAuD,MAAc,EAAA;QAAd,IAAM,CAAA,MAAA,GAAN,MAAM,CAAQ;KAAI;IAElE,SAAS,CAAC,KAAa,EAAE,OAAqC,EAAA;QACjE,IAAI,CAAC,IAAI,CAAC,oBAAoB,EAAE,YAAY,CAAC,OAAO,CAAC,EAAE;AACnD,YAAA,IAAI,CAAC,oBAAoB,GAAG,IAAI,oBAAoB,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAC9E,SAAA;QACD,OAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;KAClD;AAbQ,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,cAAc,kBAMI,SAAS,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA,EAAA;6GAN3B,cAAc,EAAA,YAAA,EAAA,IAAA,EAAA,IAAA,EAAA,YAAA,EAAA,CAAA,CAAA,EAAA;;4FAAd,cAAc,EAAA,UAAA,EAAA,CAAA;kBAJ1B,IAAI;AAAC,YAAA,IAAA,EAAA,CAAA;AACF,oBAAA,IAAI,EAAE,YAAY;AAClB,oBAAA,UAAU,EAAE,IAAI;AACnB,iBAAA,CAAA;;0BAOuB,MAAM;2BAAC,SAAS,CAAA;;;AChBxC;;AAEG;;;;"}
@@ -0,0 +1,39 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, NgModule } from '@angular/core';
3
+ export { unitCelsiusTag } from '@ni/nimble-components/dist/esm/unit/celsius';
4
+ import { CommonModule } from '@angular/common';
5
+
6
+ /**
7
+ * Directive to provide Angular integration for the Celsius unit element used by the number-text column.
8
+ */
9
+ class NimbleUnitCelsiusDirective {
10
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
11
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NimbleUnitCelsiusDirective, selector: "nimble-unit-celsius", ngImport: i0 }); }
12
+ }
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusDirective, decorators: [{
14
+ type: Directive,
15
+ args: [{
16
+ selector: 'nimble-unit-celsius'
17
+ }]
18
+ }] });
19
+
20
+ class NimbleUnitCelsiusModule {
21
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
22
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusModule, declarations: [NimbleUnitCelsiusDirective], imports: [CommonModule], exports: [NimbleUnitCelsiusDirective] }); }
23
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusModule, imports: [CommonModule] }); }
24
+ }
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitCelsiusModule, decorators: [{
26
+ type: NgModule,
27
+ args: [{
28
+ declarations: [NimbleUnitCelsiusDirective],
29
+ imports: [CommonModule],
30
+ exports: [NimbleUnitCelsiusDirective]
31
+ }]
32
+ }] });
33
+
34
+ /**
35
+ * Generated bundle index. Do not edit.
36
+ */
37
+
38
+ export { NimbleUnitCelsiusDirective, NimbleUnitCelsiusModule };
39
+ //# sourceMappingURL=ni-nimble-angular-unit-celsius.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ni-nimble-angular-unit-celsius.mjs","sources":["../../../nimble-angular/unit/celsius/nimble-unit-celsius.directive.ts","../../../nimble-angular/unit/celsius/nimble-unit-celsius.module.ts","../../../nimble-angular/unit/celsius/ni-nimble-angular-unit-celsius.ts"],"sourcesContent":["import { Directive } from '@angular/core';\nimport { type UnitCelsius, unitCelsiusTag } from '@ni/nimble-components/dist/esm/unit/celsius';\n\nexport type { UnitCelsius };\nexport { unitCelsiusTag };\n\n/**\n * Directive to provide Angular integration for the Celsius unit element used by the number-text column.\n */\n@Directive({\n selector: 'nimble-unit-celsius'\n})\nexport class NimbleUnitCelsiusDirective {\n}","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleUnitCelsiusDirective } from './nimble-unit-celsius.directive';\n\nimport '@ni/nimble-components/dist/esm/unit/celsius';\n\n@NgModule({\n declarations: [NimbleUnitCelsiusDirective],\n imports: [CommonModule],\n exports: [NimbleUnitCelsiusDirective]\n})\nexport class NimbleUnitCelsiusModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;AAMA;;AAEG;MAIU,0BAA0B,CAAA;+GAA1B,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;mGAA1B,0BAA0B,EAAA,QAAA,EAAA,qBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA,EAAA;;4FAA1B,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBAHtC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,qBAAqB;AAClC,iBAAA,CAAA;;;MCAY,uBAAuB,CAAA;+GAAvB,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAvB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,uBAAuB,EAJjB,YAAA,EAAA,CAAA,0BAA0B,CAC/B,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,0BAA0B,CAAA,EAAA,CAAA,CAAA,EAAA;AAE3B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,uBAAuB,YAHtB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;4FAGb,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBALnC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,YAAY,EAAE,CAAC,0BAA0B,CAAC;oBAC1C,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,0BAA0B,CAAC;AACxC,iBAAA,CAAA;;;ACVD;;AAEG;;;;"}
@@ -0,0 +1,39 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, NgModule } from '@angular/core';
3
+ export { unitFahrenheitTag } from '@ni/nimble-components/dist/esm/unit/fahrenheit';
4
+ import { CommonModule } from '@angular/common';
5
+
6
+ /**
7
+ * Directive to provide Angular integration for the Fahrenheit unit element used by the number-text column.
8
+ */
9
+ class NimbleUnitFahrenheitDirective {
10
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
11
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: NimbleUnitFahrenheitDirective, selector: "nimble-unit-fahrenheit", ngImport: i0 }); }
12
+ }
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitDirective, decorators: [{
14
+ type: Directive,
15
+ args: [{
16
+ selector: 'nimble-unit-fahrenheit'
17
+ }]
18
+ }] });
19
+
20
+ class NimbleUnitFahrenheitModule {
21
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
22
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitModule, declarations: [NimbleUnitFahrenheitDirective], imports: [CommonModule], exports: [NimbleUnitFahrenheitDirective] }); }
23
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitModule, imports: [CommonModule] }); }
24
+ }
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NimbleUnitFahrenheitModule, decorators: [{
26
+ type: NgModule,
27
+ args: [{
28
+ declarations: [NimbleUnitFahrenheitDirective],
29
+ imports: [CommonModule],
30
+ exports: [NimbleUnitFahrenheitDirective]
31
+ }]
32
+ }] });
33
+
34
+ /**
35
+ * Generated bundle index. Do not edit.
36
+ */
37
+
38
+ export { NimbleUnitFahrenheitDirective, NimbleUnitFahrenheitModule };
39
+ //# sourceMappingURL=ni-nimble-angular-unit-fahrenheit.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ni-nimble-angular-unit-fahrenheit.mjs","sources":["../../../nimble-angular/unit/fahrenheit/nimble-unit-fahrenheit.directive.ts","../../../nimble-angular/unit/fahrenheit/nimble-unit-fahrenheit.module.ts","../../../nimble-angular/unit/fahrenheit/ni-nimble-angular-unit-fahrenheit.ts"],"sourcesContent":["import { Directive } from '@angular/core';\nimport { type UnitFahrenheit, unitFahrenheitTag } from '@ni/nimble-components/dist/esm/unit/fahrenheit';\n\nexport type { UnitFahrenheit };\nexport { unitFahrenheitTag };\n\n/**\n * Directive to provide Angular integration for the Fahrenheit unit element used by the number-text column.\n */\n@Directive({\n selector: 'nimble-unit-fahrenheit'\n})\nexport class NimbleUnitFahrenheitDirective {\n}","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleUnitFahrenheitDirective } from './nimble-unit-fahrenheit.directive';\n\nimport '@ni/nimble-components/dist/esm/unit/fahrenheit';\n\n@NgModule({\n declarations: [NimbleUnitFahrenheitDirective],\n imports: [CommonModule],\n exports: [NimbleUnitFahrenheitDirective]\n})\nexport class NimbleUnitFahrenheitModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;AAMA;;AAEG;MAIU,6BAA6B,CAAA;+GAA7B,6BAA6B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;mGAA7B,6BAA6B,EAAA,QAAA,EAAA,wBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA,EAAA;;4FAA7B,6BAA6B,EAAA,UAAA,EAAA,CAAA;kBAHzC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,wBAAwB;AACrC,iBAAA,CAAA;;;MCAY,0BAA0B,CAAA;+GAA1B,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAA1B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,0BAA0B,EAJpB,YAAA,EAAA,CAAA,6BAA6B,CAClC,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,6BAA6B,CAAA,EAAA,CAAA,CAAA,EAAA;AAE9B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,0BAA0B,YAHzB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;4FAGb,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBALtC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,YAAY,EAAE,CAAC,6BAA6B,CAAC;oBAC7C,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,6BAA6B,CAAC;AAC3C,iBAAA,CAAA;;;ACVD;;AAEG;;;;"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@ni/nimble-angular/mapping/empty" />
5
+ export * from './public-api';
@@ -0,0 +1,19 @@
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
+ import { NimbleMappingDirective } from '@ni/nimble-angular/mapping/base';
3
+ import { type MappingEmpty, mappingEmptyTag } from '@ni/nimble-components/dist/esm/mapping/empty';
4
+ import type { MappingKey } from '@ni/nimble-components/dist/esm/mapping/base/types';
5
+ import * as i0 from "@angular/core";
6
+ export type { MappingEmpty, MappingKey };
7
+ export { mappingEmptyTag };
8
+ /**
9
+ * Directive to provide Angular integration for the mapping empty element used by the mapping column.
10
+ */
11
+ export declare class NimbleMappingEmptyDirective extends NimbleMappingDirective<MappingKey> {
12
+ protected readonly renderer: Renderer2;
13
+ protected readonly elementRef: ElementRef<MappingEmpty>;
14
+ get text(): string | undefined;
15
+ set text(value: string | undefined);
16
+ constructor(renderer: Renderer2, elementRef: ElementRef<MappingEmpty>);
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleMappingEmptyDirective, never>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleMappingEmptyDirective, "nimble-mapping-empty", never, { "text": { "alias": "text"; "required": false; }; }, {}, never, never, false, never>;
19
+ }
@@ -0,0 +1,9 @@
1
+ import '@ni/nimble-components/dist/esm/mapping/empty';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-mapping-empty.directive";
4
+ import * as i2 from "@angular/common";
5
+ export declare class NimbleMappingEmptyModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleMappingEmptyModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleMappingEmptyModule, [typeof i1.NimbleMappingEmptyDirective], [typeof i2.CommonModule], [typeof i1.NimbleMappingEmptyDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleMappingEmptyModule>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './nimble-mapping-empty.directive';
2
+ export * from './nimble-mapping-empty.module';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ni/nimble-angular",
3
- "version": "24.0.9",
3
+ "version": "24.2.0",
4
4
  "description": "Angular components for the NI Nimble Design System",
5
5
  "repository": {
6
6
  "type": "git",
@@ -90,6 +90,12 @@
90
90
  "esm": "./esm2022/mapping/base/ni-nimble-angular-mapping-base.mjs",
91
91
  "default": "./fesm2022/ni-nimble-angular-mapping-base.mjs"
92
92
  },
93
+ "./mapping/empty": {
94
+ "types": "./mapping/empty/index.d.ts",
95
+ "esm2022": "./esm2022/mapping/empty/ni-nimble-angular-mapping-empty.mjs",
96
+ "esm": "./esm2022/mapping/empty/ni-nimble-angular-mapping-empty.mjs",
97
+ "default": "./fesm2022/ni-nimble-angular-mapping-empty.mjs"
98
+ },
93
99
  "./mapping/icon": {
94
100
  "types": "./mapping/icon/index.d.ts",
95
101
  "esm2022": "./esm2022/mapping/icon/ni-nimble-angular-mapping-icon.mjs",
@@ -186,6 +192,18 @@
186
192
  "esm": "./esm2022/unit/byte/ni-nimble-angular-unit-byte.mjs",
187
193
  "default": "./fesm2022/ni-nimble-angular-unit-byte.mjs"
188
194
  },
195
+ "./unit/celsius": {
196
+ "types": "./unit/celsius/index.d.ts",
197
+ "esm2022": "./esm2022/unit/celsius/ni-nimble-angular-unit-celsius.mjs",
198
+ "esm": "./esm2022/unit/celsius/ni-nimble-angular-unit-celsius.mjs",
199
+ "default": "./fesm2022/ni-nimble-angular-unit-celsius.mjs"
200
+ },
201
+ "./unit/fahrenheit": {
202
+ "types": "./unit/fahrenheit/index.d.ts",
203
+ "esm2022": "./esm2022/unit/fahrenheit/ni-nimble-angular-unit-fahrenheit.mjs",
204
+ "esm": "./esm2022/unit/fahrenheit/ni-nimble-angular-unit-fahrenheit.mjs",
205
+ "default": "./fesm2022/ni-nimble-angular-unit-fahrenheit.mjs"
206
+ },
189
207
  "./unit/volt": {
190
208
  "types": "./unit/volt/index.d.ts",
191
209
  "esm2022": "./esm2022/unit/volt/ni-nimble-angular-unit-volt.mjs",
@@ -211,7 +229,7 @@
211
229
  "@angular/forms": "^16.2.12",
212
230
  "@angular/localize": "^16.2.12",
213
231
  "@angular/router": "^16.2.12",
214
- "@ni/nimble-components": "^28.2.1"
232
+ "@ni/nimble-components": "^28.3.0"
215
233
  },
216
234
  "dependencies": {
217
235
  "tslib": "^2.2.0"
@@ -2,4 +2,6 @@ export * from './duration.pipe';
2
2
  export * from './number-text.pipe';
3
3
  export { byteUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/byte-unit-scale';
4
4
  export { byte1024UnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/byte-1024-unit-scale';
5
+ export { celsiusUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/celsius-unit-scale';
6
+ export { fahrenheitUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/fahrenheit-unit-scale';
5
7
  export { voltUnitScale } from '@ni/nimble-components/dist/esm/utilities/unit-format/unit-scale/volt-unit-scale';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@ni/nimble-angular/unit/celsius" />
5
+ export * from './public-api';
@@ -0,0 +1,11 @@
1
+ import { type UnitCelsius, unitCelsiusTag } from '@ni/nimble-components/dist/esm/unit/celsius';
2
+ import * as i0 from "@angular/core";
3
+ export type { UnitCelsius };
4
+ export { unitCelsiusTag };
5
+ /**
6
+ * Directive to provide Angular integration for the Celsius unit element used by the number-text column.
7
+ */
8
+ export declare class NimbleUnitCelsiusDirective {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleUnitCelsiusDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleUnitCelsiusDirective, "nimble-unit-celsius", never, {}, {}, never, never, false, never>;
11
+ }
@@ -0,0 +1,9 @@
1
+ import '@ni/nimble-components/dist/esm/unit/celsius';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-unit-celsius.directive";
4
+ import * as i2 from "@angular/common";
5
+ export declare class NimbleUnitCelsiusModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleUnitCelsiusModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleUnitCelsiusModule, [typeof i1.NimbleUnitCelsiusDirective], [typeof i2.CommonModule], [typeof i1.NimbleUnitCelsiusDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleUnitCelsiusModule>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './nimble-unit-celsius.directive';
2
+ export * from './nimble-unit-celsius.module';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@ni/nimble-angular/unit/fahrenheit" />
5
+ export * from './public-api';
@@ -0,0 +1,11 @@
1
+ import { type UnitFahrenheit, unitFahrenheitTag } from '@ni/nimble-components/dist/esm/unit/fahrenheit';
2
+ import * as i0 from "@angular/core";
3
+ export type { UnitFahrenheit };
4
+ export { unitFahrenheitTag };
5
+ /**
6
+ * Directive to provide Angular integration for the Fahrenheit unit element used by the number-text column.
7
+ */
8
+ export declare class NimbleUnitFahrenheitDirective {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleUnitFahrenheitDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleUnitFahrenheitDirective, "nimble-unit-fahrenheit", never, {}, {}, never, never, false, never>;
11
+ }
@@ -0,0 +1,9 @@
1
+ import '@ni/nimble-components/dist/esm/unit/fahrenheit';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-unit-fahrenheit.directive";
4
+ import * as i2 from "@angular/common";
5
+ export declare class NimbleUnitFahrenheitModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleUnitFahrenheitModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleUnitFahrenheitModule, [typeof i1.NimbleUnitFahrenheitDirective], [typeof i2.CommonModule], [typeof i1.NimbleUnitFahrenheitDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleUnitFahrenheitModule>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './nimble-unit-fahrenheit.directive';
2
+ export * from './nimble-unit-fahrenheit.module';