@genesislcap/foundation-entity-management 14.458.2 → 14.458.3-alpha-81b30f1.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.
- package/dist/custom-elements.json +397 -160
- package/dist/dts/entities/entities.d.ts +29 -1
- package/dist/dts/entities/entities.d.ts.map +1 -1
- package/dist/dts/entities/entities.template.d.ts.map +1 -1
- package/dist/dts/entities/smartFormModal.d.ts +172 -3
- package/dist/dts/entities/smartFormModal.d.ts.map +1 -1
- package/dist/dts/react.d.ts +2 -2
- package/dist/esm/entities/entities.js +17 -3
- package/dist/esm/entities/entities.template.js +4 -4
- package/dist/esm/entities/smartFormModal.js +123 -4
- package/dist/foundation-entity-management.api.json +382 -7
- package/dist/foundation-entity-management.d.ts +199 -4
- package/dist/react.cjs +11 -11
- package/dist/react.mjs +11 -11
- package/package.json +23 -23
|
@@ -342,6 +342,24 @@
|
|
|
342
342
|
"description": "Notification config used for submit failures. Defaults to an error snackbar but can be\noverridden while keeping title/body unchanged.",
|
|
343
343
|
"privacy": "public"
|
|
344
344
|
},
|
|
345
|
+
{
|
|
346
|
+
"kind": "field",
|
|
347
|
+
"name": "successNotificationTitle",
|
|
348
|
+
"type": {
|
|
349
|
+
"text": "string"
|
|
350
|
+
},
|
|
351
|
+
"description": "Overrides the success notification title shown after a successful form submission.\nWhen not set, the default \"{label} Added / Updated / Deleted\" title is used.",
|
|
352
|
+
"privacy": "public"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"kind": "field",
|
|
356
|
+
"name": "successNotificationBody",
|
|
357
|
+
"type": {
|
|
358
|
+
"text": "string"
|
|
359
|
+
},
|
|
360
|
+
"description": "Overrides the success notification body shown after a successful form submission.\nWhen not set, the default \"The {label} was successfully added/updated/deleted\" body is used.",
|
|
361
|
+
"privacy": "public"
|
|
362
|
+
},
|
|
345
363
|
{
|
|
346
364
|
"kind": "field",
|
|
347
365
|
"name": "title",
|
|
@@ -360,6 +378,15 @@
|
|
|
360
378
|
"description": "Label for the entity which is used in the title of the modal when editing the entity, on CRUD buttons and on toast notifications",
|
|
361
379
|
"privacy": "public"
|
|
362
380
|
},
|
|
381
|
+
{
|
|
382
|
+
"kind": "field",
|
|
383
|
+
"name": "createLabel",
|
|
384
|
+
"type": {
|
|
385
|
+
"text": "string"
|
|
386
|
+
},
|
|
387
|
+
"description": "Custom label for the create button and modal title. When set, overrides the default \"Add {entityLabel}\" text.",
|
|
388
|
+
"privacy": "public"
|
|
389
|
+
},
|
|
363
390
|
{
|
|
364
391
|
"kind": "field",
|
|
365
392
|
"name": "rowSelection",
|
|
@@ -990,6 +1017,22 @@
|
|
|
990
1017
|
"description": "Name of the event handler on the Genesis server which handles creating an entity",
|
|
991
1018
|
"fieldName": "createEvent"
|
|
992
1019
|
},
|
|
1020
|
+
{
|
|
1021
|
+
"name": "success-notification-title",
|
|
1022
|
+
"type": {
|
|
1023
|
+
"text": "string"
|
|
1024
|
+
},
|
|
1025
|
+
"description": "Overrides the success notification title shown after a successful form submission.\nWhen not set, the default \"{label} Added / Updated / Deleted\" title is used.",
|
|
1026
|
+
"fieldName": "successNotificationTitle"
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"name": "success-notification-body",
|
|
1030
|
+
"type": {
|
|
1031
|
+
"text": "string"
|
|
1032
|
+
},
|
|
1033
|
+
"description": "Overrides the success notification body shown after a successful form submission.\nWhen not set, the default \"The {label} was successfully added/updated/deleted\" body is used.",
|
|
1034
|
+
"fieldName": "successNotificationBody"
|
|
1035
|
+
},
|
|
993
1036
|
{
|
|
994
1037
|
"name": "title",
|
|
995
1038
|
"type": {
|
|
@@ -1006,6 +1049,14 @@
|
|
|
1006
1049
|
"description": "Label for the entity which is used in the title of the modal when editing the entity, on CRUD buttons and on toast notifications",
|
|
1007
1050
|
"fieldName": "entityLabel"
|
|
1008
1051
|
},
|
|
1052
|
+
{
|
|
1053
|
+
"name": "create-label",
|
|
1054
|
+
"type": {
|
|
1055
|
+
"text": "string"
|
|
1056
|
+
},
|
|
1057
|
+
"description": "Custom label for the create button and modal title. When set, overrides the default \"Add {entityLabel}\" text.",
|
|
1058
|
+
"fieldName": "createLabel"
|
|
1059
|
+
},
|
|
1009
1060
|
{
|
|
1010
1061
|
"name": "row-selection",
|
|
1011
1062
|
"type": {
|
|
@@ -1307,22 +1358,109 @@
|
|
|
1307
1358
|
"declarations": [
|
|
1308
1359
|
{
|
|
1309
1360
|
"kind": "class",
|
|
1310
|
-
"description": "
|
|
1361
|
+
"description": "A focused form dialog component that renders a single trigger button which opens a modal\ncontaining an auto-generated form.",
|
|
1311
1362
|
"name": "SmartFormModal",
|
|
1363
|
+
"cssParts": [
|
|
1364
|
+
{
|
|
1365
|
+
"description": "The trigger button that opens the modal. Style via `::part(create-button)`.",
|
|
1366
|
+
"name": "create-button"
|
|
1367
|
+
}
|
|
1368
|
+
],
|
|
1312
1369
|
"members": [
|
|
1313
1370
|
{
|
|
1314
1371
|
"kind": "field",
|
|
1315
|
-
"name": "
|
|
1372
|
+
"name": "event",
|
|
1316
1373
|
"type": {
|
|
1317
|
-
"text": "
|
|
1374
|
+
"text": "string"
|
|
1318
1375
|
},
|
|
1319
|
-
"
|
|
1320
|
-
"
|
|
1376
|
+
"description": "The Genesis event handler that processes the form submission.",
|
|
1377
|
+
"privacy": "public"
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"kind": "method",
|
|
1381
|
+
"name": "eventChanged",
|
|
1382
|
+
"parameters": [
|
|
1383
|
+
{
|
|
1384
|
+
"name": "_",
|
|
1385
|
+
"type": {
|
|
1386
|
+
"text": "string"
|
|
1387
|
+
}
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
"name": "next",
|
|
1391
|
+
"type": {
|
|
1392
|
+
"text": "string"
|
|
1393
|
+
}
|
|
1394
|
+
}
|
|
1395
|
+
]
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"kind": "field",
|
|
1399
|
+
"name": "entityLabel",
|
|
1400
|
+
"type": {
|
|
1401
|
+
"text": "string"
|
|
1402
|
+
},
|
|
1403
|
+
"description": "Label appended to the default button text, producing \"Add {entity-label}\".",
|
|
1404
|
+
"privacy": "public",
|
|
1321
1405
|
"inheritedFrom": {
|
|
1322
1406
|
"name": "EntityManagement",
|
|
1323
1407
|
"module": "src/entities/entities.ts"
|
|
1324
1408
|
}
|
|
1325
1409
|
},
|
|
1410
|
+
{
|
|
1411
|
+
"kind": "field",
|
|
1412
|
+
"name": "formUiSchema",
|
|
1413
|
+
"type": {
|
|
1414
|
+
"text": "UiSchema"
|
|
1415
|
+
},
|
|
1416
|
+
"description": "UI schema that controls the layout and visibility of form fields.",
|
|
1417
|
+
"privacy": "public"
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"kind": "method",
|
|
1421
|
+
"name": "formUiSchemaChanged",
|
|
1422
|
+
"parameters": [
|
|
1423
|
+
{
|
|
1424
|
+
"name": "_",
|
|
1425
|
+
"type": {
|
|
1426
|
+
"text": "UiSchema"
|
|
1427
|
+
}
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
"name": "next",
|
|
1431
|
+
"type": {
|
|
1432
|
+
"text": "UiSchema"
|
|
1433
|
+
}
|
|
1434
|
+
}
|
|
1435
|
+
]
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"kind": "field",
|
|
1439
|
+
"name": "buttonLabel",
|
|
1440
|
+
"type": {
|
|
1441
|
+
"text": "string"
|
|
1442
|
+
},
|
|
1443
|
+
"description": "Text displayed on the trigger button and as the modal title.",
|
|
1444
|
+
"privacy": "public"
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
"kind": "method",
|
|
1448
|
+
"name": "buttonLabelChanged",
|
|
1449
|
+
"parameters": [
|
|
1450
|
+
{
|
|
1451
|
+
"name": "_",
|
|
1452
|
+
"type": {
|
|
1453
|
+
"text": "string"
|
|
1454
|
+
}
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"name": "next",
|
|
1458
|
+
"type": {
|
|
1459
|
+
"text": "string"
|
|
1460
|
+
}
|
|
1461
|
+
}
|
|
1462
|
+
]
|
|
1463
|
+
},
|
|
1326
1464
|
{
|
|
1327
1465
|
"kind": "field",
|
|
1328
1466
|
"name": "prefix",
|
|
@@ -1440,6 +1578,32 @@
|
|
|
1440
1578
|
"module": "src/entities/entities.ts"
|
|
1441
1579
|
}
|
|
1442
1580
|
},
|
|
1581
|
+
{
|
|
1582
|
+
"kind": "field",
|
|
1583
|
+
"name": "successNotificationTitle",
|
|
1584
|
+
"type": {
|
|
1585
|
+
"text": "string"
|
|
1586
|
+
},
|
|
1587
|
+
"description": "Overrides the success notification title shown after a successful form submission.\nWhen not set, the default \"{label} Added / Updated / Deleted\" title is used.",
|
|
1588
|
+
"privacy": "public",
|
|
1589
|
+
"inheritedFrom": {
|
|
1590
|
+
"name": "EntityManagement",
|
|
1591
|
+
"module": "src/entities/entities.ts"
|
|
1592
|
+
}
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
"kind": "field",
|
|
1596
|
+
"name": "successNotificationBody",
|
|
1597
|
+
"type": {
|
|
1598
|
+
"text": "string"
|
|
1599
|
+
},
|
|
1600
|
+
"description": "Overrides the success notification body shown after a successful form submission.\nWhen not set, the default \"The {label} was successfully added/updated/deleted\" body is used.",
|
|
1601
|
+
"privacy": "public",
|
|
1602
|
+
"inheritedFrom": {
|
|
1603
|
+
"name": "EntityManagement",
|
|
1604
|
+
"module": "src/entities/entities.ts"
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1443
1607
|
{
|
|
1444
1608
|
"kind": "field",
|
|
1445
1609
|
"name": "title",
|
|
@@ -1455,11 +1619,11 @@
|
|
|
1455
1619
|
},
|
|
1456
1620
|
{
|
|
1457
1621
|
"kind": "field",
|
|
1458
|
-
"name": "
|
|
1622
|
+
"name": "createLabel",
|
|
1459
1623
|
"type": {
|
|
1460
1624
|
"text": "string"
|
|
1461
1625
|
},
|
|
1462
|
-
"description": "
|
|
1626
|
+
"description": "Custom label for the create button and modal title. When set, overrides the default \"Add {entityLabel}\" text.",
|
|
1463
1627
|
"privacy": "public",
|
|
1464
1628
|
"inheritedFrom": {
|
|
1465
1629
|
"name": "EntityManagement",
|
|
@@ -1850,6 +2014,19 @@
|
|
|
1850
2014
|
"module": "src/entities/entities.ts"
|
|
1851
2015
|
}
|
|
1852
2016
|
},
|
|
2017
|
+
{
|
|
2018
|
+
"kind": "field",
|
|
2019
|
+
"name": "gridVisible",
|
|
2020
|
+
"type": {
|
|
2021
|
+
"text": "boolean"
|
|
2022
|
+
},
|
|
2023
|
+
"default": "true",
|
|
2024
|
+
"description": "Allows configuration of the search bar component, if not provided it would build configuration based on columns in the grid\n* @internal",
|
|
2025
|
+
"inheritedFrom": {
|
|
2026
|
+
"name": "EntityManagement",
|
|
2027
|
+
"module": "src/entities/entities.ts"
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
1853
2030
|
{
|
|
1854
2031
|
"kind": "field",
|
|
1855
2032
|
"name": "enableFilters",
|
|
@@ -2203,13 +2380,129 @@
|
|
|
2203
2380
|
}
|
|
2204
2381
|
}
|
|
2205
2382
|
],
|
|
2206
|
-
"
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2383
|
+
"events": [
|
|
2384
|
+
{
|
|
2385
|
+
"description": "Fired when the form is submitted successfully.",
|
|
2386
|
+
"name": "submit-success",
|
|
2387
|
+
"inheritedFrom": {
|
|
2388
|
+
"name": "EntityManagement",
|
|
2389
|
+
"module": "src/entities/entities.ts"
|
|
2390
|
+
}
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
"description": "Fired when the form submission returns an error.",
|
|
2394
|
+
"name": "submit-failure",
|
|
2395
|
+
"inheritedFrom": {
|
|
2396
|
+
"name": "EntityManagement",
|
|
2397
|
+
"module": "src/entities/entities.ts"
|
|
2398
|
+
}
|
|
2399
|
+
},
|
|
2400
|
+
{
|
|
2401
|
+
"description": "Fired when the request is changed",
|
|
2402
|
+
"name": "request-changed",
|
|
2403
|
+
"inheritedFrom": {
|
|
2404
|
+
"name": "EntityManagement",
|
|
2405
|
+
"module": "src/entities/entities.ts"
|
|
2406
|
+
}
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
"description": "Fired when the criteria is changed",
|
|
2410
|
+
"name": "criteria-changed",
|
|
2411
|
+
"inheritedFrom": {
|
|
2412
|
+
"name": "EntityManagement",
|
|
2413
|
+
"module": "src/entities/entities.ts"
|
|
2414
|
+
}
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
"description": "Fired when an entity is created",
|
|
2418
|
+
"name": "create-entity",
|
|
2419
|
+
"inheritedFrom": {
|
|
2420
|
+
"name": "EntityManagement",
|
|
2421
|
+
"module": "src/entities/entities.ts"
|
|
2422
|
+
}
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
"description": "Fired when an entity is edited",
|
|
2426
|
+
"name": "edit-entity",
|
|
2427
|
+
"inheritedFrom": {
|
|
2428
|
+
"name": "EntityManagement",
|
|
2429
|
+
"module": "src/entities/entities.ts"
|
|
2430
|
+
}
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
"description": "Fired when an entity is deleted Bubbled events from the child entity-list component",
|
|
2434
|
+
"name": "delete-entity",
|
|
2435
|
+
"inheritedFrom": {
|
|
2436
|
+
"name": "EntityManagement",
|
|
2437
|
+
"module": "src/entities/entities.ts"
|
|
2438
|
+
}
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
"description": "Fired when a row is clicked",
|
|
2442
|
+
"name": "rowClick",
|
|
2443
|
+
"inheritedFrom": {
|
|
2444
|
+
"name": "EntityManagement",
|
|
2445
|
+
"module": "src/entities/entities.ts"
|
|
2446
|
+
}
|
|
2447
|
+
},
|
|
2448
|
+
{
|
|
2449
|
+
"description": "Fired when a row is double clicked",
|
|
2450
|
+
"name": "rowDblClick",
|
|
2451
|
+
"inheritedFrom": {
|
|
2452
|
+
"name": "EntityManagement",
|
|
2453
|
+
"module": "src/entities/entities.ts"
|
|
2454
|
+
}
|
|
2455
|
+
},
|
|
2456
|
+
{
|
|
2457
|
+
"description": "Fired when a row is right clicked",
|
|
2458
|
+
"name": "contextMenu",
|
|
2459
|
+
"inheritedFrom": {
|
|
2460
|
+
"name": "EntityManagement",
|
|
2461
|
+
"module": "src/entities/entities.ts"
|
|
2462
|
+
}
|
|
2463
|
+
},
|
|
2464
|
+
{
|
|
2465
|
+
"description": "Fired when a row is selected",
|
|
2466
|
+
"name": "rowSelected",
|
|
2467
|
+
"inheritedFrom": {
|
|
2468
|
+
"name": "EntityManagement",
|
|
2469
|
+
"module": "src/entities/entities.ts"
|
|
2470
|
+
}
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
"description": "Fired when grid selection changes (bubbled from entity-list)",
|
|
2474
|
+
"name": "selectionChanged",
|
|
2475
|
+
"inheritedFrom": {
|
|
2476
|
+
"name": "EntityManagement",
|
|
2477
|
+
"module": "src/entities/entities.ts"
|
|
2478
|
+
}
|
|
2479
|
+
}
|
|
2480
|
+
],
|
|
2212
2481
|
"attributes": [
|
|
2482
|
+
{
|
|
2483
|
+
"name": "event",
|
|
2484
|
+
"type": {
|
|
2485
|
+
"text": "string"
|
|
2486
|
+
},
|
|
2487
|
+
"description": "The Genesis event handler that processes the form submission.",
|
|
2488
|
+
"fieldName": "event"
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
"name": "entity-label",
|
|
2492
|
+
"type": {
|
|
2493
|
+
"text": "string"
|
|
2494
|
+
},
|
|
2495
|
+
"description": "Label appended to the default button text, producing \"Add {entity-label}\".",
|
|
2496
|
+
"fieldName": "entityLabel"
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
"name": "button-label",
|
|
2500
|
+
"type": {
|
|
2501
|
+
"text": "string"
|
|
2502
|
+
},
|
|
2503
|
+
"description": "Text displayed on the trigger button and as the modal title.",
|
|
2504
|
+
"fieldName": "buttonLabel"
|
|
2505
|
+
},
|
|
2213
2506
|
{
|
|
2214
2507
|
"name": "design-system-prefix",
|
|
2215
2508
|
"type": {
|
|
@@ -2283,6 +2576,30 @@
|
|
|
2283
2576
|
"module": "src/entities/entities.ts"
|
|
2284
2577
|
}
|
|
2285
2578
|
},
|
|
2579
|
+
{
|
|
2580
|
+
"name": "success-notification-title",
|
|
2581
|
+
"type": {
|
|
2582
|
+
"text": "string"
|
|
2583
|
+
},
|
|
2584
|
+
"description": "Overrides the success notification title shown after a successful form submission.\nWhen not set, the default \"{label} Added / Updated / Deleted\" title is used.",
|
|
2585
|
+
"fieldName": "successNotificationTitle",
|
|
2586
|
+
"inheritedFrom": {
|
|
2587
|
+
"name": "EntityManagement",
|
|
2588
|
+
"module": "src/entities/entities.ts"
|
|
2589
|
+
}
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"name": "success-notification-body",
|
|
2593
|
+
"type": {
|
|
2594
|
+
"text": "string"
|
|
2595
|
+
},
|
|
2596
|
+
"description": "Overrides the success notification body shown after a successful form submission.\nWhen not set, the default \"The {label} was successfully added/updated/deleted\" body is used.",
|
|
2597
|
+
"fieldName": "successNotificationBody",
|
|
2598
|
+
"inheritedFrom": {
|
|
2599
|
+
"name": "EntityManagement",
|
|
2600
|
+
"module": "src/entities/entities.ts"
|
|
2601
|
+
}
|
|
2602
|
+
},
|
|
2286
2603
|
{
|
|
2287
2604
|
"name": "title",
|
|
2288
2605
|
"type": {
|
|
@@ -2307,6 +2624,18 @@
|
|
|
2307
2624
|
"module": "src/entities/entities.ts"
|
|
2308
2625
|
}
|
|
2309
2626
|
},
|
|
2627
|
+
{
|
|
2628
|
+
"name": "create-label",
|
|
2629
|
+
"type": {
|
|
2630
|
+
"text": "string"
|
|
2631
|
+
},
|
|
2632
|
+
"description": "Custom label for the create button and modal title. When set, overrides the default \"Add {entityLabel}\" text.",
|
|
2633
|
+
"fieldName": "createLabel",
|
|
2634
|
+
"inheritedFrom": {
|
|
2635
|
+
"name": "EntityManagement",
|
|
2636
|
+
"module": "src/entities/entities.ts"
|
|
2637
|
+
}
|
|
2638
|
+
},
|
|
2310
2639
|
{
|
|
2311
2640
|
"name": "row-selection",
|
|
2312
2641
|
"type": {
|
|
@@ -2622,104 +2951,12 @@
|
|
|
2622
2951
|
}
|
|
2623
2952
|
}
|
|
2624
2953
|
],
|
|
2625
|
-
"
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
"module": "src/entities/entities.ts"
|
|
2632
|
-
}
|
|
2633
|
-
},
|
|
2634
|
-
{
|
|
2635
|
-
"description": "Fired when the criteria is changed",
|
|
2636
|
-
"name": "criteria-changed",
|
|
2637
|
-
"inheritedFrom": {
|
|
2638
|
-
"name": "EntityManagement",
|
|
2639
|
-
"module": "src/entities/entities.ts"
|
|
2640
|
-
}
|
|
2641
|
-
},
|
|
2642
|
-
{
|
|
2643
|
-
"description": "Fired when an entity is created",
|
|
2644
|
-
"name": "create-entity",
|
|
2645
|
-
"inheritedFrom": {
|
|
2646
|
-
"name": "EntityManagement",
|
|
2647
|
-
"module": "src/entities/entities.ts"
|
|
2648
|
-
}
|
|
2649
|
-
},
|
|
2650
|
-
{
|
|
2651
|
-
"description": "Fired when an entity is edited",
|
|
2652
|
-
"name": "edit-entity",
|
|
2653
|
-
"inheritedFrom": {
|
|
2654
|
-
"name": "EntityManagement",
|
|
2655
|
-
"module": "src/entities/entities.ts"
|
|
2656
|
-
}
|
|
2657
|
-
},
|
|
2658
|
-
{
|
|
2659
|
-
"description": "Fired when an entity is deleted Bubbled events from the child entity-list component",
|
|
2660
|
-
"name": "delete-entity",
|
|
2661
|
-
"inheritedFrom": {
|
|
2662
|
-
"name": "EntityManagement",
|
|
2663
|
-
"module": "src/entities/entities.ts"
|
|
2664
|
-
}
|
|
2665
|
-
},
|
|
2666
|
-
{
|
|
2667
|
-
"description": "Fired when there is an error in a create, edit or delete operation",
|
|
2668
|
-
"name": "submit-failure",
|
|
2669
|
-
"inheritedFrom": {
|
|
2670
|
-
"name": "EntityManagement",
|
|
2671
|
-
"module": "src/entities/entities.ts"
|
|
2672
|
-
}
|
|
2673
|
-
},
|
|
2674
|
-
{
|
|
2675
|
-
"description": "Fired when a create, edit or delete operation is completed successfully",
|
|
2676
|
-
"name": "submit-success",
|
|
2677
|
-
"inheritedFrom": {
|
|
2678
|
-
"name": "EntityManagement",
|
|
2679
|
-
"module": "src/entities/entities.ts"
|
|
2680
|
-
}
|
|
2681
|
-
},
|
|
2682
|
-
{
|
|
2683
|
-
"description": "Fired when a row is clicked",
|
|
2684
|
-
"name": "rowClick",
|
|
2685
|
-
"inheritedFrom": {
|
|
2686
|
-
"name": "EntityManagement",
|
|
2687
|
-
"module": "src/entities/entities.ts"
|
|
2688
|
-
}
|
|
2689
|
-
},
|
|
2690
|
-
{
|
|
2691
|
-
"description": "Fired when a row is double clicked",
|
|
2692
|
-
"name": "rowDblClick",
|
|
2693
|
-
"inheritedFrom": {
|
|
2694
|
-
"name": "EntityManagement",
|
|
2695
|
-
"module": "src/entities/entities.ts"
|
|
2696
|
-
}
|
|
2697
|
-
},
|
|
2698
|
-
{
|
|
2699
|
-
"description": "Fired when a row is right clicked",
|
|
2700
|
-
"name": "contextMenu",
|
|
2701
|
-
"inheritedFrom": {
|
|
2702
|
-
"name": "EntityManagement",
|
|
2703
|
-
"module": "src/entities/entities.ts"
|
|
2704
|
-
}
|
|
2705
|
-
},
|
|
2706
|
-
{
|
|
2707
|
-
"description": "Fired when a row is selected",
|
|
2708
|
-
"name": "rowSelected",
|
|
2709
|
-
"inheritedFrom": {
|
|
2710
|
-
"name": "EntityManagement",
|
|
2711
|
-
"module": "src/entities/entities.ts"
|
|
2712
|
-
}
|
|
2713
|
-
},
|
|
2714
|
-
{
|
|
2715
|
-
"description": "Fired when grid selection changes (bubbled from entity-list)",
|
|
2716
|
-
"name": "selectionChanged",
|
|
2717
|
-
"inheritedFrom": {
|
|
2718
|
-
"name": "EntityManagement",
|
|
2719
|
-
"module": "src/entities/entities.ts"
|
|
2720
|
-
}
|
|
2721
|
-
}
|
|
2722
|
-
]
|
|
2954
|
+
"superclass": {
|
|
2955
|
+
"name": "EntityManagement",
|
|
2956
|
+
"module": "/src/entities/entities"
|
|
2957
|
+
},
|
|
2958
|
+
"tagName": "smart-form-modal",
|
|
2959
|
+
"customElement": true
|
|
2723
2960
|
}
|
|
2724
2961
|
],
|
|
2725
2962
|
"exports": [
|
|
@@ -3514,6 +3751,55 @@
|
|
|
3514
3751
|
}
|
|
3515
3752
|
]
|
|
3516
3753
|
},
|
|
3754
|
+
{
|
|
3755
|
+
"kind": "javascript-module",
|
|
3756
|
+
"path": "src/layouts/default.ts",
|
|
3757
|
+
"declarations": [
|
|
3758
|
+
{
|
|
3759
|
+
"kind": "variable",
|
|
3760
|
+
"name": "loginLayout",
|
|
3761
|
+
"default": "new GenesisElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
|
|
3762
|
+
},
|
|
3763
|
+
{
|
|
3764
|
+
"kind": "variable",
|
|
3765
|
+
"name": "defaultLayout",
|
|
3766
|
+
"default": "new GenesisElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n css`\n ${baseLayoutCss}\n `,\n)"
|
|
3767
|
+
}
|
|
3768
|
+
],
|
|
3769
|
+
"exports": [
|
|
3770
|
+
{
|
|
3771
|
+
"kind": "js",
|
|
3772
|
+
"name": "loginLayout",
|
|
3773
|
+
"declaration": {
|
|
3774
|
+
"name": "loginLayout",
|
|
3775
|
+
"module": "src/layouts/default.ts"
|
|
3776
|
+
}
|
|
3777
|
+
},
|
|
3778
|
+
{
|
|
3779
|
+
"kind": "js",
|
|
3780
|
+
"name": "defaultLayout",
|
|
3781
|
+
"declaration": {
|
|
3782
|
+
"name": "defaultLayout",
|
|
3783
|
+
"module": "src/layouts/default.ts"
|
|
3784
|
+
}
|
|
3785
|
+
}
|
|
3786
|
+
]
|
|
3787
|
+
},
|
|
3788
|
+
{
|
|
3789
|
+
"kind": "javascript-module",
|
|
3790
|
+
"path": "src/layouts/index.ts",
|
|
3791
|
+
"declarations": [],
|
|
3792
|
+
"exports": [
|
|
3793
|
+
{
|
|
3794
|
+
"kind": "js",
|
|
3795
|
+
"name": "*",
|
|
3796
|
+
"declaration": {
|
|
3797
|
+
"name": "*",
|
|
3798
|
+
"package": "./default"
|
|
3799
|
+
}
|
|
3800
|
+
}
|
|
3801
|
+
]
|
|
3802
|
+
},
|
|
3517
3803
|
{
|
|
3518
3804
|
"kind": "javascript-module",
|
|
3519
3805
|
"path": "src/main/index.ts",
|
|
@@ -3658,55 +3944,6 @@
|
|
|
3658
3944
|
}
|
|
3659
3945
|
]
|
|
3660
3946
|
},
|
|
3661
|
-
{
|
|
3662
|
-
"kind": "javascript-module",
|
|
3663
|
-
"path": "src/layouts/default.ts",
|
|
3664
|
-
"declarations": [
|
|
3665
|
-
{
|
|
3666
|
-
"kind": "variable",
|
|
3667
|
-
"name": "loginLayout",
|
|
3668
|
-
"default": "new GenesisElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
|
|
3669
|
-
},
|
|
3670
|
-
{
|
|
3671
|
-
"kind": "variable",
|
|
3672
|
-
"name": "defaultLayout",
|
|
3673
|
-
"default": "new GenesisElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n css`\n ${baseLayoutCss}\n `,\n)"
|
|
3674
|
-
}
|
|
3675
|
-
],
|
|
3676
|
-
"exports": [
|
|
3677
|
-
{
|
|
3678
|
-
"kind": "js",
|
|
3679
|
-
"name": "loginLayout",
|
|
3680
|
-
"declaration": {
|
|
3681
|
-
"name": "loginLayout",
|
|
3682
|
-
"module": "src/layouts/default.ts"
|
|
3683
|
-
}
|
|
3684
|
-
},
|
|
3685
|
-
{
|
|
3686
|
-
"kind": "js",
|
|
3687
|
-
"name": "defaultLayout",
|
|
3688
|
-
"declaration": {
|
|
3689
|
-
"name": "defaultLayout",
|
|
3690
|
-
"module": "src/layouts/default.ts"
|
|
3691
|
-
}
|
|
3692
|
-
}
|
|
3693
|
-
]
|
|
3694
|
-
},
|
|
3695
|
-
{
|
|
3696
|
-
"kind": "javascript-module",
|
|
3697
|
-
"path": "src/layouts/index.ts",
|
|
3698
|
-
"declarations": [],
|
|
3699
|
-
"exports": [
|
|
3700
|
-
{
|
|
3701
|
-
"kind": "js",
|
|
3702
|
-
"name": "*",
|
|
3703
|
-
"declaration": {
|
|
3704
|
-
"name": "*",
|
|
3705
|
-
"package": "./default"
|
|
3706
|
-
}
|
|
3707
|
-
}
|
|
3708
|
-
]
|
|
3709
|
-
},
|
|
3710
3947
|
{
|
|
3711
3948
|
"kind": "javascript-module",
|
|
3712
3949
|
"path": "src/routes/config.ts",
|