@copilotkitnext/web-inspector 0.0.14 → 0.0.16

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/index.mjs CHANGED
@@ -180,13 +180,13 @@ var WebInspectorElement = class extends LitElement {
180
180
  button: {
181
181
  position: { x: EDGE_MARGIN, y: EDGE_MARGIN },
182
182
  size: { ...DEFAULT_BUTTON_SIZE },
183
- anchor: { horizontal: "right", vertical: "bottom" },
183
+ anchor: { horizontal: "right", vertical: "top" },
184
184
  anchorOffset: { x: EDGE_MARGIN, y: EDGE_MARGIN }
185
185
  },
186
186
  window: {
187
187
  position: { x: EDGE_MARGIN, y: EDGE_MARGIN },
188
188
  size: { ...DEFAULT_WINDOW_SIZE },
189
- anchor: { horizontal: "right", vertical: "bottom" },
189
+ anchor: { horizontal: "right", vertical: "top" },
190
190
  anchorOffset: { x: EDGE_MARGIN, y: EDGE_MARGIN }
191
191
  }
192
192
  };
@@ -912,9 +912,9 @@ var WebInspectorElement = class extends LitElement {
912
912
  }
913
913
  this.measureContext("button");
914
914
  this.measureContext("window");
915
- this.contextState.button.anchor = { horizontal: "right", vertical: "bottom" };
915
+ this.contextState.button.anchor = { horizontal: "right", vertical: "top" };
916
916
  this.contextState.button.anchorOffset = { x: EDGE_MARGIN, y: EDGE_MARGIN };
917
- this.contextState.window.anchor = { horizontal: "right", vertical: "bottom" };
917
+ this.contextState.window.anchor = { horizontal: "right", vertical: "top" };
918
918
  this.contextState.window.anchorOffset = { x: EDGE_MARGIN, y: EDGE_MARGIN };
919
919
  this.hydrateStateFromCookie();
920
920
  if (this.isOpen && this.dockMode !== "floating") {