@bizdoc/core 1.7.0-next.3 → 1.7.0-next.7
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/README.md +4 -3
- package/assets/fonts/MaterialIcons-Regular.svg +2373 -2373
- package/assets/fonts/README.md +9 -9
- package/assets/fonts/codepoints +932 -932
- package/assets/fonts/material-icons.css +36 -36
- package/assets/themes/brown.min.css +83 -81
- package/assets/themes/dark.min.css +77 -75
- package/assets/themes/default.min.css +90 -88
- package/assets/themes/green.min.css +83 -81
- package/assets/themes/indigo.min.css +83 -81
- package/bundles/bizdoc-core.umd.js +1086 -1600
- package/bundles/bizdoc-core.umd.js.map +1 -1
- package/esm2015/lib/app.component.js +7 -13
- package/esm2015/lib/bizdoc.module.js +2 -37
- package/esm2015/lib/browse/filter/filter.component.js +2 -2
- package/esm2015/lib/core/configuration.js +1 -1
- package/esm2015/lib/core/controls/combination-picker-body.js +2 -2
- package/esm2015/lib/core/models.js +1 -1
- package/esm2015/lib/core/session.service.js +5 -9
- package/esm2015/lib/core/slots/slots.component.js +6 -4
- package/esm2015/lib/cube/accum/accum.component.js +4 -7
- package/esm2015/lib/cube/chart/chart.component.js +6 -3
- package/esm2015/lib/cube/cube-info.service.js +100 -0
- package/esm2015/lib/cube/cube-view.component.js +11 -30
- package/esm2015/lib/cube/declarations.js +1 -1
- package/esm2015/lib/cube/explore/explore-items.component.js +5 -7
- package/esm2015/lib/cube/explore/explore.pane.component.js +2 -5
- package/esm2015/lib/cube/filter/filter-tags.component.exp.js +8 -8
- package/esm2015/lib/cube/filter/filter.component.js +14 -11
- package/esm2015/lib/cube/grid/grid.component.js +4 -3
- package/esm2015/lib/cube/grid/spreadsheet.component.js +4 -4
- package/esm2015/lib/cube/matrix/matrix.base.js +130 -0
- package/esm2015/lib/cube/matrix/matrix.component.js +68 -0
- package/esm2015/lib/cube/matrix/matrix.mobile.component.js +62 -0
- package/esm2015/lib/cube/matrix/matrix.pane.component.js +70 -0
- package/esm2015/lib/cube/matrix/table.component.js +254 -0
- package/esm2015/lib/cube/pivot/pivot.component.js +4 -4
- package/esm2015/lib/cube/view-base.js +76 -0
- package/esm2015/lib/cube/view.mobile.component.js +31 -54
- package/esm2015/lib/cube/view.pane.component.js +26 -58
- package/esm2015/lib/dashboard/cube/accum-cube.widget.js +2 -2
- package/esm2015/lib/dashboard/cube/cube-analysis.base.js +2 -2
- package/esm2015/lib/dashboard/cube/cube-chart.widget.js +2 -2
- package/esm2015/lib/dashboard/cube/filter/filter.component.js +3 -3
- package/esm2015/lib/desktop.module.js +6 -6
- package/esm2015/lib/home/sign/sign.component.js +2 -2
- package/esm2015/lib/impersonate/impersonate.component.js +69 -0
- package/esm2015/lib/mobile.module.js +9 -9
- package/esm2015/lib/reports/cube/grid-documents.component.js +10 -9
- package/esm2015/lib/reports/cube/usage-args.component.js +2 -2
- package/esm2015/lib/routes.desktop.js +3 -3
- package/esm2015/lib/routes.mobile.js +5 -5
- package/esm2015/lib/scheduler/schedule.component.js +21 -17
- package/esm2015/lib/shared.module.js +26 -26
- package/esm2015/lib/system.module.js +8 -10
- package/esm2015/lib/views/cube/cube-base.js +10 -5
- package/esm2015/lib/views/cube/matrix.component.js +95 -0
- package/esm2015/lib/views/cube/view.component.js +19 -21
- package/esm2015/lib/views/document-view-ref.js +3 -2
- package/esm2015/lib/views/timeline/timeline.component.exp.js +317 -0
- package/esm2015/lib/views/view-item.component.js +11 -7
- package/esm2015/lib/views/views.component.js +10 -11
- package/esm2015/public-api.js +4 -8
- package/fesm2015/bizdoc-core.js +902 -1382
- package/fesm2015/bizdoc-core.js.map +1 -1
- package/lib/app.component.d.ts +1 -4
- package/lib/core/configuration.d.ts +1 -17
- package/lib/core/controls/combination-picker-body.d.ts +1 -1
- package/lib/core/models.d.ts +1 -0
- package/lib/core/session.service.d.ts +0 -5
- package/lib/core/slots/slots.component.d.ts +1 -1
- package/lib/cube/accum/accum.component.d.ts +3 -7
- package/lib/cube/chart/chart.component.d.ts +1 -1
- package/lib/cube/{info/cube-info.service.d.ts → cube-info.service.d.ts} +6 -6
- package/lib/cube/cube-view.component.d.ts +4 -9
- package/lib/cube/declarations.d.ts +3 -5
- package/lib/cube/explore/explore-items.component.d.ts +1 -4
- package/lib/cube/explore/explore.pane.component.d.ts +0 -1
- package/lib/cube/filter/filter-tags.component.exp.d.ts +2 -2
- package/lib/cube/filter/filter.component.d.ts +4 -3
- package/lib/cube/grid/grid.component.d.ts +2 -1
- package/lib/cube/grid/spreadsheet.component.d.ts +1 -1
- package/lib/cube/{info/cube-info.base.d.ts → matrix/matrix.base.d.ts} +5 -5
- package/lib/cube/{info/cube-info.component.d.ts → matrix/matrix.component.d.ts} +8 -8
- package/lib/cube/{info/cube-info.mobile.component.d.ts → matrix/matrix.mobile.component.d.ts} +4 -4
- package/lib/cube/{info/cube-info.pane.component.d.ts → matrix/matrix.pane.component.d.ts} +5 -5
- package/lib/cube/{info → matrix}/table.component.d.ts +4 -5
- package/lib/cube/pivot/pivot.component.d.ts +2 -4
- package/lib/cube/view-base.d.ts +39 -0
- package/lib/cube/view.mobile.component.d.ts +8 -25
- package/lib/cube/view.pane.component.d.ts +8 -26
- package/lib/dashboard/cube/accum-cube.widget.d.ts +1 -1
- package/lib/dashboard/cube/cube-analysis.base.d.ts +1 -1
- package/lib/dashboard/cube/cube-chart.widget.d.ts +1 -1
- package/lib/dashboard/cube/filter/filter.component.d.ts +1 -1
- package/lib/desktop.module.d.ts +2 -2
- package/lib/{login/impersonate → impersonate}/impersonate.component.d.ts +3 -3
- package/lib/mobile.module.d.ts +2 -2
- package/lib/scheduler/schedule.component.d.ts +4 -1
- package/lib/shared.module.d.ts +48 -50
- package/lib/system.module.d.ts +25 -26
- package/lib/views/cube/cube-base.d.ts +16 -10
- package/lib/views/cube/{table.component.d.ts → matrix.component.d.ts} +2 -15
- package/lib/views/cube/view.component.d.ts +2 -9
- package/lib/views/document-view-ref.d.ts +3 -1
- package/lib/views/timeline/timeline.component.exp.d.ts +64 -0
- package/lib/views/view-item.component.d.ts +4 -2
- package/lib/views/views.component.d.ts +3 -5
- package/package.json +15 -17
- package/public-api.d.ts +4 -8
- package/esm2015/lib/admin/users/users.component.js +0 -155
- package/esm2015/lib/admin/users/users.service.js +0 -29
- package/esm2015/lib/cube/info/cube-info.base.js +0 -128
- package/esm2015/lib/cube/info/cube-info.component.js +0 -69
- package/esm2015/lib/cube/info/cube-info.mobile.component.js +0 -62
- package/esm2015/lib/cube/info/cube-info.pane.component.js +0 -70
- package/esm2015/lib/cube/info/cube-info.service.js +0 -100
- package/esm2015/lib/cube/info/table.component.js +0 -258
- package/esm2015/lib/login/forgot/forgot.component.js +0 -50
- package/esm2015/lib/login/form.authentication.js +0 -71
- package/esm2015/lib/login/form.interceptor.js +0 -26
- package/esm2015/lib/login/impersonate/impersonate.component.js +0 -69
- package/esm2015/lib/login/login.component.js +0 -130
- package/esm2015/lib/login/okta.authentication.js +0 -41
- package/esm2015/lib/login/okta.component.js +0 -84
- package/esm2015/lib/login/okta.interceptor.js +0 -30
- package/esm2015/lib/login/prompt/prompt.component.js +0 -194
- package/esm2015/lib/login/signin-info.service.js +0 -49
- package/esm2015/lib/views/cube/table.component.js +0 -107
- package/lib/admin/users/users.component.d.ts +0 -41
- package/lib/admin/users/users.service.d.ts +0 -30
- package/lib/login/forgot/forgot.component.d.ts +0 -20
- package/lib/login/form.authentication.d.ts +0 -29
- package/lib/login/form.interceptor.d.ts +0 -11
- package/lib/login/login.component.d.ts +0 -18
- package/lib/login/okta.authentication.d.ts +0 -13
- package/lib/login/okta.component.d.ts +0 -18
- package/lib/login/okta.interceptor.d.ts +0 -11
- package/lib/login/prompt/prompt.component.d.ts +0 -45
- package/lib/login/signin-info.service.d.ts +0 -18
- package/src/assets/.gitkeep +0 -0
- package/src/assets/animations/13194-message.json +0 -1
- package/src/assets/animations/1408-network-lost.json +0 -1
- package/src/assets/animations/19560-loading.json +0 -1
- package/src/assets/animations/21928-folder.json +0 -1
- package/src/assets/animations/21941-airplane-animation-movement.json +0 -1
- package/src/assets/animations/2252-broken-stick-error.json +0 -1
- package/src/assets/animations/24910-new-message-notification.json +0 -1
- package/src/assets/animations/25974-paper-plane.json +0 -1
- package/src/assets/animations/36395-lonely-404.json +0 -1
- package/src/assets/animations/36499-page-not-found.json +0 -1
- package/src/assets/animations/37211-google-icons-forms.json +0 -1
- package/src/assets/animations/41896-application.json +0 -1
- package/src/assets/animations/4958-404-not-found.json +0 -1
- package/src/assets/animations/51956-success-icon.json +0 -1
- package/src/assets/animations/53402-bell.json +0 -1
- package/src/assets/animations/5371-volaris-tickets.json +0 -1
- package/src/assets/animations/58266-quad-cube-shifter-1.json +0 -1
- package/src/assets/animations/58509-shifting-cubes-2.json +0 -1
- package/src/assets/animations/8318-loader.json +0 -1
- package/src/assets/animations/lf20_isphoahq.json +0 -1
- package/src/assets/animations/lf30_editor_6kz6oezn.json +0 -1
- package/src/assets/animations/lf30_editor_b6axvtp7.json +0 -1
- package/src/assets/animations/lf30_editor_cq62rpyv.json +0 -1
- package/src/assets/animations/lf30_editor_fbytfhvg.json +0 -1
- package/src/assets/animations/lf30_editor_h1xoyem7.json +0 -1
- package/src/assets/animations/lf30_editor_qr7zgmcs.json +0 -1
- package/src/assets/animations/lf30_editor_rxee1cqy.json +0 -1
- package/src/assets/animations/lf30_editor_yxy6fuei.json +0 -1
- package/src/assets/bizdoc-schema.json +0 -1238
- package/src/assets/favicon.ico +0 -0
- package/src/assets/fonts/LICENSE.txt +0 -202
- package/src/assets/fonts/MaterialIcons-Outlined.woff2 +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.eot +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.ijmap +0 -1
- package/src/assets/fonts/MaterialIcons-Regular.svg +0 -2373
- package/src/assets/fonts/MaterialIcons-Regular.ttf +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.woff +0 -0
- package/src/assets/fonts/MaterialIcons-Regular.woff2 +0 -0
- package/src/assets/fonts/MaterialIcons.css +0 -55
- package/src/assets/fonts/README.md +0 -9
- package/src/assets/fonts/Roboto-Black.ttf +0 -0
- package/src/assets/fonts/Roboto-BlackItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Bold.ttf +0 -0
- package/src/assets/fonts/Roboto-BoldItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Italic.ttf +0 -0
- package/src/assets/fonts/Roboto-Light.ttf +0 -0
- package/src/assets/fonts/Roboto-LightItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Medium.ttf +0 -0
- package/src/assets/fonts/Roboto-MediumItalic.ttf +0 -0
- package/src/assets/fonts/Roboto-Regular.ttf +0 -0
- package/src/assets/fonts/Roboto-Thin.ttf +0 -0
- package/src/assets/fonts/Roboto-ThinItalic.ttf +0 -0
- package/src/assets/fonts/codepoints +0 -932
- package/src/assets/fonts/material-icons.css +0 -36
- package/src/assets/i18n/cldr-data/main/he/ca-buddhist.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-chinese.json +0 -1255
- package/src/assets/i18n/cldr-data/main/he/ca-coptic.json +0 -541
- package/src/assets/i18n/cldr-data/main/he/ca-dangi.json +0 -1255
- package/src/assets/i18n/cldr-data/main/he/ca-ethiopic-amete-alem.json +0 -538
- package/src/assets/i18n/cldr-data/main/he/ca-ethiopic.json +0 -541
- package/src/assets/i18n/cldr-data/main/he/ca-generic.json +0 -535
- package/src/assets/i18n/cldr-data/main/he/ca-gregorian.json +0 -552
- package/src/assets/i18n/cldr-data/main/he/ca-hebrew.json +0 -557
- package/src/assets/i18n/cldr-data/main/he/ca-indian.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-civil.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-rgsa.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-tbla.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic-umalqura.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-islamic.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-japanese.json +0 -1240
- package/src/assets/i18n/cldr-data/main/he/ca-persian.json +0 -532
- package/src/assets/i18n/cldr-data/main/he/ca-roc.json +0 -535
- package/src/assets/i18n/cldr-data/main/he/characters.json +0 -53
- package/src/assets/i18n/cldr-data/main/he/currencies.json +0 -1982
- package/src/assets/i18n/cldr-data/main/he/dateFields.json +0 -860
- package/src/assets/i18n/cldr-data/main/he/delimiters.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/languages.json +0 -555
- package/src/assets/i18n/cldr-data/main/he/layout.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/listPatterns.json +0 -69
- package/src/assets/i18n/cldr-data/main/he/localeDisplayNames.json +0 -231
- package/src/assets/i18n/cldr-data/main/he/measurementSystemNames.json +0 -20
- package/src/assets/i18n/cldr-data/main/he/numbers.json +0 -233
- package/src/assets/i18n/cldr-data/main/he/posix.json +0 -19
- package/src/assets/i18n/cldr-data/main/he/scripts.json +0 -191
- package/src/assets/i18n/cldr-data/main/he/territories.json +0 -324
- package/src/assets/i18n/cldr-data/main/he/timeZoneNames.json +0 -2301
- package/src/assets/i18n/cldr-data/main/he/units.json +0 -3408
- package/src/assets/i18n/cldr-data/main/he/variants.json +0 -119
- package/src/assets/i18n/cldr-data/supplemental/aliases.json +0 -4391
- package/src/assets/i18n/cldr-data/supplemental/calendarData.json +0 -865
- package/src/assets/i18n/cldr-data/supplemental/calendarPreferenceData.json +0 -50
- package/src/assets/i18n/cldr-data/supplemental/characterFallbacks.json +0 -888
- package/src/assets/i18n/cldr-data/supplemental/codeMappings.json +0 -1932
- package/src/assets/i18n/cldr-data/supplemental/currencyData.json +0 -3589
- package/src/assets/i18n/cldr-data/supplemental/dayPeriods.json +0 -2008
- package/src/assets/i18n/cldr-data/supplemental/gender.json +0 -67
- package/src/assets/i18n/cldr-data/supplemental/languageData.json +0 -6450
- package/src/assets/i18n/cldr-data/supplemental/languageGroups.json +0 -115
- package/src/assets/i18n/cldr-data/supplemental/languageMatching.json +0 -1864
- package/src/assets/i18n/cldr-data/supplemental/likelySubtags.json +0 -1844
- package/src/assets/i18n/cldr-data/supplemental/measurementData.json +0 -44
- package/src/assets/i18n/cldr-data/supplemental/metaZones.json +0 -7049
- package/src/assets/i18n/cldr-data/supplemental/numberingSystems.json +0 -343
- package/src/assets/i18n/cldr-data/supplemental/ordinals.json +0 -371
- package/src/assets/i18n/cldr-data/supplemental/parentLocales.json +0 -180
- package/src/assets/i18n/cldr-data/supplemental/plurals.json +0 -884
- package/src/assets/i18n/cldr-data/supplemental/primaryZones.json +0 -22
- package/src/assets/i18n/cldr-data/supplemental/references.json +0 -1181
- package/src/assets/i18n/cldr-data/supplemental/territoryContainment.json +0 -753
- package/src/assets/i18n/cldr-data/supplemental/territoryInfo.json +0 -6604
- package/src/assets/i18n/cldr-data/supplemental/timeData.json +0 -1031
- package/src/assets/i18n/cldr-data/supplemental/unitPreferenceData.json +0 -290
- package/src/assets/i18n/cldr-data/supplemental/weekData.json +0 -316
- package/src/assets/i18n/cldr-data/supplemental/windowsZones.json +0 -3520
- package/src/assets/icons/icon-128x128.png +0 -0
- package/src/assets/icons/icon-144x144.png +0 -0
- package/src/assets/icons/icon-152x152.png +0 -0
- package/src/assets/icons/icon-192x192.png +0 -0
- package/src/assets/icons/icon-256x256.png +0 -0
- package/src/assets/icons/icon-32x32.png +0 -0
- package/src/assets/icons/icon-512x512.png +0 -0
- package/src/assets/js/app-sw.js +0 -16
- package/src/assets/js/firebase-messaging-sw.js +0 -1
- package/src/assets/js/logo.js +0 -31
- package/src/assets/logo.json +0 -1
- package/src/assets/logo.svg +0 -38
- package/src/assets/manifest.json +0 -43
- package/src/assets/sounds/alert_error-03.ogg +0 -0
- package/src/assets/sounds/navigation_hover-tap.ogg +0 -0
- package/src/assets/sounds/notification_simple-01.ogg +0 -0
- package/src/assets/themes/brown.min.css +0 -81
- package/src/assets/themes/dark.min.css +0 -76
- package/src/assets/themes/default.min.css +0 -88
- package/src/assets/themes/green.min.css +0 -81
- package/src/assets/themes/indigo.min.css +0 -81
- package/src/assets/themes/okta-sign-in.min.css +0 -17
package/lib/app.component.d.ts
CHANGED
@@ -2,18 +2,15 @@ import { ComponentFactoryResolver, OnInit, ViewContainerRef } from '@angular/cor
|
|
2
2
|
import { Direction } from '@angular/cdk/bidi';
|
3
3
|
import { SessionService } from './core/session.service';
|
4
4
|
import { HubService } from './core/hub.service';
|
5
|
-
import { SignInInfo } from './login/signin-info.service';
|
6
5
|
import * as i0 from "@angular/core";
|
7
6
|
export declare class BizDocApp implements OnInit {
|
8
|
-
private _signIn;
|
9
7
|
private _vc;
|
10
8
|
private _cfr;
|
11
9
|
private _session;
|
12
10
|
private _messaging;
|
13
11
|
dir: Direction;
|
14
12
|
private _refresh;
|
15
|
-
constructor(
|
16
|
-
private _connect;
|
13
|
+
constructor(_vc: ViewContainerRef, _cfr: ComponentFactoryResolver, _session: SessionService, _messaging: HubService);
|
17
14
|
private _initialize;
|
18
15
|
ngOnInit(): void;
|
19
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizDocApp, never>;
|
@@ -44,8 +44,6 @@ export interface BizDocConfig {
|
|
44
44
|
/** available user interface languages */
|
45
45
|
languages?: string[];
|
46
46
|
appTitle?: string;
|
47
|
-
okta?: OktaSettings;
|
48
|
-
credentials?: AuthenticationSettings;
|
49
47
|
firebase?: FirebaseSettings;
|
50
48
|
chating?: ChatSettings | boolean;
|
51
49
|
comments?: CommentsSettings;
|
@@ -70,16 +68,6 @@ export interface ChatSettings {
|
|
70
68
|
export declare interface ChatLauncherFn {
|
71
69
|
(identity: string): void;
|
72
70
|
}
|
73
|
-
export interface OktaSettings {
|
74
|
-
serverId?: string;
|
75
|
-
scopes?: string[];
|
76
|
-
clientId: string;
|
77
|
-
domain: string;
|
78
|
-
}
|
79
|
-
export interface AuthenticationSettings {
|
80
|
-
password?: PasswordConfig;
|
81
|
-
username?: UsernameConfig;
|
82
|
-
}
|
83
71
|
export interface FirebaseSettings {
|
84
72
|
apiKey: string;
|
85
73
|
vapidKey?: string;
|
@@ -92,11 +80,7 @@ export interface FirebaseSettings {
|
|
92
80
|
export interface GoogleMapsSettings {
|
93
81
|
apiKey: string;
|
94
82
|
}
|
95
|
-
export interface
|
96
|
-
pattern?: string;
|
97
|
-
}
|
98
|
-
export interface UsernameConfig {
|
99
|
-
pattern?: string;
|
83
|
+
export interface configuration {
|
100
84
|
}
|
101
85
|
export interface SharedConfig {
|
102
86
|
maps?: GoogleMapsSettings | boolean;
|
@@ -5,7 +5,7 @@ import { SessionService } from "../session.service";
|
|
5
5
|
import { CubeService } from "../../cube/cube.service";
|
6
6
|
import { DatasourceService } from "../datasource.service";
|
7
7
|
import { PromptService } from "../prompt.service";
|
8
|
-
import { CubeInfo } from "../../cube/
|
8
|
+
import { CubeInfo } from "../../cube/cube-info.service";
|
9
9
|
import { MatSelect } from "@angular/material/select";
|
10
10
|
import * as i0 from "@angular/core";
|
11
11
|
export declare const COMBINATION_PICKER_BODY: InjectionToken<CombinationBodyData>;
|
package/lib/core/models.d.ts
CHANGED
@@ -21,7 +21,6 @@ export declare class SessionService {
|
|
21
21
|
private _lang;
|
22
22
|
private _firebase;
|
23
23
|
constructor(_config: BizDocConfig, _http: HttpClient, _cookies: CookieService, _hub: HubService);
|
24
|
-
get mode(): SessionMode;
|
25
24
|
get profile(): Profile;
|
26
25
|
get palette(): string[];
|
27
26
|
getAccent(mode?: MaterialMode): string;
|
@@ -80,8 +79,4 @@ export interface Theme {
|
|
80
79
|
color: string;
|
81
80
|
dark?: boolean;
|
82
81
|
}
|
83
|
-
export declare enum SessionMode {
|
84
|
-
Credentials = 0,
|
85
|
-
Okta = 1
|
86
|
-
}
|
87
82
|
export {};
|
@@ -111,7 +111,7 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
|
|
111
111
|
* @param event
|
112
112
|
*/
|
113
113
|
collapse(): void;
|
114
|
-
|
114
|
+
private _resize;
|
115
115
|
closeTab(position: number): void;
|
116
116
|
expandTab(): void;
|
117
117
|
select(position: number): void;
|
@@ -2,7 +2,7 @@ import { EventEmitter, OnDestroy, ElementRef } from '@angular/core';
|
|
2
2
|
import { AccumulationDataLabelSettingsModel } from '@syncfusion/ej2-angular-charts';
|
3
3
|
import { TooltipSettingsModel, LegendSettingsModel, AccumulationChart, IPointEventArgs, IAccTextRenderEventArgs, IAccTooltipRenderEventArgs } from '@syncfusion/ej2-angular-charts';
|
4
4
|
import { AxisClickEvent, CubeViewerComponent } from "../declarations";
|
5
|
-
import { AxesMap,
|
5
|
+
import { AxesMap, ChartType, Dimentions } from '../../core/models';
|
6
6
|
import { CubeService, Point } from '../cube.service';
|
7
7
|
import { SessionService } from '../../core/session.service';
|
8
8
|
import { TranslateService } from '../../core/translate.service';
|
@@ -31,7 +31,6 @@ export declare class CubeAccumulationChartComponent implements OnInit, OnDestroy
|
|
31
31
|
height: string;
|
32
32
|
cube: string;
|
33
33
|
xAxis: string[];
|
34
|
-
series?: string[];
|
35
34
|
indices?: string[];
|
36
35
|
filters?: AxesMap;
|
37
36
|
chartType?: ChartType;
|
@@ -46,15 +45,12 @@ export declare class CubeAccumulationChartComponent implements OnInit, OnDestroy
|
|
46
45
|
pointClick(evt: IPointEventArgs): void;
|
47
46
|
/**
|
48
47
|
*
|
49
|
-
* @param axes
|
50
48
|
*/
|
51
|
-
query(
|
52
|
-
[axis: string]: AxisType;
|
53
|
-
}): Promise<void>;
|
49
|
+
query(): Promise<void>;
|
54
50
|
private _draw;
|
55
51
|
exportToExcel(title: string): void;
|
56
52
|
onResize(dim: Dimentions): void;
|
57
53
|
ngOnDestroy(): void;
|
58
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeAccumulationChartComponent, never>;
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAccumulationChartComponent, "bizdoc-cube-accum", never, { "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAccumulationChartComponent, "bizdoc-cube-accum", never, { "height": "height"; "cube": "cube"; "xAxis": "xAxis"; "indices": "indices"; "filters": "filters"; "chartType": "chartType"; "currencyCode": "currencyCode"; }, { "explore": "explore"; }, never, never>;
|
60
56
|
}
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import { ElementRef } from "@angular/core";
|
2
|
-
import { AxesMap } from "
|
3
|
-
import { SessionService } from "
|
4
|
-
import { BizDocComponentFactoryResolver } from "
|
5
|
-
import { CubeService, ScopeType } from "
|
6
|
-
import { Popup } from "
|
7
|
-
import { RouterImpl } from "
|
2
|
+
import { AxesMap } from "../core/models";
|
3
|
+
import { SessionService } from "../core/session.service";
|
4
|
+
import { BizDocComponentFactoryResolver } from "../core/component-factory-resolver";
|
5
|
+
import { CubeService, ScopeType } from "./cube.service";
|
6
|
+
import { Popup } from "../core/popup/popup.service";
|
7
|
+
import { RouterImpl } from "../core/router";
|
8
8
|
import * as i0 from "@angular/core";
|
9
9
|
export interface CubeData {
|
10
10
|
axes: AxesMap;
|
@@ -1,25 +1,20 @@
|
|
1
|
-
import { ComponentFactoryResolver, EventEmitter,
|
1
|
+
import { ComponentFactoryResolver, EventEmitter, OnChanges, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
|
2
2
|
import { AxesMap, Cube, CubeView } from '../core/models';
|
3
3
|
import { AxisClickEvent } from './declarations';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class CubeViewComponent implements OnInit, OnChanges {
|
6
6
|
private _viewContainer;
|
7
|
-
private _injector;
|
8
7
|
private _factoryResolver;
|
9
|
-
|
8
|
+
axes: AxesMap;
|
10
9
|
readonly explore: EventEmitter<AxisClickEvent>;
|
11
10
|
cube: Cube;
|
12
11
|
view: CubeView;
|
13
|
-
exclude: string[];
|
14
|
-
readonly excludeChange: EventEmitter<string[]>;
|
15
|
-
anyAxes: boolean;
|
16
|
-
readonly anyAxesChange: EventEmitter<boolean>;
|
17
12
|
loading: boolean;
|
18
13
|
readonly loadingChange: EventEmitter<boolean>;
|
19
14
|
private _instance;
|
20
15
|
private readonly _resizing;
|
21
16
|
private readonly _viewDestroy;
|
22
|
-
constructor(_viewContainer: ViewContainerRef,
|
17
|
+
constructor(_viewContainer: ViewContainerRef, _factoryResolver: ComponentFactoryResolver);
|
23
18
|
ngOnInit(): void;
|
24
19
|
ngOnChanges(changes: SimpleChanges): void;
|
25
20
|
private _createView;
|
@@ -30,5 +25,5 @@ export declare class CubeViewComponent implements OnInit, OnChanges {
|
|
30
25
|
exportToExcel(): void;
|
31
26
|
ngOnDestroy(): void;
|
32
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeViewComponent, never>;
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeViewComponent, "bizdoc-cube-view", never, { "
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeViewComponent, "bizdoc-cube-view", never, { "axes": "axes"; "cube": "cube"; "view": "view"; "loading": "loading"; }, { "explore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
|
34
29
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
2
|
-
import { AxesMap,
|
2
|
+
import { AxesMap, Dimentions } from '../core/models';
|
3
3
|
export interface AxisClickEvent {
|
4
4
|
axes: AxesMap;
|
5
5
|
/** index name */
|
@@ -8,8 +8,8 @@ export interface AxisClickEvent {
|
|
8
8
|
/** */
|
9
9
|
export interface CubeViewerComponent {
|
10
10
|
onResize(dim?: Dimentions): any;
|
11
|
-
exportToExcel
|
12
|
-
query(
|
11
|
+
exportToExcel(title: string): any;
|
12
|
+
query(): Promise<any>;
|
13
13
|
explore?: EventEmitter<AxisClickEvent>;
|
14
14
|
height: string;
|
15
15
|
width?: string;
|
@@ -18,7 +18,5 @@ export interface CubeViewerComponent {
|
|
18
18
|
series?: string[];
|
19
19
|
indices?: string[];
|
20
20
|
filters?: AxesMap;
|
21
|
-
chartType?: ChartType;
|
22
|
-
indexChartType?: ChartType;
|
23
21
|
currencyCode: string;
|
24
22
|
}
|
@@ -17,9 +17,6 @@ export declare class ExploreItemsComponent implements OnChanges {
|
|
17
17
|
index?: string;
|
18
18
|
scope?: ScopeType;
|
19
19
|
axes: AxesMap;
|
20
|
-
base?: {
|
21
|
-
[axis: string]: (string | number);
|
22
|
-
} | Array<string | number>;
|
23
20
|
readonly explore: EventEmitter<ItemClickEvent>;
|
24
21
|
readonly load: EventEmitter<any>;
|
25
22
|
PAGE_SIZE: number;
|
@@ -45,7 +42,7 @@ export declare class ExploreItemsComponent implements OnChanges {
|
|
45
42
|
expand(item: any): void;
|
46
43
|
exportExcel(): void;
|
47
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExploreItemsComponent, never>;
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExploreItemsComponent, "bizdoc-cube-explore", never, { "cube": "cube"; "index": "index"; "scope": "scope"; "axes": "axes";
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExploreItemsComponent, "bizdoc-cube-explore", never, { "cube": "cube"; "index": "index"; "scope": "scope"; "axes": "axes"; }, { "explore": "explore"; "load": "load"; }, never, never>;
|
49
46
|
}
|
50
47
|
export interface ItemClickEvent {
|
51
48
|
keys: (string | number)[];
|
@@ -18,7 +18,6 @@ export declare class CubeExplorePaneComponent implements OnInit {
|
|
18
18
|
scope?: ScopeType;
|
19
19
|
constructor(_slot: PaneRef<CubeExplorePaneComponent>, _session: SessionService, _translate: TranslateService, _router: PanesRouter);
|
20
20
|
ngOnInit(): void;
|
21
|
-
loaded(): void;
|
22
21
|
item(evt: ItemClickEvent): void;
|
23
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeExplorePaneComponent, never>;
|
24
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeExplorePaneComponent, "ng-component", never, {}, {}, never, never>;
|
@@ -14,7 +14,7 @@ declare type Tag = {
|
|
14
14
|
export declare class FilterTagsComponent implements OnChanges {
|
15
15
|
private _session;
|
16
16
|
private _ds;
|
17
|
-
|
17
|
+
axes: AxesMap;
|
18
18
|
cube: Cube;
|
19
19
|
readonly filtersChange: EventEmitter<AxesMap>;
|
20
20
|
tags: Tag[];
|
@@ -22,6 +22,6 @@ export declare class FilterTagsComponent implements OnChanges {
|
|
22
22
|
ngOnChanges(changes: SimpleChanges): void;
|
23
23
|
remove(tag: Tag): void;
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterTagsComponent, never>;
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterTagsComponent, "bizdoc-filter-tags", never, { "
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterTagsComponent, "bizdoc-filter-tags", never, { "axes": "axes"; "cube": "cube"; }, { "filtersChange": "filtersChange"; }, never, never>;
|
26
26
|
}
|
27
27
|
export {};
|
@@ -15,8 +15,9 @@ export declare class CubeFilterComponent implements OnInit, OnChanges, AfterView
|
|
15
15
|
readonly pattern: RegExp;
|
16
16
|
cube?: string;
|
17
17
|
exclude?: string[];
|
18
|
-
|
19
|
-
|
18
|
+
include?: string[];
|
19
|
+
axes: AxesMap;
|
20
|
+
readonly axesChange: EventEmitter<AxesMap>;
|
20
21
|
form: FormGroup;
|
21
22
|
visibleAxes: CubeAxis[];
|
22
23
|
readonly sources: {
|
@@ -38,5 +39,5 @@ export declare class CubeFilterComponent implements OnInit, OnChanges, AfterView
|
|
38
39
|
change(axis: string, evt: MatAutocompleteSelectedEvent): void;
|
39
40
|
ngOnDestroy(): void;
|
40
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeFilterComponent, never>;
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeFilterComponent, "bizdoc-cube-filter", never, { "cube": "cube"; "exclude": "exclude"; "
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeFilterComponent, "bizdoc-cube-filter", never, { "cube": "cube"; "exclude": "exclude"; "include": "include"; "axes": "axes"; }, { "axesChange": "axesChange"; }, never, never>;
|
42
43
|
}
|
@@ -40,7 +40,8 @@ export declare class CubeGridComponent implements OnInit, CubeViewerComponent, O
|
|
40
40
|
ngOnInit(): void;
|
41
41
|
/** */
|
42
42
|
private _prepare;
|
43
|
-
|
43
|
+
/** */
|
44
|
+
query(): Promise<void>;
|
44
45
|
private _normalize;
|
45
46
|
private _draw;
|
46
47
|
queryCellInfo(evt: QueryCellInfoEventArgs): void;
|
@@ -40,7 +40,7 @@ export declare class CubeSpreadsheetComponent implements OnInit, CubeViewerCompo
|
|
40
40
|
private _numberFormat;
|
41
41
|
constructor(_session: SessionService, _sb: PromptService, _service: CubeService, _translate: TranslateService, _ds: DatasourceService, _elementRef: ElementRef);
|
42
42
|
ngOnInit(): void;
|
43
|
-
query(
|
43
|
+
query(): Promise<void>;
|
44
44
|
private _draw;
|
45
45
|
afterHyperlinkClick(evt: AfterHyperlinkArgs): void;
|
46
46
|
onResize(d: Dimentions): void;
|
@@ -3,13 +3,13 @@ import { SessionService } from '../../core/session.service';
|
|
3
3
|
import { DatasourceService } from '../../core/datasource.service';
|
4
4
|
import { CubeService, Pattern } from '../cube.service';
|
5
5
|
import { AxesMap, Cube, CubeAxis } from '../../core/models';
|
6
|
-
import {
|
6
|
+
import { CubeMatrixTableComponent } from './table.component';
|
7
7
|
import * as i0 from "@angular/core";
|
8
|
-
export declare abstract class
|
8
|
+
export declare abstract class CubeMatrixBase {
|
9
9
|
protected _service: CubeService;
|
10
10
|
private _ds;
|
11
11
|
protected _session: SessionService;
|
12
|
-
table:
|
12
|
+
table: CubeMatrixTableComponent;
|
13
13
|
loading: boolean;
|
14
14
|
private _axes;
|
15
15
|
private _originalAxes;
|
@@ -70,6 +70,6 @@ export declare abstract class CubeInfoBase {
|
|
70
70
|
private _copyAxesToFilterValues;
|
71
71
|
reset(): void;
|
72
72
|
refresh(): void;
|
73
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
74
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
73
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixBase, never>;
|
74
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CubeMatrixBase, never, never, {}, {}, never>;
|
75
75
|
}
|
@@ -1,23 +1,23 @@
|
|
1
1
|
import { OnInit } from '@angular/core';
|
2
2
|
import { CubeService } from '../../cube/cube.service';
|
3
|
-
import { CubeData } from '
|
3
|
+
import { CubeData } from '../cube-info.service';
|
4
4
|
import { SessionService } from '../../core/session.service';
|
5
5
|
import { DatasourceService } from '../../core/datasource.service';
|
6
6
|
import { PromptService } from '../../core/prompt.service';
|
7
|
-
import {
|
7
|
+
import { CubeMatrixTableComponent } from './table.component';
|
8
8
|
import { PopupRef } from "../../core/popup/popup-ref";
|
9
|
-
import {
|
9
|
+
import { CubeMatrixBase } from './matrix.base';
|
10
10
|
import * as i0 from "@angular/core";
|
11
|
-
/** cube
|
12
|
-
export declare class
|
11
|
+
/** cube matrix component*/
|
12
|
+
export declare class CubeMatrixComponent extends CubeMatrixBase implements OnInit {
|
13
13
|
private _ref;
|
14
14
|
private _sb;
|
15
|
-
table:
|
15
|
+
table: CubeMatrixTableComponent;
|
16
16
|
preloading: boolean;
|
17
17
|
/** filters */
|
18
18
|
/** cube-info ctor */
|
19
19
|
constructor(_ref: PopupRef, data: CubeData, service: CubeService, ds: DatasourceService, session: SessionService, _sb: PromptService);
|
20
20
|
ngOnInit(): void;
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixComponent, never>;
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixComponent, "ng-component", never, {}, {}, never, never>;
|
23
23
|
}
|
package/lib/cube/{info/cube-info.mobile.component.d.ts → matrix/matrix.mobile.component.d.ts}
RENAMED
@@ -5,9 +5,9 @@ import { DatasourceService } from '../../core/datasource.service';
|
|
5
5
|
import { CubeService } from '../cube.service';
|
6
6
|
import { AxesMap } from '../../core/models';
|
7
7
|
import { WindowTitleService } from '../../core/window-title.service';
|
8
|
-
import {
|
8
|
+
import { CubeMatrixBase } from './matrix.base';
|
9
9
|
import * as i0 from "@angular/core";
|
10
|
-
export declare class
|
10
|
+
export declare class CubeMatrixMobileComponent extends CubeMatrixBase implements OnInit {
|
11
11
|
private _title;
|
12
12
|
private _route;
|
13
13
|
private _router;
|
@@ -16,6 +16,6 @@ export declare class CubeInfoMobileComponent extends CubeInfoBase implements OnI
|
|
16
16
|
ngOnInit(): void;
|
17
17
|
onFilter(axes: AxesMap): void;
|
18
18
|
explore(axes: AxesMap): void;
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixMobileComponent, never>;
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixMobileComponent, "ng-component", never, {}, {}, never, never>;
|
21
21
|
}
|
@@ -5,16 +5,16 @@ import { CubeService } from '../cube.service';
|
|
5
5
|
import { PanesRouter } from '../../core/slots/router.service';
|
6
6
|
import { PaneRef } from '../../core/slots/pane-ref';
|
7
7
|
import { AxesMap } from '../../core/models';
|
8
|
-
import {
|
8
|
+
import { CubeMatrixBase } from './matrix.base';
|
9
9
|
import * as i0 from "@angular/core";
|
10
|
-
export declare class
|
10
|
+
export declare class CubeMatrixPaneComponent extends CubeMatrixBase implements OnInit {
|
11
11
|
private _slot;
|
12
12
|
private _router;
|
13
13
|
/** cube-info ctor */
|
14
|
-
constructor(_slot: PaneRef<
|
14
|
+
constructor(_slot: PaneRef<CubeMatrixPaneComponent>, _router: PanesRouter, service: CubeService, ds: DatasourceService, session: SessionService);
|
15
15
|
ngOnInit(): void;
|
16
16
|
onFilter(queryParams: AxesMap): void;
|
17
17
|
explore(queryParams: AxesMap): void;
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixPaneComponent, never>;
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixPaneComponent, "ng-component", never, {}, {}, never, never>;
|
20
20
|
}
|
@@ -5,8 +5,8 @@ import { PromptService } from '../../core/prompt.service';
|
|
5
5
|
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
6
6
|
import { AxesMap, Cube, CubeAxis, CubeIndex } from '../../core/models';
|
7
7
|
import * as i0 from "@angular/core";
|
8
|
-
/** cube
|
9
|
-
export declare class
|
8
|
+
/** cube matrix component*/
|
9
|
+
export declare class CubeMatrixTableComponent implements OnChanges {
|
10
10
|
private _sb;
|
11
11
|
private _service;
|
12
12
|
private _session;
|
@@ -19,7 +19,6 @@ export declare class CubeInfoTableComponent implements OnChanges {
|
|
19
19
|
_serie: string;
|
20
20
|
_indices?: string[] | string;
|
21
21
|
_sum: SumOptions;
|
22
|
-
base?: AxesMap;
|
23
22
|
axes: AxesMap;
|
24
23
|
readonly onExplore: EventEmitter<AxesMap>;
|
25
24
|
private _interactive;
|
@@ -50,8 +49,8 @@ export declare class CubeInfoTableComponent implements OnChanges {
|
|
50
49
|
sumcolumn(x: string): number;
|
51
50
|
indextotal(name: any): number;
|
52
51
|
get grandtotal(): number;
|
53
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
52
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixTableComponent, never>;
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixTableComponent, "bizdoc-cube-matrix-table", never, { "_cube": "cube"; "_xAxis": "xAxis"; "_serie": "serie"; "_indices": "indices"; "_sum": "sum"; "axes": "axes"; "loading": "loading"; "interactive": "interactive"; }, { "onExplore": "explore"; "loadingChange": "loadingChange"; }, never, never>;
|
55
54
|
}
|
56
55
|
export declare class CubeInfoCellArgs {
|
57
56
|
private _value;
|
@@ -4,7 +4,7 @@ import { ChartSettingsModel } from '@syncfusion/ej2-pivotview/src/pivotview/mode
|
|
4
4
|
import { DataSourceSettingsModel, FieldOptionsModel, FormatSettingsModel } from "@syncfusion/ej2-pivotview/src/pivotview/model/datasourcesettings-model";
|
5
5
|
import { GridSettingsModel } from "@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings-model";
|
6
6
|
import { IPointEventArgs } from '@syncfusion/ej2-angular-charts';
|
7
|
-
import { AxesMap,
|
7
|
+
import { AxesMap, ChartType, Dimentions, YAxis } from '../../core/models';
|
8
8
|
import { AxisClickEvent, CubeViewerComponent } from "../declarations";
|
9
9
|
import { CubeService } from '../cube.service';
|
10
10
|
import { PromptService } from '../../core/prompt.service';
|
@@ -55,9 +55,7 @@ export declare class CubePivotComponent implements CubeViewerComponent, OnInit,
|
|
55
55
|
*
|
56
56
|
* @param axes
|
57
57
|
*/
|
58
|
-
query(
|
59
|
-
[axis: string]: AxisType;
|
60
|
-
}): Promise<void>;
|
58
|
+
query(): Promise<void>;
|
61
59
|
/**
|
62
60
|
*
|
63
61
|
* @param xAxis
|
@@ -0,0 +1,39 @@
|
|
1
|
+
import { AxesMap, Cube, CubeView } from '../core/models';
|
2
|
+
import { CubeService, Pattern } from './cube.service';
|
3
|
+
import { SessionService } from '../core/session.service';
|
4
|
+
import { GuideService } from '../core/guide/guide.service';
|
5
|
+
import { CubeViewComponent } from './cube-view.component';
|
6
|
+
import { RouterImpl } from '../core/router';
|
7
|
+
import * as i0 from "@angular/core";
|
8
|
+
export declare abstract class ViewBase {
|
9
|
+
protected _session: SessionService;
|
10
|
+
protected _router: RouterImpl;
|
11
|
+
private _service;
|
12
|
+
private _guide;
|
13
|
+
viewPane: CubeViewComponent;
|
14
|
+
patterns: Pattern[];
|
15
|
+
pattern: Pattern;
|
16
|
+
private _cube;
|
17
|
+
get cube(): Cube;
|
18
|
+
set cube(value: Cube);
|
19
|
+
private _view;
|
20
|
+
get view(): CubeView;
|
21
|
+
set view(value: CubeView);
|
22
|
+
exclude: string[];
|
23
|
+
private _axes;
|
24
|
+
get axes(): AxesMap;
|
25
|
+
set axes(value: AxesMap);
|
26
|
+
anyAxes: boolean;
|
27
|
+
anyFilters: boolean;
|
28
|
+
loading: boolean;
|
29
|
+
private _originalAxes;
|
30
|
+
get originalAxes(): AxesMap;
|
31
|
+
set originalAxes(value: AxesMap);
|
32
|
+
constructor(_session: SessionService, _router: RouterImpl, _service: CubeService, _guide: GuideService);
|
33
|
+
patternChange(pattern: Pattern): void;
|
34
|
+
clearFilter(): void;
|
35
|
+
navigate(queryParams: any): void;
|
36
|
+
guide(evt?: Event): void;
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewBase, never>;
|
38
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ViewBase, never, never, {}, {}, never>;
|
39
|
+
}
|
@@ -1,42 +1,29 @@
|
|
1
1
|
import { OnInit, OnDestroy } from '@angular/core';
|
2
2
|
import { MatSidenav } from '@angular/material/sidenav';
|
3
|
-
import { AxesMap
|
4
|
-
import { Pattern } from './cube.service';
|
3
|
+
import { AxesMap } from '../core/models';
|
5
4
|
import { CubeService } from './cube.service';
|
6
5
|
import { SessionService } from '../core/session.service';
|
7
6
|
import { GuideService } from '../core/guide/guide.service';
|
8
7
|
import { WindowTitleService } from '../core/window-title.service';
|
9
|
-
import { ActivatedRoute
|
8
|
+
import { ActivatedRoute } from '@angular/router';
|
10
9
|
import { CubeViewComponent } from './cube-view.component';
|
11
10
|
import { ExploreItemsComponent } from './explore/explore-items.component';
|
12
|
-
import { ParamMap } from '../core/configuration';
|
13
11
|
import { AxisClickEvent } from './declarations';
|
12
|
+
import { ViewBase } from './view-base';
|
13
|
+
import { RouterImpl } from '../core/router';
|
14
14
|
import * as i0 from "@angular/core";
|
15
|
-
export declare class
|
16
|
-
private _session;
|
15
|
+
export declare class CubeMobileViewComponent extends ViewBase implements OnInit, OnDestroy {
|
17
16
|
private _title;
|
18
|
-
private _router;
|
19
|
-
private _service;
|
20
|
-
private _guide;
|
21
17
|
private _route;
|
22
18
|
mode: 'filter' | 'explore';
|
23
19
|
viewPane: CubeViewComponent;
|
24
20
|
drawer: MatSidenav;
|
25
21
|
explorePane: ExploreItemsComponent;
|
26
|
-
patterns: Pattern[];
|
27
|
-
pattern: Pattern;
|
28
|
-
cube: Cube;
|
29
|
-
view: CubeView;
|
30
|
-
filters: AxesMap;
|
31
|
-
exclude: string[];
|
32
|
-
anyAxes: boolean;
|
33
|
-
anyFilters: boolean;
|
34
22
|
index: string;
|
35
|
-
axes: ParamMap;
|
36
23
|
private _navigating;
|
37
24
|
private readonly _destroy;
|
38
25
|
/** cube ctor */
|
39
|
-
constructor(
|
26
|
+
constructor(session: SessionService, router: RouterImpl, service: CubeService, guide: GuideService, _title: WindowTitleService, _route: ActivatedRoute);
|
40
27
|
ngOnInit(): void;
|
41
28
|
exploreItem(keys: any): void;
|
42
29
|
toggleFilter(): void;
|
@@ -45,12 +32,8 @@ export declare class CubeComponent implements OnInit, OnDestroy {
|
|
45
32
|
* @param evt
|
46
33
|
*/
|
47
34
|
explore(evt: AxisClickEvent): void;
|
48
|
-
clearFilter(): void;
|
49
35
|
filterChange(axes: AxesMap): void;
|
50
|
-
patternChange(pattern: Pattern): void;
|
51
|
-
guide(): void;
|
52
|
-
private _navigate;
|
53
36
|
ngOnDestroy(): void;
|
54
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CubeMobileViewComponent, never>;
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeMobileViewComponent, "ng-component", never, {}, {}, never, never>;
|
56
39
|
}
|
@@ -1,45 +1,27 @@
|
|
1
1
|
import { OnInit } from '@angular/core';
|
2
|
-
import {
|
3
|
-
import { CubeService, Pattern } from './cube.service';
|
2
|
+
import { CubeService } from './cube.service';
|
4
3
|
import { SessionService } from '../core/session.service';
|
5
4
|
import { GuideService } from '../core/guide/guide.service';
|
6
|
-
import { PanesRouter } from '../core/slots/router.service';
|
7
5
|
import { CubeViewComponent } from './cube-view.component';
|
8
6
|
import { PaneRef } from '../core/slots/pane-ref';
|
9
7
|
import { Popup } from '../core/popup/popup.service';
|
8
|
+
import { RouterImpl } from '../core/router';
|
9
|
+
import { ViewBase } from './view-base';
|
10
10
|
import { AxisClickEvent } from './declarations';
|
11
11
|
import * as i0 from "@angular/core";
|
12
|
-
export declare class CubeViewPaneComponent implements OnInit {
|
13
|
-
private
|
14
|
-
private _slot;
|
12
|
+
export declare class CubeViewPaneComponent extends ViewBase implements OnInit {
|
13
|
+
private _pane;
|
15
14
|
private _popup;
|
16
|
-
private _router;
|
17
|
-
private _service;
|
18
|
-
private _guide;
|
19
15
|
viewPane: CubeViewComponent;
|
20
|
-
|
21
|
-
pattern: Pattern;
|
22
|
-
cube: Cube;
|
23
|
-
view: CubeView;
|
24
|
-
private _filters;
|
25
|
-
get filters(): AxesMap;
|
26
|
-
set filters(value: AxesMap);
|
27
|
-
anyAxes: boolean;
|
28
|
-
private _anyFilters;
|
29
|
-
get anyFilters(): boolean;
|
30
|
-
loading: boolean;
|
31
|
-
constructor(_session: SessionService, _slot: PaneRef<CubeViewPaneComponent>, _popup: Popup, _router: PanesRouter, _service: CubeService, _guide: GuideService);
|
16
|
+
constructor(session: SessionService, _pane: PaneRef<CubeViewPaneComponent>, _popup: Popup, router: RouterImpl, service: CubeService, guide: GuideService);
|
32
17
|
ngOnInit(): void;
|
33
|
-
filterToggle(evt: Event): void;
|
34
18
|
/**
|
35
19
|
*
|
36
20
|
* @param evt
|
37
21
|
*/
|
38
22
|
explore(evt: AxisClickEvent): void;
|
39
|
-
|
40
|
-
clearFilter(): void;
|
41
|
-
private _navigate;
|
23
|
+
filterToggle(evt: Event): void;
|
42
24
|
guide(evt?: Event): void;
|
43
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeViewPaneComponent, never>;
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CubeViewPaneComponent, "
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CubeViewPaneComponent, "ng-component", never, {}, {}, never, never>;
|
45
27
|
}
|