@bizdoc/core 1.14.6 → 1.14.8

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.
@@ -838,10 +838,10 @@ var OpenPolicy;
838
838
  OpenPolicy[OpenPolicy["Defer"] = 4] = "Defer";
839
839
  OpenPolicy[OpenPolicy["Pinnable"] = 8] = "Pinnable";
840
840
  OpenPolicy[OpenPolicy["Stretch"] = 16] = "Stretch";
841
- OpenPolicy[OpenPolicy["Tab"] = 32] = "Tab";
842
- OpenPolicy[OpenPolicy["Dialog"] = 96] = "Dialog";
843
- OpenPolicy[OpenPolicy["Expandable"] = 128] = "Expandable";
844
- OpenPolicy[OpenPolicy["Toggle"] = 256] = "Toggle";
841
+ OpenPolicy[OpenPolicy["Expandable"] = 32] = "Expandable";
842
+ OpenPolicy[OpenPolicy["Toggle"] = 64] = "Toggle";
843
+ OpenPolicy[OpenPolicy["Tab"] = 128] = "Tab";
844
+ OpenPolicy[OpenPolicy["Dialog"] = 384] = "Dialog";
845
845
  OpenPolicy[OpenPolicy["Dismissable"] = 512] = "Dismissable";
846
846
  })(OpenPolicy || (OpenPolicy = {}));
847
847
  const DEFAULT_POLICY = OpenPolicy.Pane;
@@ -6246,6 +6246,7 @@ class QueryParamNavigation extends NavigationPaneBase {
6246
6246
  this.queryParams = queryParams;
6247
6247
  }
6248
6248
  }
6249
+ /** */
6249
6250
  class PaneRef {
6250
6251
  constructor(component, injector, _options) {
6251
6252
  this.component = component;
@@ -6311,8 +6312,8 @@ class PaneRef {
6311
6312
  return this.parent === pane; //||
6312
6313
  // (this.path && pane.path && this.path.startsWith(pane.path));
6313
6314
  }
6314
- refresh() {
6315
- this._comm$.next('refresh');
6315
+ recycle() {
6316
+ this._comm$.next('recycle');
6316
6317
  }
6317
6318
  focus() {
6318
6319
  this._comm$.next('focus');
@@ -7068,6 +7069,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImpor
7068
7069
 
7069
7070
  class RouterImpl {
7070
7071
  }
7072
+ /** desktop */
7071
7073
  class PaneRouter extends RouterImpl {
7072
7074
  constructor(_router) {
7073
7075
  super();
@@ -7082,6 +7084,7 @@ PaneRouter.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version:
7082
7084
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: PaneRouter, decorators: [{
7083
7085
  type: Injectable
7084
7086
  }], ctorParameters: function () { return [{ type: PanesRouter }]; } });
7087
+ /** mobile */
7085
7088
  class NgRouter extends RouterImpl {
7086
7089
  constructor(_router) {
7087
7090
  super();
@@ -8442,21 +8445,30 @@ class GuideComponent {
8442
8445
  this._overlay = _overlay;
8443
8446
  this._ngRouter = _ngRouter;
8444
8447
  this._overlayRef = _overlayRef;
8445
- this.index = 0;
8448
+ this.index = -1;
8446
8449
  this.count = this._data.steps.length;
8447
8450
  this.working = true;
8448
8451
  }
8449
8452
  ngOnInit() {
8450
- this._move(0);
8453
+ if (this._data.name) {
8454
+ const lastindex = localStorage.getItem(this._data.name + '_guide_step');
8455
+ if (lastindex) {
8456
+ this.index = Number.parseInt(lastindex);
8457
+ }
8458
+ }
8459
+ this._moveBy(1);
8451
8460
  }
8452
8461
  /**
8453
8462
  *
8454
- * @param i
8463
+ * @param steps
8455
8464
  */
8456
- _move(i) {
8457
- const index = this.index + i;
8458
- if (index < 0 || index == this.count)
8465
+ _moveBy(steps) {
8466
+ const index = this.index + steps;
8467
+ if (index < 0 || index > this.count - 1) {
8468
+ localStorage.removeItem(this._data.name + '_guide_step');
8459
8469
  return;
8470
+ }
8471
+ this._data.name && localStorage.setItem(this._data.name + '_guide_step', this.index.toString());
8460
8472
  this.working = true;
8461
8473
  const step = this._data.steps[index];
8462
8474
  const { selector, position, navigate, simulate } = step, promisses = [];
@@ -8467,8 +8479,11 @@ class GuideComponent {
8467
8479
  let positionStrategy;
8468
8480
  if (selector) {
8469
8481
  const element = document.querySelector(selector);
8470
- if (!element)
8471
- throw `Guide ${this._data.name} step ${this.index} selector '${selector}' not found.`;
8482
+ if (!element) {
8483
+ console.warn(`Guide ${this._data.name} selector '${selector}' not found. skipping.`);
8484
+ this._moveBy(steps);
8485
+ return;
8486
+ }
8472
8487
  let positions;
8473
8488
  switch (position) {
8474
8489
  case 'Above':
@@ -8522,10 +8537,10 @@ class GuideComponent {
8522
8537
  if (!this.working)
8523
8538
  switch (evt.keyCode) {
8524
8539
  case LEFT_ARROW:
8525
- this._move(this._session.direction === 'ltr' ? -1 : 1);
8540
+ this._moveBy(this._session.direction === 'ltr' ? -1 : 1);
8526
8541
  break;
8527
8542
  case RIGHT_ARROW:
8528
- this._move(this._session.direction === 'ltr' ? 1 : -1);
8543
+ this._moveBy(this._session.direction === 'ltr' ? 1 : -1);
8529
8544
  break;
8530
8545
  case ESCAPE:
8531
8546
  this.close();
@@ -8534,17 +8549,17 @@ class GuideComponent {
8534
8549
  }
8535
8550
  }
8536
8551
  next() {
8537
- this._move(1);
8552
+ this._moveBy(1);
8538
8553
  }
8539
8554
  prev() {
8540
- this._move(-1);
8555
+ this._moveBy(-1);
8541
8556
  }
8542
8557
  close() {
8543
8558
  this._overlayRef.detach();
8544
8559
  }
8545
8560
  }
8546
8561
  GuideComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: GuideComponent, deps: [{ token: TOUR_TOKEN }, { token: SessionService }, { token: i1$4.Overlay }, { token: i1$6.Router }, { token: i1$4.OverlayRef }], target: i0.ɵɵFactoryTarget.Component });
8547
- GuideComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.1", type: GuideComponent, selector: "ng-component", host: { listeners: { "window:keydown": "keydown($event)" } }, ngImport: i0, template: "<div class=\"container\" [style.display]=\"step ? '': 'none'\" cdkTrapFocus>\r\n <div fxLayout=\"column\" class=\"content\">\r\n <div fxLayout=\"row\">\r\n <h2 *ngIf=\"step?.title\" class=\"mat-h2\">{{step?.title}}</h2>\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"close()\" *ngIf=\"index < count - 1\"><mat-icon>close</mat-icon></button>\r\n </div>\r\n <p class=\"mat-body\" [innerHTML]=\"step?.content | sanitizeHtml\">\r\n </p>\r\n <div fxLayout=\"row\">\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"prev()\" [disabled]=\"index === 0 || working\"><mat-icon class=\"mat-icon-rtl-mirror\">keyboard_arrow_left</mat-icon></button>\r\n <button mat-icon-button (click)=\"next()\" [disabled]=\"index === count - 1 || working\" cdkFocusInitial><mat-icon class=\"mat-icon-rtl-mirror\">keyboard_arrow_right</mat-icon></button>\r\n <button mat-button (click)=\"close()\" *ngIf=\"index === count - 1\">{{'GuideFinish'|translate}}</button>\r\n </div>\r\n </div>\r\n <div class=\"tooltip-container\">\r\n <div class=\"tooltip\"></div>\r\n </div>\r\n</div>\r\n", components: [{ type: i7$1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i8.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], directives: [{ type: i23.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i10.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "sanitizeHtml": SanitizeHtmlPipe, "translate": TranslatePipe }, animations: [trigger('body', [
8562
+ GuideComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.1", type: GuideComponent, selector: "ng-component", host: { listeners: { "window:keydown": "keydown($event)" } }, ngImport: i0, template: "<div class=\"container\" [style.display]=\"step ? '': 'none'\" cdkTrapFocus>\r\n <div fxLayout=\"column\" class=\"content\">\r\n <div fxLayout=\"row\">\r\n <h2 *ngIf=\"step?.title\" class=\"mat-h2\">{{step?.title}}</h2>\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"close()\" *ngIf=\"index < count - 1\"><mat-icon>close</mat-icon></button>\r\n </div>\r\n <p class=\"mat-body\" [innerHTML]=\"step?.content | sanitizeHtml\">\r\n </p>\r\n <div fxLayout=\"row\">\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"prev()\" [disabled]=\"index < 1 || working\"><mat-icon class=\"mat-icon-rtl-mirror\">keyboard_arrow_left</mat-icon></button>\r\n <button mat-icon-button (click)=\"next()\" [disabled]=\"index >= count - 1 || working\" cdkFocusInitial><mat-icon class=\"mat-icon-rtl-mirror\">keyboard_arrow_right</mat-icon></button>\r\n <button mat-button (click)=\"close()\" *ngIf=\"index >= count - 1\">{{'GuideFinish'|translate}}</button>\r\n </div>\r\n </div>\r\n <div class=\"tooltip-container\">\r\n <div class=\"tooltip\"></div>\r\n </div>\r\n</div>\r\n", components: [{ type: i7$1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i8.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], directives: [{ type: i23.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i10.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "sanitizeHtml": SanitizeHtmlPipe, "translate": TranslatePipe }, animations: [trigger('body', [
8548
8563
  state('here', style({ width: '*', height: '*' })),
8549
8564
  transition('*<=>*', animate('250ms', style({})))
8550
8565
  ])] });
@@ -8553,7 +8568,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImpor
8553
8568
  args: [{ animations: [trigger('body', [
8554
8569
  state('here', style({ width: '*', height: '*' })),
8555
8570
  transition('*<=>*', animate('250ms', style({})))
8556
- ])], template: "<div class=\"container\" [style.display]=\"step ? '': 'none'\" cdkTrapFocus>\r\n <div fxLayout=\"column\" class=\"content\">\r\n <div fxLayout=\"row\">\r\n <h2 *ngIf=\"step?.title\" class=\"mat-h2\">{{step?.title}}</h2>\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"close()\" *ngIf=\"index < count - 1\"><mat-icon>close</mat-icon></button>\r\n </div>\r\n <p class=\"mat-body\" [innerHTML]=\"step?.content | sanitizeHtml\">\r\n </p>\r\n <div fxLayout=\"row\">\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"prev()\" [disabled]=\"index === 0 || working\"><mat-icon class=\"mat-icon-rtl-mirror\">keyboard_arrow_left</mat-icon></button>\r\n <button mat-icon-button (click)=\"next()\" [disabled]=\"index === count - 1 || working\" cdkFocusInitial><mat-icon class=\"mat-icon-rtl-mirror\">keyboard_arrow_right</mat-icon></button>\r\n <button mat-button (click)=\"close()\" *ngIf=\"index === count - 1\">{{'GuideFinish'|translate}}</button>\r\n </div>\r\n </div>\r\n <div class=\"tooltip-container\">\r\n <div class=\"tooltip\"></div>\r\n </div>\r\n</div>\r\n" }]
8571
+ ])], template: "<div class=\"container\" [style.display]=\"step ? '': 'none'\" cdkTrapFocus>\r\n <div fxLayout=\"column\" class=\"content\">\r\n <div fxLayout=\"row\">\r\n <h2 *ngIf=\"step?.title\" class=\"mat-h2\">{{step?.title}}</h2>\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"close()\" *ngIf=\"index < count - 1\"><mat-icon>close</mat-icon></button>\r\n </div>\r\n <p class=\"mat-body\" [innerHTML]=\"step?.content | sanitizeHtml\">\r\n </p>\r\n <div fxLayout=\"row\">\r\n <span class=\"divider\"></span>\r\n <button mat-icon-button (click)=\"prev()\" [disabled]=\"index < 1 || working\"><mat-icon class=\"mat-icon-rtl-mirror\">keyboard_arrow_left</mat-icon></button>\r\n <button mat-icon-button (click)=\"next()\" [disabled]=\"index >= count - 1 || working\" cdkFocusInitial><mat-icon class=\"mat-icon-rtl-mirror\">keyboard_arrow_right</mat-icon></button>\r\n <button mat-button (click)=\"close()\" *ngIf=\"index >= count - 1\">{{'GuideFinish'|translate}}</button>\r\n </div>\r\n </div>\r\n <div class=\"tooltip-container\">\r\n <div class=\"tooltip\"></div>\r\n </div>\r\n</div>\r\n" }]
8557
8572
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
8558
8573
  type: Inject,
8559
8574
  args: [TOUR_TOKEN]
@@ -9293,7 +9308,7 @@ class ComposePaneComponent {
9293
9308
  this.form.save().subscribe();
9294
9309
  }
9295
9310
  saved() {
9296
- this._pane.refresh();
9311
+ this._pane.recycle();
9297
9312
  }
9298
9313
  navComments() {
9299
9314
  this._navigate('comments').then(paneRef => {
@@ -19379,7 +19394,7 @@ class SlotsComponent {
19379
19394
  else
19380
19395
  this.expandPane();
19381
19396
  break;
19382
- case 'refresh': {
19397
+ case 'recycle': {
19383
19398
  const state = this._constructHistoryState();
19384
19399
  history.replaceState(state, '');
19385
19400
  break;
@@ -20109,11 +20124,12 @@ const EXCEL_ICON = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
20109
20124
  class BrokenPage {
20110
20125
  }
20111
20126
  BrokenPage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: BrokenPage, deps: [], target: i0.ɵɵFactoryTarget.Component });
20112
- BrokenPage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.1", type: BrokenPage, selector: "ng-component", ngImport: i0, template: '', isInline: true });
20127
+ BrokenPage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.1", type: BrokenPage, selector: "ng-component", host: { classAttribute: "mat-app-background" }, ngImport: i0, template: '', isInline: true });
20113
20128
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: BrokenPage, decorators: [{
20114
20129
  type: Component,
20115
20130
  args: [{
20116
- template: ''
20131
+ template: '',
20132
+ host: { class: 'mat-app-background' }
20117
20133
  }]
20118
20134
  }] });
20119
20135
  class BizDocApp {
@@ -27373,6 +27389,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImpor
27373
27389
  args: ['nameInput', { static: true, read: ElementRef }]
27374
27390
  }] } });
27375
27391
 
27392
+ /** */
27393
+ class HelpTipComponent {
27394
+ constructor(_guide) {
27395
+ this._guide = _guide;
27396
+ }
27397
+ ngOnInit() {
27398
+ this.showTip = localStorage.getItem(this.name + '-tip') !== '1';
27399
+ const guide = this._guide.guides.find(g => g.name === this.name);
27400
+ this._message = guide.title;
27401
+ }
27402
+ open(evt) {
27403
+ this._guide.start(this.name);
27404
+ }
27405
+ dismiss() {
27406
+ localStorage.setItem(this.name + 'tip', '1');
27407
+ this.showTip = false;
27408
+ }
27409
+ }
27410
+ HelpTipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: HelpTipComponent, deps: [{ token: GuideService }], target: i0.ɵɵFactoryTarget.Component });
27411
+ HelpTipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.1", type: HelpTipComponent, selector: "bizdoc-help-tip", inputs: { name: "name" }, ngImport: i0, template: `
27412
+ <p fxLayout="row" class="form-help-tip" *ngIf="showTip">
27413
+ <mat-icon>help_outline</mat-icon> &nbsp;<span (click)="open($event)" [innerHTML]="'HelpTip'|translate: _message" class="mat-body-1"></span>
27414
+ <button mat-icon-button (click)="dismiss()" [bizdocTooltip]="'Dismiss'|translate"><mat-icon inline>close</mat-icon></button>
27415
+ </p>
27416
+ `, isInline: true, styles: [".form-help-tip{align-items:center;border:1px rgb(0 0 0 / 38%) solid;margin:10px;border-radius:3px;padding:0 8px}\n"], components: [{ type: i8.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: i7$1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: i10.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i23.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: TooltipDirective, selector: "[bizdocTooltip]", inputs: ["bizdocTooltip", "bizdocTooltipTemplate", "bizdocTooltipContext", "bizdocTooltipPosition", "bizdocTooltipDuration", "bizdocTooltipDisabled"] }], pipes: { "translate": TranslatePipe } });
27417
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: HelpTipComponent, decorators: [{
27418
+ type: Component,
27419
+ args: [{
27420
+ template: `
27421
+ <p fxLayout="row" class="form-help-tip" *ngIf="showTip">
27422
+ <mat-icon>help_outline</mat-icon> &nbsp;<span (click)="open($event)" [innerHTML]="'HelpTip'|translate: _message" class="mat-body-1"></span>
27423
+ <button mat-icon-button (click)="dismiss()" [bizdocTooltip]="'Dismiss'|translate"><mat-icon inline>close</mat-icon></button>
27424
+ </p>
27425
+ `,
27426
+ styles: [`
27427
+ .form-help-tip {
27428
+ align-items: center;
27429
+ border: 1px rgb(0 0 0 / 38%) solid;
27430
+ margin: 10px;
27431
+ border-radius: 3px 3px;
27432
+ padding: 0 8px;
27433
+ }
27434
+ `],
27435
+ selector: 'bizdoc-help-tip'
27436
+ }]
27437
+ }], ctorParameters: function () { return [{ type: GuideService }]; }, propDecorators: { name: [{
27438
+ type: Input
27439
+ }] } });
27440
+
27376
27441
  /** configuration componenets */
27377
27442
  const CORE_COMPONENTS = [CubeCompareWidget, CubeParallelViewComponent, CubeExploreViewComponent, CubeChartViewComponent, CubeDocumentSumComponent, CubeDocumentMatrixComponent, CubeDocumentViewComponent, CubePivotViewComponent, TimelineViewComponent,
27378
27443
  SubstitutionComponent, MoveToActionComponent, AssignActionComponent, ReturnActionComponent, ExploreDocumentComponent,
@@ -27409,7 +27474,7 @@ class SharedModule {
27409
27474
  }
27410
27475
  }
27411
27476
  SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
27412
- SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: SharedModule, declarations: [CubeCompareWidget, CubeUsageComponent, CubeDocumentsComponent, FileInput, DateFormatPipe, CalendarPipe, DifferencePipe, DurationPipe, TimeAgoPipe,
27477
+ SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: SharedModule, declarations: [HelpTipComponent, CubeCompareWidget, CubeUsageComponent, CubeDocumentsComponent, FileInput, DateFormatPipe, CalendarPipe, DifferencePipe, DurationPipe, TimeAgoPipe,
27413
27478
  CheckboxComponent, CubeParallelComponent, CubeSumComponent, CubeParallelViewComponent, CubeChartViewComponent, CubeExploreViewComponent, CubeDocumentSumComponent, ExploreItemImplComponent, DocumentInfoComponent, DocumentViewsComponent, ViewItemComponent, CubeDocumentMatrixComponent, CubeDocumentViewComponent, CubePivotViewComponent, ActionPicker, HtmlSimplePipe, QuickCommentComponent,
27414
27479
  DurationFormatPipe, CombinationPicker, CombinationPickerBody, CombinationPool, TimelineViewComponent,
27415
27480
  MatIconAnimate, DateRangePipe, AgoPipe, ColorPicker, StateDirective, BrokenPage,
@@ -27551,7 +27616,7 @@ SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
27551
27616
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: SharedModule, decorators: [{
27552
27617
  type: NgModule,
27553
27618
  args: [{
27554
- declarations: [CubeCompareWidget, CubeUsageComponent, CubeDocumentsComponent, FileInput, DateFormatPipe, CalendarPipe, DifferencePipe, DurationPipe, TimeAgoPipe,
27619
+ declarations: [HelpTipComponent, CubeCompareWidget, CubeUsageComponent, CubeDocumentsComponent, FileInput, DateFormatPipe, CalendarPipe, DifferencePipe, DurationPipe, TimeAgoPipe,
27555
27620
  CheckboxComponent, CubeParallelComponent, CubeSumComponent, CubeParallelViewComponent, CubeChartViewComponent, CubeExploreViewComponent, CubeDocumentSumComponent, ExploreItemImplComponent, DocumentInfoComponent, DocumentViewsComponent, ViewItemComponent, CubeDocumentMatrixComponent, CubeDocumentViewComponent, CubePivotViewComponent, ActionPicker, HtmlSimplePipe, QuickCommentComponent,
27556
27621
  DurationFormatPipe, CombinationPicker, CombinationPickerBody, CombinationPool, TimelineViewComponent,
27557
27622
  MatIconAnimate, DateRangePipe, AgoPipe, ColorPicker, StateDirective, BrokenPage,