@genesislcap/foundation-layout 14.148.1-alpha-eef6f33.0 → 14.150.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +3 -3
- package/package.json +12 -12
package/README.md
CHANGED
@@ -96,7 +96,7 @@ storage. See [here](#autosaving-layout) for more.
|
|
96
96
|
|
97
97
|
:::tip
|
98
98
|
This only applies for usage with the declarative HTML API. When the layout first loads after this amount of time,
|
99
|
-
it emits an [event](#
|
99
|
+
it emits an [event](#events).
|
100
100
|
:::
|
101
101
|
|
102
102
|
### [Layout Regions](./docs/api/foundation-layout.foundationlayoutregion.md)
|
@@ -171,7 +171,7 @@ Add an item or items that have previously been registered with the layout.
|
|
171
171
|
|
172
172
|
#### [Remove Items](./docs/api/foundation-layout.foundationlayout.removeitems.md)
|
173
173
|
|
174
|
-
Dynamically remove items from the layout. See
|
174
|
+
Dynamically remove items from the layout. See linked API for side effects and options.
|
175
175
|
|
176
176
|
#### [Layout Required Registrations](./docs/api/foundation-layout.foundationlayout.layoutrequiredregistrations.md)
|
177
177
|
|
@@ -194,7 +194,7 @@ To enable autosaving the layout, see [here](#autosaving-layout).
|
|
194
194
|
|
195
195
|
Get an object describing the current layout so that it can be restored at a later date. This does not save any data internally to the layout. It is up to the client to store this state where appropriate for later recall (browser local storage, persistence layer, etc.). Use the [autosaving layout](#autosaving-layout) feature to get the layout to do this for you with local storage.
|
196
196
|
|
197
|
-
You can store state for an instance of an item, and that will be saved inline. See [managing state](#managing-state).
|
197
|
+
You can store state for an instance of an item, and that will be saved inline. See [managing state](#managing-the-state).
|
198
198
|
|
199
199
|
#### [Load Layout](./docs/api/foundation-layout.foundationlayout.loadlayout.md)
|
200
200
|
|
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.150.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,20 +27,20 @@
|
|
27
27
|
"test:debug": "genx test --debug"
|
28
28
|
},
|
29
29
|
"devDependencies": {
|
30
|
-
"@genesislcap/foundation-testing": "14.
|
31
|
-
"@genesislcap/genx": "14.
|
32
|
-
"@genesislcap/rollup-builder": "14.
|
33
|
-
"@genesislcap/ts-builder": "14.
|
34
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
35
|
-
"@genesislcap/vite-builder": "14.
|
36
|
-
"@genesislcap/webpack-builder": "14.
|
30
|
+
"@genesislcap/foundation-testing": "14.150.0",
|
31
|
+
"@genesislcap/genx": "14.150.0",
|
32
|
+
"@genesislcap/rollup-builder": "14.150.0",
|
33
|
+
"@genesislcap/ts-builder": "14.150.0",
|
34
|
+
"@genesislcap/uvu-playwright-builder": "14.150.0",
|
35
|
+
"@genesislcap/vite-builder": "14.150.0",
|
36
|
+
"@genesislcap/webpack-builder": "14.150.0",
|
37
37
|
"rimraf": "^3.0.2"
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
40
|
"@genesis-community/golden-layout": "^2.11.0",
|
41
|
-
"@genesislcap/foundation-comms": "14.
|
42
|
-
"@genesislcap/foundation-logger": "14.
|
43
|
-
"@genesislcap/foundation-utils": "14.
|
41
|
+
"@genesislcap/foundation-comms": "14.150.0",
|
42
|
+
"@genesislcap/foundation-logger": "14.150.0",
|
43
|
+
"@genesislcap/foundation-utils": "14.150.0",
|
44
44
|
"@microsoft/fast-components": "^2.30.6",
|
45
45
|
"@microsoft/fast-element": "^1.12.0",
|
46
46
|
"@microsoft/fast-foundation": "^2.49.4",
|
@@ -55,5 +55,5 @@
|
|
55
55
|
"access": "public"
|
56
56
|
},
|
57
57
|
"customElements": "dist/custom-elements.json",
|
58
|
-
"gitHead": "
|
58
|
+
"gitHead": "b1e9c28c8b2cc001814e259a0b6d51ab30ed5381"
|
59
59
|
}
|