@genesislcap/foundation-layout 14.194.6 → 14.195.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/custom-elements.json +230 -230
  2. package/package.json +12 -12
@@ -143,236 +143,6 @@
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
- },
376
146
  {
377
147
  "kind": "javascript-module",
378
148
  "path": "src/main/index.ts",
@@ -1491,6 +1261,236 @@
1491
1261
  }
1492
1262
  }
1493
1263
  ]
1264
+ },
1265
+ {
1266
+ "kind": "javascript-module",
1267
+ "path": "src/utils/constants.ts",
1268
+ "declarations": [
1269
+ {
1270
+ "kind": "variable",
1271
+ "name": "DEFAULT_RELOAD_BUFFER",
1272
+ "type": {
1273
+ "text": "number"
1274
+ },
1275
+ "default": "500",
1276
+ "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.",
1277
+ "privacy": "public"
1278
+ },
1279
+ {
1280
+ "kind": "variable",
1281
+ "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
1282
+ "type": {
1283
+ "text": "string"
1284
+ },
1285
+ "default": "'f-layout-popout'",
1286
+ "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."
1287
+ }
1288
+ ],
1289
+ "exports": [
1290
+ {
1291
+ "kind": "js",
1292
+ "name": "DEFAULT_RELOAD_BUFFER",
1293
+ "declaration": {
1294
+ "name": "DEFAULT_RELOAD_BUFFER",
1295
+ "module": "src/utils/constants.ts"
1296
+ }
1297
+ },
1298
+ {
1299
+ "kind": "js",
1300
+ "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
1301
+ "declaration": {
1302
+ "name": "LAYOUT_POPOUT_CONTAINER_CLASS",
1303
+ "module": "src/utils/constants.ts"
1304
+ }
1305
+ }
1306
+ ]
1307
+ },
1308
+ {
1309
+ "kind": "javascript-module",
1310
+ "path": "src/utils/error.ts",
1311
+ "declarations": [
1312
+ {
1313
+ "kind": "class",
1314
+ "description": "",
1315
+ "name": "LayoutUsageError",
1316
+ "superclass": {
1317
+ "name": "Error",
1318
+ "module": "src/utils/error.ts"
1319
+ }
1320
+ },
1321
+ {
1322
+ "kind": "class",
1323
+ "description": "",
1324
+ "name": "LayoutRegistrationError",
1325
+ "superclass": {
1326
+ "name": "Error",
1327
+ "module": "src/utils/error.ts"
1328
+ }
1329
+ }
1330
+ ],
1331
+ "exports": [
1332
+ {
1333
+ "kind": "js",
1334
+ "name": "LayoutUsageError",
1335
+ "declaration": {
1336
+ "name": "LayoutUsageError",
1337
+ "module": "src/utils/error.ts"
1338
+ }
1339
+ },
1340
+ {
1341
+ "kind": "js",
1342
+ "name": "LayoutRegistrationError",
1343
+ "declaration": {
1344
+ "name": "LayoutRegistrationError",
1345
+ "module": "src/utils/error.ts"
1346
+ }
1347
+ }
1348
+ ]
1349
+ },
1350
+ {
1351
+ "kind": "javascript-module",
1352
+ "path": "src/utils/events.ts",
1353
+ "declarations": [
1354
+ {
1355
+ "kind": "variable",
1356
+ "name": "LayoutEmitEvents",
1357
+ "type": {
1358
+ "text": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}"
1359
+ },
1360
+ "default": "{\n firstLoaded: 'first-loaded',\n itemAdded: 'item-added',\n itemRemoved: 'item-removed',\n itemResized: 'item-resized',\n}",
1361
+ "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",
1362
+ "privacy": "public"
1363
+ },
1364
+ {
1365
+ "kind": "variable",
1366
+ "name": "LayoutReceiveEvents",
1367
+ "type": {
1368
+ "text": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}"
1369
+ },
1370
+ "default": "{\n changeTitle: 'change-title',\n autosave: 'autosave',\n}",
1371
+ "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.",
1372
+ "privacy": "public"
1373
+ }
1374
+ ],
1375
+ "exports": [
1376
+ {
1377
+ "kind": "js",
1378
+ "name": "LayoutEmitEvents",
1379
+ "declaration": {
1380
+ "name": "LayoutEmitEvents",
1381
+ "module": "src/utils/events.ts"
1382
+ }
1383
+ },
1384
+ {
1385
+ "kind": "js",
1386
+ "name": "LayoutReceiveEvents",
1387
+ "declaration": {
1388
+ "name": "LayoutReceiveEvents",
1389
+ "module": "src/utils/events.ts"
1390
+ }
1391
+ }
1392
+ ]
1393
+ },
1394
+ {
1395
+ "kind": "javascript-module",
1396
+ "path": "src/utils/index.ts",
1397
+ "declarations": [],
1398
+ "exports": [
1399
+ {
1400
+ "kind": "js",
1401
+ "name": "*",
1402
+ "declaration": {
1403
+ "name": "*",
1404
+ "package": "./constants"
1405
+ }
1406
+ },
1407
+ {
1408
+ "kind": "js",
1409
+ "name": "*",
1410
+ "declaration": {
1411
+ "name": "*",
1412
+ "package": "./error"
1413
+ }
1414
+ },
1415
+ {
1416
+ "kind": "js",
1417
+ "name": "*",
1418
+ "declaration": {
1419
+ "name": "*",
1420
+ "package": "./events"
1421
+ }
1422
+ },
1423
+ {
1424
+ "kind": "js",
1425
+ "name": "*",
1426
+ "declaration": {
1427
+ "name": "*",
1428
+ "package": "./misc"
1429
+ }
1430
+ },
1431
+ {
1432
+ "kind": "js",
1433
+ "name": "*",
1434
+ "declaration": {
1435
+ "name": "*",
1436
+ "package": "./templates"
1437
+ }
1438
+ },
1439
+ {
1440
+ "kind": "js",
1441
+ "name": "*",
1442
+ "declaration": {
1443
+ "name": "*",
1444
+ "package": "./types"
1445
+ }
1446
+ },
1447
+ {
1448
+ "kind": "js",
1449
+ "name": "*",
1450
+ "declaration": {
1451
+ "name": "*",
1452
+ "package": "./error"
1453
+ }
1454
+ }
1455
+ ]
1456
+ },
1457
+ {
1458
+ "kind": "javascript-module",
1459
+ "path": "src/utils/logger.ts",
1460
+ "declarations": [
1461
+ {
1462
+ "kind": "variable",
1463
+ "name": "logger"
1464
+ }
1465
+ ],
1466
+ "exports": [
1467
+ {
1468
+ "kind": "js",
1469
+ "name": "logger",
1470
+ "declaration": {
1471
+ "name": "logger",
1472
+ "module": "src/utils/logger.ts"
1473
+ }
1474
+ }
1475
+ ]
1476
+ },
1477
+ {
1478
+ "kind": "javascript-module",
1479
+ "path": "src/utils/misc.ts",
1480
+ "declarations": [],
1481
+ "exports": []
1482
+ },
1483
+ {
1484
+ "kind": "javascript-module",
1485
+ "path": "src/utils/templates.ts",
1486
+ "declarations": [],
1487
+ "exports": []
1488
+ },
1489
+ {
1490
+ "kind": "javascript-module",
1491
+ "path": "src/utils/types.ts",
1492
+ "declarations": [],
1493
+ "exports": []
1494
1494
  }
1495
1495
  ]
1496
1496
  }
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.194.6",
4
+ "version": "14.195.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.194.6",
40
- "@genesislcap/genx": "14.194.6",
41
- "@genesislcap/rollup-builder": "14.194.6",
42
- "@genesislcap/ts-builder": "14.194.6",
43
- "@genesislcap/uvu-playwright-builder": "14.194.6",
44
- "@genesislcap/vite-builder": "14.194.6",
45
- "@genesislcap/webpack-builder": "14.194.6",
39
+ "@genesislcap/foundation-testing": "14.195.0",
40
+ "@genesislcap/genx": "14.195.0",
41
+ "@genesislcap/rollup-builder": "14.195.0",
42
+ "@genesislcap/ts-builder": "14.195.0",
43
+ "@genesislcap/uvu-playwright-builder": "14.195.0",
44
+ "@genesislcap/vite-builder": "14.195.0",
45
+ "@genesislcap/webpack-builder": "14.195.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.194.6",
51
- "@genesislcap/foundation-logger": "14.194.6",
52
- "@genesislcap/foundation-utils": "14.194.6",
50
+ "@genesislcap/foundation-comms": "14.195.0",
51
+ "@genesislcap/foundation-logger": "14.195.0",
52
+ "@genesislcap/foundation-utils": "14.195.0",
53
53
  "@microsoft/fast-components": "^2.30.6",
54
54
  "@microsoft/fast-element": "^1.12.0",
55
55
  "@microsoft/fast-foundation": "^2.49.4",
@@ -64,5 +64,5 @@
64
64
  "access": "public"
65
65
  },
66
66
  "customElements": "dist/custom-elements.json",
67
- "gitHead": "0b3c1bca850d1c06169e8184619724394b8a73ca"
67
+ "gitHead": "c2f60f537f6443a78be6237f3c4bc0f5f49f0262"
68
68
  }