@aipanel/ui 1.2.8 → 1.2.9

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.
@@ -1,5 +1,5 @@
1
1
  import { watch, onMounted } from "vue";
2
- import { createLogger } from "@aipanel/core";
2
+ import { createLogger } from "@aipanel/core/client";
3
3
  const log = createLogger("AIPanelWidget");
4
4
  const STORAGE_KEY = "aipanel-widget-state";
5
5
  function loadState() {
package/es/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { App } from 'vue';
2
- declare const version = "1.2.8";
2
+ declare const version = "1.2.9";
3
3
  declare function install(app: App<any>, options?: any): void;
4
4
  export { install, version, };
5
5
  export * from './AI-panel-widget';
package/es/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { AIPanelWidget } from "./AI-panel-widget/index.mjs";
2
- const version = "1.2.8";
2
+ const version = "1.2.9";
3
3
  function install(app, options) {
4
4
  const components = [
5
5
  AIPanelWidget
@@ -21,8 +21,8 @@ __export(use_persist_state_exports, {
21
21
  });
22
22
  module.exports = __toCommonJS(use_persist_state_exports);
23
23
  var import_vue = require("vue");
24
- var import_core = require("@aipanel/core");
25
- const log = (0, import_core.createLogger)("AIPanelWidget");
24
+ var import_client = require("@aipanel/core/client");
25
+ const log = (0, import_client.createLogger)("AIPanelWidget");
26
26
  const STORAGE_KEY = "aipanel-widget-state";
27
27
  function loadState() {
28
28
  if (typeof window === "undefined") return null;
package/lib/index.cjs CHANGED
@@ -26,7 +26,7 @@ module.exports = __toCommonJS(lib_exports);
26
26
  var import_AI_panel_widget = require("./AI-panel-widget/index.cjs");
27
27
  __reExport(lib_exports, require("./AI-panel-widget/index.cjs"), module.exports);
28
28
  __reExport(lib_exports, require("./setup.cjs"), module.exports);
29
- const version = "1.2.8";
29
+ const version = "1.2.9";
30
30
  function install(app, options) {
31
31
  const components = [
32
32
  import_AI_panel_widget.AIPanelWidget
package/lib/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { App } from 'vue';
2
- declare const version = "1.2.8";
2
+ declare const version = "1.2.9";
3
3
  declare function install(app: App<any>, options?: any): void;
4
4
  export { install, version, };
5
5
  export * from './AI-panel-widget';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aipanel/ui",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
4
4
  "description": "Reusable AIPanel widget components built with Pagoda CLI",
5
5
  "type": "module",
6
6
  "main": "lib/index.cjs",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "css-selector-generator": "^3.9.2",
34
- "@aipanel/core": "1.2.8"
34
+ "@aipanel/core": "1.2.9"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "pagoda-cli build",