Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2022-04-06 11:24:36 +0300
committerGitHub <noreply@github.com>2022-04-06 11:24:36 +0300
commit59f26bc0f5436426d5b42876a4c535973b519c2f (patch)
treece9bbd3b6844db353b3417b739bca2f5f8f1fd4e /plugins/CoreVue/types
parenteb27d163a82d667c36c3c071991daf97c62c4ac0 (diff)
[Vue] migrate manage gdpr directive to Vue (#19002)
* start migrating segment generator directive * get to build * remove some TODO * rebuilt * get UI tests to pass * fix ng-model handling * migrate manage gdpr directive to vue * fixing UI tests in PrivacyManager * update expected screenshots * apply review fixes * fix missing translation key Co-authored-by: sgiehl <stefan@matomo.org>
Diffstat (limited to 'plugins/CoreVue/types')
-rw-r--r--plugins/CoreVue/types/index.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/CoreVue/types/index.d.ts b/plugins/CoreVue/types/index.d.ts
index fe19e74b40..f038a54fde 100644
--- a/plugins/CoreVue/types/index.d.ts
+++ b/plugins/CoreVue/types/index.d.ts
@@ -92,6 +92,7 @@ declare global {
compileVueDirectives(selector: JQuery|JQLite|HTMLElement|string): void;
calculateEvolution(currentValue: number, pastValue?: number|null): number;
sendContentAsDownload(filename: string, content: any, mimeType?: string): void;
+ showVisitorProfilePopup(visitorId: string, idSite: string|number): void;
}
let piwikHelper: PiwikHelperGlobal;
@@ -152,6 +153,7 @@ declare global {
language: string;
cacheBuster: string;
numbers: Record<string, string>;
+ visitorProfileEnabled: boolean;
updatePeriodParamsFromUrl(): void;
updateDateInTitle(date: string, period: string): void;