@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
@@ -6,7 +6,7 @@ import { SessionService } from '../../core/session.service';
|
|
6
6
|
import { CubeService, Series } from '../../cube/cube.service';
|
7
7
|
import { WidgetRef } from "../widget-ref";
|
8
8
|
import { Dimentions } from '../../core/models';
|
9
|
-
import { CubeInfo } from '../../cube/
|
9
|
+
import { CubeInfo } from '../../cube/cube-info.service';
|
10
10
|
import * as i0 from "@angular/core";
|
11
11
|
export declare class CubeAccumAnalysisWidget extends CubeAnalysisBase implements OnDestroy {
|
12
12
|
private _elementRef;
|
@@ -7,7 +7,7 @@ import { SessionService } from '../../core/session.service';
|
|
7
7
|
import { DatasourceService } from '../../core/datasource.service';
|
8
8
|
import { CubeService, Series, ScopeType } from '../../cube/cube.service';
|
9
9
|
import { WidgetRef } from "../widget-ref";
|
10
|
-
import { CubeInfo } from '../../cube/
|
10
|
+
import { CubeInfo } from '../../cube/cube-info.service';
|
11
11
|
import * as i0 from "@angular/core";
|
12
12
|
export declare abstract class CubeAnalysisBase implements WidgetComponent<Series[]>, OnDestroy {
|
13
13
|
private _info;
|
@@ -6,7 +6,7 @@ import { DatasourceService } from '../../core/datasource.service';
|
|
6
6
|
import { WidgetRef } from "../widget-ref";
|
7
7
|
import { TranslateService } from '../../core/translate.service';
|
8
8
|
import { CubeService, Series } from '../../cube/cube.service';
|
9
|
-
import { CubeInfo } from '../../cube/
|
9
|
+
import { CubeInfo } from '../../cube/cube-info.service';
|
10
10
|
import * as i0 from "@angular/core";
|
11
11
|
export declare class CubeChartAnalysisWidget extends CubeAnalysisBase {
|
12
12
|
private _elementRef;
|
@@ -12,7 +12,7 @@ export declare class CubeWidgetFilterComponent implements OnInit, ArgumentsCompo
|
|
12
12
|
form: FormGroup;
|
13
13
|
exclude: string[];
|
14
14
|
cube: string;
|
15
|
-
|
15
|
+
axes: {};
|
16
16
|
/** filter ctor */
|
17
17
|
constructor(_widgetRef: WidgetRef<Options>, _session: SessionService, _fb: FormBuilder);
|
18
18
|
ngOnInit(): void;
|
package/lib/desktop.module.d.ts
CHANGED
@@ -25,7 +25,7 @@ import * as i23 from "./browse/folders-menu.component";
|
|
25
25
|
import * as i24 from "./browse/browse.pane.component";
|
26
26
|
import * as i25 from "./compose/new-menu.component";
|
27
27
|
import * as i26 from "./compose/compose.pane.component";
|
28
|
-
import * as i27 from "./cube/
|
28
|
+
import * as i27 from "./cube/matrix/matrix.pane.component";
|
29
29
|
import * as i28 from "./scheduler/scheduler.pane.component";
|
30
30
|
import * as i29 from "./chat/contacts.pane.component";
|
31
31
|
import * as i30 from "./chat/conversation.pane.component";
|
@@ -38,6 +38,6 @@ import * as i36 from "ngx-moment";
|
|
38
38
|
import * as i37 from "./shared.module";
|
39
39
|
export declare class DesktopModule {
|
40
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<DesktopModule, never>;
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DesktopModule, [typeof i1.DocumentInfoPaneComponent, typeof i2.DocumentViewPaneComponent, typeof i3.QuickToolsComponent, typeof i4.QuickNotificationsComponent, typeof i5.DashboardPaneComponent, typeof i6.AdminMenuComponent, typeof i7.HomeComponent, typeof i8.QuickSignComponent, typeof i9.QuickOptionsComponent, typeof i10.SlotRouterDirective, typeof i11.SlotsComponent, typeof i12.CubeMenuComponent, typeof i13.CubeViewPaneComponent, typeof i14.ExploreItemPaneComponent, typeof i15.CubeExplorePaneComponent, typeof i16.NotificationsPaneComponent, typeof i17.TracePaneComponent, typeof i18.VersionPaneComponent, typeof i19.ActionPaneDialog, typeof i20.CommentsPaneComponent, typeof i21.ReportsMenuComponent, typeof i22.ReportPaneComponent, typeof i23.FoldersMenuComponent, typeof i24.BrowsePaneComponent, typeof i25.ComposeMenuComponent, typeof i26.ComposePaneComponent, typeof i27.
|
41
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DesktopModule, [typeof i1.DocumentInfoPaneComponent, typeof i2.DocumentViewPaneComponent, typeof i3.QuickToolsComponent, typeof i4.QuickNotificationsComponent, typeof i5.DashboardPaneComponent, typeof i6.AdminMenuComponent, typeof i7.HomeComponent, typeof i8.QuickSignComponent, typeof i9.QuickOptionsComponent, typeof i10.SlotRouterDirective, typeof i11.SlotsComponent, typeof i12.CubeMenuComponent, typeof i13.CubeViewPaneComponent, typeof i14.ExploreItemPaneComponent, typeof i15.CubeExplorePaneComponent, typeof i16.NotificationsPaneComponent, typeof i17.TracePaneComponent, typeof i18.VersionPaneComponent, typeof i19.ActionPaneDialog, typeof i20.CommentsPaneComponent, typeof i21.ReportsMenuComponent, typeof i22.ReportPaneComponent, typeof i23.FoldersMenuComponent, typeof i24.BrowsePaneComponent, typeof i25.ComposeMenuComponent, typeof i26.ComposePaneComponent, typeof i27.CubeMatrixPaneComponent, typeof i28.SchedulerPaneComponent, typeof i29.ContactsPaneComponent, typeof i30.ConversationPaneComponent], [typeof i31.CommonModule, typeof i32.HttpClientModule, typeof i33.ReactiveFormsModule, typeof i34.FlexLayoutModule, typeof i35.RouterModule, typeof i36.MomentModule, typeof i37.SharedModule], [typeof i10.SlotRouterDirective, typeof i11.SlotsComponent, typeof i5.DashboardPaneComponent, typeof i12.CubeMenuComponent, typeof i13.CubeViewPaneComponent, typeof i14.ExploreItemPaneComponent, typeof i15.CubeExplorePaneComponent, typeof i16.NotificationsPaneComponent, typeof i17.TracePaneComponent, typeof i18.VersionPaneComponent, typeof i19.ActionPaneDialog, typeof i20.CommentsPaneComponent, typeof i21.ReportsMenuComponent, typeof i22.ReportPaneComponent, typeof i23.FoldersMenuComponent, typeof i24.BrowsePaneComponent, typeof i25.ComposeMenuComponent, typeof i26.ComposePaneComponent, typeof i27.CubeMatrixPaneComponent, typeof i28.SchedulerPaneComponent, typeof i29.ContactsPaneComponent, typeof i30.ConversationPaneComponent]>;
|
42
42
|
static ɵinj: i0.ɵɵInjectorDeclaration<DesktopModule>;
|
43
43
|
}
|
@@ -2,9 +2,9 @@ import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
3
3
|
import { MatDialogRef } from '@angular/material/dialog';
|
4
4
|
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
5
|
-
import { UserInfo } from '
|
6
|
-
import { SessionService } from '
|
7
|
-
import { PromptService } from '
|
5
|
+
import { UserInfo } from '../core/models';
|
6
|
+
import { SessionService } from '../core/session.service';
|
7
|
+
import { PromptService } from '../core/prompt.service';
|
8
8
|
import * as i0 from "@angular/core";
|
9
9
|
export declare class ImpersonateDialog implements OnDestroy {
|
10
10
|
private _sb;
|
package/lib/mobile.module.d.ts
CHANGED
@@ -10,7 +10,7 @@ import * as i8 from "./compose/copy/copy.dialog";
|
|
10
10
|
import * as i9 from "./scheduler/scheduler.mobile.component";
|
11
11
|
import * as i10 from "./notifications/notifications.mobile.component";
|
12
12
|
import * as i11 from "./chat/chat.mobile.component";
|
13
|
-
import * as i12 from "./cube/
|
13
|
+
import * as i12 from "./cube/matrix/matrix.mobile.component";
|
14
14
|
import * as i13 from "./views/views.mobile.component";
|
15
15
|
import * as i14 from "@angular/common";
|
16
16
|
import * as i15 from "@angular/common/http";
|
@@ -21,6 +21,6 @@ import * as i19 from "ngx-moment";
|
|
21
21
|
import * as i20 from "./shared.module";
|
22
22
|
export declare class MobileModule {
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<MobileModule, never>;
|
24
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MobileModule, [typeof i1.DocumentInfoPageComponent, typeof i2.HomeMobileComponent, typeof i3.BrowseComponent, typeof i4.
|
24
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MobileModule, [typeof i1.DocumentInfoPageComponent, typeof i2.HomeMobileComponent, typeof i3.BrowseComponent, typeof i4.CubeMobileViewComponent, typeof i5.ComposeComponent, typeof i6.ReportComponent, typeof i7.FormSelectorSheet, typeof i8.CopyDialog, typeof i9.SchedulerComponent, typeof i10.NotificationsComponent, typeof i11.ChatComponent, typeof i12.CubeMatrixMobileComponent, typeof i13.DocumentViewMobileComponent], [typeof i14.CommonModule, typeof i15.HttpClientModule, typeof i16.ReactiveFormsModule, typeof i17.FlexLayoutModule, typeof i18.RouterModule, typeof i19.MomentModule, typeof i20.SharedModule], [typeof i2.HomeMobileComponent, typeof i3.BrowseComponent, typeof i4.CubeMobileViewComponent, typeof i5.ComposeComponent, typeof i6.ReportComponent, typeof i7.FormSelectorSheet, typeof i8.CopyDialog, typeof i9.SchedulerComponent, typeof i10.NotificationsComponent, typeof i11.ChatComponent]>;
|
25
25
|
static ɵinj: i0.ɵɵInjectorDeclaration<MobileModule>;
|
26
26
|
}
|
@@ -3,8 +3,10 @@ import { EventSettingsModel, View, NavigatingEventArgs, EventClickArgs, Schedule
|
|
3
3
|
import { MailboxService } from '../core/mailbox.service';
|
4
4
|
import { PromptService } from '../core/prompt.service';
|
5
5
|
import { PanesRouter } from '../core/slots/router.service';
|
6
|
+
import { SessionService } from '../core/session.service';
|
6
7
|
import * as i0 from "@angular/core";
|
7
8
|
export declare class ScheduleViewComponent implements OnChanges, AfterViewInit {
|
9
|
+
private _session;
|
8
10
|
private _mailbox;
|
9
11
|
private _router;
|
10
12
|
private _sb;
|
@@ -21,8 +23,9 @@ export declare class ScheduleViewComponent implements OnChanges, AfterViewInit {
|
|
21
23
|
starting: Date;
|
22
24
|
ending: Date;
|
23
25
|
private _currentView;
|
26
|
+
holidays: any;
|
24
27
|
/** Scheduler ctor */
|
25
|
-
constructor(_mailbox: MailboxService, _router: PanesRouter, _sb: PromptService);
|
28
|
+
constructor(_session: SessionService, _mailbox: MailboxService, _router: PanesRouter, _sb: PromptService);
|
26
29
|
ngOnChanges(_changes: SimpleChanges): void;
|
27
30
|
ngAfterViewInit(): void;
|
28
31
|
export(): void;
|
package/lib/shared.module.d.ts
CHANGED
@@ -4,16 +4,16 @@ import * as i0 from "@angular/core";
|
|
4
4
|
import * as i1 from "./compose/document.component";
|
5
5
|
import * as i2 from "./views/views.component";
|
6
6
|
import * as i3 from "./views/view-item.component";
|
7
|
-
import * as i4 from "./views/cube/
|
7
|
+
import * as i4 from "./views/cube/matrix.component";
|
8
8
|
import * as i5 from "./views/cube/view.component";
|
9
|
-
import * as i6 from "./
|
10
|
-
import * as i7 from "./
|
11
|
-
import * as i8 from "./
|
12
|
-
import * as i9 from "./
|
13
|
-
import * as i10 from "./core/
|
14
|
-
import * as i11 from "./core/controls/combination-picker";
|
15
|
-
import * as i12 from "./core/controls/combination-
|
16
|
-
import * as i13 from "./
|
9
|
+
import * as i6 from "./compose/action/action-picker.component";
|
10
|
+
import * as i7 from "./chat/contacts.component";
|
11
|
+
import * as i8 from "./compose/comments/quick-comment.component.exp";
|
12
|
+
import * as i9 from "./core/pipes/duration.pipe";
|
13
|
+
import * as i10 from "./core/controls/combination-picker";
|
14
|
+
import * as i11 from "./core/controls/combination-picker-body";
|
15
|
+
import * as i12 from "./core/controls/combination-pool";
|
16
|
+
import * as i13 from "./views/timeline/timeline.component.exp";
|
17
17
|
import * as i14 from "./core/animated-icon/animated-icon.directive";
|
18
18
|
import * as i15 from "./core/controls/daterange-picker";
|
19
19
|
import * as i16 from "./admin/core/color-picker.input";
|
@@ -55,7 +55,7 @@ import * as i51 from "./core/tagging/edit-input.component";
|
|
55
55
|
import * as i52 from "./core/NgComponentOutlet";
|
56
56
|
import * as i53 from "./app.component";
|
57
57
|
import * as i54 from "./core/lottie-animation";
|
58
|
-
import * as i55 from "./cube/
|
58
|
+
import * as i55 from "./cube/matrix/table.component";
|
59
59
|
import * as i56 from "./cube/filter/filter-tags.component.exp";
|
60
60
|
import * as i57 from "./cube/explore/explore-items.component";
|
61
61
|
import * as i58 from "./compose/version-compare/version-compare.directive";
|
@@ -126,48 +126,46 @@ import * as i122 from "./dashboard/recents/recents.widget";
|
|
126
126
|
import * as i123 from "./core/prompt/ask/ask.dialog";
|
127
127
|
import * as i124 from "./home/about/about.dialog";
|
128
128
|
import * as i125 from "./compose/action/action.dialog";
|
129
|
-
import * as i126 from "./
|
130
|
-
import * as i127 from "./
|
131
|
-
import * as i128 from "./
|
132
|
-
import * as i129 from "./
|
133
|
-
import * as i130 from "./
|
134
|
-
import * as i131 from "./
|
135
|
-
import * as i132 from "./
|
136
|
-
import * as i133 from "./
|
137
|
-
import * as i134 from "./reports/
|
138
|
-
import * as i135 from "./dashboard/
|
139
|
-
import * as i136 from "./dashboard/score/
|
140
|
-
import * as i137 from "./
|
141
|
-
import * as i138 from "./dashboard/
|
142
|
-
import * as i139 from "./
|
143
|
-
import * as i140 from "./
|
144
|
-
import * as i141 from "./
|
145
|
-
import * as i142 from "./
|
146
|
-
import * as i143 from "./
|
147
|
-
import * as i144 from "
|
148
|
-
import * as i145 from "
|
149
|
-
import * as i146 from "
|
150
|
-
import * as i147 from "@angular/
|
151
|
-
import * as i148 from "@angular/
|
152
|
-
import * as i149 from "
|
153
|
-
import * as i150 from "@
|
154
|
-
import * as i151 from "@angular
|
155
|
-
import * as i152 from "
|
156
|
-
import * as i153 from "
|
157
|
-
import * as i154 from "./
|
158
|
-
import * as i155 from "./
|
159
|
-
import * as i156 from "./
|
160
|
-
import * as i157 from "
|
161
|
-
import * as i158 from "./
|
162
|
-
import * as i159 from "
|
163
|
-
import * as i160 from "
|
164
|
-
import * as i161 from "./
|
165
|
-
import * as i162 from "
|
166
|
-
import * as i163 from "./diagram.module";
|
167
|
-
import * as i164 from "./material.module";
|
129
|
+
import * as i126 from "./impersonate/impersonate.component";
|
130
|
+
import * as i127 from "./chat/conversation.component";
|
131
|
+
import * as i128 from "./cube/matrix/matrix.component";
|
132
|
+
import * as i129 from "./compose/version-compare/version-compare.component";
|
133
|
+
import * as i130 from "./cube/explore/document-info.component";
|
134
|
+
import * as i131 from "./reports/tasks/tasks.component";
|
135
|
+
import * as i132 from "./dashboard/score/pending-results.widget";
|
136
|
+
import * as i133 from "./dashboard/score/compare-departments.widget";
|
137
|
+
import * as i134 from "./reports/cube/table-documents.component";
|
138
|
+
import * as i135 from "./dashboard/cube/documents.widget";
|
139
|
+
import * as i136 from "./dashboard/score/personal-score.widget";
|
140
|
+
import * as i137 from "./dashboard/score/activity.widget";
|
141
|
+
import * as i138 from "./dashboard/score/peers-performance.widget";
|
142
|
+
import * as i139 from "./reports/cube/usage-pivot.component";
|
143
|
+
import * as i140 from "./reports/cube/usage-chart.component";
|
144
|
+
import * as i141 from "./reports/cube/usage-args.component";
|
145
|
+
import * as i142 from "./core/tagging/emoji.component";
|
146
|
+
import * as i143 from "./core/popup/tooltip.directive";
|
147
|
+
import * as i144 from "@angular/common";
|
148
|
+
import * as i145 from "@angular/common/http";
|
149
|
+
import * as i146 from "@angular/forms";
|
150
|
+
import * as i147 from "@angular/flex-layout";
|
151
|
+
import * as i148 from "@angular/router";
|
152
|
+
import * as i149 from "ngx-moment";
|
153
|
+
import * as i150 from "@ctrl/ngx-emoji-mart";
|
154
|
+
import * as i151 from "@syncfusion/ej2-angular-gantt";
|
155
|
+
import * as i152 from "./schedule.module";
|
156
|
+
import * as i153 from "./circular-gauge.module";
|
157
|
+
import * as i154 from "./linear-gauge.module";
|
158
|
+
import * as i155 from "./chart.module";
|
159
|
+
import * as i156 from "./grid.module";
|
160
|
+
import * as i157 from "@syncfusion/ej2-angular-richtexteditor";
|
161
|
+
import * as i158 from "./spreadsheet.module";
|
162
|
+
import * as i159 from "./pivot.module";
|
163
|
+
import * as i160 from "@syncfusion/ej2-angular-kanban";
|
164
|
+
import * as i161 from "./diagram.module";
|
165
|
+
import * as i162 from "./material.module";
|
168
166
|
export declare class SharedModule {
|
169
167
|
static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
|
170
168
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
171
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.DocumentInfoComponent, typeof i2.DocumentViewsComponent, typeof i3.ViewItemComponent, typeof i4.CubeDocumentMatrixComponent, typeof i5.CubeDocumentViewComponent, typeof i6.
|
169
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.DocumentInfoComponent, typeof i2.DocumentViewsComponent, typeof i3.ViewItemComponent, typeof i4.CubeDocumentMatrixComponent, typeof i5.CubeDocumentViewComponent, typeof i6.ActionPicker, typeof i7.HtmlSimplePipe, typeof i8.QuickCommentComponent, typeof i9.DurationFormatPipe, typeof i10.CombinationPicker, typeof i11.CombinationPickerBody, typeof i12.CombinationPool, typeof i13.TimelineViewComponent, typeof i14.MatIconAnimate, typeof i15.DateRangePipe, typeof i16.ColorPicker, typeof i17.JoinPipe, typeof i18.TimePicker, typeof i19.TypeValuePipe, typeof i20.TypeSelect, typeof i21.TypeAutocomplete, typeof i22.TranslatePipe, typeof i23.IdentityName, typeof i24.SanitizeHtmlPipe, typeof i25.AceInput, typeof i26.TimespanInput, typeof i27.AddressInput, typeof i28.StatePipe, typeof i29.ActionPipe, typeof i30.RolePipe, typeof i31.FormPipe, typeof i32.FilterPipe, typeof i32.ArraySortPipe, typeof i33.UserNamePipe, typeof i34.LayoutComponent, typeof i35.HtmlField, typeof i36.NumericField, typeof i37.AutocompleteField, typeof i38.CheckField, typeof i39.DateField, typeof i40.DateRangeField, typeof i41.ExpressionField, typeof i42.InputField, typeof i43.SelectField, typeof i44.SwitchField, typeof i45.TextareaField, typeof i46.TimespanField, typeof i47.ReturnActionComponent, typeof i48.AssignActionComponent, typeof i49.AvatarComponent, typeof i50.PeopleComponent, typeof i51.EditInputComponent, typeof i52.NgxComponentOutlet, typeof i53.BizDocApp, typeof i54.LottieAnimation, typeof i7.ContactsComponent, typeof i55.CubeMatrixTableComponent, typeof i56.FilterTagsComponent, typeof i57.ExploreItemsComponent, typeof i58.CompareNameDirective, typeof i58.CompareGroupDirective, typeof i58.CompareContextDirective, typeof i59.GuideComponent, typeof i60.OutOfOfficeToast, typeof i61.NotificationsTableComponent, typeof i62.NotificationsFilterComponent, typeof i63.TaggingPipe, typeof i64.PrivilegeHiddenDirective, typeof i65.TaggingItemDirective, typeof i66.TaggingDirective, typeof i67.DocumentTaggingComponent, typeof i68.UserTaggingComponent, typeof i64.PrivilegeDisabledDirective, typeof i69.CubeGridDocumentsComponent, typeof i70.LongRunningTaskNotification, typeof i71.TaggedNotification, typeof i72.CommentedNotification, typeof i73.NudgeNotification, typeof i74.TextNotification, typeof i75.CubeAnomalyNotification, typeof i76.EscalatedNotification, typeof i77.LikedNotification, typeof i78.StateChangedNotification, typeof i79.UpcomingEventNotification, typeof i80.NoneComponent, typeof i81.ScheduleViewComponent, typeof i82.OptionsComponent, typeof i83.TraceViewComponent, typeof i84.ProgressButtonDirective, typeof i85.AttachmentsComponent, typeof i86.DocumentEventsComponent, typeof i87.TagsComponent, typeof i88.MapComponent, typeof i89.MaskComponent, typeof i90.SaveChangesDialog, typeof i91.FlowViewComponent, typeof i92.SubstitutionComponent, typeof i93.PopupComponent, typeof i94.AttachmentPreview, typeof i95.CommentsComponent, typeof i96.CommentComponent, typeof i97.EditCommentComponent, typeof i98.CommentLikesComponent, typeof i99.CommentEditsComponent, typeof i100.BrowseItemsComponent, typeof i101.BrowseFilterComponent, typeof i102.ExpandedItemComponent, typeof i103.ComposeFormComponent, typeof i104.CubeViewComponent, typeof i105.DrilldownItemComponent, typeof i106.CubeFilterComponent, typeof i107.CubeAccumulationChartComponent, typeof i108.CubeChartComponent, typeof i109.CubePivotComponent, typeof i110.CubeSpreadsheetComponent, typeof i111.CubeGridComponent, typeof i112.ReportViewerComponent, typeof i113.TableViewComponent, typeof i114.ReportArgumentsComponent, typeof i115.DashboardComponent, typeof i116.WidgetItemComponent, typeof i117.CubeWidgetFilterComponent, typeof i118.CubeAccumAnalysisWidget, typeof i119.CubeAnalysisWidget, typeof i120.CubeChartAnalysisWidget, typeof i121.ActionsWidget, typeof i122.RecentsWidget, typeof i123.AskDialog, typeof i124.AboutDialog, typeof i125.ActionDialog, typeof i126.ImpersonateDialog, typeof i127.ConversationComponent, typeof i128.CubeMatrixComponent, typeof i129.VersionCompareComponent, typeof i130.ExploreDocumentComponent, typeof i131.TasksComponent, typeof i132.PendingResultsWidget, typeof i133.CompareDepartmentsWidget, typeof i134.CubeDocumentsComponent, typeof i135.CubeDocumentsWidget, typeof i136.PersonalScoreWidget, typeof i137.PersonalActivityWidget, typeof i138.PeersPerformanceWidget, typeof i139.UsagePivotComponent, typeof i140.UsageChartComponent, typeof i141.UsageReportArgs, typeof i142.EmojiHostComponent, typeof i143.TooltipDirective, typeof i143.TooltipComponent], [typeof i144.CommonModule, typeof i145.HttpClientModule, typeof i146.ReactiveFormsModule, typeof i147.FlexLayoutModule, typeof i148.RouterModule, typeof i149.MomentModule, typeof i150.PickerModule, typeof i151.GanttModule, typeof i152.SyncfusionScheduleModule, typeof i153.SyncfusionCircularGaugeModule, typeof i154.SyncfusionLinearGaugeModule, typeof i155.SyncfusionChartModule, typeof i156.SyncfusionGridModule, typeof i157.RichTextEditorModule, typeof i158.SyncfusionSpreadsheetModule, typeof i159.SyncfusionPivotModule, typeof i160.KanbanModule, typeof i161.SyncfusionDiagramModule, typeof i162.MaterialModule], [typeof i1.DocumentInfoComponent, typeof i2.DocumentViewsComponent, typeof i115.DashboardComponent, typeof i87.TagsComponent, typeof i8.QuickCommentComponent, typeof i162.MaterialModule, typeof i95.CommentsComponent, typeof i125.ActionDialog, typeof i101.BrowseFilterComponent, typeof i106.CubeFilterComponent, typeof i81.ScheduleViewComponent, typeof i112.ReportViewerComponent, typeof i116.WidgetItemComponent, typeof i104.CubeViewComponent, typeof i57.ExploreItemsComponent, typeof i103.ComposeFormComponent, typeof i100.BrowseItemsComponent, typeof i61.NotificationsTableComponent, typeof i6.ActionPicker, typeof i127.ConversationComponent, typeof i7.ContactsComponent, typeof i55.CubeMatrixTableComponent, typeof i9.DurationFormatPipe, typeof i10.CombinationPicker, typeof i12.CombinationPool, typeof i18.TimePicker, typeof i143.TooltipDirective, typeof i15.DateRangePipe, typeof i52.NgxComponentOutlet, typeof i14.MatIconAnimate, typeof i25.AceInput, typeof i17.JoinPipe, typeof i19.TypeValuePipe, typeof i20.TypeSelect, typeof i21.TypeAutocomplete, typeof i28.StatePipe, typeof i29.ActionPipe, typeof i30.RolePipe, typeof i31.FormPipe, typeof i32.FilterPipe, typeof i32.ArraySortPipe, typeof i33.UserNamePipe, typeof i24.SanitizeHtmlPipe, typeof i22.TranslatePipe, typeof i23.IdentityName, typeof i27.AddressInput, typeof i49.AvatarComponent, typeof i114.ReportArgumentsComponent, typeof i53.BizDocApp, typeof i94.AttachmentPreview, typeof i64.PrivilegeHiddenDirective, typeof i64.PrivilegeDisabledDirective, typeof i58.CompareGroupDirective, typeof i58.CompareNameDirective, typeof i58.CompareContextDirective, typeof i83.TraceViewComponent, typeof i91.FlowViewComponent, typeof i48.AssignActionComponent, typeof i47.ReturnActionComponent, typeof i130.ExploreDocumentComponent, typeof i121.ActionsWidget, typeof i119.CubeAnalysisWidget, typeof i135.CubeDocumentsWidget, typeof i122.RecentsWidget, typeof i137.PersonalActivityWidget, typeof i133.CompareDepartmentsWidget, typeof i138.PeersPerformanceWidget, typeof i132.PendingResultsWidget, typeof i136.PersonalScoreWidget, typeof i117.CubeWidgetFilterComponent, typeof i134.CubeDocumentsComponent, typeof i69.CubeGridDocumentsComponent, typeof i131.TasksComponent, typeof i141.UsageReportArgs, typeof i140.UsageChartComponent, typeof i139.UsagePivotComponent, typeof i26.TimespanInput, typeof i129.VersionCompareComponent, typeof i54.LottieAnimation, typeof i107.CubeAccumulationChartComponent, typeof i108.CubeChartComponent, typeof i109.CubePivotComponent, typeof i110.CubeSpreadsheetComponent, typeof i111.CubeGridComponent]>;
|
172
170
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
173
171
|
}
|
package/lib/system.module.d.ts
CHANGED
@@ -1,34 +1,33 @@
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
import * as i1 from "./admin/permissions/permissions.component";
|
4
|
-
import * as i2 from "./admin/
|
5
|
-
import * as i3 from "./admin/
|
6
|
-
import * as i4 from "./admin/utility
|
7
|
-
import * as i5 from "./admin/
|
8
|
-
import * as i6 from "./admin/
|
9
|
-
import * as i7 from "./admin/
|
10
|
-
import * as i8 from "./admin/
|
11
|
-
import * as i9 from "./admin/document-trace/
|
12
|
-
import * as i10 from "./admin/
|
13
|
-
import * as i11 from "./admin/
|
14
|
-
import * as i12 from "./admin/positions/positions.component";
|
15
|
-
import * as i13 from "./admin/
|
16
|
-
import * as i14 from "./admin/form/workflow/
|
17
|
-
import * as i15 from "./admin/form/workflow/node.component";
|
18
|
-
import * as i16 from "./admin/
|
19
|
-
import * as i17 from "
|
20
|
-
import * as i18 from "@angular/common";
|
21
|
-
import * as i19 from "@angular/
|
22
|
-
import * as i20 from "@angular/
|
23
|
-
import * as i21 from "@angular/
|
24
|
-
import * as i22 from "
|
25
|
-
import * as i23 from "
|
26
|
-
import * as i24 from "./
|
27
|
-
import * as i25 from "./
|
28
|
-
import * as i26 from "./shared.module";
|
4
|
+
import * as i2 from "./admin/indices/manage-cube-index.component";
|
5
|
+
import * as i3 from "./admin/utility-wrapper.component";
|
6
|
+
import * as i4 from "./admin/utility.pane.component";
|
7
|
+
import * as i5 from "./admin/core/search.input";
|
8
|
+
import * as i6 from "./admin/document-trace/reassign.dialog";
|
9
|
+
import * as i7 from "./admin/diff/configuration-diff.component";
|
10
|
+
import * as i8 from "./admin/document-trace/document-trace.component";
|
11
|
+
import * as i9 from "./admin/document-trace/trace-element.component";
|
12
|
+
import * as i10 from "./admin/profiler/profiler.component";
|
13
|
+
import * as i11 from "./admin/positions/positions.component";
|
14
|
+
import * as i12 from "./admin/positions/positions-popup.component";
|
15
|
+
import * as i13 from "./admin/form/workflow/workflow.component";
|
16
|
+
import * as i14 from "./admin/form/workflow/node.component";
|
17
|
+
import * as i15 from "./admin/form/workflow/role-node.component";
|
18
|
+
import * as i16 from "./admin/patterns/patterns.component";
|
19
|
+
import * as i17 from "@angular/common";
|
20
|
+
import * as i18 from "@angular/common/http";
|
21
|
+
import * as i19 from "@angular/forms";
|
22
|
+
import * as i20 from "@angular/flex-layout";
|
23
|
+
import * as i21 from "@angular/router";
|
24
|
+
import * as i22 from "ngx-moment";
|
25
|
+
import * as i23 from "./diagram.module";
|
26
|
+
import * as i24 from "./chart.module";
|
27
|
+
import * as i25 from "./shared.module";
|
29
28
|
export declare class SystemModule {
|
30
29
|
static forChild(): ModuleWithProviders<SystemModule>;
|
31
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemModule, never>;
|
32
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.PermissionsUtility, typeof i2.
|
31
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.PermissionsUtility, typeof i2.ManageCubeIndexUtility, typeof i3.UtilityWrapperComponent, typeof i4.UtilityPaneComponent, typeof i5.SearchInput, typeof i6.ReassignDialog, typeof i7.SystemDiffComponent, typeof i8.DocumentTraceComponent, typeof i9.TraceElementComponent, typeof i10.ProfilerComponent, typeof i11.PositionsComponent, typeof i12.PositionsPopup, typeof i13.WorkflowComponent, typeof i14.WorkflowNodeComponent, typeof i15.RoleNodeComponent, typeof i16.PatternsComponent], [typeof i17.CommonModule, typeof i18.HttpClientModule, typeof i19.ReactiveFormsModule, typeof i20.FlexLayoutModule, typeof i21.RouterModule, typeof i22.MomentModule, typeof i23.SyncfusionDiagramModule, typeof i24.SyncfusionChartModule, typeof i25.SharedModule], [typeof i1.PermissionsUtility, typeof i2.ManageCubeIndexUtility, typeof i3.UtilityWrapperComponent, typeof i4.UtilityPaneComponent, typeof i7.SystemDiffComponent, typeof i8.DocumentTraceComponent, typeof i9.TraceElementComponent, typeof i10.ProfilerComponent, typeof i11.PositionsComponent, typeof i13.WorkflowComponent, typeof i14.WorkflowNodeComponent, typeof i15.RoleNodeComponent, typeof i16.PatternsComponent]>;
|
33
32
|
static ɵinj: i0.ɵɵInjectorDeclaration<SystemModule>;
|
34
33
|
}
|
@@ -1,14 +1,26 @@
|
|
1
1
|
import { AxesMap, Cube, CubeEntry, DocumentModel } from "../../core/models";
|
2
2
|
import { SessionService } from "../../core/session.service";
|
3
3
|
import { DocumentViewRef } from "../document-view-ref";
|
4
|
-
import { CubeService } from '../../cube/cube.service';
|
4
|
+
import { CubeService, Pattern } from '../../cube/cube.service';
|
5
5
|
import { DocumentViewComponent } from "../../core/base";
|
6
6
|
import * as i0 from "@angular/core";
|
7
|
+
declare type ConsolidatedModel = {
|
8
|
+
[cube: string]: {
|
9
|
+
[axis: string]: string[];
|
10
|
+
};
|
11
|
+
};
|
7
12
|
export declare abstract class CubeBase<O extends Options> implements DocumentViewComponent {
|
8
13
|
protected _viewRef: DocumentViewRef<O>;
|
9
14
|
protected _service: CubeService;
|
10
15
|
protected _session: SessionService;
|
11
|
-
|
16
|
+
patterns: Pattern[];
|
17
|
+
pattern: Pattern;
|
18
|
+
loading: boolean;
|
19
|
+
anyAxes: boolean;
|
20
|
+
private _axes;
|
21
|
+
anyFilters: boolean;
|
22
|
+
get axes(): AxesMap;
|
23
|
+
set axes(value: AxesMap);
|
12
24
|
originalAxes: AxesMap;
|
13
25
|
alternate: Cube[];
|
14
26
|
cube: Cube;
|
@@ -23,15 +35,9 @@ export declare abstract class CubeBase<O extends Options> implements DocumentVie
|
|
23
35
|
* @param cube
|
24
36
|
*/
|
25
37
|
switchTo(cube: Cube): void;
|
26
|
-
protected consolidate(entries: CubeEntry[]):
|
27
|
-
[cube: string]: {
|
28
|
-
[axis: string]: string[];
|
29
|
-
};
|
30
|
-
};
|
38
|
+
protected consolidate(entries: CubeEntry[]): ConsolidatedModel;
|
31
39
|
protected setTitle(axes: AxesMap): void;
|
32
|
-
protected aggregate(originalAxes: AxesMap):
|
33
|
-
[x: string]: import("../../core/models").AxisType;
|
34
|
-
};
|
40
|
+
protected aggregate(originalAxes: AxesMap): AxesMap;
|
35
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeBase<any>, never>;
|
36
42
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CubeBase<any>, never, never, {}, {}, never>;
|
37
43
|
}
|
@@ -7,26 +7,19 @@ import { CubeService, Pattern } from "../../cube/cube.service";
|
|
7
7
|
import { DocumentViewRef } from "../document-view-ref";
|
8
8
|
import { Observable } from "rxjs";
|
9
9
|
import { CubeBase } from "./cube-base";
|
10
|
-
import {
|
10
|
+
import { CubeMatrixTableComponent } from "../../cube/matrix/table.component";
|
11
11
|
import * as i0 from "@angular/core";
|
12
12
|
export declare class CubeDocumentMatrixComponent extends CubeBase<Options> implements DocumentViewComponent {
|
13
13
|
private _router;
|
14
14
|
private _ds;
|
15
|
-
table:
|
16
|
-
loading: boolean;
|
15
|
+
table: CubeMatrixTableComponent;
|
17
16
|
readonly sources: {
|
18
17
|
[axis: string]: Observable<{
|
19
18
|
key: string;
|
20
19
|
value: any;
|
21
20
|
}[]>;
|
22
21
|
};
|
23
|
-
/** filters */
|
24
|
-
readonly values: {
|
25
|
-
[axis: string]: string | number | Array<string | number>;
|
26
|
-
};
|
27
22
|
filters: CubeAxis[];
|
28
|
-
patterns: Pattern[];
|
29
|
-
pattern: Pattern;
|
30
23
|
indices?: string | string[];
|
31
24
|
xAxis: string;
|
32
25
|
serie: string;
|
@@ -37,18 +30,12 @@ export declare class CubeDocumentMatrixComponent extends CubeBase<Options> imple
|
|
37
30
|
};
|
38
31
|
constructor(viewRef: DocumentViewRef<Options>, _router: RouterImpl, service: CubeService, _ds: DatasourceService, session: SessionService);
|
39
32
|
onViewBind(): void;
|
40
|
-
private _copyAxesToFilterValues;
|
41
33
|
explore(axes: AxesMap): void;
|
42
34
|
/**
|
43
35
|
*
|
44
36
|
* @param value
|
45
37
|
*/
|
46
38
|
filter(name: string, value: string | number, title: string): void;
|
47
|
-
/**
|
48
|
-
*
|
49
|
-
* @param axes
|
50
|
-
*/
|
51
|
-
private _setAxes;
|
52
39
|
/**
|
53
40
|
*
|
54
41
|
* @param pattern
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { OnInit } from '@angular/core';
|
2
2
|
import { GuideService } from '../../core/guide/guide.service';
|
3
|
-
import {
|
3
|
+
import { CubeView } from '../../core/models';
|
4
4
|
import { Popup } from '../../core/popup/popup.service';
|
5
5
|
import { RouterImpl } from '../../core/router';
|
6
6
|
import { SessionService } from '../../core/session.service';
|
@@ -15,14 +15,7 @@ export declare class CubeDocumentViewComponent extends CubeBase<Options> impleme
|
|
15
15
|
private _router;
|
16
16
|
private _guide;
|
17
17
|
viewPane: CubeViewComponent;
|
18
|
-
patterns: Pattern[];
|
19
|
-
pattern: Pattern;
|
20
|
-
cube: Cube;
|
21
18
|
view: CubeView;
|
22
|
-
anyAxes: boolean;
|
23
|
-
private _anyAxes;
|
24
|
-
get anyFilters(): boolean;
|
25
|
-
loading: boolean;
|
26
19
|
constructor(session: SessionService, viewRef: DocumentViewRef<Options>, service: CubeService, _popup: Popup, _router: RouterImpl, _guide: GuideService);
|
27
20
|
onViewBind(): void;
|
28
21
|
ngOnInit(): void;
|
@@ -34,7 +27,6 @@ export declare class CubeDocumentViewComponent extends CubeBase<Options> impleme
|
|
34
27
|
explore(evt: AxisClickEvent): void;
|
35
28
|
patternChange(pattern: Pattern): void;
|
36
29
|
clearFilter(): void;
|
37
|
-
private _navigate;
|
38
30
|
guide(evt?: Event): void;
|
39
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeDocumentViewComponent, never>;
|
40
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeDocumentViewComponent, "ng-component", never, {}, {}, never, never>;
|
@@ -42,5 +34,6 @@ export declare class CubeDocumentViewComponent extends CubeBase<Options> impleme
|
|
42
34
|
interface Options {
|
43
35
|
view: string;
|
44
36
|
aggregate?: string[];
|
37
|
+
filters?: string[];
|
45
38
|
}
|
46
39
|
export {};
|
@@ -6,9 +6,11 @@ export declare class DocumentViewRef<O> {
|
|
6
6
|
hidden: boolean;
|
7
7
|
get model(): DocumentModel;
|
8
8
|
_resize: BehaviorSubject<Dimentions>;
|
9
|
-
|
9
|
+
_full: BehaviorSubject<boolean>;
|
10
|
+
constructor(_model: DocumentModel, _view: View, dim: Dimentions, full: boolean);
|
10
11
|
get options(): O;
|
11
12
|
get name(): string;
|
12
13
|
get resize(): Observable<Dimentions>;
|
14
|
+
get full(): Observable<boolean>;
|
13
15
|
_destroy(): void;
|
14
16
|
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
import { SessionService } from '../../core/session.service';
|
2
|
+
import { TranslateService } from '../../core/translate.service';
|
3
|
+
import { PromptService } from '../../core/prompt.service';
|
4
|
+
import { AccountService } from '../../core/account.service';
|
5
|
+
import { DocumentViewComponent } from '../../core/base';
|
6
|
+
import { DocumentModel } from '../../core/models';
|
7
|
+
import { BizDocConfig } from '../../core/configuration';
|
8
|
+
import { ColumnModel, DayWorkingTimeModel, EventMarkerModel, Gantt, HolidayModel, LabelSettingsModel, SelectionSettingsModel, SplitterSettingsModel, TaskFieldsModel, TimelineSettingsModel } from '@syncfusion/ej2-angular-gantt';
|
9
|
+
import { ElementRef } from '@angular/core';
|
10
|
+
import { RouterImpl } from '../../core/router';
|
11
|
+
import { DocumentViewRef } from '../document-view-ref';
|
12
|
+
import * as i0 from "@angular/core";
|
13
|
+
export declare class TimelineViewComponent implements DocumentViewComponent {
|
14
|
+
private _ps;
|
15
|
+
private _users;
|
16
|
+
private _session;
|
17
|
+
private _translate;
|
18
|
+
private _router;
|
19
|
+
private _element;
|
20
|
+
data: Task[];
|
21
|
+
readonly dir: import("@angular/cdk/bidi").Direction;
|
22
|
+
readonly locale: string;
|
23
|
+
item: DocumentModel<any>;
|
24
|
+
gantt: Gantt;
|
25
|
+
dateFormat: string;
|
26
|
+
holidays: HolidayModel[];
|
27
|
+
width: number;
|
28
|
+
readonly selectionSettings: SelectionSettingsModel;
|
29
|
+
/** timeline-view ctor */
|
30
|
+
constructor(_ps: PromptService, viewRef: DocumentViewRef<Options>, config: BizDocConfig, _users: AccountService, _session: SessionService, _translate: TranslateService, _router: RouterImpl, _element: ElementRef);
|
31
|
+
onBind(model: DocumentModel<any>): void;
|
32
|
+
private _draw;
|
33
|
+
private _prepare;
|
34
|
+
rowSelecting(r: any): void;
|
35
|
+
_compare(task: Task): void;
|
36
|
+
readonly taskFields: TaskFieldsModel;
|
37
|
+
columns: ColumnModel[];
|
38
|
+
readonly tooltipSettings: {
|
39
|
+
showTooltip: boolean;
|
40
|
+
};
|
41
|
+
readonly timelineSettings: TimelineSettingsModel;
|
42
|
+
readonly eventMarkers: EventMarkerModel[];
|
43
|
+
labelSettings: LabelSettingsModel;
|
44
|
+
splitterSettings: SplitterSettingsModel;
|
45
|
+
dayWorkingTime: DayWorkingTimeModel[];
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimelineViewComponent, never>;
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimelineViewComponent, "bizdoc-timeline", never, {}, {}, never, never>;
|
48
|
+
}
|
49
|
+
interface Task {
|
50
|
+
id: number;
|
51
|
+
type: string;
|
52
|
+
nodeId?: string;
|
53
|
+
name?: string;
|
54
|
+
title?: string;
|
55
|
+
time: Date;
|
56
|
+
ending?: Date;
|
57
|
+
duration?: number;
|
58
|
+
subtasks?: Task[];
|
59
|
+
dependencies?: string;
|
60
|
+
dependency?: string;
|
61
|
+
}
|
62
|
+
interface Options {
|
63
|
+
}
|
64
|
+
export {};
|
@@ -1,8 +1,10 @@
|
|
1
1
|
import { AfterViewInit, Injector, OnDestroy, OnInit, ViewContainerRef } from "@angular/core";
|
2
2
|
import { BizDocComponentFactoryResolver } from "../core/component-factory-resolver";
|
3
3
|
import { DocumentModel, View } from "../core/models";
|
4
|
+
import { PaneRef } from "../core/slots/pane-ref";
|
4
5
|
import * as i0 from "@angular/core";
|
5
6
|
export declare class ViewItemComponent implements OnInit, AfterViewInit, OnDestroy {
|
7
|
+
private _pane;
|
6
8
|
private _vc;
|
7
9
|
private _injector;
|
8
10
|
private _cf;
|
@@ -13,12 +15,12 @@ export declare class ViewItemComponent implements OnInit, AfterViewInit, OnDestr
|
|
13
15
|
private _instance;
|
14
16
|
private readonly _resizing;
|
15
17
|
private readonly _destroy;
|
16
|
-
constructor(_vc: ViewContainerRef, _injector: Injector, _cf: BizDocComponentFactoryResolver);
|
18
|
+
constructor(_pane: PaneRef<any>, _vc: ViewContainerRef, _injector: Injector, _cf: BizDocComponentFactoryResolver);
|
17
19
|
ngOnInit(): void;
|
18
20
|
ngAfterViewInit(): void;
|
19
21
|
private _dim;
|
20
22
|
resize(): void;
|
21
23
|
ngOnDestroy(): void;
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ViewItemComponent,
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ViewItemComponent, [{ optional: true; }, null, null, null]>;
|
23
25
|
static ɵcmp: i0.ɵɵComponentDeclaration<ViewItemComponent, "bizdoc-document-view-item", never, { "model": "model"; "view": "view"; }, {}, never, never>;
|
24
26
|
}
|
@@ -1,16 +1,14 @@
|
|
1
|
-
import {
|
1
|
+
import { ChangeDetectorRef } from "@angular/core";
|
2
2
|
import { OnChanges, SimpleChanges } from "@angular/core";
|
3
|
-
import { BizDocComponentFactoryResolver } from "../core/component-factory-resolver";
|
4
3
|
import { DocumentModel, View } from "../core/models";
|
5
4
|
import { SessionService } from "../core/session.service";
|
6
5
|
import * as i0 from "@angular/core";
|
7
6
|
export declare class DocumentViewsComponent implements OnChanges {
|
8
|
-
private
|
9
|
-
private vc;
|
7
|
+
private _cd;
|
10
8
|
private _session;
|
11
9
|
model: DocumentModel;
|
12
10
|
views: View[];
|
13
|
-
constructor(
|
11
|
+
constructor(_cd: ChangeDetectorRef, _session: SessionService);
|
14
12
|
ngOnChanges(_: SimpleChanges): void;
|
15
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentViewsComponent, never>;
|
16
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentViewsComponent, "bizdoc-document-views", never, { "model": "model"; }, {}, never, never>;
|