@genesislcap/foundation-layout 14.84.0 → 14.85.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -130,6 +130,12 @@ export const LAYOUT_ICONS: {
130
130
  readonly tabDropdownSVG: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4wIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNNC4yNTEgMTgxLjFDNy4zOTIgMTc3LjcgMTEuNjkgMTc1LjEgMTYgMTc1LjFjMy44OTEgMCA3Ljc4MSAxLjQwNiAxMC44NiA0LjI1bDE5Ny4xIDE4MS4xbDE5Ny4xLTE4MS4xYzYuNS02IDE2LjY0LTUuNjI1IDIyLjYxIC45MDYyYzYgNi41IDUuNTk0IDE2LjU5LS44OTA2IDIyLjU5bC0yMDggMTkyYy02LjE1NiA1LjY4OC0xNS41NiA1LjY4OC0yMS43MiAwbC0yMDgtMTkyQy0xLjM0MyAxOTcuNy0xLjc0OSAxODcuNiA0LjI1MSAxODEuMXoiIGZpbGw9IiM4NzliYTYiLz48L3N2Zz4=";
131
131
  };
132
132
 
133
+ // @public
134
+ export interface LayoutComponentWithState<T> {
135
+ applyState(state: T | null): void;
136
+ getCurrentState(): T;
137
+ }
138
+
133
139
  // @public
134
140
  export const LayoutEmitEvents: {
135
141
  readonly firstLoaded: "first-loaded";
@@ -141,6 +147,7 @@ export const LayoutEmitEvents: {
141
147
  // @public
142
148
  export const LayoutReceiveEvents: {
143
149
  readonly changeTitle: "change-title";
150
+ readonly autosave: "autosave";
144
151
  };
145
152
 
146
153
  // @public
@@ -149,6 +156,7 @@ export type LayoutReceiveEventsDetail = {
149
156
  title: string;
150
157
  mode: 'replace' | 'suffix';
151
158
  };
159
+ autosave: void;
152
160
  };
153
161
 
154
162
  // Warning: (ae-forgotten-export) The symbol "layoutRegionValue" needs to be exported by the entry point index.d.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-layout",
3
3
  "description": "Genesis Foundation UI App Layout",
4
- "version": "14.84.0",
4
+ "version": "14.85.0",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/esm/index.js",
7
7
  "types": "dist/foundation-layout.d.ts",
@@ -27,15 +27,15 @@
27
27
  "test:debug": "genx test --debug"
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.84.0",
31
- "@genesislcap/genx": "14.84.0",
30
+ "@genesislcap/foundation-testing": "14.85.0",
31
+ "@genesislcap/genx": "14.85.0",
32
32
  "rimraf": "^3.0.2"
33
33
  },
34
34
  "dependencies": {
35
35
  "@genesis-community/golden-layout": "^2.10.1",
36
- "@genesislcap/foundation-comms": "14.84.0",
37
- "@genesislcap/foundation-logger": "14.84.0",
38
- "@genesislcap/foundation-utils": "14.84.0",
36
+ "@genesislcap/foundation-comms": "14.85.0",
37
+ "@genesislcap/foundation-logger": "14.85.0",
38
+ "@genesislcap/foundation-utils": "14.85.0",
39
39
  "@microsoft/fast-components": "^2.21.3",
40
40
  "@microsoft/fast-element": "^1.7.0",
41
41
  "@microsoft/fast-foundation": "^2.33.2",
@@ -50,5 +50,5 @@
50
50
  "access": "public"
51
51
  },
52
52
  "customElements": "dist/custom-elements.json",
53
- "gitHead": "71530fed569d6166c5c5ad0ec4cb6296d82c292e"
53
+ "gitHead": "d9387cdd713b49e3f00f05e866b305f452d6cc82"
54
54
  }