@genesislcap/foundation-entity-management 14.462.0 → 14.464.0-row-duplication.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.
@@ -89,41 +89,6 @@
89
89
  }
90
90
  ]
91
91
  },
92
- {
93
- "kind": "javascript-module",
94
- "path": "src/components/components.ts",
95
- "declarations": [
96
- {
97
- "kind": "function",
98
- "name": "loadRemotes"
99
- }
100
- ],
101
- "exports": [
102
- {
103
- "kind": "js",
104
- "name": "loadRemotes",
105
- "declaration": {
106
- "name": "loadRemotes",
107
- "module": "src/components/components.ts"
108
- }
109
- }
110
- ]
111
- },
112
- {
113
- "kind": "javascript-module",
114
- "path": "src/components/index.ts",
115
- "declarations": [],
116
- "exports": [
117
- {
118
- "kind": "js",
119
- "name": "*",
120
- "declaration": {
121
- "name": "*",
122
- "package": "./components"
123
- }
124
- }
125
- ]
126
- },
127
92
  {
128
93
  "kind": "javascript-module",
129
94
  "path": "src/entities/entities.styles.ts",
@@ -342,6 +307,24 @@
342
307
  "description": "Notification config used for submit failures. Defaults to an error snackbar but can be\noverridden while keeping title/body unchanged.",
343
308
  "privacy": "public"
344
309
  },
310
+ {
311
+ "kind": "field",
312
+ "name": "successNotificationTitle",
313
+ "type": {
314
+ "text": "string"
315
+ },
316
+ "description": "Overrides the success notification title shown after a successful form submission.\nWhen not set, the default \"{label} Added / Updated / Deleted\" title is used.",
317
+ "privacy": "public"
318
+ },
319
+ {
320
+ "kind": "field",
321
+ "name": "successNotificationBody",
322
+ "type": {
323
+ "text": "string"
324
+ },
325
+ "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.",
326
+ "privacy": "public"
327
+ },
345
328
  {
346
329
  "kind": "field",
347
330
  "name": "title",
@@ -360,6 +343,15 @@
360
343
  "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
344
  "privacy": "public"
362
345
  },
346
+ {
347
+ "kind": "field",
348
+ "name": "createLabel",
349
+ "type": {
350
+ "text": "string"
351
+ },
352
+ "description": "Custom label for the create button and modal title. When set, overrides the default \"Add {entityLabel}\" text.",
353
+ "privacy": "public"
354
+ },
363
355
  {
364
356
  "kind": "field",
365
357
  "name": "rowSelection",
@@ -990,6 +982,22 @@
990
982
  "description": "Name of the event handler on the Genesis server which handles creating an entity",
991
983
  "fieldName": "createEvent"
992
984
  },
985
+ {
986
+ "name": "success-notification-title",
987
+ "type": {
988
+ "text": "string"
989
+ },
990
+ "description": "Overrides the success notification title shown after a successful form submission.\nWhen not set, the default \"{label} Added / Updated / Deleted\" title is used.",
991
+ "fieldName": "successNotificationTitle"
992
+ },
993
+ {
994
+ "name": "success-notification-body",
995
+ "type": {
996
+ "text": "string"
997
+ },
998
+ "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.",
999
+ "fieldName": "successNotificationBody"
1000
+ },
993
1001
  {
994
1002
  "name": "title",
995
1003
  "type": {
@@ -1006,6 +1014,14 @@
1006
1014
  "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
1015
  "fieldName": "entityLabel"
1008
1016
  },
1017
+ {
1018
+ "name": "create-label",
1019
+ "type": {
1020
+ "text": "string"
1021
+ },
1022
+ "description": "Custom label for the create button and modal title. When set, overrides the default \"Add {entityLabel}\" text.",
1023
+ "fieldName": "createLabel"
1024
+ },
1009
1025
  {
1010
1026
  "name": "row-selection",
1011
1027
  "type": {
@@ -1307,22 +1323,109 @@
1307
1323
  "declarations": [
1308
1324
  {
1309
1325
  "kind": "class",
1310
- "description": "The Smart Form Modal element. Allows to open a modal with an auto-generated form based\non the resource schema.",
1326
+ "description": "A focused form dialog component that renders a single trigger button which opens a modal\ncontaining an auto-generated form.",
1311
1327
  "name": "SmartFormModal",
1328
+ "cssParts": [
1329
+ {
1330
+ "description": "The trigger button that opens the modal. Style via `::part(create-button)`.",
1331
+ "name": "create-button"
1332
+ }
1333
+ ],
1312
1334
  "members": [
1313
1335
  {
1314
1336
  "kind": "field",
1315
- "name": "gridVisible",
1337
+ "name": "event",
1316
1338
  "type": {
1317
- "text": "boolean"
1339
+ "text": "string"
1318
1340
  },
1319
- "default": "false",
1320
- "description": "Allows configuration of the search bar component, if not provided it would build configuration based on columns in the grid\n* @internal",
1341
+ "description": "The Genesis event handler that processes the form submission.",
1342
+ "privacy": "public"
1343
+ },
1344
+ {
1345
+ "kind": "method",
1346
+ "name": "eventChanged",
1347
+ "parameters": [
1348
+ {
1349
+ "name": "_",
1350
+ "type": {
1351
+ "text": "string"
1352
+ }
1353
+ },
1354
+ {
1355
+ "name": "next",
1356
+ "type": {
1357
+ "text": "string"
1358
+ }
1359
+ }
1360
+ ]
1361
+ },
1362
+ {
1363
+ "kind": "field",
1364
+ "name": "entityLabel",
1365
+ "type": {
1366
+ "text": "string"
1367
+ },
1368
+ "description": "Label appended to the default button text, producing \"Add {entity-label}\".",
1369
+ "privacy": "public",
1321
1370
  "inheritedFrom": {
1322
1371
  "name": "EntityManagement",
1323
1372
  "module": "src/entities/entities.ts"
1324
1373
  }
1325
1374
  },
1375
+ {
1376
+ "kind": "field",
1377
+ "name": "formUiSchema",
1378
+ "type": {
1379
+ "text": "UiSchema"
1380
+ },
1381
+ "description": "UI schema that controls the layout and visibility of form fields.",
1382
+ "privacy": "public"
1383
+ },
1384
+ {
1385
+ "kind": "method",
1386
+ "name": "formUiSchemaChanged",
1387
+ "parameters": [
1388
+ {
1389
+ "name": "_",
1390
+ "type": {
1391
+ "text": "UiSchema"
1392
+ }
1393
+ },
1394
+ {
1395
+ "name": "next",
1396
+ "type": {
1397
+ "text": "UiSchema"
1398
+ }
1399
+ }
1400
+ ]
1401
+ },
1402
+ {
1403
+ "kind": "field",
1404
+ "name": "buttonLabel",
1405
+ "type": {
1406
+ "text": "string"
1407
+ },
1408
+ "description": "Text displayed on the trigger button and as the modal title.",
1409
+ "privacy": "public"
1410
+ },
1411
+ {
1412
+ "kind": "method",
1413
+ "name": "buttonLabelChanged",
1414
+ "parameters": [
1415
+ {
1416
+ "name": "_",
1417
+ "type": {
1418
+ "text": "string"
1419
+ }
1420
+ },
1421
+ {
1422
+ "name": "next",
1423
+ "type": {
1424
+ "text": "string"
1425
+ }
1426
+ }
1427
+ ]
1428
+ },
1326
1429
  {
1327
1430
  "kind": "field",
1328
1431
  "name": "prefix",
@@ -1440,6 +1543,32 @@
1440
1543
  "module": "src/entities/entities.ts"
1441
1544
  }
1442
1545
  },
1546
+ {
1547
+ "kind": "field",
1548
+ "name": "successNotificationTitle",
1549
+ "type": {
1550
+ "text": "string"
1551
+ },
1552
+ "description": "Overrides the success notification title shown after a successful form submission.\nWhen not set, the default \"{label} Added / Updated / Deleted\" title is used.",
1553
+ "privacy": "public",
1554
+ "inheritedFrom": {
1555
+ "name": "EntityManagement",
1556
+ "module": "src/entities/entities.ts"
1557
+ }
1558
+ },
1559
+ {
1560
+ "kind": "field",
1561
+ "name": "successNotificationBody",
1562
+ "type": {
1563
+ "text": "string"
1564
+ },
1565
+ "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.",
1566
+ "privacy": "public",
1567
+ "inheritedFrom": {
1568
+ "name": "EntityManagement",
1569
+ "module": "src/entities/entities.ts"
1570
+ }
1571
+ },
1443
1572
  {
1444
1573
  "kind": "field",
1445
1574
  "name": "title",
@@ -1455,11 +1584,11 @@
1455
1584
  },
1456
1585
  {
1457
1586
  "kind": "field",
1458
- "name": "entityLabel",
1587
+ "name": "createLabel",
1459
1588
  "type": {
1460
1589
  "text": "string"
1461
1590
  },
1462
- "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",
1591
+ "description": "Custom label for the create button and modal title. When set, overrides the default \"Add {entityLabel}\" text.",
1463
1592
  "privacy": "public",
1464
1593
  "inheritedFrom": {
1465
1594
  "name": "EntityManagement",
@@ -1850,6 +1979,19 @@
1850
1979
  "module": "src/entities/entities.ts"
1851
1980
  }
1852
1981
  },
1982
+ {
1983
+ "kind": "field",
1984
+ "name": "gridVisible",
1985
+ "type": {
1986
+ "text": "boolean"
1987
+ },
1988
+ "default": "true",
1989
+ "description": "Allows configuration of the search bar component, if not provided it would build configuration based on columns in the grid\n* @internal",
1990
+ "inheritedFrom": {
1991
+ "name": "EntityManagement",
1992
+ "module": "src/entities/entities.ts"
1993
+ }
1994
+ },
1853
1995
  {
1854
1996
  "kind": "field",
1855
1997
  "name": "enableFilters",
@@ -2203,115 +2345,267 @@
2203
2345
  }
2204
2346
  }
2205
2347
  ],
2206
- "superclass": {
2207
- "name": "EntityManagement",
2208
- "module": "/src/entities/entities"
2209
- },
2210
- "tagName": "smart-form-modal",
2211
- "customElement": true,
2212
- "attributes": [
2348
+ "events": [
2213
2349
  {
2214
- "name": "design-system-prefix",
2215
- "type": {
2216
- "text": "string"
2217
- },
2218
- "default": "'rapid'",
2219
- "description": "Name of the design system prefix that will be used in renderers.",
2220
- "fieldName": "prefix",
2350
+ "description": "Fired when the form is submitted successfully.",
2351
+ "name": "submit-success",
2221
2352
  "inheritedFrom": {
2222
2353
  "name": "EntityManagement",
2223
2354
  "module": "src/entities/entities.ts"
2224
2355
  }
2225
2356
  },
2226
2357
  {
2227
- "name": "resourceName",
2228
- "type": {
2229
- "text": "string"
2230
- },
2231
- "description": "Name of the backend resource which contain the entities to manage",
2232
- "fieldName": "resourceName",
2358
+ "description": "Fired when the form submission returns an error.",
2359
+ "name": "submit-failure",
2233
2360
  "inheritedFrom": {
2234
2361
  "name": "EntityManagement",
2235
2362
  "module": "src/entities/entities.ts"
2236
2363
  }
2237
2364
  },
2238
2365
  {
2239
- "name": "readEvent",
2240
- "type": {
2241
- "text": "string"
2242
- },
2243
- "description": "Name of the request on the Genesis server which fetches data for the form, example usage could\ninclude fetching additional data that is not available in the grid but required for the selected entity",
2244
- "fieldName": "readEvent",
2366
+ "description": "Fired when the request is changed",
2367
+ "name": "request-changed",
2245
2368
  "inheritedFrom": {
2246
2369
  "name": "EntityManagement",
2247
2370
  "module": "src/entities/entities.ts"
2248
2371
  }
2249
2372
  },
2250
2373
  {
2251
- "name": "updateEvent",
2252
- "type": {
2253
- "text": "string"
2254
- },
2255
- "description": "Name of the event handler on the Genesis server which handles updating the entity",
2256
- "fieldName": "updateEvent",
2374
+ "description": "Fired when the criteria is changed",
2375
+ "name": "criteria-changed",
2257
2376
  "inheritedFrom": {
2258
2377
  "name": "EntityManagement",
2259
2378
  "module": "src/entities/entities.ts"
2260
2379
  }
2261
2380
  },
2262
2381
  {
2263
- "name": "deleteEvent",
2264
- "type": {
2265
- "text": "string"
2266
- },
2267
- "description": "Name of the event handler on the Genesis server which handles deleting the entity",
2268
- "fieldName": "deleteEvent",
2382
+ "description": "Fired when an entity is created",
2383
+ "name": "create-entity",
2269
2384
  "inheritedFrom": {
2270
2385
  "name": "EntityManagement",
2271
2386
  "module": "src/entities/entities.ts"
2272
2387
  }
2273
2388
  },
2274
2389
  {
2275
- "name": "createEvent",
2276
- "type": {
2277
- "text": "string"
2278
- },
2279
- "description": "Name of the event handler on the Genesis server which handles creating an entity",
2280
- "fieldName": "createEvent",
2390
+ "description": "Fired when an entity is edited",
2391
+ "name": "edit-entity",
2281
2392
  "inheritedFrom": {
2282
2393
  "name": "EntityManagement",
2283
2394
  "module": "src/entities/entities.ts"
2284
2395
  }
2285
2396
  },
2286
2397
  {
2287
- "name": "title",
2288
- "type": {
2289
- "text": "string"
2290
- },
2291
- "description": "Title of the grid",
2292
- "fieldName": "title",
2398
+ "description": "Fired when an entity is deleted Bubbled events from the child entity-list component",
2399
+ "name": "delete-entity",
2293
2400
  "inheritedFrom": {
2294
2401
  "name": "EntityManagement",
2295
2402
  "module": "src/entities/entities.ts"
2296
2403
  }
2297
2404
  },
2298
2405
  {
2299
- "name": "entityLabel",
2300
- "type": {
2301
- "text": "string"
2302
- },
2303
- "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",
2304
- "fieldName": "entityLabel",
2406
+ "description": "Fired when a row is clicked",
2407
+ "name": "rowClick",
2305
2408
  "inheritedFrom": {
2306
2409
  "name": "EntityManagement",
2307
2410
  "module": "src/entities/entities.ts"
2308
2411
  }
2309
2412
  },
2310
2413
  {
2311
- "name": "row-selection",
2312
- "type": {
2313
- "text": "string"
2314
- },
2414
+ "description": "Fired when a row is double clicked",
2415
+ "name": "rowDblClick",
2416
+ "inheritedFrom": {
2417
+ "name": "EntityManagement",
2418
+ "module": "src/entities/entities.ts"
2419
+ }
2420
+ },
2421
+ {
2422
+ "description": "Fired when a row is right clicked",
2423
+ "name": "contextMenu",
2424
+ "inheritedFrom": {
2425
+ "name": "EntityManagement",
2426
+ "module": "src/entities/entities.ts"
2427
+ }
2428
+ },
2429
+ {
2430
+ "description": "Fired when a row is selected",
2431
+ "name": "rowSelected",
2432
+ "inheritedFrom": {
2433
+ "name": "EntityManagement",
2434
+ "module": "src/entities/entities.ts"
2435
+ }
2436
+ },
2437
+ {
2438
+ "description": "Fired when grid selection changes (bubbled from entity-list)",
2439
+ "name": "selectionChanged",
2440
+ "inheritedFrom": {
2441
+ "name": "EntityManagement",
2442
+ "module": "src/entities/entities.ts"
2443
+ }
2444
+ }
2445
+ ],
2446
+ "attributes": [
2447
+ {
2448
+ "name": "event",
2449
+ "type": {
2450
+ "text": "string"
2451
+ },
2452
+ "description": "The Genesis event handler that processes the form submission.",
2453
+ "fieldName": "event"
2454
+ },
2455
+ {
2456
+ "name": "entity-label",
2457
+ "type": {
2458
+ "text": "string"
2459
+ },
2460
+ "description": "Label appended to the default button text, producing \"Add {entity-label}\".",
2461
+ "fieldName": "entityLabel"
2462
+ },
2463
+ {
2464
+ "name": "button-label",
2465
+ "type": {
2466
+ "text": "string"
2467
+ },
2468
+ "description": "Text displayed on the trigger button and as the modal title.",
2469
+ "fieldName": "buttonLabel"
2470
+ },
2471
+ {
2472
+ "name": "design-system-prefix",
2473
+ "type": {
2474
+ "text": "string"
2475
+ },
2476
+ "default": "'rapid'",
2477
+ "description": "Name of the design system prefix that will be used in renderers.",
2478
+ "fieldName": "prefix",
2479
+ "inheritedFrom": {
2480
+ "name": "EntityManagement",
2481
+ "module": "src/entities/entities.ts"
2482
+ }
2483
+ },
2484
+ {
2485
+ "name": "resourceName",
2486
+ "type": {
2487
+ "text": "string"
2488
+ },
2489
+ "description": "Name of the backend resource which contain the entities to manage",
2490
+ "fieldName": "resourceName",
2491
+ "inheritedFrom": {
2492
+ "name": "EntityManagement",
2493
+ "module": "src/entities/entities.ts"
2494
+ }
2495
+ },
2496
+ {
2497
+ "name": "readEvent",
2498
+ "type": {
2499
+ "text": "string"
2500
+ },
2501
+ "description": "Name of the request on the Genesis server which fetches data for the form, example usage could\ninclude fetching additional data that is not available in the grid but required for the selected entity",
2502
+ "fieldName": "readEvent",
2503
+ "inheritedFrom": {
2504
+ "name": "EntityManagement",
2505
+ "module": "src/entities/entities.ts"
2506
+ }
2507
+ },
2508
+ {
2509
+ "name": "updateEvent",
2510
+ "type": {
2511
+ "text": "string"
2512
+ },
2513
+ "description": "Name of the event handler on the Genesis server which handles updating the entity",
2514
+ "fieldName": "updateEvent",
2515
+ "inheritedFrom": {
2516
+ "name": "EntityManagement",
2517
+ "module": "src/entities/entities.ts"
2518
+ }
2519
+ },
2520
+ {
2521
+ "name": "deleteEvent",
2522
+ "type": {
2523
+ "text": "string"
2524
+ },
2525
+ "description": "Name of the event handler on the Genesis server which handles deleting the entity",
2526
+ "fieldName": "deleteEvent",
2527
+ "inheritedFrom": {
2528
+ "name": "EntityManagement",
2529
+ "module": "src/entities/entities.ts"
2530
+ }
2531
+ },
2532
+ {
2533
+ "name": "createEvent",
2534
+ "type": {
2535
+ "text": "string"
2536
+ },
2537
+ "description": "Name of the event handler on the Genesis server which handles creating an entity",
2538
+ "fieldName": "createEvent",
2539
+ "inheritedFrom": {
2540
+ "name": "EntityManagement",
2541
+ "module": "src/entities/entities.ts"
2542
+ }
2543
+ },
2544
+ {
2545
+ "name": "success-notification-title",
2546
+ "type": {
2547
+ "text": "string"
2548
+ },
2549
+ "description": "Overrides the success notification title shown after a successful form submission.\nWhen not set, the default \"{label} Added / Updated / Deleted\" title is used.",
2550
+ "fieldName": "successNotificationTitle",
2551
+ "inheritedFrom": {
2552
+ "name": "EntityManagement",
2553
+ "module": "src/entities/entities.ts"
2554
+ }
2555
+ },
2556
+ {
2557
+ "name": "success-notification-body",
2558
+ "type": {
2559
+ "text": "string"
2560
+ },
2561
+ "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.",
2562
+ "fieldName": "successNotificationBody",
2563
+ "inheritedFrom": {
2564
+ "name": "EntityManagement",
2565
+ "module": "src/entities/entities.ts"
2566
+ }
2567
+ },
2568
+ {
2569
+ "name": "title",
2570
+ "type": {
2571
+ "text": "string"
2572
+ },
2573
+ "description": "Title of the grid",
2574
+ "fieldName": "title",
2575
+ "inheritedFrom": {
2576
+ "name": "EntityManagement",
2577
+ "module": "src/entities/entities.ts"
2578
+ }
2579
+ },
2580
+ {
2581
+ "name": "entityLabel",
2582
+ "type": {
2583
+ "text": "string"
2584
+ },
2585
+ "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",
2586
+ "fieldName": "entityLabel",
2587
+ "inheritedFrom": {
2588
+ "name": "EntityManagement",
2589
+ "module": "src/entities/entities.ts"
2590
+ }
2591
+ },
2592
+ {
2593
+ "name": "create-label",
2594
+ "type": {
2595
+ "text": "string"
2596
+ },
2597
+ "description": "Custom label for the create button and modal title. When set, overrides the default \"Add {entityLabel}\" text.",
2598
+ "fieldName": "createLabel",
2599
+ "inheritedFrom": {
2600
+ "name": "EntityManagement",
2601
+ "module": "src/entities/entities.ts"
2602
+ }
2603
+ },
2604
+ {
2605
+ "name": "row-selection",
2606
+ "type": {
2607
+ "text": "string"
2608
+ },
2315
2609
  "default": "'single'",
2316
2610
  "description": "This attribute allows you to change row-selection to 'single' or 'multiple' which will allow you to select single or multiple rows.",
2317
2611
  "fieldName": "rowSelection",
@@ -2622,104 +2916,12 @@
2622
2916
  }
2623
2917
  }
2624
2918
  ],
2625
- "events": [
2626
- {
2627
- "description": "Fired when the request is changed",
2628
- "name": "request-changed",
2629
- "inheritedFrom": {
2630
- "name": "EntityManagement",
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
- ]
2919
+ "superclass": {
2920
+ "name": "EntityManagement",
2921
+ "module": "/src/entities/entities"
2922
+ },
2923
+ "tagName": "smart-form-modal",
2924
+ "customElement": true
2723
2925
  }
2724
2926
  ],
2725
2927
  "exports": [
@@ -2741,6 +2943,41 @@
2741
2943
  }
2742
2944
  ]
2743
2945
  },
2946
+ {
2947
+ "kind": "javascript-module",
2948
+ "path": "src/components/components.ts",
2949
+ "declarations": [
2950
+ {
2951
+ "kind": "function",
2952
+ "name": "loadRemotes"
2953
+ }
2954
+ ],
2955
+ "exports": [
2956
+ {
2957
+ "kind": "js",
2958
+ "name": "loadRemotes",
2959
+ "declaration": {
2960
+ "name": "loadRemotes",
2961
+ "module": "src/components/components.ts"
2962
+ }
2963
+ }
2964
+ ]
2965
+ },
2966
+ {
2967
+ "kind": "javascript-module",
2968
+ "path": "src/components/index.ts",
2969
+ "declarations": [],
2970
+ "exports": [
2971
+ {
2972
+ "kind": "js",
2973
+ "name": "*",
2974
+ "declaration": {
2975
+ "name": "*",
2976
+ "package": "./components"
2977
+ }
2978
+ }
2979
+ ]
2980
+ },
2744
2981
  {
2745
2982
  "kind": "javascript-module",
2746
2983
  "path": "src/list/index.ts",
@@ -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",