@bizdoc/core 1.16.24 → 1.16.25

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.
@@ -164,7 +164,6 @@ export interface CubeAxisModel {
164
164
  name: string;
165
165
  title: string;
166
166
  dataType: string;
167
- hidden?: boolean;
168
167
  combination?: boolean;
169
168
  indexable?: boolean;
170
169
  sensitive?: boolean;
@@ -4,6 +4,7 @@ import { ElementRef, Injector, OnInit } from "@angular/core";
4
4
  import { MatMenuTrigger } from "@angular/material/menu";
5
5
  import { UtilityComponent } from "../../core/base";
6
6
  import { PromptService } from "../../core/prompt.service";
7
+ import { SessionService } from "../../core/session.service";
7
8
  import { PanesRouter } from "../../core/slots/router.service";
8
9
  import { TranslateService } from "../../core/translate.service";
9
10
  import { UtilityRef } from "../utility-ref";
@@ -14,6 +15,7 @@ export declare class ConfigurationDesignerComponent implements UtilityComponent,
14
15
  private _panes;
15
16
  private _translate;
16
17
  private _ps;
18
+ private _session;
17
19
  private _element;
18
20
  private _injector;
19
21
  private _ref;
@@ -23,13 +25,13 @@ export declare class ConfigurationDesignerComponent implements UtilityComponent,
23
25
  sections: Section[];
24
26
  model: DesignerModel;
25
27
  private _sections;
26
- constructor(_panes: PanesRouter, _translate: TranslateService, _ps: PromptService, _element: ElementRef<HTMLDivElement>, _injector: Injector, _ref: UtilityRef<boolean, DesignerModel, DesignerModel>);
28
+ constructor(_panes: PanesRouter, _translate: TranslateService, _ps: PromptService, _session: SessionService, _element: ElementRef<HTMLDivElement>, _injector: Injector, _ref: UtilityRef<boolean, DesignerModel, DesignerModel>);
27
29
  ngOnInit(): void;
28
30
  drop(event: CdkDragDrop<ElementModel[]>): void;
29
- private _resettyping;
31
+ private _typingTimer;
30
32
  private _searchBy;
31
33
  /**
32
- * Ctrl-s save
34
+ * Ctrl-s save, search
33
35
  * @param event
34
36
  */
35
37
  handleKeyboardEvent(event: KeyboardEvent): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "1.16.24",
3
+ "version": "1.16.25",
4
4
  "author": "Moding Ltd.",
5
5
  "homepage": "https://github.com/moding-il/bizdoc.core",
6
6
  "license": "https://github.com/moding-il/bizdoc.core/blob/master/License.md",