@ecodev/natural 62.1.2 → 62.1.3

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.
@@ -59,15 +59,27 @@ export declare class NaturalPanelsService {
59
59
  */
60
60
  private isVertical;
61
61
  constructor();
62
+ /**
63
+ * Notify the service to start listening to route changes to open panels
64
+ *
65
+ * @internal
66
+ */
62
67
  start(route: ActivatedRoute): void;
63
68
  /**
64
69
  * Uses given configuration to add in the end of current url
65
70
  * Neutralizes router error handling
66
71
  */
67
72
  private appendConfigToCurrentUrl;
73
+ /**
74
+ * Notify the service that all panels were closed
75
+ *
76
+ * @internal
77
+ */
68
78
  stop(): void;
69
79
  /**
70
80
  * Go to panel matching given component. Causes an url change.
81
+ *
82
+ * @internal
71
83
  */
72
84
  goToPanelByComponent(component: NaturalAbstractPanel): void;
73
85
  /**
@@ -97,6 +109,10 @@ export declare class NaturalPanelsService {
97
109
  * Return panel position (index) by searching matching component
98
110
  */
99
111
  private getPanelIndex;
112
+ /**
113
+ * Whether the given panel is currently the top, visible, panel. If there are no panels opened at all, then any panel given is considered top, visible, panel.
114
+ */
115
+ isTopPanel(component: NaturalAbstractPanel): boolean;
100
116
  /**
101
117
  * Repositions panels from start until given index
102
118
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecodev/natural",
3
- "version": "62.1.2",
3
+ "version": "62.1.3",
4
4
  "license": "MIT",
5
5
  "repository": "github:Ecodev/natural",
6
6
  "sideEffects": false,