@genesislcap/foundation-layout 14.92.2-beta.revert-PA-913.1 → 14.92.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -132,6 +132,12 @@ export const LAYOUT_ICONS: {
132
132
  readonly tabDropdownSVG: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48IS0tISBGb250IEF3ZXNvbWUgUHJvIDYuMi4wIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlIChDb21tZXJjaWFsIExpY2Vuc2UpIENvcHlyaWdodCAyMDIyIEZvbnRpY29ucywgSW5jLiAtLT48cGF0aCBkPSJNNC4yNTEgMTgxLjFDNy4zOTIgMTc3LjcgMTEuNjkgMTc1LjEgMTYgMTc1LjFjMy44OTEgMCA3Ljc4MSAxLjQwNiAxMC44NiA0LjI1bDE5Ny4xIDE4MS4xbDE5Ny4xLTE4MS4xYzYuNS02IDE2LjY0LTUuNjI1IDIyLjYxIC45MDYyYzYgNi41IDUuNTk0IDE2LjU5LS44OTA2IDIyLjU5bC0yMDggMTkyYy02LjE1NiA1LjY4OC0xNS41NiA1LjY4OC0yMS43MiAwbC0yMDgtMTkyQy0xLjM0MyAxOTcuNy0xLjc0OSAxODcuNiA0LjI1MSAxODEuMXoiIGZpbGw9IiM4NzliYTYiLz48L3N2Zz4=";
133
133
  };
134
134
 
135
+ // @public
136
+ export interface LayoutComponentWithState<T> {
137
+ applyState(state: T | null): void;
138
+ getCurrentState(): T;
139
+ }
140
+
135
141
  // @public
136
142
  export const LayoutEmitEvents: {
137
143
  readonly firstLoaded: "first-loaded";
@@ -143,6 +149,7 @@ export const LayoutEmitEvents: {
143
149
  // @public
144
150
  export const LayoutReceiveEvents: {
145
151
  readonly changeTitle: "change-title";
152
+ readonly autosave: "autosave";
146
153
  };
147
154
 
148
155
  // @public
@@ -151,6 +158,7 @@ export type LayoutReceiveEventsDetail = {
151
158
  title: string;
152
159
  mode: 'replace' | 'suffix';
153
160
  };
161
+ autosave: void;
154
162
  };
155
163
 
156
164
  // 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.92.2-beta.revert-PA-913.1",
4
+ "version": "14.92.3",
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.92.2-beta.revert-PA-913.1",
31
- "@genesislcap/genx": "14.92.2-beta.revert-PA-913.1",
30
+ "@genesislcap/foundation-testing": "14.92.3",
31
+ "@genesislcap/genx": "14.92.3",
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.92.2-beta.revert-PA-913.1",
37
- "@genesislcap/foundation-logger": "14.92.2-beta.revert-PA-913.1",
38
- "@genesislcap/foundation-utils": "14.92.2-beta.revert-PA-913.1",
36
+ "@genesislcap/foundation-comms": "14.92.3",
37
+ "@genesislcap/foundation-logger": "14.92.3",
38
+ "@genesislcap/foundation-utils": "14.92.3",
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": "965e315b84fb239583003cf8db21c0208e862601"
53
+ "gitHead": "91e56d8baa783296b822b5966c5a65e50a25bad7"
54
54
  }