@genesislcap/foundation-ui 14.406.0-workspaces.2 → 14.406.0-workspaces.5

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 (44) hide show
  1. package/dist/custom-elements.json +1590 -630
  2. package/dist/dts/components/grid-register/grid-register.d.ts +19 -0
  3. package/dist/dts/components/grid-register/grid-register.d.ts.map +1 -0
  4. package/dist/dts/components/grid-register/grid-register.template.d.ts +4 -0
  5. package/dist/dts/components/grid-register/grid-register.template.d.ts.map +1 -0
  6. package/dist/dts/components/layout-wrapper/layout-wrapper.d.ts +10 -0
  7. package/dist/dts/components/layout-wrapper/layout-wrapper.d.ts.map +1 -0
  8. package/dist/dts/components/layout-wrapper/layout-wrapper.template.d.ts +4 -0
  9. package/dist/dts/components/layout-wrapper/layout-wrapper.template.d.ts.map +1 -0
  10. package/dist/dts/index.d.ts +2 -0
  11. package/dist/dts/index.d.ts.map +1 -1
  12. package/dist/dts/workspace/filter-registry.d.ts +34 -0
  13. package/dist/dts/workspace/filter-registry.d.ts.map +1 -0
  14. package/dist/dts/workspace/grid-registry.d.ts +47 -0
  15. package/dist/dts/workspace/grid-registry.d.ts.map +1 -0
  16. package/dist/dts/workspace/index.d.ts +4 -2
  17. package/dist/dts/workspace/index.d.ts.map +1 -1
  18. package/dist/dts/workspace/layout-registry.d.ts +27 -0
  19. package/dist/dts/workspace/layout-registry.d.ts.map +1 -0
  20. package/dist/dts/workspace/workspace-state.d.ts +45 -0
  21. package/dist/dts/workspace/workspace-state.d.ts.map +1 -0
  22. package/dist/dts/workspace/workspace-state.types.d.ts +0 -11
  23. package/dist/dts/workspace/workspace-state.types.d.ts.map +1 -1
  24. package/dist/dts/workspace/workspace.types.d.ts +1 -1
  25. package/dist/dts/workspace/workspace.types.d.ts.map +1 -1
  26. package/dist/dts/workspace-manager/workspace-manager.d.ts +5 -5
  27. package/dist/dts/workspace-manager/workspace-manager.d.ts.map +1 -1
  28. package/dist/esm/components/grid-register/grid-register.js +137 -0
  29. package/dist/esm/components/grid-register/grid-register.template.js +4 -0
  30. package/dist/esm/components/layout-wrapper/layout-wrapper.js +62 -0
  31. package/dist/esm/components/layout-wrapper/layout-wrapper.template.js +4 -0
  32. package/dist/esm/index.js +2 -0
  33. package/dist/esm/workspace/filter-registry.js +47 -0
  34. package/dist/esm/workspace/grid-registry.js +113 -0
  35. package/dist/esm/workspace/index.js +4 -2
  36. package/dist/esm/workspace/layout-registry.js +46 -0
  37. package/dist/esm/workspace/workspace-state.js +193 -0
  38. package/package.json +19 -19
  39. package/dist/dts/workspace/workspace-di.d.ts +0 -13
  40. package/dist/dts/workspace/workspace-di.d.ts.map +0 -1
  41. package/dist/dts/workspace/workspace-registry.types.d.ts +0 -34
  42. package/dist/dts/workspace/workspace-registry.types.d.ts.map +0 -1
  43. package/dist/esm/workspace/workspace-di.js +0 -9
  44. package/dist/esm/workspace/workspace-registry.types.js +0 -1
@@ -843,6 +843,22 @@
843
843
  "name": "getPrefix",
844
844
  "module": "./utils/dom"
845
845
  }
846
+ },
847
+ {
848
+ "kind": "js",
849
+ "name": "*",
850
+ "declaration": {
851
+ "name": "*",
852
+ "package": "./workspace"
853
+ }
854
+ },
855
+ {
856
+ "kind": "js",
857
+ "name": "*",
858
+ "declaration": {
859
+ "name": "*",
860
+ "package": "./workspace-manager"
861
+ }
846
862
  }
847
863
  ]
848
864
  },
@@ -1287,6 +1303,219 @@
1287
1303
  }
1288
1304
  ]
1289
1305
  },
1306
+ {
1307
+ "kind": "javascript-module",
1308
+ "path": "src/accordion/accordion.styles.ts",
1309
+ "declarations": [
1310
+ {
1311
+ "kind": "function",
1312
+ "name": "foundationAccordionStyles",
1313
+ "return": {
1314
+ "type": {
1315
+ "text": "ElementStyles"
1316
+ }
1317
+ },
1318
+ "parameters": [
1319
+ {
1320
+ "name": "context",
1321
+ "type": {
1322
+ "text": "ElementDefinitionContext"
1323
+ }
1324
+ },
1325
+ {
1326
+ "name": "definition",
1327
+ "type": {
1328
+ "text": "FoundationElementDefinition"
1329
+ }
1330
+ }
1331
+ ]
1332
+ }
1333
+ ],
1334
+ "exports": [
1335
+ {
1336
+ "kind": "js",
1337
+ "name": "foundationAccordionStyles",
1338
+ "declaration": {
1339
+ "name": "foundationAccordionStyles",
1340
+ "module": "src/accordion/accordion.styles.ts"
1341
+ }
1342
+ }
1343
+ ]
1344
+ },
1345
+ {
1346
+ "kind": "javascript-module",
1347
+ "path": "src/accordion/accordion.template.ts",
1348
+ "declarations": [
1349
+ {
1350
+ "kind": "function",
1351
+ "name": "foundationAccordionTemplate",
1352
+ "return": {
1353
+ "type": {
1354
+ "text": "ViewTemplate<Accordion>"
1355
+ }
1356
+ },
1357
+ "parameters": [
1358
+ {
1359
+ "name": "context",
1360
+ "type": {
1361
+ "text": "ElementDefinitionContext"
1362
+ }
1363
+ },
1364
+ {
1365
+ "name": "definition",
1366
+ "type": {
1367
+ "text": "FoundationElementDefinition"
1368
+ }
1369
+ }
1370
+ ]
1371
+ }
1372
+ ],
1373
+ "exports": [
1374
+ {
1375
+ "kind": "js",
1376
+ "name": "foundationAccordionTemplate",
1377
+ "declaration": {
1378
+ "name": "foundationAccordionTemplate",
1379
+ "module": "src/accordion/accordion.template.ts"
1380
+ }
1381
+ }
1382
+ ]
1383
+ },
1384
+ {
1385
+ "kind": "javascript-module",
1386
+ "path": "src/accordion/accordion.ts",
1387
+ "declarations": [
1388
+ {
1389
+ "kind": "class",
1390
+ "description": "",
1391
+ "name": "Accordion",
1392
+ "superclass": {
1393
+ "name": "FASTAccordion",
1394
+ "package": "@microsoft/fast-foundation"
1395
+ },
1396
+ "tagName": "%%prefix%%-accordion",
1397
+ "customElement": true
1398
+ },
1399
+ {
1400
+ "kind": "variable",
1401
+ "name": "foundationAccordionShadowOptions",
1402
+ "type": {
1403
+ "text": "ShadowRootInit"
1404
+ },
1405
+ "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
1406
+ },
1407
+ {
1408
+ "kind": "variable",
1409
+ "name": "defaultAccordionConfig",
1410
+ "type": {
1411
+ "text": "object"
1412
+ },
1413
+ "default": "{}"
1414
+ },
1415
+ {
1416
+ "kind": "variable",
1417
+ "name": "foundationAccordion",
1418
+ "description": "The Foundation Accordion",
1419
+ "privacy": "public"
1420
+ }
1421
+ ],
1422
+ "exports": [
1423
+ {
1424
+ "kind": "js",
1425
+ "name": "Accordion",
1426
+ "declaration": {
1427
+ "name": "Accordion",
1428
+ "module": "src/accordion/accordion.ts"
1429
+ }
1430
+ },
1431
+ {
1432
+ "kind": "js",
1433
+ "name": "foundationAccordionShadowOptions",
1434
+ "declaration": {
1435
+ "name": "foundationAccordionShadowOptions",
1436
+ "module": "src/accordion/accordion.ts"
1437
+ }
1438
+ },
1439
+ {
1440
+ "kind": "js",
1441
+ "name": "defaultAccordionConfig",
1442
+ "declaration": {
1443
+ "name": "defaultAccordionConfig",
1444
+ "module": "src/accordion/accordion.ts"
1445
+ }
1446
+ },
1447
+ {
1448
+ "kind": "js",
1449
+ "name": "foundationAccordion",
1450
+ "declaration": {
1451
+ "name": "foundationAccordion",
1452
+ "module": "src/accordion/accordion.ts"
1453
+ }
1454
+ }
1455
+ ]
1456
+ },
1457
+ {
1458
+ "kind": "javascript-module",
1459
+ "path": "src/accordion/index.ts",
1460
+ "declarations": [],
1461
+ "exports": [
1462
+ {
1463
+ "kind": "js",
1464
+ "name": "*",
1465
+ "declaration": {
1466
+ "name": "*",
1467
+ "package": "./accordion.template"
1468
+ }
1469
+ },
1470
+ {
1471
+ "kind": "js",
1472
+ "name": "*",
1473
+ "declaration": {
1474
+ "name": "*",
1475
+ "package": "./accordion.styles"
1476
+ }
1477
+ },
1478
+ {
1479
+ "kind": "js",
1480
+ "name": "*",
1481
+ "declaration": {
1482
+ "name": "*",
1483
+ "package": "./accordion"
1484
+ }
1485
+ }
1486
+ ]
1487
+ },
1488
+ {
1489
+ "kind": "javascript-module",
1490
+ "path": "src/_config/index.ts",
1491
+ "declarations": [],
1492
+ "exports": [
1493
+ {
1494
+ "kind": "js",
1495
+ "name": "*",
1496
+ "declaration": {
1497
+ "name": "*",
1498
+ "package": "./styles"
1499
+ }
1500
+ },
1501
+ {
1502
+ "kind": "js",
1503
+ "name": "*",
1504
+ "declaration": {
1505
+ "name": "*",
1506
+ "package": "./tokens"
1507
+ }
1508
+ },
1509
+ {
1510
+ "kind": "js",
1511
+ "name": "*",
1512
+ "declaration": {
1513
+ "name": "*",
1514
+ "package": "./values"
1515
+ }
1516
+ }
1517
+ ]
1518
+ },
1290
1519
  {
1291
1520
  "kind": "javascript-module",
1292
1521
  "path": "src/accordion-item/accordion-item.styles.ts",
@@ -1681,37 +1910,6 @@
1681
1910
  }
1682
1911
  ]
1683
1912
  },
1684
- {
1685
- "kind": "javascript-module",
1686
- "path": "src/_config/index.ts",
1687
- "declarations": [],
1688
- "exports": [
1689
- {
1690
- "kind": "js",
1691
- "name": "*",
1692
- "declaration": {
1693
- "name": "*",
1694
- "package": "./styles"
1695
- }
1696
- },
1697
- {
1698
- "kind": "js",
1699
- "name": "*",
1700
- "declaration": {
1701
- "name": "*",
1702
- "package": "./tokens"
1703
- }
1704
- },
1705
- {
1706
- "kind": "js",
1707
- "name": "*",
1708
- "declaration": {
1709
- "name": "*",
1710
- "package": "./values"
1711
- }
1712
- }
1713
- ]
1714
- },
1715
1913
  {
1716
1914
  "kind": "javascript-module",
1717
1915
  "path": "src/actions-menu/actions-menu.styles.ts",
@@ -2273,11 +2471,11 @@
2273
2471
  },
2274
2472
  {
2275
2473
  "kind": "javascript-module",
2276
- "path": "src/accordion/accordion.styles.ts",
2474
+ "path": "src/ai-indicator/ai-indicator.styles.ts",
2277
2475
  "declarations": [
2278
2476
  {
2279
2477
  "kind": "function",
2280
- "name": "foundationAccordionStyles",
2478
+ "name": "foundationAiIndicatorStyles",
2281
2479
  "return": {
2282
2480
  "type": {
2283
2481
  "text": "ElementStyles"
@@ -2302,153 +2500,410 @@
2302
2500
  "exports": [
2303
2501
  {
2304
2502
  "kind": "js",
2305
- "name": "foundationAccordionStyles",
2503
+ "name": "foundationAiIndicatorStyles",
2306
2504
  "declaration": {
2307
- "name": "foundationAccordionStyles",
2308
- "module": "src/accordion/accordion.styles.ts"
2505
+ "name": "foundationAiIndicatorStyles",
2506
+ "module": "src/ai-indicator/ai-indicator.styles.ts"
2309
2507
  }
2310
2508
  }
2311
2509
  ]
2312
2510
  },
2313
2511
  {
2314
2512
  "kind": "javascript-module",
2315
- "path": "src/accordion/accordion.template.ts",
2513
+ "path": "src/ai-indicator/ai-indicator.template.ts",
2316
2514
  "declarations": [
2317
2515
  {
2318
- "kind": "function",
2319
- "name": "foundationAccordionTemplate",
2320
- "return": {
2321
- "type": {
2322
- "text": "ViewTemplate<Accordion>"
2323
- }
2516
+ "kind": "variable",
2517
+ "name": "foundationAiIndicatorTemplate",
2518
+ "type": {
2519
+ "text": "ViewTemplate<AiIndicator>"
2324
2520
  },
2325
- "parameters": [
2326
- {
2327
- "name": "context",
2328
- "type": {
2329
- "text": "ElementDefinitionContext"
2330
- }
2331
- },
2332
- {
2333
- "name": "definition",
2334
- "type": {
2335
- "text": "FoundationElementDefinition"
2336
- }
2337
- }
2338
- ]
2521
+ "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
2339
2522
  }
2340
2523
  ],
2341
2524
  "exports": [
2342
2525
  {
2343
2526
  "kind": "js",
2344
- "name": "foundationAccordionTemplate",
2527
+ "name": "foundationAiIndicatorTemplate",
2345
2528
  "declaration": {
2346
- "name": "foundationAccordionTemplate",
2347
- "module": "src/accordion/accordion.template.ts"
2529
+ "name": "foundationAiIndicatorTemplate",
2530
+ "module": "src/ai-indicator/ai-indicator.template.ts"
2348
2531
  }
2349
2532
  }
2350
2533
  ]
2351
2534
  },
2352
2535
  {
2353
2536
  "kind": "javascript-module",
2354
- "path": "src/accordion/accordion.ts",
2537
+ "path": "src/ai-indicator/ai-indicator.ts",
2355
2538
  "declarations": [
2356
2539
  {
2357
2540
  "kind": "class",
2358
2541
  "description": "",
2359
- "name": "Accordion",
2542
+ "name": "AiIndicator",
2543
+ "members": [
2544
+ {
2545
+ "kind": "field",
2546
+ "name": "aiProvider",
2547
+ "type": {
2548
+ "text": "AIProvider"
2549
+ }
2550
+ },
2551
+ {
2552
+ "kind": "field",
2553
+ "name": "status",
2554
+ "type": {
2555
+ "text": "AIStatus | null"
2556
+ },
2557
+ "default": "null"
2558
+ },
2559
+ {
2560
+ "kind": "field",
2561
+ "name": "open",
2562
+ "type": {
2563
+ "text": "boolean"
2564
+ },
2565
+ "default": "false"
2566
+ },
2567
+ {
2568
+ "kind": "field",
2569
+ "name": "state",
2570
+ "type": {
2571
+ "text": "AIIndicatorState"
2572
+ },
2573
+ "default": "'none'"
2574
+ },
2575
+ {
2576
+ "kind": "field",
2577
+ "name": "isInstalling",
2578
+ "type": {
2579
+ "text": "boolean"
2580
+ },
2581
+ "default": "false"
2582
+ },
2583
+ {
2584
+ "kind": "field",
2585
+ "name": "pollTimer",
2586
+ "type": {
2587
+ "text": "ReturnType<typeof setInterval> | null"
2588
+ },
2589
+ "privacy": "private",
2590
+ "default": "null"
2591
+ },
2592
+ {
2593
+ "kind": "field",
2594
+ "name": "clickOutside",
2595
+ "privacy": "private"
2596
+ },
2597
+ {
2598
+ "kind": "field",
2599
+ "name": "chromeStatusLabel",
2600
+ "type": {
2601
+ "text": "string | null"
2602
+ },
2603
+ "readonly": true
2604
+ },
2605
+ {
2606
+ "kind": "field",
2607
+ "name": "canInstall",
2608
+ "type": {
2609
+ "text": "boolean"
2610
+ },
2611
+ "readonly": true
2612
+ },
2613
+ {
2614
+ "kind": "field",
2615
+ "name": "isDownloading",
2616
+ "type": {
2617
+ "text": "boolean"
2618
+ },
2619
+ "readonly": true
2620
+ },
2621
+ {
2622
+ "kind": "method",
2623
+ "name": "openChanged",
2624
+ "return": {
2625
+ "type": {
2626
+ "text": "void"
2627
+ }
2628
+ }
2629
+ },
2630
+ {
2631
+ "kind": "method",
2632
+ "name": "handleClickOutside",
2633
+ "privacy": "private",
2634
+ "parameters": [
2635
+ {
2636
+ "name": "event",
2637
+ "type": {
2638
+ "text": "MouseEvent"
2639
+ }
2640
+ }
2641
+ ]
2642
+ },
2643
+ {
2644
+ "kind": "method",
2645
+ "name": "toggleDropdown"
2646
+ },
2647
+ {
2648
+ "kind": "method",
2649
+ "name": "refreshStatus",
2650
+ "return": {
2651
+ "type": {
2652
+ "text": "Promise<void>"
2653
+ }
2654
+ }
2655
+ },
2656
+ {
2657
+ "kind": "method",
2658
+ "name": "deriveState",
2659
+ "privacy": "private",
2660
+ "return": {
2661
+ "type": {
2662
+ "text": "AIIndicatorState"
2663
+ }
2664
+ },
2665
+ "parameters": [
2666
+ {
2667
+ "name": "s",
2668
+ "type": {
2669
+ "text": "AIStatus | null"
2670
+ }
2671
+ }
2672
+ ]
2673
+ },
2674
+ {
2675
+ "kind": "method",
2676
+ "name": "maybeStartPolling",
2677
+ "privacy": "private",
2678
+ "return": {
2679
+ "type": {
2680
+ "text": "void"
2681
+ }
2682
+ }
2683
+ },
2684
+ {
2685
+ "kind": "method",
2686
+ "name": "startPolling",
2687
+ "privacy": "private",
2688
+ "return": {
2689
+ "type": {
2690
+ "text": "void"
2691
+ }
2692
+ }
2693
+ },
2694
+ {
2695
+ "kind": "method",
2696
+ "name": "stopPolling",
2697
+ "privacy": "private",
2698
+ "return": {
2699
+ "type": {
2700
+ "text": "void"
2701
+ }
2702
+ }
2703
+ },
2704
+ {
2705
+ "kind": "method",
2706
+ "name": "onInstall",
2707
+ "return": {
2708
+ "type": {
2709
+ "text": "Promise<void>"
2710
+ }
2711
+ }
2712
+ },
2713
+ {
2714
+ "kind": "field",
2715
+ "name": "_presentation",
2716
+ "type": {
2717
+ "text": "ComponentPresentation | null | undefined"
2718
+ },
2719
+ "privacy": "private",
2720
+ "default": "void 0",
2721
+ "inheritedFrom": {
2722
+ "name": "FoundationElement",
2723
+ "module": "src/foundation-element/foundation-element.ts"
2724
+ }
2725
+ },
2726
+ {
2727
+ "kind": "field",
2728
+ "name": "$presentation",
2729
+ "type": {
2730
+ "text": "ComponentPresentation | null"
2731
+ },
2732
+ "privacy": "public",
2733
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2734
+ "inheritedFrom": {
2735
+ "name": "FoundationElement",
2736
+ "module": "src/foundation-element/foundation-element.ts"
2737
+ }
2738
+ },
2739
+ {
2740
+ "kind": "field",
2741
+ "name": "template",
2742
+ "type": {
2743
+ "text": "ElementViewTemplate | void | null"
2744
+ },
2745
+ "privacy": "public",
2746
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
2747
+ "inheritedFrom": {
2748
+ "name": "FoundationElement",
2749
+ "module": "src/foundation-element/foundation-element.ts"
2750
+ }
2751
+ },
2752
+ {
2753
+ "kind": "method",
2754
+ "name": "templateChanged",
2755
+ "privacy": "protected",
2756
+ "return": {
2757
+ "type": {
2758
+ "text": "void"
2759
+ }
2760
+ },
2761
+ "inheritedFrom": {
2762
+ "name": "FoundationElement",
2763
+ "module": "src/foundation-element/foundation-element.ts"
2764
+ }
2765
+ },
2766
+ {
2767
+ "kind": "field",
2768
+ "name": "styles",
2769
+ "type": {
2770
+ "text": "ElementStyles | void | null"
2771
+ },
2772
+ "privacy": "public",
2773
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
2774
+ "inheritedFrom": {
2775
+ "name": "FoundationElement",
2776
+ "module": "src/foundation-element/foundation-element.ts"
2777
+ }
2778
+ },
2779
+ {
2780
+ "kind": "method",
2781
+ "name": "stylesChanged",
2782
+ "privacy": "protected",
2783
+ "return": {
2784
+ "type": {
2785
+ "text": "void"
2786
+ }
2787
+ },
2788
+ "inheritedFrom": {
2789
+ "name": "FoundationElement",
2790
+ "module": "src/foundation-element/foundation-element.ts"
2791
+ }
2792
+ },
2793
+ {
2794
+ "kind": "method",
2795
+ "name": "compose",
2796
+ "privacy": "public",
2797
+ "static": true,
2798
+ "return": {
2799
+ "type": {
2800
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2801
+ }
2802
+ },
2803
+ "parameters": [
2804
+ {
2805
+ "name": "this",
2806
+ "type": {
2807
+ "text": "K"
2808
+ }
2809
+ },
2810
+ {
2811
+ "name": "elementDefinition",
2812
+ "type": {
2813
+ "text": "T"
2814
+ },
2815
+ "description": "The definition of the element to create the registry\nfunction for."
2816
+ }
2817
+ ],
2818
+ "description": "Defines an element registry function with a set of element definition defaults.",
2819
+ "inheritedFrom": {
2820
+ "name": "FoundationElement",
2821
+ "module": "src/foundation-element/foundation-element.ts"
2822
+ }
2823
+ }
2824
+ ],
2360
2825
  "superclass": {
2361
- "name": "FASTAccordion",
2826
+ "name": "FoundationElement",
2362
2827
  "package": "@microsoft/fast-foundation"
2363
2828
  },
2364
- "tagName": "%%prefix%%-accordion",
2829
+ "tagName": "%%prefix%%-ai-indicator",
2365
2830
  "customElement": true
2366
2831
  },
2367
2832
  {
2368
2833
  "kind": "variable",
2369
- "name": "foundationAccordionShadowOptions",
2370
- "type": {
2371
- "text": "ShadowRootInit"
2372
- },
2373
- "default": "{\n delegatesFocus: true,\n mode: 'open',\n}"
2374
- },
2375
- {
2376
- "kind": "variable",
2377
- "name": "defaultAccordionConfig",
2378
- "type": {
2379
- "text": "object"
2380
- },
2381
- "default": "{}"
2382
- },
2383
- {
2384
- "kind": "variable",
2385
- "name": "foundationAccordion",
2386
- "description": "The Foundation Accordion",
2387
- "privacy": "public"
2834
+ "name": "foundationAiIndicator"
2388
2835
  }
2389
2836
  ],
2390
2837
  "exports": [
2391
2838
  {
2392
2839
  "kind": "js",
2393
- "name": "Accordion",
2840
+ "name": "AiIndicator",
2394
2841
  "declaration": {
2395
- "name": "Accordion",
2396
- "module": "src/accordion/accordion.ts"
2842
+ "name": "AiIndicator",
2843
+ "module": "src/ai-indicator/ai-indicator.ts"
2397
2844
  }
2398
2845
  },
2399
2846
  {
2400
2847
  "kind": "js",
2401
- "name": "foundationAccordionShadowOptions",
2848
+ "name": "foundationAiIndicator",
2402
2849
  "declaration": {
2403
- "name": "foundationAccordionShadowOptions",
2404
- "module": "src/accordion/accordion.ts"
2850
+ "name": "foundationAiIndicator",
2851
+ "module": "src/ai-indicator/ai-indicator.ts"
2852
+ }
2853
+ }
2854
+ ]
2855
+ },
2856
+ {
2857
+ "kind": "javascript-module",
2858
+ "path": "src/ai-indicator/index.ts",
2859
+ "declarations": [],
2860
+ "exports": [
2861
+ {
2862
+ "kind": "js",
2863
+ "name": "AiIndicator",
2864
+ "declaration": {
2865
+ "name": "AiIndicator",
2866
+ "module": "./ai-indicator"
2405
2867
  }
2406
2868
  },
2407
2869
  {
2408
2870
  "kind": "js",
2409
- "name": "defaultAccordionConfig",
2871
+ "name": "foundationAiIndicator",
2410
2872
  "declaration": {
2411
- "name": "defaultAccordionConfig",
2412
- "module": "src/accordion/accordion.ts"
2873
+ "name": "foundationAiIndicator",
2874
+ "module": "./ai-indicator"
2413
2875
  }
2414
2876
  },
2415
2877
  {
2416
2878
  "kind": "js",
2417
- "name": "foundationAccordion",
2879
+ "name": "type",
2418
2880
  "declaration": {
2419
- "name": "foundationAccordion",
2420
- "module": "src/accordion/accordion.ts"
2881
+ "name": "type",
2882
+ "module": "./ai-indicator"
2421
2883
  }
2422
- }
2423
- ]
2424
- },
2425
- {
2426
- "kind": "javascript-module",
2427
- "path": "src/accordion/index.ts",
2428
- "declarations": [],
2429
- "exports": [
2884
+ },
2430
2885
  {
2431
2886
  "kind": "js",
2432
- "name": "*",
2887
+ "name": "AIIndicatorState",
2433
2888
  "declaration": {
2434
- "name": "*",
2435
- "package": "./accordion.template"
2889
+ "name": "AIIndicatorState",
2890
+ "module": "./ai-indicator"
2436
2891
  }
2437
2892
  },
2438
2893
  {
2439
2894
  "kind": "js",
2440
- "name": "*",
2895
+ "name": "foundationAiIndicatorTemplate",
2441
2896
  "declaration": {
2442
- "name": "*",
2443
- "package": "./accordion.styles"
2897
+ "name": "foundationAiIndicatorTemplate",
2898
+ "module": "./ai-indicator.template"
2444
2899
  }
2445
2900
  },
2446
2901
  {
2447
2902
  "kind": "js",
2448
- "name": "*",
2903
+ "name": "foundationAiIndicatorStyles",
2449
2904
  "declaration": {
2450
- "name": "*",
2451
- "package": "./accordion"
2905
+ "name": "foundationAiIndicatorStyles",
2906
+ "module": "./ai-indicator.styles"
2452
2907
  }
2453
2908
  }
2454
2909
  ]
@@ -2994,445 +3449,6 @@
2994
3449
  }
2995
3450
  ]
2996
3451
  },
2997
- {
2998
- "kind": "javascript-module",
2999
- "path": "src/ai-indicator/ai-indicator.styles.ts",
3000
- "declarations": [
3001
- {
3002
- "kind": "function",
3003
- "name": "foundationAiIndicatorStyles",
3004
- "return": {
3005
- "type": {
3006
- "text": "ElementStyles"
3007
- }
3008
- },
3009
- "parameters": [
3010
- {
3011
- "name": "context",
3012
- "type": {
3013
- "text": "ElementDefinitionContext"
3014
- }
3015
- },
3016
- {
3017
- "name": "definition",
3018
- "type": {
3019
- "text": "FoundationElementDefinition"
3020
- }
3021
- }
3022
- ]
3023
- }
3024
- ],
3025
- "exports": [
3026
- {
3027
- "kind": "js",
3028
- "name": "foundationAiIndicatorStyles",
3029
- "declaration": {
3030
- "name": "foundationAiIndicatorStyles",
3031
- "module": "src/ai-indicator/ai-indicator.styles.ts"
3032
- }
3033
- }
3034
- ]
3035
- },
3036
- {
3037
- "kind": "javascript-module",
3038
- "path": "src/ai-indicator/ai-indicator.template.ts",
3039
- "declarations": [
3040
- {
3041
- "kind": "variable",
3042
- "name": "foundationAiIndicatorTemplate",
3043
- "type": {
3044
- "text": "ViewTemplate<AiIndicator>"
3045
- },
3046
- "default": "html`\n ${(x) => aiIndicatorTemplate(getPrefix(x))}\n`"
3047
- }
3048
- ],
3049
- "exports": [
3050
- {
3051
- "kind": "js",
3052
- "name": "foundationAiIndicatorTemplate",
3053
- "declaration": {
3054
- "name": "foundationAiIndicatorTemplate",
3055
- "module": "src/ai-indicator/ai-indicator.template.ts"
3056
- }
3057
- }
3058
- ]
3059
- },
3060
- {
3061
- "kind": "javascript-module",
3062
- "path": "src/ai-indicator/ai-indicator.ts",
3063
- "declarations": [
3064
- {
3065
- "kind": "class",
3066
- "description": "",
3067
- "name": "AiIndicator",
3068
- "members": [
3069
- {
3070
- "kind": "field",
3071
- "name": "aiProvider",
3072
- "type": {
3073
- "text": "AIProvider"
3074
- }
3075
- },
3076
- {
3077
- "kind": "field",
3078
- "name": "status",
3079
- "type": {
3080
- "text": "AIStatus | null"
3081
- },
3082
- "default": "null"
3083
- },
3084
- {
3085
- "kind": "field",
3086
- "name": "open",
3087
- "type": {
3088
- "text": "boolean"
3089
- },
3090
- "default": "false"
3091
- },
3092
- {
3093
- "kind": "field",
3094
- "name": "state",
3095
- "type": {
3096
- "text": "AIIndicatorState"
3097
- },
3098
- "default": "'none'"
3099
- },
3100
- {
3101
- "kind": "field",
3102
- "name": "isInstalling",
3103
- "type": {
3104
- "text": "boolean"
3105
- },
3106
- "default": "false"
3107
- },
3108
- {
3109
- "kind": "field",
3110
- "name": "pollTimer",
3111
- "type": {
3112
- "text": "ReturnType<typeof setInterval> | null"
3113
- },
3114
- "privacy": "private",
3115
- "default": "null"
3116
- },
3117
- {
3118
- "kind": "field",
3119
- "name": "clickOutside",
3120
- "privacy": "private"
3121
- },
3122
- {
3123
- "kind": "field",
3124
- "name": "chromeStatusLabel",
3125
- "type": {
3126
- "text": "string | null"
3127
- },
3128
- "readonly": true
3129
- },
3130
- {
3131
- "kind": "field",
3132
- "name": "canInstall",
3133
- "type": {
3134
- "text": "boolean"
3135
- },
3136
- "readonly": true
3137
- },
3138
- {
3139
- "kind": "field",
3140
- "name": "isDownloading",
3141
- "type": {
3142
- "text": "boolean"
3143
- },
3144
- "readonly": true
3145
- },
3146
- {
3147
- "kind": "method",
3148
- "name": "openChanged",
3149
- "return": {
3150
- "type": {
3151
- "text": "void"
3152
- }
3153
- }
3154
- },
3155
- {
3156
- "kind": "method",
3157
- "name": "handleClickOutside",
3158
- "privacy": "private",
3159
- "parameters": [
3160
- {
3161
- "name": "event",
3162
- "type": {
3163
- "text": "MouseEvent"
3164
- }
3165
- }
3166
- ]
3167
- },
3168
- {
3169
- "kind": "method",
3170
- "name": "toggleDropdown"
3171
- },
3172
- {
3173
- "kind": "method",
3174
- "name": "refreshStatus",
3175
- "return": {
3176
- "type": {
3177
- "text": "Promise<void>"
3178
- }
3179
- }
3180
- },
3181
- {
3182
- "kind": "method",
3183
- "name": "deriveState",
3184
- "privacy": "private",
3185
- "return": {
3186
- "type": {
3187
- "text": "AIIndicatorState"
3188
- }
3189
- },
3190
- "parameters": [
3191
- {
3192
- "name": "s",
3193
- "type": {
3194
- "text": "AIStatus | null"
3195
- }
3196
- }
3197
- ]
3198
- },
3199
- {
3200
- "kind": "method",
3201
- "name": "maybeStartPolling",
3202
- "privacy": "private",
3203
- "return": {
3204
- "type": {
3205
- "text": "void"
3206
- }
3207
- }
3208
- },
3209
- {
3210
- "kind": "method",
3211
- "name": "startPolling",
3212
- "privacy": "private",
3213
- "return": {
3214
- "type": {
3215
- "text": "void"
3216
- }
3217
- }
3218
- },
3219
- {
3220
- "kind": "method",
3221
- "name": "stopPolling",
3222
- "privacy": "private",
3223
- "return": {
3224
- "type": {
3225
- "text": "void"
3226
- }
3227
- }
3228
- },
3229
- {
3230
- "kind": "method",
3231
- "name": "onInstall",
3232
- "return": {
3233
- "type": {
3234
- "text": "Promise<void>"
3235
- }
3236
- }
3237
- },
3238
- {
3239
- "kind": "field",
3240
- "name": "_presentation",
3241
- "type": {
3242
- "text": "ComponentPresentation | null | undefined"
3243
- },
3244
- "privacy": "private",
3245
- "default": "void 0",
3246
- "inheritedFrom": {
3247
- "name": "FoundationElement",
3248
- "module": "src/foundation-element/foundation-element.ts"
3249
- }
3250
- },
3251
- {
3252
- "kind": "field",
3253
- "name": "$presentation",
3254
- "type": {
3255
- "text": "ComponentPresentation | null"
3256
- },
3257
- "privacy": "public",
3258
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3259
- "inheritedFrom": {
3260
- "name": "FoundationElement",
3261
- "module": "src/foundation-element/foundation-element.ts"
3262
- }
3263
- },
3264
- {
3265
- "kind": "field",
3266
- "name": "template",
3267
- "type": {
3268
- "text": "ElementViewTemplate | void | null"
3269
- },
3270
- "privacy": "public",
3271
- "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
3272
- "inheritedFrom": {
3273
- "name": "FoundationElement",
3274
- "module": "src/foundation-element/foundation-element.ts"
3275
- }
3276
- },
3277
- {
3278
- "kind": "method",
3279
- "name": "templateChanged",
3280
- "privacy": "protected",
3281
- "return": {
3282
- "type": {
3283
- "text": "void"
3284
- }
3285
- },
3286
- "inheritedFrom": {
3287
- "name": "FoundationElement",
3288
- "module": "src/foundation-element/foundation-element.ts"
3289
- }
3290
- },
3291
- {
3292
- "kind": "field",
3293
- "name": "styles",
3294
- "type": {
3295
- "text": "ElementStyles | void | null"
3296
- },
3297
- "privacy": "public",
3298
- "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
3299
- "inheritedFrom": {
3300
- "name": "FoundationElement",
3301
- "module": "src/foundation-element/foundation-element.ts"
3302
- }
3303
- },
3304
- {
3305
- "kind": "method",
3306
- "name": "stylesChanged",
3307
- "privacy": "protected",
3308
- "return": {
3309
- "type": {
3310
- "text": "void"
3311
- }
3312
- },
3313
- "inheritedFrom": {
3314
- "name": "FoundationElement",
3315
- "module": "src/foundation-element/foundation-element.ts"
3316
- }
3317
- },
3318
- {
3319
- "kind": "method",
3320
- "name": "compose",
3321
- "privacy": "public",
3322
- "static": true,
3323
- "return": {
3324
- "type": {
3325
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3326
- }
3327
- },
3328
- "parameters": [
3329
- {
3330
- "name": "this",
3331
- "type": {
3332
- "text": "K"
3333
- }
3334
- },
3335
- {
3336
- "name": "elementDefinition",
3337
- "type": {
3338
- "text": "T"
3339
- },
3340
- "description": "The definition of the element to create the registry\nfunction for."
3341
- }
3342
- ],
3343
- "description": "Defines an element registry function with a set of element definition defaults.",
3344
- "inheritedFrom": {
3345
- "name": "FoundationElement",
3346
- "module": "src/foundation-element/foundation-element.ts"
3347
- }
3348
- }
3349
- ],
3350
- "superclass": {
3351
- "name": "FoundationElement",
3352
- "package": "@microsoft/fast-foundation"
3353
- },
3354
- "tagName": "%%prefix%%-ai-indicator",
3355
- "customElement": true
3356
- },
3357
- {
3358
- "kind": "variable",
3359
- "name": "foundationAiIndicator"
3360
- }
3361
- ],
3362
- "exports": [
3363
- {
3364
- "kind": "js",
3365
- "name": "AiIndicator",
3366
- "declaration": {
3367
- "name": "AiIndicator",
3368
- "module": "src/ai-indicator/ai-indicator.ts"
3369
- }
3370
- },
3371
- {
3372
- "kind": "js",
3373
- "name": "foundationAiIndicator",
3374
- "declaration": {
3375
- "name": "foundationAiIndicator",
3376
- "module": "src/ai-indicator/ai-indicator.ts"
3377
- }
3378
- }
3379
- ]
3380
- },
3381
- {
3382
- "kind": "javascript-module",
3383
- "path": "src/ai-indicator/index.ts",
3384
- "declarations": [],
3385
- "exports": [
3386
- {
3387
- "kind": "js",
3388
- "name": "AiIndicator",
3389
- "declaration": {
3390
- "name": "AiIndicator",
3391
- "module": "./ai-indicator"
3392
- }
3393
- },
3394
- {
3395
- "kind": "js",
3396
- "name": "foundationAiIndicator",
3397
- "declaration": {
3398
- "name": "foundationAiIndicator",
3399
- "module": "./ai-indicator"
3400
- }
3401
- },
3402
- {
3403
- "kind": "js",
3404
- "name": "type",
3405
- "declaration": {
3406
- "name": "type",
3407
- "module": "./ai-indicator"
3408
- }
3409
- },
3410
- {
3411
- "kind": "js",
3412
- "name": "AIIndicatorState",
3413
- "declaration": {
3414
- "name": "AIIndicatorState",
3415
- "module": "./ai-indicator"
3416
- }
3417
- },
3418
- {
3419
- "kind": "js",
3420
- "name": "foundationAiIndicatorTemplate",
3421
- "declaration": {
3422
- "name": "foundationAiIndicatorTemplate",
3423
- "module": "./ai-indicator.template"
3424
- }
3425
- },
3426
- {
3427
- "kind": "js",
3428
- "name": "foundationAiIndicatorStyles",
3429
- "declaration": {
3430
- "name": "foundationAiIndicatorStyles",
3431
- "module": "./ai-indicator.styles"
3432
- }
3433
- }
3434
- ]
3435
- },
3436
3452
  {
3437
3453
  "kind": "javascript-module",
3438
3454
  "path": "src/anchor/anchor.styles.ts",
@@ -54295,102 +54311,763 @@
54295
54311
  }
54296
54312
  },
54297
54313
  {
54298
- "kind": "js",
54299
- "name": "isInteger",
54300
- "declaration": {
54301
- "name": "isInteger",
54302
- "module": "src/utils/validation.ts"
54303
- }
54314
+ "kind": "js",
54315
+ "name": "isInteger",
54316
+ "declaration": {
54317
+ "name": "isInteger",
54318
+ "module": "src/utils/validation.ts"
54319
+ }
54320
+ }
54321
+ ]
54322
+ },
54323
+ {
54324
+ "kind": "javascript-module",
54325
+ "path": "src/workspace/filter-registry.ts",
54326
+ "declarations": [
54327
+ {
54328
+ "kind": "class",
54329
+ "description": "",
54330
+ "name": "DefaultFilterRegistry",
54331
+ "members": [
54332
+ {
54333
+ "kind": "field",
54334
+ "name": "filters",
54335
+ "type": {
54336
+ "text": "Map<string, FilterRegistration>"
54337
+ },
54338
+ "privacy": "private",
54339
+ "default": "new Map()"
54340
+ },
54341
+ {
54342
+ "kind": "method",
54343
+ "name": "registerFilter",
54344
+ "return": {
54345
+ "type": {
54346
+ "text": "void"
54347
+ }
54348
+ },
54349
+ "parameters": [
54350
+ {
54351
+ "name": "filterKey",
54352
+ "type": {
54353
+ "text": "string"
54354
+ }
54355
+ },
54356
+ {
54357
+ "name": "getFilterValue",
54358
+ "type": {
54359
+ "text": "() => SavedFilterValue | null"
54360
+ }
54361
+ },
54362
+ {
54363
+ "name": "setFilterValue",
54364
+ "type": {
54365
+ "text": "(value: string) => void"
54366
+ }
54367
+ }
54368
+ ]
54369
+ },
54370
+ {
54371
+ "kind": "method",
54372
+ "name": "unregisterFilter",
54373
+ "return": {
54374
+ "type": {
54375
+ "text": "void"
54376
+ }
54377
+ },
54378
+ "parameters": [
54379
+ {
54380
+ "name": "filterKey",
54381
+ "type": {
54382
+ "text": "string"
54383
+ }
54384
+ }
54385
+ ]
54386
+ },
54387
+ {
54388
+ "kind": "method",
54389
+ "name": "getAllFiltersValues",
54390
+ "return": {
54391
+ "type": {
54392
+ "text": "SavedFilterValue[]"
54393
+ }
54394
+ }
54395
+ },
54396
+ {
54397
+ "kind": "method",
54398
+ "name": "applyFiltersValues",
54399
+ "return": {
54400
+ "type": {
54401
+ "text": "void"
54402
+ }
54403
+ },
54404
+ "parameters": [
54405
+ {
54406
+ "name": "filtersValues",
54407
+ "type": {
54408
+ "text": "SavedFilterValue[]"
54409
+ }
54410
+ }
54411
+ ]
54412
+ }
54413
+ ]
54414
+ },
54415
+ {
54416
+ "kind": "variable",
54417
+ "name": "FilterRegistry",
54418
+ "description": "DI token for filter registry.",
54419
+ "privacy": "public"
54420
+ }
54421
+ ],
54422
+ "exports": [
54423
+ {
54424
+ "kind": "js",
54425
+ "name": "DefaultFilterRegistry",
54426
+ "declaration": {
54427
+ "name": "DefaultFilterRegistry",
54428
+ "module": "src/workspace/filter-registry.ts"
54429
+ }
54430
+ },
54431
+ {
54432
+ "kind": "js",
54433
+ "name": "FilterRegistry",
54434
+ "declaration": {
54435
+ "name": "FilterRegistry",
54436
+ "module": "src/workspace/filter-registry.ts"
54437
+ }
54438
+ }
54439
+ ]
54440
+ },
54441
+ {
54442
+ "kind": "javascript-module",
54443
+ "path": "src/workspace/grid-registry.ts",
54444
+ "declarations": [
54445
+ {
54446
+ "kind": "class",
54447
+ "description": "",
54448
+ "name": "DefaultGridRegistry",
54449
+ "members": [
54450
+ {
54451
+ "kind": "field",
54452
+ "name": "grids",
54453
+ "type": {
54454
+ "text": "Map<string, GridRegistration>"
54455
+ },
54456
+ "privacy": "private",
54457
+ "default": "new Map()"
54458
+ },
54459
+ {
54460
+ "kind": "field",
54461
+ "name": "cachedSettings",
54462
+ "type": {
54463
+ "text": "Map<string, SavedGridSettings>"
54464
+ },
54465
+ "privacy": "private",
54466
+ "default": "new Map()"
54467
+ },
54468
+ {
54469
+ "kind": "method",
54470
+ "name": "registerGrid",
54471
+ "return": {
54472
+ "type": {
54473
+ "text": "void"
54474
+ }
54475
+ },
54476
+ "parameters": [
54477
+ {
54478
+ "name": "gridKey",
54479
+ "type": {
54480
+ "text": "string"
54481
+ }
54482
+ },
54483
+ {
54484
+ "name": "gridApi",
54485
+ "type": {
54486
+ "text": "unknown"
54487
+ }
54488
+ },
54489
+ {
54490
+ "name": "columnApi",
54491
+ "type": {
54492
+ "text": "unknown"
54493
+ }
54494
+ }
54495
+ ]
54496
+ },
54497
+ {
54498
+ "kind": "method",
54499
+ "name": "getGrid",
54500
+ "return": {
54501
+ "type": {
54502
+ "text": "unknown"
54503
+ }
54504
+ },
54505
+ "parameters": [
54506
+ {
54507
+ "name": "gridKey",
54508
+ "type": {
54509
+ "text": "string"
54510
+ }
54511
+ }
54512
+ ]
54513
+ },
54514
+ {
54515
+ "kind": "method",
54516
+ "name": "unregisterGrid",
54517
+ "return": {
54518
+ "type": {
54519
+ "text": "void"
54520
+ }
54521
+ },
54522
+ "parameters": [
54523
+ {
54524
+ "name": "gridKey",
54525
+ "type": {
54526
+ "text": "string"
54527
+ }
54528
+ }
54529
+ ]
54530
+ },
54531
+ {
54532
+ "kind": "method",
54533
+ "name": "getAllGridsSettings",
54534
+ "return": {
54535
+ "type": {
54536
+ "text": "SavedGridSettings[]"
54537
+ }
54538
+ }
54539
+ },
54540
+ {
54541
+ "kind": "method",
54542
+ "name": "applyGridSettings",
54543
+ "return": {
54544
+ "type": {
54545
+ "text": "Promise<boolean>"
54546
+ }
54547
+ },
54548
+ "parameters": [
54549
+ {
54550
+ "name": "gridSetting",
54551
+ "type": {
54552
+ "text": "SavedGridSettings"
54553
+ }
54554
+ },
54555
+ {
54556
+ "name": "options",
54557
+ "optional": true,
54558
+ "type": {
54559
+ "text": "{ applyColumns?: boolean; applyFilters?: boolean }"
54560
+ }
54561
+ }
54562
+ ]
54563
+ },
54564
+ {
54565
+ "kind": "method",
54566
+ "name": "applyAllGridsSettings",
54567
+ "return": {
54568
+ "type": {
54569
+ "text": "Promise<void>"
54570
+ }
54571
+ },
54572
+ "parameters": [
54573
+ {
54574
+ "name": "gridSettings",
54575
+ "type": {
54576
+ "text": "SavedGridSettings[]"
54577
+ }
54578
+ },
54579
+ {
54580
+ "name": "maxRetries",
54581
+ "default": "3",
54582
+ "type": {
54583
+ "text": "number"
54584
+ }
54585
+ },
54586
+ {
54587
+ "name": "delayMs",
54588
+ "default": "200",
54589
+ "type": {
54590
+ "text": "number"
54591
+ }
54592
+ }
54593
+ ]
54594
+ },
54595
+ {
54596
+ "kind": "method",
54597
+ "name": "getGridSettings",
54598
+ "privacy": "private",
54599
+ "return": {
54600
+ "type": {
54601
+ "text": "SavedGridSettings | null"
54602
+ }
54603
+ },
54604
+ "parameters": [
54605
+ {
54606
+ "name": "gridKey",
54607
+ "type": {
54608
+ "text": "string"
54609
+ }
54610
+ },
54611
+ {
54612
+ "name": "grid",
54613
+ "type": {
54614
+ "text": "GridRegistration"
54615
+ }
54616
+ }
54617
+ ]
54618
+ }
54619
+ ]
54620
+ },
54621
+ {
54622
+ "kind": "variable",
54623
+ "name": "GridRegistry",
54624
+ "description": "DI token for grid registry.",
54625
+ "privacy": "public"
54626
+ }
54627
+ ],
54628
+ "exports": [
54629
+ {
54630
+ "kind": "js",
54631
+ "name": "DefaultGridRegistry",
54632
+ "declaration": {
54633
+ "name": "DefaultGridRegistry",
54634
+ "module": "src/workspace/grid-registry.ts"
54635
+ }
54636
+ },
54637
+ {
54638
+ "kind": "js",
54639
+ "name": "GridRegistry",
54640
+ "declaration": {
54641
+ "name": "GridRegistry",
54642
+ "module": "src/workspace/grid-registry.ts"
54643
+ }
54644
+ }
54645
+ ]
54646
+ },
54647
+ {
54648
+ "kind": "javascript-module",
54649
+ "path": "src/workspace/index.ts",
54650
+ "declarations": [],
54651
+ "exports": [
54652
+ {
54653
+ "kind": "js",
54654
+ "name": "*",
54655
+ "declaration": {
54656
+ "name": "*",
54657
+ "package": "./workspace.types"
54658
+ }
54659
+ },
54660
+ {
54661
+ "kind": "js",
54662
+ "name": "*",
54663
+ "declaration": {
54664
+ "name": "*",
54665
+ "package": "./workspace-state.types"
54666
+ }
54667
+ },
54668
+ {
54669
+ "kind": "js",
54670
+ "name": "*",
54671
+ "declaration": {
54672
+ "name": "*",
54673
+ "package": "./workspace-state"
54674
+ }
54675
+ },
54676
+ {
54677
+ "kind": "js",
54678
+ "name": "*",
54679
+ "declaration": {
54680
+ "name": "*",
54681
+ "package": "./layout-registry"
54682
+ }
54683
+ },
54684
+ {
54685
+ "kind": "js",
54686
+ "name": "*",
54687
+ "declaration": {
54688
+ "name": "*",
54689
+ "package": "./grid-registry"
54690
+ }
54691
+ },
54692
+ {
54693
+ "kind": "js",
54694
+ "name": "*",
54695
+ "declaration": {
54696
+ "name": "*",
54697
+ "package": "./filter-registry"
54698
+ }
54699
+ }
54700
+ ]
54701
+ },
54702
+ {
54703
+ "kind": "javascript-module",
54704
+ "path": "src/workspace/layout-registry.ts",
54705
+ "declarations": [
54706
+ {
54707
+ "kind": "class",
54708
+ "description": "Default layout registry implementation.",
54709
+ "name": "DefaultLayoutRegistry",
54710
+ "members": [
54711
+ {
54712
+ "kind": "field",
54713
+ "name": "layouts",
54714
+ "type": {
54715
+ "text": "Map<string, any>"
54716
+ },
54717
+ "privacy": "private",
54718
+ "default": "new Map()"
54719
+ },
54720
+ {
54721
+ "kind": "method",
54722
+ "name": "registerLayout",
54723
+ "return": {
54724
+ "type": {
54725
+ "text": "void"
54726
+ }
54727
+ },
54728
+ "parameters": [
54729
+ {
54730
+ "name": "layoutKey",
54731
+ "type": {
54732
+ "text": "string"
54733
+ }
54734
+ },
54735
+ {
54736
+ "name": "layout",
54737
+ "type": {
54738
+ "text": "any"
54739
+ }
54740
+ }
54741
+ ]
54742
+ },
54743
+ {
54744
+ "kind": "method",
54745
+ "name": "unregisterLayout",
54746
+ "return": {
54747
+ "type": {
54748
+ "text": "void"
54749
+ }
54750
+ },
54751
+ "parameters": [
54752
+ {
54753
+ "name": "layoutKey",
54754
+ "type": {
54755
+ "text": "string"
54756
+ }
54757
+ }
54758
+ ]
54759
+ },
54760
+ {
54761
+ "kind": "method",
54762
+ "name": "getLayoutsConfigs",
54763
+ "return": {
54764
+ "type": {
54765
+ "text": "SavedLayout[]"
54766
+ }
54767
+ }
54768
+ },
54769
+ {
54770
+ "kind": "method",
54771
+ "name": "applySavedLayouts",
54772
+ "return": {
54773
+ "type": {
54774
+ "text": "Promise<void>"
54775
+ }
54776
+ },
54777
+ "parameters": [
54778
+ {
54779
+ "name": "savedLayouts",
54780
+ "type": {
54781
+ "text": "SavedLayout[]"
54782
+ }
54783
+ }
54784
+ ]
54785
+ }
54786
+ ]
54787
+ },
54788
+ {
54789
+ "kind": "variable",
54790
+ "name": "LayoutRegistry",
54791
+ "description": "DI token for layout registry.",
54792
+ "privacy": "public"
54304
54793
  }
54305
- ]
54306
- },
54307
- {
54308
- "kind": "javascript-module",
54309
- "path": "src/workspace/index.ts",
54310
- "declarations": [],
54794
+ ],
54311
54795
  "exports": [
54312
54796
  {
54313
54797
  "kind": "js",
54314
- "name": "*",
54315
- "declaration": {
54316
- "name": "*",
54317
- "package": "./workspace.types"
54318
- }
54319
- },
54320
- {
54321
- "kind": "js",
54322
- "name": "*",
54323
- "declaration": {
54324
- "name": "*",
54325
- "package": "./workspace-state.types"
54326
- }
54327
- },
54328
- {
54329
- "kind": "js",
54330
- "name": "*",
54798
+ "name": "DefaultLayoutRegistry",
54331
54799
  "declaration": {
54332
- "name": "*",
54333
- "package": "./workspace-registry.types"
54800
+ "name": "DefaultLayoutRegistry",
54801
+ "module": "src/workspace/layout-registry.ts"
54334
54802
  }
54335
54803
  },
54336
54804
  {
54337
54805
  "kind": "js",
54338
- "name": "*",
54806
+ "name": "LayoutRegistry",
54339
54807
  "declaration": {
54340
- "name": "*",
54341
- "package": "./workspace-di"
54808
+ "name": "LayoutRegistry",
54809
+ "module": "src/workspace/layout-registry.ts"
54342
54810
  }
54343
54811
  }
54344
54812
  ]
54345
54813
  },
54346
54814
  {
54347
54815
  "kind": "javascript-module",
54348
- "path": "src/workspace/workspace-di.ts",
54816
+ "path": "src/workspace/workspace-state.ts",
54349
54817
  "declarations": [
54350
54818
  {
54351
- "kind": "variable",
54352
- "name": "LayoutRegistry",
54353
- "description": "DI token for layout registry. Host app must register an implementation."
54354
- },
54355
- {
54356
- "kind": "variable",
54357
- "name": "GridRegistry",
54358
- "description": "DI token for grid registry. Host app must register an implementation."
54359
- },
54360
- {
54361
- "kind": "variable",
54362
- "name": "FilterRegistry",
54363
- "description": "DI token for filter registry. Host app must register an implementation."
54819
+ "kind": "class",
54820
+ "description": "Default workspace persistence implementation backed by KVStorage.",
54821
+ "name": "DefaultWorkspaceState",
54822
+ "members": [
54823
+ {
54824
+ "kind": "field",
54825
+ "name": "STORAGE_PREFIX",
54826
+ "type": {
54827
+ "text": "string"
54828
+ },
54829
+ "privacy": "private",
54830
+ "readonly": true,
54831
+ "default": "'workspace_'"
54832
+ },
54833
+ {
54834
+ "kind": "field",
54835
+ "name": "WORKSPACES_LIST_KEY",
54836
+ "type": {
54837
+ "text": "string"
54838
+ },
54839
+ "privacy": "private",
54840
+ "readonly": true,
54841
+ "default": "'workspaces_list'"
54842
+ },
54843
+ {
54844
+ "kind": "field",
54845
+ "name": "currentWorkspace",
54846
+ "type": {
54847
+ "text": "SavedWorkspace | null"
54848
+ },
54849
+ "privacy": "private",
54850
+ "default": "null"
54851
+ },
54852
+ {
54853
+ "kind": "method",
54854
+ "name": "getCurrentUsername",
54855
+ "privacy": "private",
54856
+ "return": {
54857
+ "type": {
54858
+ "text": "string"
54859
+ }
54860
+ }
54861
+ },
54862
+ {
54863
+ "kind": "method",
54864
+ "name": "getWorkspaceStorageKey",
54865
+ "privacy": "private",
54866
+ "return": {
54867
+ "type": {
54868
+ "text": "string"
54869
+ }
54870
+ },
54871
+ "parameters": [
54872
+ {
54873
+ "name": "workspaceName",
54874
+ "type": {
54875
+ "text": "string"
54876
+ }
54877
+ }
54878
+ ]
54879
+ },
54880
+ {
54881
+ "kind": "method",
54882
+ "name": "getWorkspacesListKey",
54883
+ "privacy": "private",
54884
+ "return": {
54885
+ "type": {
54886
+ "text": "string"
54887
+ }
54888
+ }
54889
+ },
54890
+ {
54891
+ "kind": "method",
54892
+ "name": "saveWorkspace",
54893
+ "return": {
54894
+ "type": {
54895
+ "text": "Promise<void>"
54896
+ }
54897
+ },
54898
+ "parameters": [
54899
+ {
54900
+ "name": "workspaceName",
54901
+ "type": {
54902
+ "text": "string"
54903
+ }
54904
+ },
54905
+ {
54906
+ "name": "layouts",
54907
+ "type": {
54908
+ "text": "SavedLayout[]"
54909
+ }
54910
+ },
54911
+ {
54912
+ "name": "grids",
54913
+ "type": {
54914
+ "text": "SavedGridSettings[]"
54915
+ }
54916
+ },
54917
+ {
54918
+ "name": "filters",
54919
+ "type": {
54920
+ "text": "SavedFilterValue[]"
54921
+ }
54922
+ },
54923
+ {
54924
+ "name": "description",
54925
+ "optional": true,
54926
+ "type": {
54927
+ "text": "string"
54928
+ }
54929
+ }
54930
+ ]
54931
+ },
54932
+ {
54933
+ "kind": "method",
54934
+ "name": "loadWorkspace",
54935
+ "return": {
54936
+ "type": {
54937
+ "text": "Promise<SavedWorkspace | null>"
54938
+ }
54939
+ },
54940
+ "parameters": [
54941
+ {
54942
+ "name": "workspaceName",
54943
+ "type": {
54944
+ "text": "string"
54945
+ }
54946
+ }
54947
+ ]
54948
+ },
54949
+ {
54950
+ "kind": "method",
54951
+ "name": "getWorkspace",
54952
+ "privacy": "private",
54953
+ "return": {
54954
+ "type": {
54955
+ "text": "Promise<SavedWorkspace | null>"
54956
+ }
54957
+ },
54958
+ "parameters": [
54959
+ {
54960
+ "name": "workspaceName",
54961
+ "type": {
54962
+ "text": "string"
54963
+ }
54964
+ }
54965
+ ]
54966
+ },
54967
+ {
54968
+ "kind": "method",
54969
+ "name": "getCurrentWorkspace",
54970
+ "return": {
54971
+ "type": {
54972
+ "text": "SavedWorkspace | null"
54973
+ }
54974
+ }
54975
+ },
54976
+ {
54977
+ "kind": "method",
54978
+ "name": "setCurrentWorkspace",
54979
+ "return": {
54980
+ "type": {
54981
+ "text": "void"
54982
+ }
54983
+ },
54984
+ "parameters": [
54985
+ {
54986
+ "name": "workspace",
54987
+ "type": {
54988
+ "text": "SavedWorkspace | null"
54989
+ }
54990
+ }
54991
+ ]
54992
+ },
54993
+ {
54994
+ "kind": "method",
54995
+ "name": "getSavedWorkspaces",
54996
+ "return": {
54997
+ "type": {
54998
+ "text": "Promise<SavedWorkspace[]>"
54999
+ }
55000
+ }
55001
+ },
55002
+ {
55003
+ "kind": "method",
55004
+ "name": "deleteWorkspace",
55005
+ "return": {
55006
+ "type": {
55007
+ "text": "Promise<void>"
55008
+ }
55009
+ },
55010
+ "parameters": [
55011
+ {
55012
+ "name": "workspaceName",
55013
+ "type": {
55014
+ "text": "string"
55015
+ }
55016
+ }
55017
+ ]
55018
+ },
55019
+ {
55020
+ "kind": "method",
55021
+ "name": "updateWorkspacesList",
55022
+ "privacy": "private",
55023
+ "return": {
55024
+ "type": {
55025
+ "text": "Promise<void>"
55026
+ }
55027
+ },
55028
+ "parameters": [
55029
+ {
55030
+ "name": "workspaceName",
55031
+ "type": {
55032
+ "text": "string"
55033
+ }
55034
+ }
55035
+ ]
55036
+ },
55037
+ {
55038
+ "kind": "method",
55039
+ "name": "removeFromWorkspacesList",
55040
+ "privacy": "private",
55041
+ "return": {
55042
+ "type": {
55043
+ "text": "Promise<void>"
55044
+ }
55045
+ },
55046
+ "parameters": [
55047
+ {
55048
+ "name": "workspaceName",
55049
+ "type": {
55050
+ "text": "string"
55051
+ }
55052
+ }
55053
+ ]
55054
+ }
55055
+ ]
54364
55056
  },
54365
55057
  {
54366
55058
  "kind": "variable",
54367
55059
  "name": "WorkspaceState",
54368
- "description": "DI token for workspace state. Host app must register an implementation."
55060
+ "description": "DI token for workspace state.",
55061
+ "privacy": "public"
54369
55062
  }
54370
55063
  ],
54371
55064
  "exports": [
54372
55065
  {
54373
55066
  "kind": "js",
54374
- "name": "LayoutRegistry",
54375
- "declaration": {
54376
- "name": "LayoutRegistry",
54377
- "module": "src/workspace/workspace-di.ts"
54378
- }
54379
- },
54380
- {
54381
- "kind": "js",
54382
- "name": "GridRegistry",
54383
- "declaration": {
54384
- "name": "GridRegistry",
54385
- "module": "src/workspace/workspace-di.ts"
54386
- }
54387
- },
54388
- {
54389
- "kind": "js",
54390
- "name": "FilterRegistry",
55067
+ "name": "DefaultWorkspaceState",
54391
55068
  "declaration": {
54392
- "name": "FilterRegistry",
54393
- "module": "src/workspace/workspace-di.ts"
55069
+ "name": "DefaultWorkspaceState",
55070
+ "module": "src/workspace/workspace-state.ts"
54394
55071
  }
54395
55072
  },
54396
55073
  {
@@ -54398,17 +55075,11 @@
54398
55075
  "name": "WorkspaceState",
54399
55076
  "declaration": {
54400
55077
  "name": "WorkspaceState",
54401
- "module": "src/workspace/workspace-di.ts"
55078
+ "module": "src/workspace/workspace-state.ts"
54402
55079
  }
54403
55080
  }
54404
55081
  ]
54405
55082
  },
54406
- {
54407
- "kind": "javascript-module",
54408
- "path": "src/workspace/workspace-registry.types.ts",
54409
- "declarations": [],
54410
- "exports": []
54411
- },
54412
55083
  {
54413
55084
  "kind": "javascript-module",
54414
55085
  "path": "src/workspace/workspace-state.types.ts",
@@ -54615,28 +55286,28 @@
54615
55286
  "kind": "field",
54616
55287
  "name": "layoutRegistry",
54617
55288
  "type": {
54618
- "text": "ILayoutRegistry"
55289
+ "text": "LayoutRegistry"
54619
55290
  }
54620
55291
  },
54621
55292
  {
54622
55293
  "kind": "field",
54623
55294
  "name": "gridRegistry",
54624
55295
  "type": {
54625
- "text": "IGridRegistry"
55296
+ "text": "GridRegistry"
54626
55297
  }
54627
55298
  },
54628
55299
  {
54629
55300
  "kind": "field",
54630
55301
  "name": "filterRegistry",
54631
55302
  "type": {
54632
- "text": "IFilterRegistry"
55303
+ "text": "FilterRegistry"
54633
55304
  }
54634
55305
  },
54635
55306
  {
54636
55307
  "kind": "field",
54637
55308
  "name": "workspaceState",
54638
55309
  "type": {
54639
- "text": "IWorkspaceState"
55310
+ "text": "WorkspaceState"
54640
55311
  }
54641
55312
  },
54642
55313
  {
@@ -56739,6 +57410,295 @@
56739
57410
  }
56740
57411
  ]
56741
57412
  },
57413
+ {
57414
+ "kind": "javascript-module",
57415
+ "path": "src/components/grid-register/grid-register.template.ts",
57416
+ "declarations": [
57417
+ {
57418
+ "kind": "variable",
57419
+ "name": "GridRegisterTemplate",
57420
+ "type": {
57421
+ "text": "ViewTemplate<GridRegister>"
57422
+ },
57423
+ "default": "html`\n <slot></slot>\n`"
57424
+ }
57425
+ ],
57426
+ "exports": [
57427
+ {
57428
+ "kind": "js",
57429
+ "name": "GridRegisterTemplate",
57430
+ "declaration": {
57431
+ "name": "GridRegisterTemplate",
57432
+ "module": "src/components/grid-register/grid-register.template.ts"
57433
+ }
57434
+ }
57435
+ ]
57436
+ },
57437
+ {
57438
+ "kind": "javascript-module",
57439
+ "path": "src/components/grid-register/grid-register.ts",
57440
+ "declarations": [
57441
+ {
57442
+ "kind": "class",
57443
+ "description": "",
57444
+ "name": "GridRegister",
57445
+ "members": [
57446
+ {
57447
+ "kind": "field",
57448
+ "name": "gridKey",
57449
+ "type": {
57450
+ "text": "string"
57451
+ }
57452
+ },
57453
+ {
57454
+ "kind": "field",
57455
+ "name": "gridRegistry",
57456
+ "type": {
57457
+ "text": "GridRegistry"
57458
+ }
57459
+ },
57460
+ {
57461
+ "kind": "field",
57462
+ "name": "workspaceState",
57463
+ "type": {
57464
+ "text": "WorkspaceState"
57465
+ }
57466
+ },
57467
+ {
57468
+ "kind": "field",
57469
+ "name": "gridElement",
57470
+ "type": {
57471
+ "text": "HTMLElement | null"
57472
+ },
57473
+ "privacy": "private",
57474
+ "default": "null"
57475
+ },
57476
+ {
57477
+ "kind": "field",
57478
+ "name": "gridApi",
57479
+ "type": {
57480
+ "text": "GridApi | null"
57481
+ },
57482
+ "privacy": "private",
57483
+ "default": "null"
57484
+ },
57485
+ {
57486
+ "kind": "field",
57487
+ "name": "columnApi",
57488
+ "type": {
57489
+ "text": "ColumnApi | null"
57490
+ },
57491
+ "privacy": "private",
57492
+ "default": "null"
57493
+ },
57494
+ {
57495
+ "kind": "field",
57496
+ "name": "workspaceSettingsApplied",
57497
+ "type": {
57498
+ "text": "boolean"
57499
+ },
57500
+ "privacy": "private",
57501
+ "default": "false"
57502
+ },
57503
+ {
57504
+ "kind": "method",
57505
+ "name": "findAndRegisterGrid",
57506
+ "privacy": "private",
57507
+ "return": {
57508
+ "type": {
57509
+ "text": "void"
57510
+ }
57511
+ }
57512
+ },
57513
+ {
57514
+ "kind": "field",
57515
+ "name": "handleGridReady",
57516
+ "privacy": "private",
57517
+ "readonly": true
57518
+ },
57519
+ {
57520
+ "kind": "method",
57521
+ "name": "attachToGridApis",
57522
+ "privacy": "private",
57523
+ "return": {
57524
+ "type": {
57525
+ "text": "void"
57526
+ }
57527
+ }
57528
+ },
57529
+ {
57530
+ "kind": "method",
57531
+ "name": "detachFromGridApis",
57532
+ "privacy": "private",
57533
+ "return": {
57534
+ "type": {
57535
+ "text": "void"
57536
+ }
57537
+ }
57538
+ },
57539
+ {
57540
+ "kind": "method",
57541
+ "name": "loadWorkspaceSettings",
57542
+ "privacy": "private",
57543
+ "return": {
57544
+ "type": {
57545
+ "text": "Promise<void>"
57546
+ }
57547
+ },
57548
+ "parameters": [
57549
+ {
57550
+ "name": "options",
57551
+ "optional": true,
57552
+ "type": {
57553
+ "text": "{ applyColumns?: boolean }"
57554
+ }
57555
+ }
57556
+ ]
57557
+ },
57558
+ {
57559
+ "kind": "method",
57560
+ "name": "loadWorkspaceColumnState",
57561
+ "privacy": "private",
57562
+ "return": {
57563
+ "type": {
57564
+ "text": "Promise<void>"
57565
+ }
57566
+ }
57567
+ }
57568
+ ],
57569
+ "attributes": [
57570
+ {
57571
+ "name": "grid-key",
57572
+ "type": {
57573
+ "text": "string"
57574
+ },
57575
+ "fieldName": "gridKey"
57576
+ }
57577
+ ],
57578
+ "superclass": {
57579
+ "name": "HTMLElement"
57580
+ },
57581
+ "customElement": true
57582
+ }
57583
+ ],
57584
+ "exports": [
57585
+ {
57586
+ "kind": "js",
57587
+ "name": "GridRegister",
57588
+ "declaration": {
57589
+ "name": "GridRegister",
57590
+ "module": "src/components/grid-register/grid-register.ts"
57591
+ }
57592
+ },
57593
+ {
57594
+ "kind": "custom-element-definition",
57595
+ "declaration": {
57596
+ "name": "GridRegister",
57597
+ "module": "src/components/grid-register/grid-register.ts"
57598
+ }
57599
+ }
57600
+ ]
57601
+ },
57602
+ {
57603
+ "kind": "javascript-module",
57604
+ "path": "src/components/layout-wrapper/layout-wrapper.template.ts",
57605
+ "declarations": [
57606
+ {
57607
+ "kind": "variable",
57608
+ "name": "LayoutWrapperTemplate",
57609
+ "type": {
57610
+ "text": "ViewTemplate<LayoutWrapper>"
57611
+ },
57612
+ "default": "html`\n <slot></slot>\n`"
57613
+ }
57614
+ ],
57615
+ "exports": [
57616
+ {
57617
+ "kind": "js",
57618
+ "name": "LayoutWrapperTemplate",
57619
+ "declaration": {
57620
+ "name": "LayoutWrapperTemplate",
57621
+ "module": "src/components/layout-wrapper/layout-wrapper.template.ts"
57622
+ }
57623
+ }
57624
+ ]
57625
+ },
57626
+ {
57627
+ "kind": "javascript-module",
57628
+ "path": "src/components/layout-wrapper/layout-wrapper.ts",
57629
+ "declarations": [
57630
+ {
57631
+ "kind": "class",
57632
+ "description": "",
57633
+ "name": "LayoutWrapper",
57634
+ "members": [
57635
+ {
57636
+ "kind": "field",
57637
+ "name": "layoutKey",
57638
+ "type": {
57639
+ "text": "string"
57640
+ }
57641
+ },
57642
+ {
57643
+ "kind": "field",
57644
+ "name": "layoutRegistry",
57645
+ "type": {
57646
+ "text": "LayoutRegistry"
57647
+ }
57648
+ },
57649
+ {
57650
+ "kind": "field",
57651
+ "name": "layoutElement",
57652
+ "type": {
57653
+ "text": "any | null"
57654
+ },
57655
+ "privacy": "private",
57656
+ "default": "null"
57657
+ },
57658
+ {
57659
+ "kind": "method",
57660
+ "name": "findAndRegisterLayout",
57661
+ "privacy": "private",
57662
+ "return": {
57663
+ "type": {
57664
+ "text": "void"
57665
+ }
57666
+ }
57667
+ }
57668
+ ],
57669
+ "attributes": [
57670
+ {
57671
+ "name": "layout-key",
57672
+ "type": {
57673
+ "text": "string"
57674
+ },
57675
+ "fieldName": "layoutKey"
57676
+ }
57677
+ ],
57678
+ "superclass": {
57679
+ "name": "HTMLElement"
57680
+ },
57681
+ "customElement": true
57682
+ }
57683
+ ],
57684
+ "exports": [
57685
+ {
57686
+ "kind": "js",
57687
+ "name": "LayoutWrapper",
57688
+ "declaration": {
57689
+ "name": "LayoutWrapper",
57690
+ "module": "src/components/layout-wrapper/layout-wrapper.ts"
57691
+ }
57692
+ },
57693
+ {
57694
+ "kind": "custom-element-definition",
57695
+ "declaration": {
57696
+ "name": "LayoutWrapper",
57697
+ "module": "src/components/layout-wrapper/layout-wrapper.ts"
57698
+ }
57699
+ }
57700
+ ]
57701
+ },
56742
57702
  {
56743
57703
  "kind": "javascript-module",
56744
57704
  "path": "src/environment-indicator/utils/configure.ts",