@ni/spright-angular 8.6.1 → 8.7.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/fesm2022/ni-spright-angular-icon-base.mjs +34 -0
- package/fesm2022/ni-spright-angular-icon-base.mjs.map +1 -0
- package/fesm2022/ni-spright-angular-icons-work-item-calendar-week.mjs +26 -0
- package/fesm2022/ni-spright-angular-icons-work-item-calendar-week.mjs.map +1 -0
- package/fesm2022/ni-spright-angular-icons-work-item-calipers.mjs +26 -0
- package/fesm2022/ni-spright-angular-icons-work-item-calipers.mjs.map +1 -0
- package/fesm2022/ni-spright-angular-icons-work-item-forklift.mjs +26 -0
- package/fesm2022/ni-spright-angular-icons-work-item-forklift.mjs.map +1 -0
- package/fesm2022/ni-spright-angular-icons-work-item-rectangle-check-lines.mjs +26 -0
- package/fesm2022/ni-spright-angular-icons-work-item-rectangle-check-lines.mjs.map +1 -0
- package/fesm2022/ni-spright-angular-icons-work-item-wrench-hammer.mjs +26 -0
- package/fesm2022/ni-spright-angular-icons-work-item-wrench-hammer.mjs.map +1 -0
- package/icon-base/index.d.ts +5 -0
- package/icon-base/public-api.d.ts +1 -0
- package/icon-base/spright-icon-base.directive.d.ts +17 -0
- package/icons/work-item-calendar-week/index.d.ts +5 -0
- package/icons/work-item-calendar-week/spright-icon-work-item-calendar-week.directive.d.ts +12 -0
- package/icons/work-item-calipers/index.d.ts +5 -0
- package/icons/work-item-calipers/spright-icon-work-item-calipers.directive.d.ts +12 -0
- package/icons/work-item-forklift/index.d.ts +5 -0
- package/icons/work-item-forklift/spright-icon-work-item-forklift.directive.d.ts +12 -0
- package/icons/work-item-rectangle-check-lines/index.d.ts +5 -0
- package/icons/work-item-rectangle-check-lines/spright-icon-work-item-rectangle-check-lines.directive.d.ts +12 -0
- package/icons/work-item-wrench-hammer/index.d.ts +5 -0
- package/icons/work-item-wrench-hammer/spright-icon-work-item-wrench-hammer.directive.d.ts +12 -0
- package/package.json +26 -2
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Input, Directive } from '@angular/core';
|
|
3
|
+
export { Icon } from '@ni/nimble-components/dist/esm/icon-base';
|
|
4
|
+
export { IconSeverity } from '@ni/nimble-components/dist/esm/icon-base/types';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Base class for the spright icon directives
|
|
8
|
+
*/
|
|
9
|
+
class SprightIconBaseDirective {
|
|
10
|
+
get severity() {
|
|
11
|
+
return this.elementRef.nativeElement.severity;
|
|
12
|
+
}
|
|
13
|
+
set severity(value) {
|
|
14
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'severity', value);
|
|
15
|
+
}
|
|
16
|
+
constructor(renderer, elementRef) {
|
|
17
|
+
this.renderer = renderer;
|
|
18
|
+
this.elementRef = elementRef;
|
|
19
|
+
}
|
|
20
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconBaseDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
21
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: SprightIconBaseDirective, isStandalone: true, inputs: { severity: "severity" }, ngImport: i0 }); }
|
|
22
|
+
}
|
|
23
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconBaseDirective, decorators: [{
|
|
24
|
+
type: Directive
|
|
25
|
+
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: { severity: [{
|
|
26
|
+
type: Input
|
|
27
|
+
}] } });
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Generated bundle index. Do not edit.
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
export { SprightIconBaseDirective };
|
|
34
|
+
//# sourceMappingURL=ni-spright-angular-icon-base.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ni-spright-angular-icon-base.mjs","sources":["../../../spright-angular/icon-base/spright-icon-base.directive.ts","../../../spright-angular/icon-base/ni-spright-angular-icon-base.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport { Icon } from '@ni/nimble-components/dist/esm/icon-base';\nimport { IconSeverity } from '@ni/nimble-components/dist/esm/icon-base/types';\n\nexport { Icon, IconSeverity };\n\n/**\n * Base class for the spright icon directives\n */\n@Directive()\nexport class SprightIconBaseDirective {\n public get severity(): IconSeverity {\n return this.elementRef.nativeElement.severity;\n }\n\n @Input() public set severity(value: IconSeverity) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'severity', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Icon>) {}\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;AAMA;;AAEG;MAEU,wBAAwB,CAAA;AACjC,IAAA,IAAW,QAAQ,GAAA;AACf,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,QAAQ;IACjD;IAEA,IAAoB,QAAQ,CAAC,KAAmB,EAAA;AAC5C,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,UAAU,EAAE,KAAK,CAAC;IAC/E;IAEA,WAAA,CAAoC,QAAmB,EAAmB,UAA4B,EAAA;QAAlE,IAAA,CAAA,QAAQ,GAAR,QAAQ;QAA8B,IAAA,CAAA,UAAU,GAAV,UAAU;IAAqB;+GAThG,wBAAwB,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;mGAAxB,wBAAwB,EAAA,YAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,QAAA,EAAA,UAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAAxB,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBADpC;uGAMuB,QAAQ,EAAA,CAAA;sBAA3B;;;ACfL;;AAEG;;;;"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Directive } from '@angular/core';
|
|
3
|
+
export { iconWorkItemCalendarWeekTag } from '@ni/spright-components/dist/esm/icons/work-item-calendar-week';
|
|
4
|
+
import { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Spright calendar week icon directive for reservation work items
|
|
8
|
+
*/
|
|
9
|
+
class SprightIconWorkItemCalendarWeekDirective extends SprightIconBaseDirective {
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconWorkItemCalendarWeekDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: SprightIconWorkItemCalendarWeekDirective, isStandalone: true, selector: "spright-icon-work-item-calendar-week", usesInheritance: true, ngImport: i0 }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconWorkItemCalendarWeekDirective, decorators: [{
|
|
14
|
+
type: Directive,
|
|
15
|
+
args: [{
|
|
16
|
+
selector: 'spright-icon-work-item-calendar-week',
|
|
17
|
+
standalone: true
|
|
18
|
+
}]
|
|
19
|
+
}] });
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Generated bundle index. Do not edit.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
export { SprightIconWorkItemCalendarWeekDirective };
|
|
26
|
+
//# sourceMappingURL=ni-spright-angular-icons-work-item-calendar-week.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ni-spright-angular-icons-work-item-calendar-week.mjs","sources":["../../../spright-angular/icons/work-item-calendar-week/spright-icon-work-item-calendar-week.directive.ts","../../../spright-angular/icons/work-item-calendar-week/ni-spright-angular-icons-work-item-calendar-week.ts"],"sourcesContent":["import { Directive } from '@angular/core';\nimport { type IconWorkItemCalendarWeek, iconWorkItemCalendarWeekTag } from '@ni/spright-components/dist/esm/icons/work-item-calendar-week';\nimport '@ni/spright-components/dist/esm/icons/work-item-calendar-week';\nimport { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';\n\nexport { type IconWorkItemCalendarWeek, iconWorkItemCalendarWeekTag };\n\n/**\n * Spright calendar week icon directive for reservation work items\n */\n@Directive({\n selector: 'spright-icon-work-item-calendar-week',\n standalone: true\n})\nexport class SprightIconWorkItemCalendarWeekDirective extends SprightIconBaseDirective {\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './spright-icon-work-item-calendar-week.directive';\n"],"names":[],"mappings":";;;;;AAOA;;AAEG;AAKG,MAAO,wCAAyC,SAAQ,wBAAwB,CAAA;+GAAzE,wCAAwC,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAAxC,wCAAwC,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAAxC,wCAAwC,EAAA,UAAA,EAAA,CAAA;kBAJpD,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,sCAAsC;AAChD,oBAAA,UAAU,EAAE;AACf,iBAAA;;;ACbD;;AAEG;;;;"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Directive } from '@angular/core';
|
|
3
|
+
export { iconWorkItemCalipersTag } from '@ni/spright-components/dist/esm/icons/work-item-calipers';
|
|
4
|
+
import { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Spright calipers icon directive for calibration work items
|
|
8
|
+
*/
|
|
9
|
+
class SprightIconWorkItemCalipersDirective extends SprightIconBaseDirective {
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconWorkItemCalipersDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: SprightIconWorkItemCalipersDirective, isStandalone: true, selector: "spright-icon-work-item-calipers", usesInheritance: true, ngImport: i0 }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconWorkItemCalipersDirective, decorators: [{
|
|
14
|
+
type: Directive,
|
|
15
|
+
args: [{
|
|
16
|
+
selector: 'spright-icon-work-item-calipers',
|
|
17
|
+
standalone: true
|
|
18
|
+
}]
|
|
19
|
+
}] });
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Generated bundle index. Do not edit.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
export { SprightIconWorkItemCalipersDirective };
|
|
26
|
+
//# sourceMappingURL=ni-spright-angular-icons-work-item-calipers.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ni-spright-angular-icons-work-item-calipers.mjs","sources":["../../../spright-angular/icons/work-item-calipers/spright-icon-work-item-calipers.directive.ts","../../../spright-angular/icons/work-item-calipers/ni-spright-angular-icons-work-item-calipers.ts"],"sourcesContent":["import { Directive } from '@angular/core';\nimport { type IconWorkItemCalipers, iconWorkItemCalipersTag } from '@ni/spright-components/dist/esm/icons/work-item-calipers';\nimport '@ni/spright-components/dist/esm/icons/work-item-calipers';\nimport { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';\n\nexport { type IconWorkItemCalipers, iconWorkItemCalipersTag };\n\n/**\n * Spright calipers icon directive for calibration work items\n */\n@Directive({\n selector: 'spright-icon-work-item-calipers',\n standalone: true\n})\nexport class SprightIconWorkItemCalipersDirective extends SprightIconBaseDirective {\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './spright-icon-work-item-calipers.directive';\n"],"names":[],"mappings":";;;;;AAOA;;AAEG;AAKG,MAAO,oCAAqC,SAAQ,wBAAwB,CAAA;+GAArE,oCAAoC,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAApC,oCAAoC,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,iCAAA,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAApC,oCAAoC,EAAA,UAAA,EAAA,CAAA;kBAJhD,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,iCAAiC;AAC3C,oBAAA,UAAU,EAAE;AACf,iBAAA;;;ACbD;;AAEG;;;;"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Directive } from '@angular/core';
|
|
3
|
+
export { iconWorkItemForkliftTag } from '@ni/spright-components/dist/esm/icons/work-item-forklift';
|
|
4
|
+
import { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Spright forklift icon directive for transport work items
|
|
8
|
+
*/
|
|
9
|
+
class SprightIconWorkItemForkliftDirective extends SprightIconBaseDirective {
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconWorkItemForkliftDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: SprightIconWorkItemForkliftDirective, isStandalone: true, selector: "spright-icon-work-item-forklift", usesInheritance: true, ngImport: i0 }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconWorkItemForkliftDirective, decorators: [{
|
|
14
|
+
type: Directive,
|
|
15
|
+
args: [{
|
|
16
|
+
selector: 'spright-icon-work-item-forklift',
|
|
17
|
+
standalone: true
|
|
18
|
+
}]
|
|
19
|
+
}] });
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Generated bundle index. Do not edit.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
export { SprightIconWorkItemForkliftDirective };
|
|
26
|
+
//# sourceMappingURL=ni-spright-angular-icons-work-item-forklift.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ni-spright-angular-icons-work-item-forklift.mjs","sources":["../../../spright-angular/icons/work-item-forklift/spright-icon-work-item-forklift.directive.ts","../../../spright-angular/icons/work-item-forklift/ni-spright-angular-icons-work-item-forklift.ts"],"sourcesContent":["import { Directive } from '@angular/core';\nimport { type IconWorkItemForklift, iconWorkItemForkliftTag } from '@ni/spright-components/dist/esm/icons/work-item-forklift';\nimport '@ni/spright-components/dist/esm/icons/work-item-forklift';\nimport { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';\n\nexport { type IconWorkItemForklift, iconWorkItemForkliftTag };\n\n/**\n * Spright forklift icon directive for transport work items\n */\n@Directive({\n selector: 'spright-icon-work-item-forklift',\n standalone: true\n})\nexport class SprightIconWorkItemForkliftDirective extends SprightIconBaseDirective {\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './spright-icon-work-item-forklift.directive';\n"],"names":[],"mappings":";;;;;AAOA;;AAEG;AAKG,MAAO,oCAAqC,SAAQ,wBAAwB,CAAA;+GAArE,oCAAoC,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAApC,oCAAoC,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,iCAAA,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAApC,oCAAoC,EAAA,UAAA,EAAA,CAAA;kBAJhD,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,iCAAiC;AAC3C,oBAAA,UAAU,EAAE;AACf,iBAAA;;;ACbD;;AAEG;;;;"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Directive } from '@angular/core';
|
|
3
|
+
export { iconWorkItemRectangleCheckLinesTag } from '@ni/spright-components/dist/esm/icons/work-item-rectangle-check-lines';
|
|
4
|
+
import { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Spright rectangle check lines icon directive for test plan work items
|
|
8
|
+
*/
|
|
9
|
+
class SprightIconWorkItemRectangleCheckLinesDirective extends SprightIconBaseDirective {
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconWorkItemRectangleCheckLinesDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: SprightIconWorkItemRectangleCheckLinesDirective, isStandalone: true, selector: "spright-icon-work-item-rectangle-check-lines", usesInheritance: true, ngImport: i0 }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconWorkItemRectangleCheckLinesDirective, decorators: [{
|
|
14
|
+
type: Directive,
|
|
15
|
+
args: [{
|
|
16
|
+
selector: 'spright-icon-work-item-rectangle-check-lines',
|
|
17
|
+
standalone: true
|
|
18
|
+
}]
|
|
19
|
+
}] });
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Generated bundle index. Do not edit.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
export { SprightIconWorkItemRectangleCheckLinesDirective };
|
|
26
|
+
//# sourceMappingURL=ni-spright-angular-icons-work-item-rectangle-check-lines.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ni-spright-angular-icons-work-item-rectangle-check-lines.mjs","sources":["../../../spright-angular/icons/work-item-rectangle-check-lines/spright-icon-work-item-rectangle-check-lines.directive.ts","../../../spright-angular/icons/work-item-rectangle-check-lines/ni-spright-angular-icons-work-item-rectangle-check-lines.ts"],"sourcesContent":["import { Directive } from '@angular/core';\nimport { type IconWorkItemRectangleCheckLines, iconWorkItemRectangleCheckLinesTag } from '@ni/spright-components/dist/esm/icons/work-item-rectangle-check-lines';\nimport '@ni/spright-components/dist/esm/icons/work-item-rectangle-check-lines';\nimport { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';\n\nexport { type IconWorkItemRectangleCheckLines, iconWorkItemRectangleCheckLinesTag };\n\n/**\n * Spright rectangle check lines icon directive for test plan work items\n */\n@Directive({\n selector: 'spright-icon-work-item-rectangle-check-lines',\n standalone: true\n})\nexport class SprightIconWorkItemRectangleCheckLinesDirective extends SprightIconBaseDirective {\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './spright-icon-work-item-rectangle-check-lines.directive';\n"],"names":[],"mappings":";;;;;AAOA;;AAEG;AAKG,MAAO,+CAAgD,SAAQ,wBAAwB,CAAA;+GAAhF,+CAA+C,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAA/C,+CAA+C,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,8CAAA,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAA/C,+CAA+C,EAAA,UAAA,EAAA,CAAA;kBAJ3D,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,8CAA8C;AACxD,oBAAA,UAAU,EAAE;AACf,iBAAA;;;ACbD;;AAEG;;;;"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Directive } from '@angular/core';
|
|
3
|
+
export { iconWorkItemWrenchHammerTag } from '@ni/spright-components/dist/esm/icons/work-item-wrench-hammer';
|
|
4
|
+
import { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Spright wrench hammer icon directive for maintenance work items
|
|
8
|
+
*/
|
|
9
|
+
class SprightIconWorkItemWrenchHammerDirective extends SprightIconBaseDirective {
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconWorkItemWrenchHammerDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.19", type: SprightIconWorkItemWrenchHammerDirective, isStandalone: true, selector: "spright-icon-work-item-wrench-hammer", usesInheritance: true, ngImport: i0 }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SprightIconWorkItemWrenchHammerDirective, decorators: [{
|
|
14
|
+
type: Directive,
|
|
15
|
+
args: [{
|
|
16
|
+
selector: 'spright-icon-work-item-wrench-hammer',
|
|
17
|
+
standalone: true
|
|
18
|
+
}]
|
|
19
|
+
}] });
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Generated bundle index. Do not edit.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
export { SprightIconWorkItemWrenchHammerDirective };
|
|
26
|
+
//# sourceMappingURL=ni-spright-angular-icons-work-item-wrench-hammer.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ni-spright-angular-icons-work-item-wrench-hammer.mjs","sources":["../../../spright-angular/icons/work-item-wrench-hammer/spright-icon-work-item-wrench-hammer.directive.ts","../../../spright-angular/icons/work-item-wrench-hammer/ni-spright-angular-icons-work-item-wrench-hammer.ts"],"sourcesContent":["import { Directive } from '@angular/core';\nimport { type IconWorkItemWrenchHammer, iconWorkItemWrenchHammerTag } from '@ni/spright-components/dist/esm/icons/work-item-wrench-hammer';\nimport '@ni/spright-components/dist/esm/icons/work-item-wrench-hammer';\nimport { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';\n\nexport { type IconWorkItemWrenchHammer, iconWorkItemWrenchHammerTag };\n\n/**\n * Spright wrench hammer icon directive for maintenance work items\n */\n@Directive({\n selector: 'spright-icon-work-item-wrench-hammer',\n standalone: true\n})\nexport class SprightIconWorkItemWrenchHammerDirective extends SprightIconBaseDirective {\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './spright-icon-work-item-wrench-hammer.directive';\n"],"names":[],"mappings":";;;;;AAOA;;AAEG;AAKG,MAAO,wCAAyC,SAAQ,wBAAwB,CAAA;+GAAzE,wCAAwC,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAAxC,wCAAwC,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAAxC,wCAAwC,EAAA,UAAA,EAAA,CAAA;kBAJpD,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,sCAAsC;AAChD,oBAAA,UAAU,EAAE;AACf,iBAAA;;;ACbD;;AAEG;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './spright-icon-base.directive';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
+
import { Icon } from '@ni/nimble-components/dist/esm/icon-base';
|
|
3
|
+
import { IconSeverity } from '@ni/nimble-components/dist/esm/icon-base/types';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export { Icon, IconSeverity };
|
|
6
|
+
/**
|
|
7
|
+
* Base class for the spright icon directives
|
|
8
|
+
*/
|
|
9
|
+
export declare class SprightIconBaseDirective {
|
|
10
|
+
private readonly renderer;
|
|
11
|
+
private readonly elementRef;
|
|
12
|
+
get severity(): IconSeverity;
|
|
13
|
+
set severity(value: IconSeverity);
|
|
14
|
+
constructor(renderer: Renderer2, elementRef: ElementRef<Icon>);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SprightIconBaseDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SprightIconBaseDirective, never, never, { "severity": { "alias": "severity"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type IconWorkItemCalendarWeek, iconWorkItemCalendarWeekTag } from '@ni/spright-components/dist/esm/icons/work-item-calendar-week';
|
|
2
|
+
import '@ni/spright-components/dist/esm/icons/work-item-calendar-week';
|
|
3
|
+
import { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export { type IconWorkItemCalendarWeek, iconWorkItemCalendarWeekTag };
|
|
6
|
+
/**
|
|
7
|
+
* Spright calendar week icon directive for reservation work items
|
|
8
|
+
*/
|
|
9
|
+
export declare class SprightIconWorkItemCalendarWeekDirective extends SprightIconBaseDirective {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SprightIconWorkItemCalendarWeekDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SprightIconWorkItemCalendarWeekDirective, "spright-icon-work-item-calendar-week", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type IconWorkItemCalipers, iconWorkItemCalipersTag } from '@ni/spright-components/dist/esm/icons/work-item-calipers';
|
|
2
|
+
import '@ni/spright-components/dist/esm/icons/work-item-calipers';
|
|
3
|
+
import { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export { type IconWorkItemCalipers, iconWorkItemCalipersTag };
|
|
6
|
+
/**
|
|
7
|
+
* Spright calipers icon directive for calibration work items
|
|
8
|
+
*/
|
|
9
|
+
export declare class SprightIconWorkItemCalipersDirective extends SprightIconBaseDirective {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SprightIconWorkItemCalipersDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SprightIconWorkItemCalipersDirective, "spright-icon-work-item-calipers", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type IconWorkItemForklift, iconWorkItemForkliftTag } from '@ni/spright-components/dist/esm/icons/work-item-forklift';
|
|
2
|
+
import '@ni/spright-components/dist/esm/icons/work-item-forklift';
|
|
3
|
+
import { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export { type IconWorkItemForklift, iconWorkItemForkliftTag };
|
|
6
|
+
/**
|
|
7
|
+
* Spright forklift icon directive for transport work items
|
|
8
|
+
*/
|
|
9
|
+
export declare class SprightIconWorkItemForkliftDirective extends SprightIconBaseDirective {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SprightIconWorkItemForkliftDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SprightIconWorkItemForkliftDirective, "spright-icon-work-item-forklift", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type IconWorkItemRectangleCheckLines, iconWorkItemRectangleCheckLinesTag } from '@ni/spright-components/dist/esm/icons/work-item-rectangle-check-lines';
|
|
2
|
+
import '@ni/spright-components/dist/esm/icons/work-item-rectangle-check-lines';
|
|
3
|
+
import { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export { type IconWorkItemRectangleCheckLines, iconWorkItemRectangleCheckLinesTag };
|
|
6
|
+
/**
|
|
7
|
+
* Spright rectangle check lines icon directive for test plan work items
|
|
8
|
+
*/
|
|
9
|
+
export declare class SprightIconWorkItemRectangleCheckLinesDirective extends SprightIconBaseDirective {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SprightIconWorkItemRectangleCheckLinesDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SprightIconWorkItemRectangleCheckLinesDirective, "spright-icon-work-item-rectangle-check-lines", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type IconWorkItemWrenchHammer, iconWorkItemWrenchHammerTag } from '@ni/spright-components/dist/esm/icons/work-item-wrench-hammer';
|
|
2
|
+
import '@ni/spright-components/dist/esm/icons/work-item-wrench-hammer';
|
|
3
|
+
import { SprightIconBaseDirective } from '@ni/spright-angular/icon-base';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export { type IconWorkItemWrenchHammer, iconWorkItemWrenchHammerTag };
|
|
6
|
+
/**
|
|
7
|
+
* Spright wrench hammer icon directive for maintenance work items
|
|
8
|
+
*/
|
|
9
|
+
export declare class SprightIconWorkItemWrenchHammerDirective extends SprightIconBaseDirective {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SprightIconWorkItemWrenchHammerDirective, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SprightIconWorkItemWrenchHammerDirective, "spright-icon-work-item-wrench-hammer", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/spright-angular",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.0",
|
|
4
4
|
"description": "Angular components for NI Spright",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@angular/common": "^19.2.17",
|
|
26
26
|
"@angular/core": "^19.2.17",
|
|
27
27
|
"@angular/localize": "^19.2.17",
|
|
28
|
-
"@ni/spright-components": "^6.
|
|
28
|
+
"@ni/spright-components": "^6.13.0"
|
|
29
29
|
},
|
|
30
30
|
"module": "fesm2022/ni-spright-angular.mjs",
|
|
31
31
|
"typings": "index.d.ts",
|
|
@@ -37,6 +37,10 @@
|
|
|
37
37
|
"types": "./index.d.ts",
|
|
38
38
|
"default": "./fesm2022/ni-spright-angular.mjs"
|
|
39
39
|
},
|
|
40
|
+
"./icon-base": {
|
|
41
|
+
"types": "./icon-base/index.d.ts",
|
|
42
|
+
"default": "./fesm2022/ni-spright-angular-icon-base.mjs"
|
|
43
|
+
},
|
|
40
44
|
"./rectangle": {
|
|
41
45
|
"types": "./rectangle/index.d.ts",
|
|
42
46
|
"default": "./fesm2022/ni-spright-angular-rectangle.mjs"
|
|
@@ -53,6 +57,26 @@
|
|
|
53
57
|
"types": "./chat/message/index.d.ts",
|
|
54
58
|
"default": "./fesm2022/ni-spright-angular-chat-message.mjs"
|
|
55
59
|
},
|
|
60
|
+
"./icons/work-item-calendar-week": {
|
|
61
|
+
"types": "./icons/work-item-calendar-week/index.d.ts",
|
|
62
|
+
"default": "./fesm2022/ni-spright-angular-icons-work-item-calendar-week.mjs"
|
|
63
|
+
},
|
|
64
|
+
"./icons/work-item-calipers": {
|
|
65
|
+
"types": "./icons/work-item-calipers/index.d.ts",
|
|
66
|
+
"default": "./fesm2022/ni-spright-angular-icons-work-item-calipers.mjs"
|
|
67
|
+
},
|
|
68
|
+
"./icons/work-item-forklift": {
|
|
69
|
+
"types": "./icons/work-item-forklift/index.d.ts",
|
|
70
|
+
"default": "./fesm2022/ni-spright-angular-icons-work-item-forklift.mjs"
|
|
71
|
+
},
|
|
72
|
+
"./icons/work-item-rectangle-check-lines": {
|
|
73
|
+
"types": "./icons/work-item-rectangle-check-lines/index.d.ts",
|
|
74
|
+
"default": "./fesm2022/ni-spright-angular-icons-work-item-rectangle-check-lines.mjs"
|
|
75
|
+
},
|
|
76
|
+
"./icons/work-item-wrench-hammer": {
|
|
77
|
+
"types": "./icons/work-item-wrench-hammer/index.d.ts",
|
|
78
|
+
"default": "./fesm2022/ni-spright-angular-icons-work-item-wrench-hammer.mjs"
|
|
79
|
+
},
|
|
56
80
|
"./chat/input/testing": {
|
|
57
81
|
"types": "./chat/input/testing/index.d.ts",
|
|
58
82
|
"default": "./fesm2022/ni-spright-angular-chat-input-testing.mjs"
|