@ni/ok-angular 1.2.2 → 2.0.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/button/index.d.ts
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import * as i2 from '@angular/common';
|
|
3
|
+
export { Button, buttonTag } from '@ni/ok-components/dist/esm/button';
|
|
4
|
+
|
|
1
5
|
/**
|
|
2
|
-
*
|
|
6
|
+
* Directive to provide Angular integration for the button.
|
|
3
7
|
*/
|
|
4
|
-
|
|
5
|
-
|
|
8
|
+
declare class OkButtonDirective {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OkButtonDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<OkButtonDirective, "ok-button", never, {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
declare class OkButtonModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OkButtonModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OkButtonModule, [typeof OkButtonDirective], [typeof i2.CommonModule], [typeof OkButtonDirective]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OkButtonModule>;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export { OkButtonDirective, OkButtonModule };
|
|
@@ -7,10 +7,10 @@ import { CommonModule } from '@angular/common';
|
|
|
7
7
|
* Directive to provide Angular integration for the button.
|
|
8
8
|
*/
|
|
9
9
|
class OkButtonDirective {
|
|
10
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
11
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: OkButtonDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.18", type: OkButtonDirective, isStandalone: false, selector: "ok-button", ngImport: i0 }); }
|
|
12
12
|
}
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: OkButtonDirective, decorators: [{
|
|
14
14
|
type: Directive,
|
|
15
15
|
args: [{
|
|
16
16
|
selector: 'ok-button',
|
|
@@ -19,11 +19,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
19
19
|
}] });
|
|
20
20
|
|
|
21
21
|
class OkButtonModule {
|
|
22
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
23
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
24
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
22
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: OkButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
23
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.18", ngImport: i0, type: OkButtonModule, declarations: [OkButtonDirective], imports: [CommonModule], exports: [OkButtonDirective] }); }
|
|
24
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: OkButtonModule, imports: [CommonModule] }); }
|
|
25
25
|
}
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: OkButtonModule, decorators: [{
|
|
27
27
|
type: NgModule,
|
|
28
28
|
args: [{
|
|
29
29
|
declarations: [OkButtonDirective],
|
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/ok-angular",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Angular components for NI OK Components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"tslib": "^2.2.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@angular/common": "^
|
|
26
|
-
"@angular/core": "^
|
|
27
|
-
"@angular/localize": "^
|
|
28
|
-
"@ni/ok-components": "^0.3.
|
|
25
|
+
"@angular/common": "^20.3.15",
|
|
26
|
+
"@angular/core": "^20.3.15",
|
|
27
|
+
"@angular/localize": "^20.3.15",
|
|
28
|
+
"@ni/ok-components": "^0.3.3"
|
|
29
29
|
},
|
|
30
30
|
"module": "fesm2022/ni-ok-angular.mjs",
|
|
31
31
|
"typings": "index.d.ts",
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { type Button, buttonTag } from '@ni/ok-components/dist/esm/button';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export type { Button };
|
|
4
|
-
export { buttonTag };
|
|
5
|
-
/**
|
|
6
|
-
* Directive to provide Angular integration for the button.
|
|
7
|
-
*/
|
|
8
|
-
export declare class OkButtonDirective {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OkButtonDirective, never>;
|
|
10
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<OkButtonDirective, "ok-button", never, {}, {}, never, never, false, never>;
|
|
11
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import '@ni/ok-components/dist/esm/button';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "./ok-button.directive";
|
|
4
|
-
import * as i2 from "@angular/common";
|
|
5
|
-
export declare class OkButtonModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OkButtonModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<OkButtonModule, [typeof i1.OkButtonDirective], [typeof i2.CommonModule], [typeof i1.OkButtonDirective]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<OkButtonModule>;
|
|
9
|
-
}
|
package/button/public-api.d.ts
DELETED
package/public-api.d.ts
DELETED