@genesislcap/foundation-layout 14.124.0 → 14.125.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/dist/custom-elements.json +230 -230
- package/package.json +7 -7
@@ -143,6 +143,236 @@
|
|
143
143
|
}
|
144
144
|
]
|
145
145
|
},
|
146
|
+
{
|
147
|
+
"kind": "javascript-module",
|
148
|
+
"path": "src/utils/constants.ts",
|
149
|
+
"declarations": [
|
150
|
+
{
|
151
|
+
"kind": "variable",
|
152
|
+
"name": "DEFAULT_RELOAD_BUFFER",
|
153
|
+
"type": {
|
154
|
+
"text": "number"
|
155
|
+
},
|
156
|
+
"default": "500",
|
157
|
+
"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.",
|
158
|
+
"privacy": "public"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"kind": "variable",
|
162
|
+
"name": "LAYOUT_POPOUT_CONTAINER_CLASS",
|
163
|
+
"type": {
|
164
|
+
"text": "string"
|
165
|
+
},
|
166
|
+
"default": "'f-layout-popout'",
|
167
|
+
"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."
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"exports": [
|
171
|
+
{
|
172
|
+
"kind": "js",
|
173
|
+
"name": "DEFAULT_RELOAD_BUFFER",
|
174
|
+
"declaration": {
|
175
|
+
"name": "DEFAULT_RELOAD_BUFFER",
|
176
|
+
"module": "src/utils/constants.ts"
|
177
|
+
}
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"kind": "js",
|
181
|
+
"name": "LAYOUT_POPOUT_CONTAINER_CLASS",
|
182
|
+
"declaration": {
|
183
|
+
"name": "LAYOUT_POPOUT_CONTAINER_CLASS",
|
184
|
+
"module": "src/utils/constants.ts"
|
185
|
+
}
|
186
|
+
}
|
187
|
+
]
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"kind": "javascript-module",
|
191
|
+
"path": "src/utils/error.ts",
|
192
|
+
"declarations": [
|
193
|
+
{
|
194
|
+
"kind": "class",
|
195
|
+
"description": "",
|
196
|
+
"name": "LayoutUsageError",
|
197
|
+
"superclass": {
|
198
|
+
"name": "Error",
|
199
|
+
"module": "src/utils/error.ts"
|
200
|
+
}
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"kind": "class",
|
204
|
+
"description": "",
|
205
|
+
"name": "LayoutRegistrationError",
|
206
|
+
"superclass": {
|
207
|
+
"name": "Error",
|
208
|
+
"module": "src/utils/error.ts"
|
209
|
+
}
|
210
|
+
}
|
211
|
+
],
|
212
|
+
"exports": [
|
213
|
+
{
|
214
|
+
"kind": "js",
|
215
|
+
"name": "LayoutUsageError",
|
216
|
+
"declaration": {
|
217
|
+
"name": "LayoutUsageError",
|
218
|
+
"module": "src/utils/error.ts"
|
219
|
+
}
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"kind": "js",
|
223
|
+
"name": "LayoutRegistrationError",
|
224
|
+
"declaration": {
|
225
|
+
"name": "LayoutRegistrationError",
|
226
|
+
"module": "src/utils/error.ts"
|
227
|
+
}
|
228
|
+
}
|
229
|
+
]
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"kind": "javascript-module",
|
233
|
+
"path": "src/utils/events.ts",
|
234
|
+
"declarations": [
|
235
|
+
{
|
236
|
+
"kind": "variable",
|
237
|
+
"name": "LayoutEmitEvents",
|
238
|
+
"type": {
|
239
|
+
"text": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}"
|
240
|
+
},
|
241
|
+
"default": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}",
|
242
|
+
"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",
|
243
|
+
"privacy": "public"
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"kind": "variable",
|
247
|
+
"name": "LayoutReceiveEvents",
|
248
|
+
"type": {
|
249
|
+
"text": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}"
|
250
|
+
},
|
251
|
+
"default": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}",
|
252
|
+
"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.",
|
253
|
+
"privacy": "public"
|
254
|
+
}
|
255
|
+
],
|
256
|
+
"exports": [
|
257
|
+
{
|
258
|
+
"kind": "js",
|
259
|
+
"name": "LayoutEmitEvents",
|
260
|
+
"declaration": {
|
261
|
+
"name": "LayoutEmitEvents",
|
262
|
+
"module": "src/utils/events.ts"
|
263
|
+
}
|
264
|
+
},
|
265
|
+
{
|
266
|
+
"kind": "js",
|
267
|
+
"name": "LayoutReceiveEvents",
|
268
|
+
"declaration": {
|
269
|
+
"name": "LayoutReceiveEvents",
|
270
|
+
"module": "src/utils/events.ts"
|
271
|
+
}
|
272
|
+
}
|
273
|
+
]
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"kind": "javascript-module",
|
277
|
+
"path": "src/utils/index.ts",
|
278
|
+
"declarations": [],
|
279
|
+
"exports": [
|
280
|
+
{
|
281
|
+
"kind": "js",
|
282
|
+
"name": "*",
|
283
|
+
"declaration": {
|
284
|
+
"name": "*",
|
285
|
+
"package": "./constants"
|
286
|
+
}
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"kind": "js",
|
290
|
+
"name": "*",
|
291
|
+
"declaration": {
|
292
|
+
"name": "*",
|
293
|
+
"package": "./error"
|
294
|
+
}
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"kind": "js",
|
298
|
+
"name": "*",
|
299
|
+
"declaration": {
|
300
|
+
"name": "*",
|
301
|
+
"package": "./events"
|
302
|
+
}
|
303
|
+
},
|
304
|
+
{
|
305
|
+
"kind": "js",
|
306
|
+
"name": "*",
|
307
|
+
"declaration": {
|
308
|
+
"name": "*",
|
309
|
+
"package": "./misc"
|
310
|
+
}
|
311
|
+
},
|
312
|
+
{
|
313
|
+
"kind": "js",
|
314
|
+
"name": "*",
|
315
|
+
"declaration": {
|
316
|
+
"name": "*",
|
317
|
+
"package": "./templates"
|
318
|
+
}
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"kind": "js",
|
322
|
+
"name": "*",
|
323
|
+
"declaration": {
|
324
|
+
"name": "*",
|
325
|
+
"package": "./types"
|
326
|
+
}
|
327
|
+
},
|
328
|
+
{
|
329
|
+
"kind": "js",
|
330
|
+
"name": "*",
|
331
|
+
"declaration": {
|
332
|
+
"name": "*",
|
333
|
+
"package": "./error"
|
334
|
+
}
|
335
|
+
}
|
336
|
+
]
|
337
|
+
},
|
338
|
+
{
|
339
|
+
"kind": "javascript-module",
|
340
|
+
"path": "src/utils/logger.ts",
|
341
|
+
"declarations": [
|
342
|
+
{
|
343
|
+
"kind": "variable",
|
344
|
+
"name": "logger"
|
345
|
+
}
|
346
|
+
],
|
347
|
+
"exports": [
|
348
|
+
{
|
349
|
+
"kind": "js",
|
350
|
+
"name": "logger",
|
351
|
+
"declaration": {
|
352
|
+
"name": "logger",
|
353
|
+
"module": "src/utils/logger.ts"
|
354
|
+
}
|
355
|
+
}
|
356
|
+
]
|
357
|
+
},
|
358
|
+
{
|
359
|
+
"kind": "javascript-module",
|
360
|
+
"path": "src/utils/misc.ts",
|
361
|
+
"declarations": [],
|
362
|
+
"exports": []
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"kind": "javascript-module",
|
366
|
+
"path": "src/utils/templates.ts",
|
367
|
+
"declarations": [],
|
368
|
+
"exports": []
|
369
|
+
},
|
370
|
+
{
|
371
|
+
"kind": "javascript-module",
|
372
|
+
"path": "src/utils/types.ts",
|
373
|
+
"declarations": [],
|
374
|
+
"exports": []
|
375
|
+
},
|
146
376
|
{
|
147
377
|
"kind": "javascript-module",
|
148
378
|
"path": "src/main/index.ts",
|
@@ -1234,236 +1464,6 @@
|
|
1234
1464
|
}
|
1235
1465
|
}
|
1236
1466
|
]
|
1237
|
-
},
|
1238
|
-
{
|
1239
|
-
"kind": "javascript-module",
|
1240
|
-
"path": "src/utils/constants.ts",
|
1241
|
-
"declarations": [
|
1242
|
-
{
|
1243
|
-
"kind": "variable",
|
1244
|
-
"name": "DEFAULT_RELOAD_BUFFER",
|
1245
|
-
"type": {
|
1246
|
-
"text": "number"
|
1247
|
-
},
|
1248
|
-
"default": "500",
|
1249
|
-
"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.",
|
1250
|
-
"privacy": "public"
|
1251
|
-
},
|
1252
|
-
{
|
1253
|
-
"kind": "variable",
|
1254
|
-
"name": "LAYOUT_POPOUT_CONTAINER_CLASS",
|
1255
|
-
"type": {
|
1256
|
-
"text": "string"
|
1257
|
-
},
|
1258
|
-
"default": "'f-layout-popout'",
|
1259
|
-
"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."
|
1260
|
-
}
|
1261
|
-
],
|
1262
|
-
"exports": [
|
1263
|
-
{
|
1264
|
-
"kind": "js",
|
1265
|
-
"name": "DEFAULT_RELOAD_BUFFER",
|
1266
|
-
"declaration": {
|
1267
|
-
"name": "DEFAULT_RELOAD_BUFFER",
|
1268
|
-
"module": "src/utils/constants.ts"
|
1269
|
-
}
|
1270
|
-
},
|
1271
|
-
{
|
1272
|
-
"kind": "js",
|
1273
|
-
"name": "LAYOUT_POPOUT_CONTAINER_CLASS",
|
1274
|
-
"declaration": {
|
1275
|
-
"name": "LAYOUT_POPOUT_CONTAINER_CLASS",
|
1276
|
-
"module": "src/utils/constants.ts"
|
1277
|
-
}
|
1278
|
-
}
|
1279
|
-
]
|
1280
|
-
},
|
1281
|
-
{
|
1282
|
-
"kind": "javascript-module",
|
1283
|
-
"path": "src/utils/error.ts",
|
1284
|
-
"declarations": [
|
1285
|
-
{
|
1286
|
-
"kind": "class",
|
1287
|
-
"description": "",
|
1288
|
-
"name": "LayoutUsageError",
|
1289
|
-
"superclass": {
|
1290
|
-
"name": "Error",
|
1291
|
-
"module": "src/utils/error.ts"
|
1292
|
-
}
|
1293
|
-
},
|
1294
|
-
{
|
1295
|
-
"kind": "class",
|
1296
|
-
"description": "",
|
1297
|
-
"name": "LayoutRegistrationError",
|
1298
|
-
"superclass": {
|
1299
|
-
"name": "Error",
|
1300
|
-
"module": "src/utils/error.ts"
|
1301
|
-
}
|
1302
|
-
}
|
1303
|
-
],
|
1304
|
-
"exports": [
|
1305
|
-
{
|
1306
|
-
"kind": "js",
|
1307
|
-
"name": "LayoutUsageError",
|
1308
|
-
"declaration": {
|
1309
|
-
"name": "LayoutUsageError",
|
1310
|
-
"module": "src/utils/error.ts"
|
1311
|
-
}
|
1312
|
-
},
|
1313
|
-
{
|
1314
|
-
"kind": "js",
|
1315
|
-
"name": "LayoutRegistrationError",
|
1316
|
-
"declaration": {
|
1317
|
-
"name": "LayoutRegistrationError",
|
1318
|
-
"module": "src/utils/error.ts"
|
1319
|
-
}
|
1320
|
-
}
|
1321
|
-
]
|
1322
|
-
},
|
1323
|
-
{
|
1324
|
-
"kind": "javascript-module",
|
1325
|
-
"path": "src/utils/events.ts",
|
1326
|
-
"declarations": [
|
1327
|
-
{
|
1328
|
-
"kind": "variable",
|
1329
|
-
"name": "LayoutEmitEvents",
|
1330
|
-
"type": {
|
1331
|
-
"text": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}"
|
1332
|
-
},
|
1333
|
-
"default": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}",
|
1334
|
-
"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",
|
1335
|
-
"privacy": "public"
|
1336
|
-
},
|
1337
|
-
{
|
1338
|
-
"kind": "variable",
|
1339
|
-
"name": "LayoutReceiveEvents",
|
1340
|
-
"type": {
|
1341
|
-
"text": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}"
|
1342
|
-
},
|
1343
|
-
"default": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}",
|
1344
|
-
"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.",
|
1345
|
-
"privacy": "public"
|
1346
|
-
}
|
1347
|
-
],
|
1348
|
-
"exports": [
|
1349
|
-
{
|
1350
|
-
"kind": "js",
|
1351
|
-
"name": "LayoutEmitEvents",
|
1352
|
-
"declaration": {
|
1353
|
-
"name": "LayoutEmitEvents",
|
1354
|
-
"module": "src/utils/events.ts"
|
1355
|
-
}
|
1356
|
-
},
|
1357
|
-
{
|
1358
|
-
"kind": "js",
|
1359
|
-
"name": "LayoutReceiveEvents",
|
1360
|
-
"declaration": {
|
1361
|
-
"name": "LayoutReceiveEvents",
|
1362
|
-
"module": "src/utils/events.ts"
|
1363
|
-
}
|
1364
|
-
}
|
1365
|
-
]
|
1366
|
-
},
|
1367
|
-
{
|
1368
|
-
"kind": "javascript-module",
|
1369
|
-
"path": "src/utils/index.ts",
|
1370
|
-
"declarations": [],
|
1371
|
-
"exports": [
|
1372
|
-
{
|
1373
|
-
"kind": "js",
|
1374
|
-
"name": "*",
|
1375
|
-
"declaration": {
|
1376
|
-
"name": "*",
|
1377
|
-
"package": "./constants"
|
1378
|
-
}
|
1379
|
-
},
|
1380
|
-
{
|
1381
|
-
"kind": "js",
|
1382
|
-
"name": "*",
|
1383
|
-
"declaration": {
|
1384
|
-
"name": "*",
|
1385
|
-
"package": "./error"
|
1386
|
-
}
|
1387
|
-
},
|
1388
|
-
{
|
1389
|
-
"kind": "js",
|
1390
|
-
"name": "*",
|
1391
|
-
"declaration": {
|
1392
|
-
"name": "*",
|
1393
|
-
"package": "./events"
|
1394
|
-
}
|
1395
|
-
},
|
1396
|
-
{
|
1397
|
-
"kind": "js",
|
1398
|
-
"name": "*",
|
1399
|
-
"declaration": {
|
1400
|
-
"name": "*",
|
1401
|
-
"package": "./misc"
|
1402
|
-
}
|
1403
|
-
},
|
1404
|
-
{
|
1405
|
-
"kind": "js",
|
1406
|
-
"name": "*",
|
1407
|
-
"declaration": {
|
1408
|
-
"name": "*",
|
1409
|
-
"package": "./templates"
|
1410
|
-
}
|
1411
|
-
},
|
1412
|
-
{
|
1413
|
-
"kind": "js",
|
1414
|
-
"name": "*",
|
1415
|
-
"declaration": {
|
1416
|
-
"name": "*",
|
1417
|
-
"package": "./types"
|
1418
|
-
}
|
1419
|
-
},
|
1420
|
-
{
|
1421
|
-
"kind": "js",
|
1422
|
-
"name": "*",
|
1423
|
-
"declaration": {
|
1424
|
-
"name": "*",
|
1425
|
-
"package": "./error"
|
1426
|
-
}
|
1427
|
-
}
|
1428
|
-
]
|
1429
|
-
},
|
1430
|
-
{
|
1431
|
-
"kind": "javascript-module",
|
1432
|
-
"path": "src/utils/logger.ts",
|
1433
|
-
"declarations": [
|
1434
|
-
{
|
1435
|
-
"kind": "variable",
|
1436
|
-
"name": "logger"
|
1437
|
-
}
|
1438
|
-
],
|
1439
|
-
"exports": [
|
1440
|
-
{
|
1441
|
-
"kind": "js",
|
1442
|
-
"name": "logger",
|
1443
|
-
"declaration": {
|
1444
|
-
"name": "logger",
|
1445
|
-
"module": "src/utils/logger.ts"
|
1446
|
-
}
|
1447
|
-
}
|
1448
|
-
]
|
1449
|
-
},
|
1450
|
-
{
|
1451
|
-
"kind": "javascript-module",
|
1452
|
-
"path": "src/utils/misc.ts",
|
1453
|
-
"declarations": [],
|
1454
|
-
"exports": []
|
1455
|
-
},
|
1456
|
-
{
|
1457
|
-
"kind": "javascript-module",
|
1458
|
-
"path": "src/utils/templates.ts",
|
1459
|
-
"declarations": [],
|
1460
|
-
"exports": []
|
1461
|
-
},
|
1462
|
-
{
|
1463
|
-
"kind": "javascript-module",
|
1464
|
-
"path": "src/utils/types.ts",
|
1465
|
-
"declarations": [],
|
1466
|
-
"exports": []
|
1467
1467
|
}
|
1468
1468
|
]
|
1469
1469
|
}
|
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.125.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.125.1",
|
31
|
+
"@genesislcap/genx": "14.125.1",
|
32
32
|
"rimraf": "^3.0.2"
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
35
|
"@genesis-community/golden-layout": "^2.11.0",
|
36
|
-
"@genesislcap/foundation-comms": "14.
|
37
|
-
"@genesislcap/foundation-logger": "14.
|
38
|
-
"@genesislcap/foundation-utils": "14.
|
36
|
+
"@genesislcap/foundation-comms": "14.125.1",
|
37
|
+
"@genesislcap/foundation-logger": "14.125.1",
|
38
|
+
"@genesislcap/foundation-utils": "14.125.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": "1c6f03b9dccb2332ab68e08f66ecc4f4011b604b"
|
54
54
|
}
|