@genesislcap/foundation-layout 14.84.0 → 14.85.0-alpha.1360cc6.1
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.
- package/README.md +20 -2
- package/dist/custom-elements.json +129 -121
- package/dist/dts/index.d.ts +1 -1
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/main/layout-main.d.ts +9 -0
- package/dist/dts/main/layout-main.d.ts.map +1 -1
- package/dist/dts/utils/constants.d.ts +5 -0
- package/dist/dts/utils/constants.d.ts.map +1 -1
- package/dist/dts/utils/events.d.ts +4 -0
- package/dist/dts/utils/events.d.ts.map +1 -1
- package/dist/dts/utils/types.d.ts +74 -2
- package/dist/dts/utils/types.d.ts.map +1 -1
- package/dist/esm/main/layout-main.js +55 -7
- package/dist/esm/utils/constants.js +5 -0
- package/dist/esm/utils/events.js +2 -0
- package/dist/esm/utils/types.js +1 -1
- package/dist/foundation-layout.api.json +109 -5
- package/dist/foundation-layout.d.ts +77 -0
- package/docs/api/foundation-layout.foundationlayout.getlayout.md +4 -0
- package/docs/api/foundation-layout.layoutcomponentwithstate.applystate.md +24 -0
- package/docs/api/foundation-layout.layoutcomponentwithstate.getcurrentstate.md +17 -0
- package/docs/api/foundation-layout.layoutcomponentwithstate.md +75 -0
- package/docs/api/foundation-layout.layoutreceiveevents.md +2 -1
- package/docs/api/foundation-layout.layoutreceiveeventsdetail.md +2 -1
- package/docs/api/foundation-layout.md +3 -2
- package/docs/api-report.md +8 -0
- package/package.json +7 -7
package/docs/api-report.md
CHANGED
|
@@ -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.
|
|
4
|
+
"version": "14.85.0-alpha.1360cc6.1",
|
|
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.
|
|
31
|
-
"@genesislcap/genx": "14.
|
|
30
|
+
"@genesislcap/foundation-testing": "14.85.0-alpha.1360cc6.1",
|
|
31
|
+
"@genesislcap/genx": "14.85.0-alpha.1360cc6.1",
|
|
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.
|
|
37
|
-
"@genesislcap/foundation-logger": "14.
|
|
38
|
-
"@genesislcap/foundation-utils": "14.
|
|
36
|
+
"@genesislcap/foundation-comms": "14.85.0-alpha.1360cc6.1",
|
|
37
|
+
"@genesislcap/foundation-logger": "14.85.0-alpha.1360cc6.1",
|
|
38
|
+
"@genesislcap/foundation-utils": "14.85.0-alpha.1360cc6.1",
|
|
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": "
|
|
53
|
+
"gitHead": "3a5181814b5e3ac8189717c909f64ac0eb133e6b"
|
|
54
54
|
}
|