@ni/ok-angular 2.6.1 → 2.7.1
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-ok-angular-fv-sticky-header.mjs +43 -0
- package/fesm2022/ni-ok-angular-fv-sticky-header.mjs.map +1 -0
- package/fesm2022/ni-ok-angular-fv-summary-panel-tile.mjs +10 -1
- package/fesm2022/ni-ok-angular-fv-summary-panel-tile.mjs.map +1 -1
- package/fesm2022/ni-ok-angular-fv-summary-panel.mjs +10 -1
- package/fesm2022/ni-ok-angular-fv-summary-panel.mjs.map +1 -1
- package/fv/sticky-header/index.d.ts +23 -0
- package/fv/summary-panel/index.d.ts +5 -1
- package/fv/summary-panel-tile/index.d.ts +5 -1
- package/package.json +6 -2
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Directive, NgModule } from '@angular/core';
|
|
3
|
+
export { fvStickyHeaderTag } from '@ni/ok-components/dist/esm/fv/sticky-header';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Directive to provide Angular integration for the sticky header.
|
|
8
|
+
*/
|
|
9
|
+
class OkFvStickyHeaderDirective {
|
|
10
|
+
constructor(elementRef) {
|
|
11
|
+
this.elementRef = elementRef;
|
|
12
|
+
}
|
|
13
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OkFvStickyHeaderDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
14
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: OkFvStickyHeaderDirective, isStandalone: false, selector: "ok-fv-sticky-header", ngImport: i0 }); }
|
|
15
|
+
}
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OkFvStickyHeaderDirective, decorators: [{
|
|
17
|
+
type: Directive,
|
|
18
|
+
args: [{
|
|
19
|
+
selector: 'ok-fv-sticky-header',
|
|
20
|
+
standalone: false
|
|
21
|
+
}]
|
|
22
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }] });
|
|
23
|
+
|
|
24
|
+
class OkFvStickyHeaderModule {
|
|
25
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OkFvStickyHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
26
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.27", ngImport: i0, type: OkFvStickyHeaderModule, declarations: [OkFvStickyHeaderDirective], imports: [CommonModule], exports: [OkFvStickyHeaderDirective] }); }
|
|
27
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OkFvStickyHeaderModule, imports: [CommonModule] }); }
|
|
28
|
+
}
|
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OkFvStickyHeaderModule, decorators: [{
|
|
30
|
+
type: NgModule,
|
|
31
|
+
args: [{
|
|
32
|
+
declarations: [OkFvStickyHeaderDirective],
|
|
33
|
+
imports: [CommonModule],
|
|
34
|
+
exports: [OkFvStickyHeaderDirective]
|
|
35
|
+
}]
|
|
36
|
+
}] });
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Generated bundle index. Do not edit.
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
export { OkFvStickyHeaderDirective, OkFvStickyHeaderModule };
|
|
43
|
+
//# sourceMappingURL=ni-ok-angular-fv-sticky-header.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ni-ok-angular-fv-sticky-header.mjs","sources":["../../../ok-angular/fv/sticky-header/ok-fv-sticky-header.directive.ts","../../../ok-angular/fv/sticky-header/ok-fv-sticky-header.module.ts","../../../ok-angular/fv/sticky-header/ni-ok-angular-fv-sticky-header.ts"],"sourcesContent":["import { Directive, ElementRef } from '@angular/core';\nimport type { FvStickyHeader } from '@ni/ok-components/dist/esm/fv/sticky-header';\nimport { fvStickyHeaderTag } from '@ni/ok-components/dist/esm/fv/sticky-header';\n\nexport type { FvStickyHeader };\nexport { fvStickyHeaderTag };\n\n/**\n * Directive to provide Angular integration for the sticky header.\n */\n@Directive({\n selector: 'ok-fv-sticky-header',\n standalone: false\n})\nexport class OkFvStickyHeaderDirective {\n public constructor(private readonly elementRef: ElementRef<FvStickyHeader>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { OkFvStickyHeaderDirective } from './ok-fv-sticky-header.directive';\n\nimport '@ni/ok-components/dist/esm/fv/sticky-header';\n\n@NgModule({\n declarations: [OkFvStickyHeaderDirective],\n imports: [CommonModule],\n exports: [OkFvStickyHeaderDirective]\n})\nexport class OkFvStickyHeaderModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;AAOA;;AAEG;MAKU,yBAAyB,CAAA;AAClC,IAAA,WAAA,CAAoC,UAAsC,EAAA;QAAtC,IAAA,CAAA,UAAU,GAAV,UAAU;IAA+B;+GADpE,yBAAyB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAAzB,yBAAyB,EAAA,YAAA,EAAA,KAAA,EAAA,QAAA,EAAA,qBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAAzB,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBAJrC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACP,oBAAA,QAAQ,EAAE,qBAAqB;AAC/B,oBAAA,UAAU,EAAE;AACf,iBAAA;;;MCFY,sBAAsB,CAAA;+GAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAtB,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,sBAAsB,EAAA,YAAA,EAAA,CAJhB,yBAAyB,CAAA,EAAA,OAAA,EAAA,CAC9B,YAAY,aACZ,yBAAyB,CAAA,EAAA,CAAA,CAAA;AAE1B,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,sBAAsB,YAHrB,YAAY,CAAA,EAAA,CAAA,CAAA;;4FAGb,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBALlC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,YAAY,EAAE,CAAC,yBAAyB,CAAC;oBACzC,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,yBAAyB;AACtC,iBAAA;;;ACVD;;AAEG;;;;"}
|
|
@@ -2,6 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { Input, Directive, NgModule } from '@angular/core';
|
|
3
3
|
export { fvSummaryPanelTileTag } from '@ni/ok-components/dist/esm/fv/summary-panel-tile';
|
|
4
4
|
export { FvSummaryPanelTileTextPosition } from '@ni/ok-components/dist/esm/fv/summary-panel-tile/types';
|
|
5
|
+
export { FvSummaryPanelSize } from '@ni/ok-components/dist/esm/fv/summary-panel/types';
|
|
5
6
|
import { toBooleanProperty } from '@ni/nimble-angular/internal-utilities';
|
|
6
7
|
import { CommonModule } from '@angular/common';
|
|
7
8
|
|
|
@@ -27,6 +28,12 @@ class OkFvSummaryPanelTileDirective {
|
|
|
27
28
|
set legacyStyle(value) {
|
|
28
29
|
this.renderer.setProperty(this.elementRef.nativeElement, 'legacyStyle', toBooleanProperty(value));
|
|
29
30
|
}
|
|
31
|
+
get size() {
|
|
32
|
+
return this.elementRef.nativeElement.size;
|
|
33
|
+
}
|
|
34
|
+
set size(value) {
|
|
35
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'size', value);
|
|
36
|
+
}
|
|
30
37
|
get selected() {
|
|
31
38
|
return this.elementRef.nativeElement.selected;
|
|
32
39
|
}
|
|
@@ -44,7 +51,7 @@ class OkFvSummaryPanelTileDirective {
|
|
|
44
51
|
this.renderer = renderer;
|
|
45
52
|
}
|
|
46
53
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OkFvSummaryPanelTileDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
47
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: OkFvSummaryPanelTileDirective, isStandalone: false, selector: "ok-fv-summary-panel-tile", inputs: { count: "count", label: "label", legacyStyle: ["legacy-style", "legacyStyle"], selected: "selected", textPosition: ["text-position", "textPosition"] }, ngImport: i0 }); }
|
|
54
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: OkFvSummaryPanelTileDirective, isStandalone: false, selector: "ok-fv-summary-panel-tile", inputs: { count: "count", label: "label", legacyStyle: ["legacy-style", "legacyStyle"], size: "size", selected: "selected", textPosition: ["text-position", "textPosition"] }, ngImport: i0 }); }
|
|
48
55
|
}
|
|
49
56
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OkFvSummaryPanelTileDirective, decorators: [{
|
|
50
57
|
type: Directive,
|
|
@@ -59,6 +66,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
|
|
|
59
66
|
}], legacyStyle: [{
|
|
60
67
|
type: Input,
|
|
61
68
|
args: ['legacy-style']
|
|
69
|
+
}], size: [{
|
|
70
|
+
type: Input
|
|
62
71
|
}], selected: [{
|
|
63
72
|
type: Input
|
|
64
73
|
}], textPosition: [{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ni-ok-angular-fv-summary-panel-tile.mjs","sources":["../../../ok-angular/fv/summary-panel-tile/ok-fv-summary-panel-tile.directive.ts","../../../ok-angular/fv/summary-panel-tile/ok-fv-summary-panel-tile.module.ts","../../../ok-angular/fv/summary-panel-tile/ni-ok-angular-fv-summary-panel-tile.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { FvSummaryPanelTile } from '@ni/ok-components/dist/esm/fv/summary-panel-tile';\nimport { fvSummaryPanelTileTag } from '@ni/ok-components/dist/esm/fv/summary-panel-tile';\nimport { FvSummaryPanelTileTextPosition } from '@ni/ok-components/dist/esm/fv/summary-panel-tile/types';\nimport { type BooleanValueOrAttribute, toBooleanProperty } from '@ni/nimble-angular/internal-utilities';\n\nexport type { FvSummaryPanelTile };\nexport { fvSummaryPanelTileTag };\nexport { FvSummaryPanelTileTextPosition };\n\n/**\n * Directive to provide Angular integration for the summary panel tile.\n */\n@Directive({\n selector: 'ok-fv-summary-panel-tile',\n standalone: false\n})\nexport class OkFvSummaryPanelTileDirective {\n public get count(): string {\n return this.elementRef.nativeElement.count;\n }\n\n @Input()\n public set count(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'count', value);\n }\n\n public get label(): string {\n return this.elementRef.nativeElement.label;\n }\n\n @Input()\n public set label(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'label', value);\n }\n\n public get legacyStyle(): boolean {\n return this.elementRef.nativeElement.legacyStyle;\n }\n\n @Input('legacy-style')\n public set legacyStyle(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'legacyStyle', toBooleanProperty(value));\n }\n\n public get selected(): boolean {\n return this.elementRef.nativeElement.selected;\n }\n\n @Input()\n public set selected(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'selected', toBooleanProperty(value));\n }\n\n public get textPosition(): FvSummaryPanelTileTextPosition {\n return this.elementRef.nativeElement.textPosition;\n }\n\n @Input('text-position')\n public set textPosition(value: FvSummaryPanelTileTextPosition) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'textPosition', value);\n }\n\n public constructor(\n private readonly elementRef: ElementRef<FvSummaryPanelTile>,\n private readonly renderer: Renderer2\n ) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { OkFvSummaryPanelTileDirective } from './ok-fv-summary-panel-tile.directive';\n\nimport '@ni/ok-components/dist/esm/fv/summary-panel-tile';\n\n@NgModule({\n declarations: [OkFvSummaryPanelTileDirective],\n imports: [CommonModule],\n exports: [OkFvSummaryPanelTileDirective]\n})\nexport class OkFvSummaryPanelTileModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ni-ok-angular-fv-summary-panel-tile.mjs","sources":["../../../ok-angular/fv/summary-panel-tile/ok-fv-summary-panel-tile.directive.ts","../../../ok-angular/fv/summary-panel-tile/ok-fv-summary-panel-tile.module.ts","../../../ok-angular/fv/summary-panel-tile/ni-ok-angular-fv-summary-panel-tile.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { FvSummaryPanelTile } from '@ni/ok-components/dist/esm/fv/summary-panel-tile';\nimport { fvSummaryPanelTileTag } from '@ni/ok-components/dist/esm/fv/summary-panel-tile';\nimport { FvSummaryPanelTileTextPosition } from '@ni/ok-components/dist/esm/fv/summary-panel-tile/types';\nimport { FvSummaryPanelSize } from '@ni/ok-components/dist/esm/fv/summary-panel/types';\nimport { type BooleanValueOrAttribute, toBooleanProperty } from '@ni/nimble-angular/internal-utilities';\n\nexport type { FvSummaryPanelTile };\nexport { fvSummaryPanelTileTag };\nexport { FvSummaryPanelTileTextPosition };\nexport { FvSummaryPanelSize };\n\n/**\n * Directive to provide Angular integration for the summary panel tile.\n */\n@Directive({\n selector: 'ok-fv-summary-panel-tile',\n standalone: false\n})\nexport class OkFvSummaryPanelTileDirective {\n public get count(): string {\n return this.elementRef.nativeElement.count;\n }\n\n @Input()\n public set count(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'count', value);\n }\n\n public get label(): string {\n return this.elementRef.nativeElement.label;\n }\n\n @Input()\n public set label(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'label', value);\n }\n\n public get legacyStyle(): boolean {\n return this.elementRef.nativeElement.legacyStyle;\n }\n\n @Input('legacy-style')\n public set legacyStyle(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'legacyStyle', toBooleanProperty(value));\n }\n\n public get size(): FvSummaryPanelSize {\n return this.elementRef.nativeElement.size;\n }\n\n @Input()\n public set size(value: FvSummaryPanelSize) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'size', value);\n }\n\n public get selected(): boolean {\n return this.elementRef.nativeElement.selected;\n }\n\n @Input()\n public set selected(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'selected', toBooleanProperty(value));\n }\n\n public get textPosition(): FvSummaryPanelTileTextPosition {\n return this.elementRef.nativeElement.textPosition;\n }\n\n @Input('text-position')\n public set textPosition(value: FvSummaryPanelTileTextPosition) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'textPosition', value);\n }\n\n public constructor(\n private readonly elementRef: ElementRef<FvSummaryPanelTile>,\n private readonly renderer: Renderer2\n ) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { OkFvSummaryPanelTileDirective } from './ok-fv-summary-panel-tile.directive';\n\nimport '@ni/ok-components/dist/esm/fv/summary-panel-tile';\n\n@NgModule({\n declarations: [OkFvSummaryPanelTileDirective],\n imports: [CommonModule],\n exports: [OkFvSummaryPanelTileDirective]\n})\nexport class OkFvSummaryPanelTileModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Input, Directive, NgModule } from '@angular/core';
|
|
3
3
|
export { fvSummaryPanelTag } from '@ni/ok-components/dist/esm/fv/summary-panel';
|
|
4
|
+
export { FvSummaryPanelSize } from '@ni/ok-components/dist/esm/fv/summary-panel/types';
|
|
4
5
|
import { toBooleanProperty } from '@ni/nimble-angular/internal-utilities';
|
|
5
6
|
import { CommonModule } from '@angular/common';
|
|
6
7
|
|
|
@@ -20,6 +21,12 @@ class OkFvSummaryPanelDirective {
|
|
|
20
21
|
set legacyStyle(value) {
|
|
21
22
|
this.renderer.setProperty(this.elementRef.nativeElement, 'legacyStyle', toBooleanProperty(value));
|
|
22
23
|
}
|
|
24
|
+
get size() {
|
|
25
|
+
return this.elementRef.nativeElement.size;
|
|
26
|
+
}
|
|
27
|
+
set size(value) {
|
|
28
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'size', value);
|
|
29
|
+
}
|
|
23
30
|
get editItemsButtonLabel() {
|
|
24
31
|
return this.elementRef.nativeElement.editItemsButtonLabel;
|
|
25
32
|
}
|
|
@@ -31,7 +38,7 @@ class OkFvSummaryPanelDirective {
|
|
|
31
38
|
this.renderer = renderer;
|
|
32
39
|
}
|
|
33
40
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OkFvSummaryPanelDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
34
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: OkFvSummaryPanelDirective, isStandalone: false, selector: "ok-fv-summary-panel", inputs: { showEditItemsButton: ["show-edit-items-button", "showEditItemsButton"], legacyStyle: ["legacy-style", "legacyStyle"], editItemsButtonLabel: ["edit-items-button-label", "editItemsButtonLabel"] }, ngImport: i0 }); }
|
|
41
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.27", type: OkFvSummaryPanelDirective, isStandalone: false, selector: "ok-fv-summary-panel", inputs: { showEditItemsButton: ["show-edit-items-button", "showEditItemsButton"], legacyStyle: ["legacy-style", "legacyStyle"], size: "size", editItemsButtonLabel: ["edit-items-button-label", "editItemsButtonLabel"] }, ngImport: i0 }); }
|
|
35
42
|
}
|
|
36
43
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: OkFvSummaryPanelDirective, decorators: [{
|
|
37
44
|
type: Directive,
|
|
@@ -45,6 +52,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.27", ngImpo
|
|
|
45
52
|
}], legacyStyle: [{
|
|
46
53
|
type: Input,
|
|
47
54
|
args: ['legacy-style']
|
|
55
|
+
}], size: [{
|
|
56
|
+
type: Input
|
|
48
57
|
}], editItemsButtonLabel: [{
|
|
49
58
|
type: Input,
|
|
50
59
|
args: ['edit-items-button-label']
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ni-ok-angular-fv-summary-panel.mjs","sources":["../../../ok-angular/fv/summary-panel/ok-fv-summary-panel.directive.ts","../../../ok-angular/fv/summary-panel/ok-fv-summary-panel.module.ts","../../../ok-angular/fv/summary-panel/ni-ok-angular-fv-summary-panel.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { FvSummaryPanel } from '@ni/ok-components/dist/esm/fv/summary-panel';\nimport { fvSummaryPanelTag } from '@ni/ok-components/dist/esm/fv/summary-panel';\nimport { type BooleanValueOrAttribute, toBooleanProperty } from '@ni/nimble-angular/internal-utilities';\n\nexport type { FvSummaryPanel };\nexport { fvSummaryPanelTag };\n\n/**\n * Directive to provide Angular integration for the summary panel.\n */\n@Directive({\n selector: 'ok-fv-summary-panel',\n standalone: false\n})\nexport class OkFvSummaryPanelDirective {\n public get showEditItemsButton(): boolean {\n return this.elementRef.nativeElement.showEditItemsButton;\n }\n\n @Input('show-edit-items-button')\n public set showEditItemsButton(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'showEditItemsButton', toBooleanProperty(value));\n }\n\n public get legacyStyle(): boolean {\n return this.elementRef.nativeElement.legacyStyle;\n }\n\n @Input('legacy-style')\n public set legacyStyle(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'legacyStyle', toBooleanProperty(value));\n }\n\n public get editItemsButtonLabel(): string {\n return this.elementRef.nativeElement.editItemsButtonLabel;\n }\n\n @Input('edit-items-button-label')\n public set editItemsButtonLabel(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'editItemsButtonLabel', value);\n }\n\n public constructor(\n private readonly elementRef: ElementRef<FvSummaryPanel>,\n private readonly renderer: Renderer2\n ) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { OkFvSummaryPanelDirective } from './ok-fv-summary-panel.directive';\n\nimport '@ni/ok-components/dist/esm/fv/summary-panel';\n\n@NgModule({\n declarations: [OkFvSummaryPanelDirective],\n imports: [CommonModule],\n exports: [OkFvSummaryPanelDirective]\n})\nexport class OkFvSummaryPanelModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ni-ok-angular-fv-summary-panel.mjs","sources":["../../../ok-angular/fv/summary-panel/ok-fv-summary-panel.directive.ts","../../../ok-angular/fv/summary-panel/ok-fv-summary-panel.module.ts","../../../ok-angular/fv/summary-panel/ni-ok-angular-fv-summary-panel.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { FvSummaryPanel } from '@ni/ok-components/dist/esm/fv/summary-panel';\nimport { fvSummaryPanelTag } from '@ni/ok-components/dist/esm/fv/summary-panel';\nimport { FvSummaryPanelSize } from '@ni/ok-components/dist/esm/fv/summary-panel/types';\nimport { type BooleanValueOrAttribute, toBooleanProperty } from '@ni/nimble-angular/internal-utilities';\n\nexport type { FvSummaryPanel };\nexport { fvSummaryPanelTag };\nexport { FvSummaryPanelSize };\n\n/**\n * Directive to provide Angular integration for the summary panel.\n */\n@Directive({\n selector: 'ok-fv-summary-panel',\n standalone: false\n})\nexport class OkFvSummaryPanelDirective {\n public get showEditItemsButton(): boolean {\n return this.elementRef.nativeElement.showEditItemsButton;\n }\n\n @Input('show-edit-items-button')\n public set showEditItemsButton(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'showEditItemsButton', toBooleanProperty(value));\n }\n\n public get legacyStyle(): boolean {\n return this.elementRef.nativeElement.legacyStyle;\n }\n\n @Input('legacy-style')\n public set legacyStyle(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'legacyStyle', toBooleanProperty(value));\n }\n\n public get size(): FvSummaryPanelSize {\n return this.elementRef.nativeElement.size;\n }\n\n @Input()\n public set size(value: FvSummaryPanelSize) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'size', value);\n }\n\n public get editItemsButtonLabel(): string {\n return this.elementRef.nativeElement.editItemsButtonLabel;\n }\n\n @Input('edit-items-button-label')\n public set editItemsButtonLabel(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'editItemsButtonLabel', value);\n }\n\n public constructor(\n private readonly elementRef: ElementRef<FvSummaryPanel>,\n private readonly renderer: Renderer2\n ) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { OkFvSummaryPanelDirective } from './ok-fv-summary-panel.directive';\n\nimport '@ni/ok-components/dist/esm/fv/summary-panel';\n\n@NgModule({\n declarations: [OkFvSummaryPanelDirective],\n imports: [CommonModule],\n exports: [OkFvSummaryPanelDirective]\n})\nexport class OkFvSummaryPanelModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { ElementRef } from '@angular/core';
|
|
3
|
+
import { FvStickyHeader } from '@ni/ok-components/dist/esm/fv/sticky-header';
|
|
4
|
+
export { FvStickyHeader, fvStickyHeaderTag } from '@ni/ok-components/dist/esm/fv/sticky-header';
|
|
5
|
+
import * as i2 from '@angular/common';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Directive to provide Angular integration for the sticky header.
|
|
9
|
+
*/
|
|
10
|
+
declare class OkFvStickyHeaderDirective {
|
|
11
|
+
private readonly elementRef;
|
|
12
|
+
constructor(elementRef: ElementRef<FvStickyHeader>);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OkFvStickyHeaderDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<OkFvStickyHeaderDirective, "ok-fv-sticky-header", never, {}, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
declare class OkFvStickyHeaderModule {
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OkFvStickyHeaderModule, never>;
|
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OkFvStickyHeaderModule, [typeof OkFvStickyHeaderDirective], [typeof i2.CommonModule], [typeof OkFvStickyHeaderDirective]>;
|
|
20
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OkFvStickyHeaderModule>;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export { OkFvStickyHeaderDirective, OkFvStickyHeaderModule };
|
|
@@ -2,6 +2,8 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { ElementRef, Renderer2 } from '@angular/core';
|
|
3
3
|
import { FvSummaryPanel } from '@ni/ok-components/dist/esm/fv/summary-panel';
|
|
4
4
|
export { FvSummaryPanel, fvSummaryPanelTag } from '@ni/ok-components/dist/esm/fv/summary-panel';
|
|
5
|
+
import { FvSummaryPanelSize } from '@ni/ok-components/dist/esm/fv/summary-panel/types';
|
|
6
|
+
export { FvSummaryPanelSize } from '@ni/ok-components/dist/esm/fv/summary-panel/types';
|
|
5
7
|
import { BooleanValueOrAttribute } from '@ni/nimble-angular/internal-utilities';
|
|
6
8
|
import * as i2 from '@angular/common';
|
|
7
9
|
|
|
@@ -15,11 +17,13 @@ declare class OkFvSummaryPanelDirective {
|
|
|
15
17
|
set showEditItemsButton(value: BooleanValueOrAttribute);
|
|
16
18
|
get legacyStyle(): boolean;
|
|
17
19
|
set legacyStyle(value: BooleanValueOrAttribute);
|
|
20
|
+
get size(): FvSummaryPanelSize;
|
|
21
|
+
set size(value: FvSummaryPanelSize);
|
|
18
22
|
get editItemsButtonLabel(): string;
|
|
19
23
|
set editItemsButtonLabel(value: string);
|
|
20
24
|
constructor(elementRef: ElementRef<FvSummaryPanel>, renderer: Renderer2);
|
|
21
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<OkFvSummaryPanelDirective, never>;
|
|
22
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<OkFvSummaryPanelDirective, "ok-fv-summary-panel", never, { "showEditItemsButton": { "alias": "show-edit-items-button"; "required": false; }; "legacyStyle": { "alias": "legacy-style"; "required": false; }; "editItemsButtonLabel": { "alias": "edit-items-button-label"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<OkFvSummaryPanelDirective, "ok-fv-summary-panel", never, { "showEditItemsButton": { "alias": "show-edit-items-button"; "required": false; }; "legacyStyle": { "alias": "legacy-style"; "required": false; }; "size": { "alias": "size"; "required": false; }; "editItemsButtonLabel": { "alias": "edit-items-button-label"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
27
|
}
|
|
24
28
|
|
|
25
29
|
declare class OkFvSummaryPanelModule {
|
|
@@ -4,6 +4,8 @@ import { FvSummaryPanelTile } from '@ni/ok-components/dist/esm/fv/summary-panel-
|
|
|
4
4
|
export { FvSummaryPanelTile, fvSummaryPanelTileTag } from '@ni/ok-components/dist/esm/fv/summary-panel-tile';
|
|
5
5
|
import { FvSummaryPanelTileTextPosition } from '@ni/ok-components/dist/esm/fv/summary-panel-tile/types';
|
|
6
6
|
export { FvSummaryPanelTileTextPosition } from '@ni/ok-components/dist/esm/fv/summary-panel-tile/types';
|
|
7
|
+
import { FvSummaryPanelSize } from '@ni/ok-components/dist/esm/fv/summary-panel/types';
|
|
8
|
+
export { FvSummaryPanelSize } from '@ni/ok-components/dist/esm/fv/summary-panel/types';
|
|
7
9
|
import { BooleanValueOrAttribute } from '@ni/nimble-angular/internal-utilities';
|
|
8
10
|
import * as i2 from '@angular/common';
|
|
9
11
|
|
|
@@ -19,13 +21,15 @@ declare class OkFvSummaryPanelTileDirective {
|
|
|
19
21
|
set label(value: string);
|
|
20
22
|
get legacyStyle(): boolean;
|
|
21
23
|
set legacyStyle(value: BooleanValueOrAttribute);
|
|
24
|
+
get size(): FvSummaryPanelSize;
|
|
25
|
+
set size(value: FvSummaryPanelSize);
|
|
22
26
|
get selected(): boolean;
|
|
23
27
|
set selected(value: BooleanValueOrAttribute);
|
|
24
28
|
get textPosition(): FvSummaryPanelTileTextPosition;
|
|
25
29
|
set textPosition(value: FvSummaryPanelTileTextPosition);
|
|
26
30
|
constructor(elementRef: ElementRef<FvSummaryPanelTile>, renderer: Renderer2);
|
|
27
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<OkFvSummaryPanelTileDirective, never>;
|
|
28
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<OkFvSummaryPanelTileDirective, "ok-fv-summary-panel-tile", never, { "count": { "alias": "count"; "required": false; }; "label": { "alias": "label"; "required": false; }; "legacyStyle": { "alias": "legacy-style"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "textPosition": { "alias": "text-position"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<OkFvSummaryPanelTileDirective, "ok-fv-summary-panel-tile", never, { "count": { "alias": "count"; "required": false; }; "label": { "alias": "label"; "required": false; }; "legacyStyle": { "alias": "legacy-style"; "required": false; }; "size": { "alias": "size"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "textPosition": { "alias": "text-position"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
33
|
}
|
|
30
34
|
|
|
31
35
|
declare class OkFvSummaryPanelTileModule {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/ok-angular",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.1",
|
|
4
4
|
"description": "Angular components for NI OK Components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@angular/common": "^20.3.19",
|
|
26
26
|
"@angular/core": "^20.3.19",
|
|
27
27
|
"@angular/localize": "^20.3.19",
|
|
28
|
-
"@ni/ok-components": "^1.
|
|
28
|
+
"@ni/ok-components": "^1.8.1"
|
|
29
29
|
},
|
|
30
30
|
"module": "fesm2022/ni-ok-angular.mjs",
|
|
31
31
|
"typings": "index.d.ts",
|
|
@@ -77,6 +77,10 @@
|
|
|
77
77
|
"types": "./fv/split-button-anchor/index.d.ts",
|
|
78
78
|
"default": "./fesm2022/ni-ok-angular-fv-split-button-anchor.mjs"
|
|
79
79
|
},
|
|
80
|
+
"./fv/sticky-header": {
|
|
81
|
+
"types": "./fv/sticky-header/index.d.ts",
|
|
82
|
+
"default": "./fesm2022/ni-ok-angular-fv-sticky-header.mjs"
|
|
83
|
+
},
|
|
80
84
|
"./fv/summary-panel": {
|
|
81
85
|
"types": "./fv/summary-panel/index.d.ts",
|
|
82
86
|
"default": "./fesm2022/ni-ok-angular-fv-summary-panel.mjs"
|