@fluidframework/devtools-core 2.70.0-361248 → 2.70.0-361788

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 (46) hide show
  1. package/README.md +2 -0
  2. package/api-extractor/api-extractor-lint-beta.cjs.json +5 -0
  3. package/api-extractor/api-extractor-lint-beta.esm.json +5 -0
  4. package/api-report/devtools-core.alpha.api.md +11 -11
  5. package/api-report/devtools-core.beta.api.md +31 -0
  6. package/beta.d.ts +11 -0
  7. package/dist/ContainerDevtools.d.ts +5 -3
  8. package/dist/ContainerDevtools.d.ts.map +1 -1
  9. package/dist/ContainerDevtools.js.map +1 -1
  10. package/dist/ContainerRuntimeDevtools.d.ts +3 -2
  11. package/dist/ContainerRuntimeDevtools.d.ts.map +1 -1
  12. package/dist/ContainerRuntimeDevtools.js.map +1 -1
  13. package/dist/FluidDevtools.d.ts +7 -5
  14. package/dist/FluidDevtools.d.ts.map +1 -1
  15. package/dist/FluidDevtools.js +2 -2
  16. package/dist/FluidDevtools.js.map +1 -1
  17. package/dist/IFluidDevtools.d.ts +1 -1
  18. package/dist/IFluidDevtools.js.map +1 -1
  19. package/dist/alpha.d.ts +4 -7
  20. package/dist/beta.d.ts +42 -0
  21. package/dist/packageVersion.d.ts +1 -1
  22. package/dist/packageVersion.js +1 -1
  23. package/dist/packageVersion.js.map +1 -1
  24. package/lib/ContainerDevtools.d.ts +5 -3
  25. package/lib/ContainerDevtools.d.ts.map +1 -1
  26. package/lib/ContainerDevtools.js.map +1 -1
  27. package/lib/ContainerRuntimeDevtools.d.ts +3 -2
  28. package/lib/ContainerRuntimeDevtools.d.ts.map +1 -1
  29. package/lib/ContainerRuntimeDevtools.js.map +1 -1
  30. package/lib/FluidDevtools.d.ts +7 -5
  31. package/lib/FluidDevtools.d.ts.map +1 -1
  32. package/lib/FluidDevtools.js +2 -2
  33. package/lib/FluidDevtools.js.map +1 -1
  34. package/lib/IFluidDevtools.d.ts +1 -1
  35. package/lib/IFluidDevtools.js.map +1 -1
  36. package/lib/alpha.d.ts +4 -7
  37. package/lib/beta.d.ts +42 -0
  38. package/lib/packageVersion.d.ts +1 -1
  39. package/lib/packageVersion.js +1 -1
  40. package/lib/packageVersion.js.map +1 -1
  41. package/package.json +35 -23
  42. package/src/ContainerDevtools.ts +5 -3
  43. package/src/ContainerRuntimeDevtools.ts +3 -2
  44. package/src/FluidDevtools.ts +7 -5
  45. package/src/IFluidDevtools.ts +1 -1
  46. package/src/packageVersion.ts +1 -1
@@ -77,7 +77,9 @@ export function getContainerAlreadyRegisteredErrorText(containerKey: ContainerKe
77
77
 
78
78
  /**
79
79
  * Properties for configuring the Devtools.
80
- * @alpha
80
+ * @beta
81
+ * @input
82
+ * @sealed
81
83
  */
82
84
  export interface FluidDevtoolsProps {
83
85
  /**
@@ -90,14 +92,14 @@ export interface FluidDevtoolsProps {
90
92
  * This is provided to the Devtools instance strictly to enable communicating supported / desired functionality with
91
93
  * external listeners.
92
94
  */
93
- logger?: IDevtoolsLogger;
95
+ readonly logger?: IDevtoolsLogger;
94
96
 
95
97
  /**
96
98
  * (optional) List of Containers to initialize the devtools with.
97
99
  *
98
100
  * @remarks Additional Containers can be registered with the Devtools via {@link IFluidDevtools.registerContainerDevtools}.
99
101
  */
100
- initialContainers?: ContainerDevtoolsProps[];
102
+ readonly initialContainers?: ContainerDevtoolsProps[];
101
103
 
102
104
  // TODO: Add ability for customers to specify custom data visualizer overrides
103
105
  }
@@ -517,7 +519,7 @@ export class FluidDevtools implements IFluidDevtools {
517
519
  *
518
520
  * It is automatically disposed on webpage unload, but it can be closed earlier by calling `dispose`
519
521
  * on the returned handle.
520
- * @alpha
522
+ * @beta
521
523
  */
522
524
  export function initializeDevtools(props?: FluidDevtoolsProps): IFluidDevtools {
523
525
  return FluidDevtools.initialize(props);
@@ -525,7 +527,7 @@ export function initializeDevtools(props?: FluidDevtoolsProps): IFluidDevtools {
525
527
 
526
528
  /**
527
529
  * Gets the Devtools singleton if it has been {@link initializeDevtools | initialized}, otherwise returns `undefined`.
528
- * @alpha
530
+ * @beta
529
531
  */
530
532
  export function tryGetFluidDevtools(): IFluidDevtools | undefined {
531
533
  return FluidDevtools.tryGet();
@@ -21,7 +21,7 @@ import type { ContainerRuntimeProps } from "./ContainerRuntimeDevtools.js";
21
21
  * The lifetime of the associated singleton is bound by that of the Window (globalThis), and it will be automatically
22
22
  * disposed of on Window unload.
23
23
  * If you wish to dispose of it earlier, you may call its {@link @fluidframework/core-interfaces#IDisposable.dispose} method.
24
- * @alpha
24
+ * @beta
25
25
  * @sealed
26
26
  */
27
27
  export interface IFluidDevtools extends IDisposable {
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  export const pkgName = "@fluidframework/devtools-core";
9
- export const pkgVersion = "2.70.0-361248";
9
+ export const pkgVersion = "2.70.0-361788";