Skip to content

Commit d3e6a8b

Browse files
authored
feat(adapters): add vue and svelte region capture
Add Vue and Svelte region/circle capture adapter APIs and docs.
1 parent 719e429 commit d3e6a8b

30 files changed

Lines changed: 712 additions & 63 deletions

File tree

examples/analytics-dashboard-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"start": "next start"
1010
},
1111
"dependencies": {
12-
"@askable-ui/react": "^0.8.1",
12+
"@askable-ui/react": "^0.8.2",
1313
"@hookform/resolvers": "^3.9.1",
1414
"@radix-ui/react-accordion": "1.2.12",
1515
"@radix-ui/react-alert-dialog": "1.1.15",

examples/react-native-expo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"typecheck": "tsc --noEmit"
1212
},
1313
"dependencies": {
14-
"@askable-ui/core": "^0.8.1",
15-
"@askable-ui/react-native": "^0.8.1",
14+
"@askable-ui/core": "^0.8.2",
15+
"@askable-ui/react-native": "^0.8.2",
1616
"@react-navigation/native": "^7.2.5",
1717
"@react-navigation/native-stack": "^7.16.0",
1818
"expo": "^55.0.26",

package-lock.json

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "askable",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"private": true,
55
"workspaces": [
66
"packages/*"

packages/context/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@askable-ui/context",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "Open Context packet types and schema for AI-native interfaces",
55
"type": "module",
66
"main": "./dist/index.js",

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@askable-ui/core",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "Framework-agnostic context tracker for LLM-aware UIs",
55
"type": "module",
66
"main": "./dist/index.js",
@@ -38,7 +38,7 @@
3838
"homepage": "https://askable-ui.com",
3939
"license": "MIT",
4040
"dependencies": {
41-
"@askable-ui/context": "^0.8.1"
41+
"@askable-ui/context": "^0.8.2"
4242
},
4343
"devDependencies": {
4444
"jsdom": "^29.0.1",

packages/create-askable-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@askable-ui/create-app",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "Scaffold a React + Vite + CopilotKit + askable-ui starter app",
55
"type": "module",
66
"bin": {

packages/create-askable-app/src/scaffold.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fs from 'node:fs';
22
import path from 'node:path';
33
import { fileURLToPath } from 'node:url';
44

5-
const ASKABLE_VERSION = '0.8.1';
5+
const ASKABLE_VERSION = '0.8.2';
66
const COPILOTKIT_VERSION = '1.59.2';
77

88
const __filename = fileURLToPath(import.meta.url);

packages/mcp/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@askable-ui/mcp",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "MCP bridge for exposing Context packets to agents",
55
"type": "module",
66
"main": "./dist/index.js",
@@ -36,7 +36,7 @@
3636
"homepage": "https://askable-ui.com",
3737
"license": "MIT",
3838
"dependencies": {
39-
"@askable-ui/context": "^0.8.1",
39+
"@askable-ui/context": "^0.8.2",
4040
"@modelcontextprotocol/sdk": "^1.29.0",
4141
"zod": "^4.4.3"
4242
},

packages/react-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@askable-ui/react-native",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "React Native bindings for askable — LLM-aware UI context",
55
"type": "module",
66
"main": "./dist/index.js",
@@ -39,7 +39,7 @@
3939
"react": ">=17.0.0"
4040
},
4141
"dependencies": {
42-
"@askable-ui/core": "^0.8.1"
42+
"@askable-ui/core": "^0.8.2"
4343
},
4444
"devDependencies": {
4545
"@types/react": "^18.3.3",

0 commit comments

Comments
 (0)