@nommos/events_angular 0.0.8 → 0.0.10
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/nommos-events_angular.mjs +3 -3
- package/index.d.ts +2 -2
- package/package.json +2 -2
|
@@ -119,7 +119,7 @@ class TrackClickDirective {
|
|
|
119
119
|
}
|
|
120
120
|
}
|
|
121
121
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: TrackClickDirective, deps: [{ token: TrackerService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
122
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
122
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "20.3.11", type: TrackClickDirective, selector: "[nommosTrackClick]", inputs: { action: ["nommosTrackClick", "action"], state: "state", data: "data", toggle: "toggle", multi: "multi", userId: "userId" }, host: { listeners: { "click": "onClick()" } }, ngImport: i0 });
|
|
123
123
|
}
|
|
124
124
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: TrackClickDirective, decorators: [{
|
|
125
125
|
type: Directive,
|
|
@@ -184,7 +184,7 @@ class TrackSubmitDirective {
|
|
|
184
184
|
this.trackerService.trackEvent(this.action, ANALYTICS_ACTION_STATE.SUBMIT, this.data, false, null, this.userId);
|
|
185
185
|
}
|
|
186
186
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: TrackSubmitDirective, deps: [{ token: TrackerService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
187
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
187
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "20.3.11", type: TrackSubmitDirective, selector: "[nommosTrackSubmit]", inputs: { action: ["nommosTrackSubmit", "action"], data: "data", userId: "userId" }, host: { listeners: { "ngSubmit": "onClick()", "submit": "onClick()" } }, ngImport: i0 });
|
|
188
188
|
}
|
|
189
189
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: TrackSubmitDirective, decorators: [{
|
|
190
190
|
type: Directive,
|
|
@@ -233,7 +233,7 @@ class ActivityTrackerModule {
|
|
|
233
233
|
};
|
|
234
234
|
}
|
|
235
235
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: ActivityTrackerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
236
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "
|
|
236
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: ActivityTrackerModule, declarations: [TrackClickDirective, TrackSubmitDirective], imports: [CommonModule], exports: [TrackClickDirective, TrackSubmitDirective] });
|
|
237
237
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: ActivityTrackerModule, imports: [CommonModule] });
|
|
238
238
|
}
|
|
239
239
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.11", ngImport: i0, type: ActivityTrackerModule, decorators: [{
|
package/index.d.ts
CHANGED
|
@@ -93,7 +93,7 @@ declare class TrackClickDirective {
|
|
|
93
93
|
constructor(trackerService: TrackerService);
|
|
94
94
|
onClick(): void;
|
|
95
95
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrackClickDirective, never>;
|
|
96
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TrackClickDirective, "[nommosTrackClick]", never, { "action":
|
|
96
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TrackClickDirective, "[nommosTrackClick]", never, { "action": "nommosTrackClick"; "state": "state"; "data": "data"; "toggle": "toggle"; "multi": "multi"; "userId": "userId"; }, {}, never>;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
/**
|
|
@@ -131,7 +131,7 @@ declare class TrackSubmitDirective {
|
|
|
131
131
|
constructor(trackerService: TrackerService);
|
|
132
132
|
onClick(): void;
|
|
133
133
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrackSubmitDirective, never>;
|
|
134
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TrackSubmitDirective, "[nommosTrackSubmit]", never, { "action":
|
|
134
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TrackSubmitDirective, "[nommosTrackSubmit]", never, { "action": "nommosTrackSubmit"; "data": "data"; "userId": "userId"; }, {}, never>;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
declare class ActivityTrackerModule {
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nommos/events_angular",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=12.0.0 <=22.0.0",
|
|
6
6
|
"@angular/core": ">=12.0.0 <=22.0.0",
|
|
7
7
|
"@angular/router": ">=12.0.0 <=22.0.0"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@nommos/core": "0.0.
|
|
10
|
+
"@nommos/core": "0.0.10",
|
|
11
11
|
"tslib": "^2.3.0"
|
|
12
12
|
},
|
|
13
13
|
"engines": {
|