@vicinae/api 0.15.6 → 0.15.7

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.
@@ -74,7 +74,7 @@ interface DropdownProps extends FormItemProps<string>, WithFormRef<Form.Dropdown
74
74
  interface TagPickerProps extends FormItemProps<string[]>, WithFormRef<Form.TagPicker> {
75
75
  children?: ReactNode;
76
76
  }
77
- interface TextAreaProps extends FormItemProps<string>, WithFormRef<Form.TagPicker> {
77
+ interface TextAreaProps extends FormItemProps<string>, WithFormRef<Form.TextArea> {
78
78
  }
79
79
  interface FilePickerProps extends FormItemProps<string[]>, WithFormRef<Form.FilePicker> {
80
80
  }
@@ -1,3 +1,4 @@
1
+ export * from "./ai.js";
1
2
  export * from "./components/index.js";
2
3
  export * from "./hooks/index.js";
3
4
  export * from "./context/index.js";
@@ -16,5 +17,5 @@ export * from "./local-storage.js";
16
17
  export * from "./oauth.js";
17
18
  export * from "./alert.js";
18
19
  export * from "./preference.js";
19
- export * from './file-search.js';
20
- export * from './window-management.js';
20
+ export * from "./file-search.js";
21
+ export * from "./window-management.js";
package/dist/api/index.js CHANGED
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./ai.js"), exports);
17
18
  __exportStar(require("./components/index.js"), exports);
18
19
  __exportStar(require("./hooks/index.js"), exports);
19
20
  __exportStar(require("./context/index.js"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vicinae/api",
3
- "version": "0.15.6",
3
+ "version": "0.15.7",
4
4
  "description": "TypeScript SDK to build Vicinae extensions",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",