@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;
@@ -6270,6 +6270,7 @@ class QueryParamNavigation extends NavigationPaneBase {
6270
6270
  this.queryParams = queryParams;
6271
6271
  }
6272
6272
  }
6273
+ /** */
6273
6274
  class PaneRef {
6274
6275
  constructor(component, injector, _options) {
6275
6276
  this.component = component;
@@ -6335,8 +6336,8 @@ class PaneRef {
6335
6336
  return this.parent === pane; //||
6336
6337
  // (this.path && pane.path && this.path.startsWith(pane.path));
6337
6338
  }
6338
- refresh() {
6339
- this._comm$.next('refresh');
6339
+ recycle() {
6340
+ this._comm$.next('recycle');
6340
6341
  }
6341
6342
  focus() {
6342
6343
  this._comm$.next('focus');
@@ -7096,6 +7097,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImpor
7096
7097
 
7097
7098
  class RouterImpl {
7098
7099
  }
7100
+ /** desktop */
7099
7101
  class PaneRouter extends RouterImpl {
7100
7102
  constructor(_router) {
7101
7103
  super();
@@ -7110,6 +7112,7 @@ PaneRouter.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version:
7110
7112
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: PaneRouter, decorators: [{
7111
7113
  type: Injectable
7112
7114
  }], ctorParameters: function () { return [{ type: PanesRouter }]; } });
7115
+ /** mobile */
7113
7116
  class NgRouter extends RouterImpl {
7114
7117
  constructor(_router) {
7115
7118
  super();
@@ -8486,21 +8489,30 @@ class GuideComponent {
8486
8489
  this._overlay = _overlay;
8487
8490
  this._ngRouter = _ngRouter;
8488
8491
  this._overlayRef = _overlayRef;
8489
- this.index = 0;
8492
+ this.index = -1;
8490
8493
  this.count = this._data.steps.length;
8491
8494
  this.working = true;
8492
8495
  }
8493
8496
  ngOnInit() {
8494
- this._move(0);
8497
+ if (this._data.name) {
8498
+ const lastindex = localStorage.getItem(this._data.name + '_guide_step');
8499
+ if (lastindex) {
8500
+ this.index = Number.parseInt(lastindex);
8501
+ }
8502
+ }
8503
+ this._moveBy(1);
8495
8504
  }
8496
8505
  /**
8497
8506
  *
8498
- * @param i
8507
+ * @param steps
8499
8508
  */
8500
- _move(i) {
8501
- const index = this.index + i;
8502
- if (index < 0 || index == this.count)
8509
+ _moveBy(steps) {
8510
+ const index = this.index + steps;
8511
+ if (index < 0 || index > this.count - 1) {
8512
+ localStorage.removeItem(this._data.name + '_guide_step');
8503
8513
  return;
8514
+ }
8515
+ this._data.name && localStorage.setItem(this._data.name + '_guide_step', this.index.toString());
8504
8516
  this.working = true;
8505
8517
  const step = this._data.steps[index];
8506
8518
  const { selector, position, navigate, simulate } = step, promisses = [];
@@ -8511,8 +8523,11 @@ class GuideComponent {
8511
8523
  let positionStrategy;
8512
8524
  if (selector) {
8513
8525
  const element = document.querySelector(selector);
8514
- if (!element)
8515
- throw `Guide ${this._data.name} step ${this.index} selector '${selector}' not found.`;
8526
+ if (!element) {
8527
+ console.warn(`Guide ${this._data.name} selector '${selector}' not found. skipping.`);
8528
+ this._moveBy(steps);
8529
+ return;
8530
+ }
8516
8531
  let positions;
8517
8532
  switch (position) {
8518
8533
  case 'Above':
@@ -8566,10 +8581,10 @@ class GuideComponent {
8566
8581
  if (!this.working)
8567
8582
  switch (evt.keyCode) {
8568
8583
  case LEFT_ARROW:
8569
- this._move(this._session.direction === 'ltr' ? -1 : 1);
8584
+ this._moveBy(this._session.direction === 'ltr' ? -1 : 1);
8570
8585
  break;
8571
8586
  case RIGHT_ARROW:
8572
- this._move(this._session.direction === 'ltr' ? 1 : -1);
8587
+ this._moveBy(this._session.direction === 'ltr' ? 1 : -1);
8573
8588
  break;
8574
8589
  case ESCAPE:
8575
8590
  this.close();
@@ -8578,17 +8593,17 @@ class GuideComponent {
8578
8593
  }
8579
8594
  }
8580
8595
  next() {
8581
- this._move(1);
8596
+ this._moveBy(1);
8582
8597
  }
8583
8598
  prev() {
8584
- this._move(-1);
8599
+ this._moveBy(-1);
8585
8600
  }
8586
8601
  close() {
8587
8602
  this._overlayRef.detach();
8588
8603
  }
8589
8604
  }
8590
8605
  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 });
8591
- 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', [
8606
+ 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', [
8592
8607
  state('here', style({ width: '*', height: '*' })),
8593
8608
  transition('*<=>*', animate('250ms', style({})))
8594
8609
  ])] });
@@ -8597,7 +8612,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImpor
8597
8612
  args: [{ animations: [trigger('body', [
8598
8613
  state('here', style({ width: '*', height: '*' })),
8599
8614
  transition('*<=>*', animate('250ms', style({})))
8600
- ])], 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" }]
8615
+ ])], 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" }]
8601
8616
  }], ctorParameters: function () {
8602
8617
  return [{ type: undefined, decorators: [{
8603
8618
  type: Inject,
@@ -9341,7 +9356,7 @@ class ComposePaneComponent {
9341
9356
  this.form.save().subscribe();
9342
9357
  }
9343
9358
  saved() {
9344
- this._pane.refresh();
9359
+ this._pane.recycle();
9345
9360
  }
9346
9361
  navComments() {
9347
9362
  this._navigate('comments').then(paneRef => {
@@ -19500,7 +19515,7 @@ class SlotsComponent {
19500
19515
  else
19501
19516
  this.expandPane();
19502
19517
  break;
19503
- case 'refresh': {
19518
+ case 'recycle': {
19504
19519
  const state = this._constructHistoryState();
19505
19520
  history.replaceState(state, '');
19506
19521
  break;
@@ -20249,11 +20264,12 @@ const EXCEL_ICON = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
20249
20264
  class BrokenPage {
20250
20265
  }
20251
20266
  BrokenPage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: BrokenPage, deps: [], target: i0.ɵɵFactoryTarget.Component });
20252
- BrokenPage.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.1", type: BrokenPage, selector: "ng-component", ngImport: i0, template: '', isInline: true });
20267
+ 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 });
20253
20268
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: BrokenPage, decorators: [{
20254
20269
  type: Component,
20255
20270
  args: [{
20256
- template: ''
20271
+ template: '',
20272
+ host: { class: 'mat-app-background' }
20257
20273
  }]
20258
20274
  }] });
20259
20275
  class BizDocApp {
@@ -27567,6 +27583,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImpor
27567
27583
  args: ['nameInput', { static: true, read: ElementRef }]
27568
27584
  }] } });
27569
27585
 
27586
+ /** */
27587
+ class HelpTipComponent {
27588
+ constructor(_guide) {
27589
+ this._guide = _guide;
27590
+ }
27591
+ ngOnInit() {
27592
+ this.showTip = localStorage.getItem(this.name + '-tip') !== '1';
27593
+ const guide = this._guide.guides.find(g => g.name === this.name);
27594
+ this._message = guide.title;
27595
+ }
27596
+ open(evt) {
27597
+ this._guide.start(this.name);
27598
+ }
27599
+ dismiss() {
27600
+ localStorage.setItem(this.name + 'tip', '1');
27601
+ this.showTip = false;
27602
+ }
27603
+ }
27604
+ HelpTipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: HelpTipComponent, deps: [{ token: GuideService }], target: i0.ɵɵFactoryTarget.Component });
27605
+ HelpTipComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.1", type: HelpTipComponent, selector: "bizdoc-help-tip", inputs: { name: "name" }, ngImport: i0, template: `
27606
+ <p fxLayout="row" class="form-help-tip" *ngIf="showTip">
27607
+ <mat-icon>help_outline</mat-icon> &nbsp;<span (click)="open($event)" [innerHTML]="'HelpTip'|translate: _message" class="mat-body-1"></span>
27608
+ <button mat-icon-button (click)="dismiss()" [bizdocTooltip]="'Dismiss'|translate"><mat-icon inline>close</mat-icon></button>
27609
+ </p>
27610
+ `, 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 } });
27611
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: HelpTipComponent, decorators: [{
27612
+ type: Component,
27613
+ args: [{
27614
+ template: `
27615
+ <p fxLayout="row" class="form-help-tip" *ngIf="showTip">
27616
+ <mat-icon>help_outline</mat-icon> &nbsp;<span (click)="open($event)" [innerHTML]="'HelpTip'|translate: _message" class="mat-body-1"></span>
27617
+ <button mat-icon-button (click)="dismiss()" [bizdocTooltip]="'Dismiss'|translate"><mat-icon inline>close</mat-icon></button>
27618
+ </p>
27619
+ `,
27620
+ styles: [`
27621
+ .form-help-tip {
27622
+ align-items: center;
27623
+ border: 1px rgb(0 0 0 / 38%) solid;
27624
+ margin: 10px;
27625
+ border-radius: 3px 3px;
27626
+ padding: 0 8px;
27627
+ }
27628
+ `],
27629
+ selector: 'bizdoc-help-tip'
27630
+ }]
27631
+ }], ctorParameters: function () { return [{ type: GuideService }]; }, propDecorators: { name: [{
27632
+ type: Input
27633
+ }] } });
27634
+
27570
27635
  /** configuration componenets */
27571
27636
  const CORE_COMPONENTS = [CubeCompareWidget, CubeParallelViewComponent, CubeExploreViewComponent, CubeChartViewComponent, CubeDocumentSumComponent, CubeDocumentMatrixComponent, CubeDocumentViewComponent, CubePivotViewComponent, TimelineViewComponent,
27572
27637
  SubstitutionComponent, MoveToActionComponent, AssignActionComponent, ReturnActionComponent, ExploreDocumentComponent,
@@ -27603,7 +27668,7 @@ class SharedModule {
27603
27668
  }
27604
27669
  }
27605
27670
  SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
27606
- 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,
27671
+ 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,
27607
27672
  CheckboxComponent, CubeParallelComponent, CubeSumComponent, CubeParallelViewComponent, CubeChartViewComponent, CubeExploreViewComponent, CubeDocumentSumComponent, ExploreItemImplComponent, DocumentInfoComponent, DocumentViewsComponent, ViewItemComponent, CubeDocumentMatrixComponent, CubeDocumentViewComponent, CubePivotViewComponent, ActionPicker, HtmlSimplePipe, QuickCommentComponent,
27608
27673
  DurationFormatPipe, CombinationPicker, CombinationPickerBody, CombinationPool, TimelineViewComponent,
27609
27674
  MatIconAnimate, DateRangePipe, AgoPipe, ColorPicker, StateDirective, BrokenPage,
@@ -27745,7 +27810,7 @@ SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
27745
27810
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.1", ngImport: i0, type: SharedModule, decorators: [{
27746
27811
  type: NgModule,
27747
27812
  args: [{
27748
- declarations: [CubeCompareWidget, CubeUsageComponent, CubeDocumentsComponent, FileInput, DateFormatPipe, CalendarPipe, DifferencePipe, DurationPipe, TimeAgoPipe,
27813
+ declarations: [HelpTipComponent, CubeCompareWidget, CubeUsageComponent, CubeDocumentsComponent, FileInput, DateFormatPipe, CalendarPipe, DifferencePipe, DurationPipe, TimeAgoPipe,
27749
27814
  CheckboxComponent, CubeParallelComponent, CubeSumComponent, CubeParallelViewComponent, CubeChartViewComponent, CubeExploreViewComponent, CubeDocumentSumComponent, ExploreItemImplComponent, DocumentInfoComponent, DocumentViewsComponent, ViewItemComponent, CubeDocumentMatrixComponent, CubeDocumentViewComponent, CubePivotViewComponent, ActionPicker, HtmlSimplePipe, QuickCommentComponent,
27750
27815
  DurationFormatPipe, CombinationPicker, CombinationPickerBody, CombinationPool, TimelineViewComponent,
27751
27816
  MatIconAnimate, DateRangePipe, AgoPipe, ColorPicker, StateDirective, BrokenPage,