@genesislcap/foundation-layout 14.241.0-FUI-2294.1 → 14.242.0

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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +230 -230
  2. package/package.json +12 -12
@@ -137,6 +137,236 @@
137
137
  }
138
138
  ]
139
139
  },
140
+ {
141
+ "kind": "javascript-module",
142
+ "path": "src/utils/constants.ts",
143
+ "declarations": [
144
+ {
145
+ "kind": "variable",
146
+ "name": "DEFAULT_RELOAD_BUFFER",
147
+ "type": {
148
+ "text": "number"
149
+ },
150
+ "default": "500",
151
+ "description": "Default time in milliseconds for the layout to buffer calls to reloading\nthe layout while the declarative API is loading.\n\nDuring the first load of the layout, a loading spinner will be shown.",
152
+ "privacy": "public"
153
+ },
154
+ {
155
+ "kind": "variable",
156
+ "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
157
+ "type": {
158
+ "text": "string"
159
+ },
160
+ "default": "'f-layout-popout'",
161
+ "description": "Put this classname on an element which is a DOM parent of the layout, and\nif the layout goes into popout mode then it will place itself as the only child\nfor the popout container you set."
162
+ }
163
+ ],
164
+ "exports": [
165
+ {
166
+ "kind": "js",
167
+ "name": "DEFAULT_RELOAD_BUFFER",
168
+ "declaration": {
169
+ "name": "DEFAULT_RELOAD_BUFFER",
170
+ "module": "src/utils/constants.ts"
171
+ }
172
+ },
173
+ {
174
+ "kind": "js",
175
+ "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
176
+ "declaration": {
177
+ "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
178
+ "module": "src/utils/constants.ts"
179
+ }
180
+ }
181
+ ]
182
+ },
183
+ {
184
+ "kind": "javascript-module",
185
+ "path": "src/utils/error.ts",
186
+ "declarations": [
187
+ {
188
+ "kind": "class",
189
+ "description": "",
190
+ "name": "LayoutUsageError",
191
+ "superclass": {
192
+ "name": "Error",
193
+ "module": "src/utils/error.ts"
194
+ }
195
+ },
196
+ {
197
+ "kind": "class",
198
+ "description": "",
199
+ "name": "LayoutRegistrationError",
200
+ "superclass": {
201
+ "name": "Error",
202
+ "module": "src/utils/error.ts"
203
+ }
204
+ }
205
+ ],
206
+ "exports": [
207
+ {
208
+ "kind": "js",
209
+ "name": "LayoutUsageError",
210
+ "declaration": {
211
+ "name": "LayoutUsageError",
212
+ "module": "src/utils/error.ts"
213
+ }
214
+ },
215
+ {
216
+ "kind": "js",
217
+ "name": "LayoutRegistrationError",
218
+ "declaration": {
219
+ "name": "LayoutRegistrationError",
220
+ "module": "src/utils/error.ts"
221
+ }
222
+ }
223
+ ]
224
+ },
225
+ {
226
+ "kind": "javascript-module",
227
+ "path": "src/utils/events.ts",
228
+ "declarations": [
229
+ {
230
+ "kind": "variable",
231
+ "name": "LayoutEmitEvents",
232
+ "type": {
233
+ "text": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}"
234
+ },
235
+ "default": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}",
236
+ "description": "Defines events that the layout system emits\n\n'firstLoaded' - emitted when the layout has finished loading the first time\nusing the declarative API after DEFAULT_RELOAD_BUFFER ms.\n<br/>\n'itemAdded' - emitted when an item is added to the layout'\n<br/>\n'itemRemoved' - emitted when an item is removed from the layout'\n<br/>\n'itemResized' - emitted when the user drags the divider to resize elements",
237
+ "privacy": "public"
238
+ },
239
+ {
240
+ "kind": "variable",
241
+ "name": "LayoutReceiveEvents",
242
+ "type": {
243
+ "text": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}"
244
+ },
245
+ "default": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}",
246
+ "description": "Defines events that the layout system listens for\n\n'changeTitle' - emit this from a contained item to update the title of the window that contains it.\n'autosave' - emit this from a contained item to hint to the layout system that it should autosave the layout. A contained item should do this if it has just changed some state it would like to persist. See LayoutComponentWithState.",
247
+ "privacy": "public"
248
+ }
249
+ ],
250
+ "exports": [
251
+ {
252
+ "kind": "js",
253
+ "name": "LayoutEmitEvents",
254
+ "declaration": {
255
+ "name": "LayoutEmitEvents",
256
+ "module": "src/utils/events.ts"
257
+ }
258
+ },
259
+ {
260
+ "kind": "js",
261
+ "name": "LayoutReceiveEvents",
262
+ "declaration": {
263
+ "name": "LayoutReceiveEvents",
264
+ "module": "src/utils/events.ts"
265
+ }
266
+ }
267
+ ]
268
+ },
269
+ {
270
+ "kind": "javascript-module",
271
+ "path": "src/utils/index.ts",
272
+ "declarations": [],
273
+ "exports": [
274
+ {
275
+ "kind": "js",
276
+ "name": "*",
277
+ "declaration": {
278
+ "name": "*",
279
+ "package": "./constants"
280
+ }
281
+ },
282
+ {
283
+ "kind": "js",
284
+ "name": "*",
285
+ "declaration": {
286
+ "name": "*",
287
+ "package": "./error"
288
+ }
289
+ },
290
+ {
291
+ "kind": "js",
292
+ "name": "*",
293
+ "declaration": {
294
+ "name": "*",
295
+ "package": "./events"
296
+ }
297
+ },
298
+ {
299
+ "kind": "js",
300
+ "name": "*",
301
+ "declaration": {
302
+ "name": "*",
303
+ "package": "./misc"
304
+ }
305
+ },
306
+ {
307
+ "kind": "js",
308
+ "name": "*",
309
+ "declaration": {
310
+ "name": "*",
311
+ "package": "./templates"
312
+ }
313
+ },
314
+ {
315
+ "kind": "js",
316
+ "name": "*",
317
+ "declaration": {
318
+ "name": "*",
319
+ "package": "./types"
320
+ }
321
+ },
322
+ {
323
+ "kind": "js",
324
+ "name": "*",
325
+ "declaration": {
326
+ "name": "*",
327
+ "package": "./error"
328
+ }
329
+ }
330
+ ]
331
+ },
332
+ {
333
+ "kind": "javascript-module",
334
+ "path": "src/utils/logger.ts",
335
+ "declarations": [
336
+ {
337
+ "kind": "variable",
338
+ "name": "logger"
339
+ }
340
+ ],
341
+ "exports": [
342
+ {
343
+ "kind": "js",
344
+ "name": "logger",
345
+ "declaration": {
346
+ "name": "logger",
347
+ "module": "src/utils/logger.ts"
348
+ }
349
+ }
350
+ ]
351
+ },
352
+ {
353
+ "kind": "javascript-module",
354
+ "path": "src/utils/misc.ts",
355
+ "declarations": [],
356
+ "exports": []
357
+ },
358
+ {
359
+ "kind": "javascript-module",
360
+ "path": "src/utils/templates.ts",
361
+ "declarations": [],
362
+ "exports": []
363
+ },
364
+ {
365
+ "kind": "javascript-module",
366
+ "path": "src/utils/types.ts",
367
+ "declarations": [],
368
+ "exports": []
369
+ },
140
370
  {
141
371
  "kind": "javascript-module",
142
372
  "path": "src/main/index.ts",
@@ -1138,236 +1368,6 @@
1138
1368
  }
1139
1369
  ]
1140
1370
  },
1141
- {
1142
- "kind": "javascript-module",
1143
- "path": "src/utils/constants.ts",
1144
- "declarations": [
1145
- {
1146
- "kind": "variable",
1147
- "name": "DEFAULT_RELOAD_BUFFER",
1148
- "type": {
1149
- "text": "number"
1150
- },
1151
- "default": "500",
1152
- "description": "Default time in milliseconds for the layout to buffer calls to reloading\nthe layout while the declarative API is loading.\n\nDuring the first load of the layout, a loading spinner will be shown.",
1153
- "privacy": "public"
1154
- },
1155
- {
1156
- "kind": "variable",
1157
- "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
1158
- "type": {
1159
- "text": "string"
1160
- },
1161
- "default": "'f-layout-popout'",
1162
- "description": "Put this classname on an element which is a DOM parent of the layout, and\nif the layout goes into popout mode then it will place itself as the only child\nfor the popout container you set."
1163
- }
1164
- ],
1165
- "exports": [
1166
- {
1167
- "kind": "js",
1168
- "name": "DEFAULT_RELOAD_BUFFER",
1169
- "declaration": {
1170
- "name": "DEFAULT_RELOAD_BUFFER",
1171
- "module": "src/utils/constants.ts"
1172
- }
1173
- },
1174
- {
1175
- "kind": "js",
1176
- "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
1177
- "declaration": {
1178
- "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
1179
- "module": "src/utils/constants.ts"
1180
- }
1181
- }
1182
- ]
1183
- },
1184
- {
1185
- "kind": "javascript-module",
1186
- "path": "src/utils/error.ts",
1187
- "declarations": [
1188
- {
1189
- "kind": "class",
1190
- "description": "",
1191
- "name": "LayoutUsageError",
1192
- "superclass": {
1193
- "name": "Error",
1194
- "module": "src/utils/error.ts"
1195
- }
1196
- },
1197
- {
1198
- "kind": "class",
1199
- "description": "",
1200
- "name": "LayoutRegistrationError",
1201
- "superclass": {
1202
- "name": "Error",
1203
- "module": "src/utils/error.ts"
1204
- }
1205
- }
1206
- ],
1207
- "exports": [
1208
- {
1209
- "kind": "js",
1210
- "name": "LayoutUsageError",
1211
- "declaration": {
1212
- "name": "LayoutUsageError",
1213
- "module": "src/utils/error.ts"
1214
- }
1215
- },
1216
- {
1217
- "kind": "js",
1218
- "name": "LayoutRegistrationError",
1219
- "declaration": {
1220
- "name": "LayoutRegistrationError",
1221
- "module": "src/utils/error.ts"
1222
- }
1223
- }
1224
- ]
1225
- },
1226
- {
1227
- "kind": "javascript-module",
1228
- "path": "src/utils/events.ts",
1229
- "declarations": [
1230
- {
1231
- "kind": "variable",
1232
- "name": "LayoutEmitEvents",
1233
- "type": {
1234
- "text": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}"
1235
- },
1236
- "default": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}",
1237
- "description": "Defines events that the layout system emits\n\n'firstLoaded' - emitted when the layout has finished loading the first time\nusing the declarative API after DEFAULT_RELOAD_BUFFER ms.\n<br/>\n'itemAdded' - emitted when an item is added to the layout'\n<br/>\n'itemRemoved' - emitted when an item is removed from the layout'\n<br/>\n'itemResized' - emitted when the user drags the divider to resize elements",
1238
- "privacy": "public"
1239
- },
1240
- {
1241
- "kind": "variable",
1242
- "name": "LayoutReceiveEvents",
1243
- "type": {
1244
- "text": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}"
1245
- },
1246
- "default": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}",
1247
- "description": "Defines events that the layout system listens for\n\n'changeTitle' - emit this from a contained item to update the title of the window that contains it.\n'autosave' - emit this from a contained item to hint to the layout system that it should autosave the layout. A contained item should do this if it has just changed some state it would like to persist. See LayoutComponentWithState.",
1248
- "privacy": "public"
1249
- }
1250
- ],
1251
- "exports": [
1252
- {
1253
- "kind": "js",
1254
- "name": "LayoutEmitEvents",
1255
- "declaration": {
1256
- "name": "LayoutEmitEvents",
1257
- "module": "src/utils/events.ts"
1258
- }
1259
- },
1260
- {
1261
- "kind": "js",
1262
- "name": "LayoutReceiveEvents",
1263
- "declaration": {
1264
- "name": "LayoutReceiveEvents",
1265
- "module": "src/utils/events.ts"
1266
- }
1267
- }
1268
- ]
1269
- },
1270
- {
1271
- "kind": "javascript-module",
1272
- "path": "src/utils/index.ts",
1273
- "declarations": [],
1274
- "exports": [
1275
- {
1276
- "kind": "js",
1277
- "name": "*",
1278
- "declaration": {
1279
- "name": "*",
1280
- "package": "./constants"
1281
- }
1282
- },
1283
- {
1284
- "kind": "js",
1285
- "name": "*",
1286
- "declaration": {
1287
- "name": "*",
1288
- "package": "./error"
1289
- }
1290
- },
1291
- {
1292
- "kind": "js",
1293
- "name": "*",
1294
- "declaration": {
1295
- "name": "*",
1296
- "package": "./events"
1297
- }
1298
- },
1299
- {
1300
- "kind": "js",
1301
- "name": "*",
1302
- "declaration": {
1303
- "name": "*",
1304
- "package": "./misc"
1305
- }
1306
- },
1307
- {
1308
- "kind": "js",
1309
- "name": "*",
1310
- "declaration": {
1311
- "name": "*",
1312
- "package": "./templates"
1313
- }
1314
- },
1315
- {
1316
- "kind": "js",
1317
- "name": "*",
1318
- "declaration": {
1319
- "name": "*",
1320
- "package": "./types"
1321
- }
1322
- },
1323
- {
1324
- "kind": "js",
1325
- "name": "*",
1326
- "declaration": {
1327
- "name": "*",
1328
- "package": "./error"
1329
- }
1330
- }
1331
- ]
1332
- },
1333
- {
1334
- "kind": "javascript-module",
1335
- "path": "src/utils/logger.ts",
1336
- "declarations": [
1337
- {
1338
- "kind": "variable",
1339
- "name": "logger"
1340
- }
1341
- ],
1342
- "exports": [
1343
- {
1344
- "kind": "js",
1345
- "name": "logger",
1346
- "declaration": {
1347
- "name": "logger",
1348
- "module": "src/utils/logger.ts"
1349
- }
1350
- }
1351
- ]
1352
- },
1353
- {
1354
- "kind": "javascript-module",
1355
- "path": "src/utils/misc.ts",
1356
- "declarations": [],
1357
- "exports": []
1358
- },
1359
- {
1360
- "kind": "javascript-module",
1361
- "path": "src/utils/templates.ts",
1362
- "declarations": [],
1363
- "exports": []
1364
- },
1365
- {
1366
- "kind": "javascript-module",
1367
- "path": "src/utils/types.ts",
1368
- "declarations": [],
1369
- "exports": []
1370
- },
1371
1371
  {
1372
1372
  "kind": "javascript-module",
1373
1373
  "path": "src/styles/constants.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.241.0-FUI-2294.1",
4
+ "version": "14.242.0",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/esm/index.js",
7
7
  "types": "dist/foundation-layout.d.ts",
@@ -36,20 +36,20 @@
36
36
  }
37
37
  },
38
38
  "devDependencies": {
39
- "@genesislcap/foundation-testing": "14.241.0-FUI-2294.1",
40
- "@genesislcap/genx": "14.241.0-FUI-2294.1",
41
- "@genesislcap/rollup-builder": "14.241.0-FUI-2294.1",
42
- "@genesislcap/ts-builder": "14.241.0-FUI-2294.1",
43
- "@genesislcap/uvu-playwright-builder": "14.241.0-FUI-2294.1",
44
- "@genesislcap/vite-builder": "14.241.0-FUI-2294.1",
45
- "@genesislcap/webpack-builder": "14.241.0-FUI-2294.1",
39
+ "@genesislcap/foundation-testing": "14.242.0",
40
+ "@genesislcap/genx": "14.242.0",
41
+ "@genesislcap/rollup-builder": "14.242.0",
42
+ "@genesislcap/ts-builder": "14.242.0",
43
+ "@genesislcap/uvu-playwright-builder": "14.242.0",
44
+ "@genesislcap/vite-builder": "14.242.0",
45
+ "@genesislcap/webpack-builder": "14.242.0",
46
46
  "rimraf": "^5.0.0"
47
47
  },
48
48
  "dependencies": {
49
49
  "@genesis-community/golden-layout": "^2.11.0",
50
- "@genesislcap/foundation-comms": "14.241.0-FUI-2294.1",
51
- "@genesislcap/foundation-logger": "14.241.0-FUI-2294.1",
52
- "@genesislcap/foundation-utils": "14.241.0-FUI-2294.1",
50
+ "@genesislcap/foundation-comms": "14.242.0",
51
+ "@genesislcap/foundation-logger": "14.242.0",
52
+ "@genesislcap/foundation-utils": "14.242.0",
53
53
  "@microsoft/fast-components": "2.30.6",
54
54
  "@microsoft/fast-element": "1.14.0",
55
55
  "@microsoft/fast-foundation": "2.49.6",
@@ -64,5 +64,5 @@
64
64
  "access": "public"
65
65
  },
66
66
  "customElements": "dist/custom-elements.json",
67
- "gitHead": "4affabe0640579feee69866bdc02151dfaf1982a"
67
+ "gitHead": "998546fa7f8fc8da70f534d4445719bef59a2dba"
68
68
  }