@base-framework/base 3.0.352 → 3.0.354
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.
|
@@ -53,6 +53,7 @@ export class Component extends Unit {
|
|
|
53
53
|
* @returns {void}
|
|
54
54
|
*/
|
|
55
55
|
resumeScope(persistedLayout: object): void;
|
|
56
|
+
stateHelper: any;
|
|
56
57
|
/**
|
|
57
58
|
* This will initialize the component.
|
|
58
59
|
*
|
|
@@ -105,7 +106,6 @@ export class Component extends Unit {
|
|
|
105
106
|
* @returns {void}
|
|
106
107
|
*/
|
|
107
108
|
setStateHelper(states?: object): void;
|
|
108
|
-
stateHelper: StateHelper;
|
|
109
109
|
/**
|
|
110
110
|
* This will add a state.
|
|
111
111
|
*
|
|
@@ -156,5 +156,4 @@ export class Component extends Unit {
|
|
|
156
156
|
protected removeEvents(): void;
|
|
157
157
|
}
|
|
158
158
|
import { Unit } from './unit.js';
|
|
159
|
-
import { StateHelper } from './state-helper.js';
|
|
160
159
|
import { EventHelper } from './event-helper.js';
|